diff --git a/data/hanzi_factor/hanzi-factor-utils-0.3.0/.gitignore b/data/hanzi_factor/hanzi-factor-utils-0.3.0/.gitignore new file mode 100644 index 0000000000..2322b7933e --- /dev/null +++ b/data/hanzi_factor/hanzi-factor-utils-0.3.0/.gitignore @@ -0,0 +1,73 @@ +# OS and editor files +.DS_Store +Thumbs.db +*~ +*.swp +*.swo +.idea/ +.vscode/ + +# Python bytecode and native extensions +__pycache__/ +*.py[cod] +*$py.class +*.so +*.dylib + +# Virtual environments and local configuration +.venv/ +venv/ +env/ +ENV/ +.conda/ +.direnv/ +.python-version +.env +.env.* +!.env.example + +# Python packaging and generated distributions +build/ +dist/ +*.egg-info/ +.eggs/ +wheels/ +*.whl +*.tar.gz +*.zip + +# Tests, coverage, notebooks, and static-analysis caches +.pytest_cache/ +.coverage +.coverage.* +coverage.xml +coverage-report.* +htmlcov/ +.tox/ +.nox/ +.mypy_cache/ +.pyright/ +.ruff_cache/ +.hypothesis/ +.ipynb_checkpoints/ + +# Downloaded catalogues and generated demo output +/data/ccd.json +/data/downloads/ +/out/ +/tmp/ +/.cache/ + +# Generated document transformations and reports at repository root +/*.ids.txt +/*_factored.txt +/*_restored.txt +/*.restored.txt +/*.report.json +/input*.txt +/document*.txt + +# Logs and local scratch data +*.log +*.tmp +*.bak diff --git a/data/hanzi_factor/hanzi-factor-utils-0.3.0/LICENSE b/data/hanzi_factor/hanzi-factor-utils-0.3.0/LICENSE new file mode 100644 index 0000000000..9ac233cee7 --- /dev/null +++ b/data/hanzi_factor/hanzi-factor-utils-0.3.0/LICENSE @@ -0,0 +1,22 @@ +MIT License + +Copyright (c) 2026 Hanzi Factor contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/data/hanzi_factor/hanzi-factor-utils-0.3.0/README.md b/data/hanzi_factor/hanzi-factor-utils-0.3.0/README.md new file mode 100644 index 0000000000..b160bac0ad --- /dev/null +++ b/data/hanzi_factor/hanzi-factor-utils-0.3.0/README.md @@ -0,0 +1,344 @@ +# hanzi-factor + +`hanzi-factor` is a dependency-free Python reference implementation for +turning a Han character's **canonical graphical decomposition** into an +ordered component tree, packing that tree into a compact deterministic bit +stream, and resolving the decoded tree back to a character when—and only +when—the catalogue makes that reverse mapping unique. + +It implements the complete Unicode 17 IDS grammar: the 16 Ideographic +Description Characters at U+2FF0–U+2FFF plus the binary subtraction operator +U+31EF. It also provides strict dataset loaders, recursive expansion with +cycle detection, collision analysis, UTF-range audits, and JSON/CSV/text +coverage reports. + +## What “reversible” means + +The encoded root contains structure, ordered component identities, and layout +operators. It does not contain the root character's Unicode scalar or a row +number. Decoding first recreates the canonical component tree; a reverse +index then returns the character whose expanded tree is exactly that tree. + +There are two unavoidable qualifications: + +1. If two characters have the same canonical tree, structure alone cannot + distinguish them. Formally, if `F(a) = F(b)` with `a != b`, no inverse of + `F` can return both. The library reports such collisions and refuses the + ambiguous lookup instead of hiding a character ID in the payload. +2. A graphical primitive must remain an atomic component unless a lower-level + stroke/path definition is supplied. Encoding the identity of a true leaf + is necessary information; calling all such leaves “radicals” does not make + the 214 Kangxi indexing radicals a complete graphical alphabet. + +This is therefore a testable structural bijection **relative to a pinned, +collision-free canonical catalogue**. Exact font outlines, regional glyph +forms, proportions, and component deformations require a separate versioned +geometry profile. Unicode explicitly notes that IDS rendering is not required +to recreate the described glyph. + +## Quick start + +Python 3.10 or newer is required. + +```bash +python -m pip install -e . +python examples/roundtrip.py +python -m unittest discover -s tests -v +``` + +The example is self-contained and demonstrates `汉`, `国`, `语`, `清`, and +`森`, including tree expansion, binary encoding, decoding, and reverse lookup. + +For a complete fresh-environment walkthrough—including OpenCC installation, +catalogue download, Simplified and Traditional normalization, document-to-IDS +conversion, binary round trips, and tests—run: + +```bash +bash demos/setup_and_demo.sh +``` + +See [`demos/SETUP_AND_DEMO.md`](demos/SETUP_AND_DEMO.md) and the included mixed +Chinese input [`demos/sample_chinese.txt`](demos/sample_chinese.txt). + +## Replace a document with prefix IDS + +`scripts/text_to_ids.py` scans a UTF-8 document and replaces every character +covered by the selected decomposition catalogue. The default `expanded` form +recursively expands registered components; `direct` emits the catalogue's +canonical top-level IDS instead. + +```bash +# stdin -> stdout, using the small test catalogue +printf '汉语,清!\n' | python scripts/text_to_ids.py \ + --ids tests/fixtures/sample_ids.txt --quiet +# ⿰氵又⿰讠⿱五口,⿰氵⿱龶月! + +# A real document and the fetched CCD catalogue +python scripts/text_to_ids.py article.txt \ + --ccd data/ccd.json \ + --format expanded \ + --on-uncovered keep \ + --report article.ids.report.json \ + -o article.ids.txt +``` + +Non-Han text, whitespace, and punctuation are preserved. For Han characters +absent from the catalogue, `--on-uncovered` can `keep` them (the default), stop +with `error`, or emit a visible `` escape. `--wrap` renders every +replacement as `⟦IDS⟧`, which is useful while inspecting mixed text. Use +`--in-place` to atomically replace a named input file. + +The expanded form is prefix notation and operator arity makes each IDS tree +self-delimiting. An operand absent from the catalogue remains an atomic leaf; +use the coverage audit's `--no-leaf-fallback` mode when the workflow must first +prove complete recursive closure. + +The same operation is available as a Python API: + +```python +from hanzi_factor import factorize_text + +mapping = {"汉": "⿰氵又", "清": "⿰氵青", "青": "⿱龶月"} +result = factorize_text("汉,清", mapping, expanded=True) +print(result.text) # ⿰氵又,⿰氵⿱龶月 +``` + +## Restore a prefix-IDS document + +Use the same pinned catalogue to invert a document produced by +`text_to_ids.py`: + +```bash +python scripts/ids_to_text.py article.ids.txt \ + --ccd data/ccd.json \ + --report article.restored.report.json \ + -o article.restored.txt +``` + +The parser consumes an IDS operator and exactly the operands required by its +arity, then resumes copying ordinary punctuation, numbers, whitespace, emoji, +and Latin script. It also decodes `` fallbacks and recognizes the +optional `⟦IDS⟧` form automatically. Both expanded and direct IDS reverse +through the catalogue's canonical expanded index. + +Unknown trees and structurally ambiguous trees are errors by default. This is +the only safe default: if two registered characters have the same expanded +graphical tree, IDS alone contains no bit that can recover which identity was +original. `--on-ambiguous first` is available only when deterministic lossy +selection is acceptable; `--on-unknown keep` preserves unknown expressions. + +For an exact document round trip, use `--on-uncovered escape` in the forward +command. If an uncovered Han scalar is merely kept, a bare one-node Han operand +can be indistinguishable from an intentionally emitted atomic IDS root. The +escape preserves that distinction while remaining readable and reversible. + +Python API: + +```python +from hanzi_factor import restore_text + +restored = restore_text("⿰氵又,⿰氵⿱龶月", mapping) +print(restored.text) # 汉,清 +``` + +## Normalize Simplified or Traditional Chinese + +Simplified/Traditional normalization is phrase-sensitive and is therefore a +separate OpenCC-backed operation rather than a character-by-character table. +Install the optional dependency once: + +```bash +python -m pip install '.[normalize]' +``` + +Then select a target and, optionally, a regional profile: + +```bash +# Generic Traditional Chinese +python scripts/normalize_chinese.py input.txt \ + --to traditional -o traditional.txt + +# Taiwan orthography and phrase vocabulary (软件 -> 軟體) +python scripts/normalize_chinese.py input.txt \ + --to traditional --variant taiwan-phrases -o taiwan.txt + +# Convert a Taiwan Traditional document to Simplified in place +python scripts/normalize_chinese.py input.txt \ + --to simplified --variant taiwan-phrases --in-place +``` + +Profiles are `generic`, `taiwan`, `taiwan-phrases`, and `hong-kong`. Conversion +preserves non-Chinese content, but it is not a bijection: several traditional +forms may collapse to one simplified form, and a later reverse conversion may +not reproduce the original wording. Keep the source document when identity or +editorial history matters. + +## Audit a real dataset + +Production decomposition data is deliberately external: the catalogue and its +version are part of the codec contract. A pinned fetch helper is included for +the 21,169-record MIT-declared npm snapshot of the Wikimedia Commons graphical +decomposition table: + +```bash +python scripts/fetch_ccd.py data/ccd.json +python scripts/coverage_utf.py \ + --ccd data/ccd.json \ + --range 4E00-9FFF \ + --no-leaf-fallback \ + --json coverage-cjk-basic.json +``` + +The audit walks every Unicode scalar in the inclusive range. Its categories +distinguish: + +- a valid structural IDS; +- an explicit primitive/self row; +- a definition that needs an unknown leaf fallback; +- an uncertain or rejected source row; +- a missing root; +- an expansion cycle; +- a canonical collision; and +- a failed binary/tree round trip. + +Use `--fail-under` in CI to enforce a chosen recursive-coverage percentage. Run +`python scripts/coverage_utf.py --help` for range presets, multiple ranges, +plain IDS/TSV input, permissive leaf handling, and report formats. + +### List uncovered characters + +Extract failures from any JSON coverage report without rerunning the audit: + +```bash +# Full no-root-ID requirement: recursive closure + unique inverse + binary pass +python scripts/list_uncovered.py coverage-cjk-basic.json \ + --output uncovered-bijective.tsv + +# Only characters with no accepted top-level decomposition, one per line +python scripts/list_uncovered.py coverage-cjk-basic.json \ + --criterion direct \ + --format characters \ + --output uncovered-direct.txt +``` + +The default TSV includes the code point, character, audit status, failure +reason, and accepted IDS (when present). Other selectable thresholds are +`recursive`, `unique`, and `binary`; JSON output is also available. + +### Reference audit of the pinned CCD snapshot + +The included implementation was exercised over every scalar from U+4E00 +through U+9FFF (20,992 targets), not just the small unit-test fixture: + +| Measure | Result | +|---|---:| +| Strictly accepted root records | 19,697 (93.8310%) | +| Recursively closed with no missing-leaf fallback | 13,884 (66.1395%) | +| Unique structural inverses after collisions | 13,739 (65.4487%) | +| Strict expanded trees passing binary round trip | 13,884 / 13,884 | +| Strict reverse collisions | 71 groups / 145 characters | +| Missing/rejected roots | 1,295 | + +In permissive component-leaf mode, all 19,697 accepted roots expand and pass +the binary round trip, but that is **not** full radical closure: absent +component definitions are then treated as atomic leaves. The strict JSON and +text reports are in `artifacts/`; they retain every missing code point, source +diagnostic, collision group, and payload-bit measurement. + +There is no contiguous “Simplified Hanzi” Unicode range: the CJK blocks unify +Chinese, Japanese, Korean, and Vietnamese usage and contain both simplified +and traditional forms. For a claim specifically about simplified Chinese, +pass a repertoire file for the exact standard or product vocabulary you need; +the U+4E00–U+9FFF audit is a useful stress test, not a definition of simplified +Chinese. + +## Data formats + +The generic text loader accepts the common CJKVI-style form: + +```text +U+6C49⿰氵又 +U+8BED⿰讠⿱五口 +``` + +It also accepts a two-column `characterIDS` form. Blank lines and lines +beginning with `#` are ignored. Root keys must be exactly one Unicode scalar. +During the audit, every IDS is parsed structurally; malformed, trailing, +multi-root, and duplicate/conflicting records are surfaced rather than silently +repaired. + +The CCD JSON adapter converts only losslessly placeable source layouts to +Unicode IDS operators. It rejects uncertainty markers, opaque concatenations, +`回` rows whose enclosure side is merely implicit, and the undocumented `*` +topology. These rejections are deliberate: guessing `⿴` for every enclosure +would encode wrong locations. See [THIRD_PARTY.md](THIRD_PARTY.md) before using +that data in a product. + +## Canonical model + +IDS is prefix notation, so operator arity makes parentheses unnecessary: + +```text +语 = ⿰讠⿱五口 +森 = ⿱木⿰木木 +国 = ⿴囗玉 +``` + +`parse_ids()` creates an immutable ordered tree. `format_ids()` is its unique +whitespace-free serialization. A component dictionary recursively substitutes +known leaf definitions until primitives remain, detects cycles, deduplicates +equal expanded components, and computes a stable fingerprint. Reverse lookup +uses the fully expanded tree, making it independent of which reusable +subcomponents happened to be selected by the encoder. + +The compact payload is a preorder tree code. Operators use a small fixed +alphabet; known component subtrees use deterministic dictionary ordinals; and +unknown Unicode-scalar leaves use a bounded integer escape. A framed payload +adds a magic/version marker, codec-profile fingerprint, and exact bit length. +For `BinaryCodec` that profile binds the component table; for `HanziCodec` it +binds both the component table and the complete label-to-tree reverse catalogue. +It is one global catalogue hash, not a per-character ID. Unframed mode is +smaller when the caller already fixes the same profile out of band. Canonical +padding and integer encodings are checked, and depth/node limits apply to the +fully expanded result—including subtrees recovered through component refs. + +The exact version-1 bit and frame grammar is documented in +[`docs/FORMAT.md`](docs/FORMAT.md). + +Root component references are disabled by default. Otherwise a dictionary +could encode `汉` as the ordinal for `汉`, producing a compact lookup ID rather +than a factorization. + +## Why the audit is part of the implementation + +A source file having a row for a character is not proof of full factorization. +A row may simply define the character as itself, contain `?`, depend on a +missing component, participate in a cycle, or collide after recursive +expansion. Coverage is consequently measured at several increasingly strong +levels: + +```text +row present -> valid tree -> recursively closed -> binary round trip + -> unique reverse lookup -> optional exact geometry profile +``` + +Only the unique reverse-lookup stage establishes the no-root-ID structural +bijection. The final geometry stage is required before claiming pixel- or +font-exact glyph recreation. + +## References + +- [Unicode 17.0, Chapter 18.2: Ideographic Description + Characters](https://www.unicode.org/versions/Unicode17.0.0/core-spec/chapter-18/) +- [Unicode Standard Annex #38: Unicode Han + Database](https://www.unicode.org/reports/tr38/) +- [Wikimedia Commons: Chinese characters + decomposition](https://commons.wikimedia.org/wiki/Commons:Chinese_characters_decomposition) +- [CJKVI IDS data](https://github.com/cjkvi/cjkvi-ids) +- [Make Me a Hanzi](https://github.com/skishore/makemeahanzi) for a possible + stroke-vector geometry layer (subject to its separate data licenses) + +## License + +The implementation is MIT licensed. External catalogues retain their own +licenses and are not included. diff --git a/data/hanzi_factor/hanzi-factor-utils-0.3.0/THIRD_PARTY.md b/data/hanzi_factor/hanzi-factor-utils-0.3.0/THIRD_PARTY.md new file mode 100644 index 0000000000..2f306dec4d --- /dev/null +++ b/data/hanzi_factor/hanzi-factor-utils-0.3.0/THIRD_PARTY.md @@ -0,0 +1,26 @@ +# Third-party data + +`hanzi-factor` contains no production Han decomposition catalogue. This is +deliberate: a structural codec must pin and identify the exact catalogue used +to construct its dictionary. + +The optional `scripts/fetch_ccd.py` helper downloads version 0.1.0 of the npm +package [`chinese-characters-decomposition`](https://www.npmjs.com/package/chinese-characters-decomposition), +whose package metadata declares the MIT license. That snapshot packages the +Wikimedia Commons *Chinese characters decomposition* table. The source table +describes itself as a purely graphical—not etymological—decomposition dataset. +It also contains uncertain and primitive/self rows; the loader and coverage +report preserve those distinctions instead of treating every row as a verified +recursive factorization. CCD enclosure rows do not state which Unicode surround +operator applies, so the strict adapter rejects them rather than guessing a +location. It likewise rejects the undocumented `*` topology. + +The external JSON is not redistributed in this repository. Review its source, +license, and data quality for your application before use. + +## Optional OpenCC normalization dependency + +The `normalize` extra installs `opencc-python-reimplemented` 0.1.7, distributed +under the Apache License 2.0. It is not bundled in this source tree or wheel. +Its OpenCC dictionaries and conversion profiles provide phrase-aware +Simplified/Traditional and regional normalization. diff --git a/data/hanzi_factor/hanzi-factor-utils-0.3.0/artifacts/README.md b/data/hanzi_factor/hanzi-factor-utils-0.3.0/artifacts/README.md new file mode 100644 index 0000000000..5c003d24a5 --- /dev/null +++ b/data/hanzi_factor/hanzi-factor-utils-0.3.0/artifacts/README.md @@ -0,0 +1,53 @@ +# Coverage artifacts + +These reports were generated by `hanzi-factor` 0.1.0 over the inclusive range +U+4E00–U+9FFF using the pinned external CCD snapshot fetched by +`scripts/fetch_ccd.py` (`chinese-characters-decomposition` 0.1.0). + +Strict command: + +```bash +python scripts/coverage_utf.py \ + --ccd data/ccd.json \ + --range 4E00-9FFF \ + --no-leaf-fallback \ + --json artifacts/coverage_ccd_u4e00_u9fff_strict.json \ + --text artifacts/coverage_ccd_u4e00_u9fff_strict.txt +``` + +The JSON SHA-256 is +`fda91346bfd1afedca73f864e3b65f2459d17567762f44a0fce92785c0f5bbe5`. +It contains all 20,992 per-code-point records, 1,236 source diagnostics, and 71 +strict collision groups. + +Two ready-to-use failure lists were extracted from that JSON: + +- `uncovered_ccd_u4e00_u9fff_bijective.tsv` contains 7,253 characters that do + not meet the full recursively closed, structurally unique, binary-roundtrip + criterion. It has one header row and a reason for every character. +- `uncovered_ccd_u4e00_u9fff_direct.txt` contains the 1,295 characters with no + accepted root decomposition, one character per line. + +They can be regenerated with: + +```bash +python scripts/list_uncovered.py \ + artifacts/coverage_ccd_u4e00_u9fff_strict.json \ + --output artifacts/uncovered_ccd_u4e00_u9fff_bijective.tsv + +python scripts/list_uncovered.py \ + artifacts/coverage_ccd_u4e00_u9fff_strict.json \ + --criterion direct \ + --format characters \ + --output artifacts/uncovered_ccd_u4e00_u9fff_direct.txt +``` + +The permissive text report allows unknown component leaves to remain atomic. +It is useful for comparing root-row coverage but must not be interpreted as +full recursive factorization. + +CCD `回` rows lack an explicit surrounding-side operator, and the undocumented +`*` topology cannot be converted losslessly. The strict adapter rejects 428 +such rows as `ccd_ambiguous_layout`; it does not guess generic `⿴` or discard a +second component. Exact font/regional glyph recovery still requires a separate +pinned geometry or stroke-outline profile. diff --git a/data/hanzi_factor/hanzi-factor-utils-0.3.0/artifacts/coverage_ccd_u4e00_u9fff_strict.json b/data/hanzi_factor/hanzi-factor-utils-0.3.0/artifacts/coverage_ccd_u4e00_u9fff_strict.json new file mode 100644 index 0000000000..2d9cf4b1c9 --- /dev/null +++ b/data/hanzi_factor/hanzi-factor-utils-0.3.0/artifacts/coverage_ccd_u4e00_u9fff_strict.json @@ -0,0 +1,518412 @@ +{ + "schema_version": 1, + "dataset": "hanzi-factor-ccd", + "allow_leaf_fallback": false, + "summary": { + "total_targets": 20992, + "exact_ids": 19697, + "recursively_expandable": 13884, + "leaf_self_fallback": 334, + "missing": 1295, + "malformed": 0, + "cyclic": 0, + "reverse_collision_characters": 145, + "reverse_collision_groups": 71, + "unique_structural_characters": 13739, + "binary_roundtrip_successes": 13884, + "binary_roundtrip_failures": 0, + "direct_coverage_ratio": 0.9383098323170732, + "decodable_coverage_ratio": 0.6613948170731707, + "unique_structural_ratio": 0.6544874237804879, + "binary_roundtrip_ratio": 1.0 + }, + "reverse_collisions": [ + { + "expanded_ids": "⿰⿱⿱⿱亠八厂彡⿱⿱一丿⿱目八", + "characters": [ + "顏", + "顔" + ], + "codepoints": [ + "U+984F", + "U+9854" + ] + }, + { + "expanded_ids": "⿰⿱⿻十口儿力", + "characters": [ + "勀", + "勊" + ], + "codepoints": [ + "U+52C0", + "U+52CA" + ] + }, + { + "expanded_ids": "⿰⿱人⿻丶艮欠", + "characters": [ + "飮", + "飲" + ], + "codepoints": [ + "U+98EE", + "U+98F2" + ] + }, + { + "expanded_ids": "⿰⿱八⿱口儿攵", + "characters": [ + "敓", + "敚" + ], + "codepoints": [ + "U+6553", + "U+655A" + ] + }, + { + "expanded_ids": "⿰⿱宀八鳥", + "characters": [ + "鴧", + "鴪" + ], + "codepoints": [ + "U+9D27", + "U+9D2A" + ] + }, + { + "expanded_ids": "⿰⿻丶艮阝", + "characters": [ + "郎", + "郞" + ], + "codepoints": [ + "U+90CE", + "U+90DE" + ] + }, + { + "expanded_ids": "⿰⿻丿木⿱八⿱口儿", + "characters": [ + "稅", + "税" + ], + "codepoints": [ + "U+7A05", + "U+7A0E" + ] + }, + { + "expanded_ids": "⿰乡⿰⿻丶艮阝", + "characters": [ + "郷", + "鄉" + ], + "codepoints": [ + "U+90F7", + "U+9109" + ] + }, + { + "expanded_ids": "⿰亻⿱⿱十目乚", + "characters": [ + "値", + "值" + ], + "codepoints": [ + "U+5024", + "U+503C" + ] + }, + { + "expanded_ids": "⿰亻⿻⿱目八一", + "characters": [ + "俱", + "倶" + ], + "codepoints": [ + "U+4FF1", + "U+5036" + ] + }, + { + "expanded_ids": "⿰亻⿻木一", + "characters": [ + "佅", + "体" + ], + "codepoints": [ + "U+4F45", + "U+4F53" + ] + }, + { + "expanded_ids": "⿰口⿱一亅", + "characters": [ + "叮", + "可" + ], + "codepoints": [ + "U+53EE", + "U+53EF" + ] + }, + { + "expanded_ids": "⿰口⿻冂人", + "characters": [ + "呐", + "呗" + ], + "codepoints": [ + "U+5450", + "U+5457" + ] + }, + { + "expanded_ids": "⿰口⿻大丶", + "characters": [ + "吠", + "呔" + ], + "codepoints": [ + "U+5420", + "U+5454" + ] + }, + { + "expanded_ids": "⿰口⿻木一", + "characters": [ + "呠", + "味" + ], + "codepoints": [ + "U+5460", + "U+5473" + ] + }, + { + "expanded_ids": "⿰土⿱口⿻冂人", + "characters": [ + "埙", + "埚" + ], + "codepoints": [ + "U+57D9", + "U+57DA" + ] + }, + { + "expanded_ids": "⿰土⿱爫寸", + "characters": [ + "埒", + "埓" + ], + "codepoints": [ + "U+57D2", + "U+57D3" + ] + }, + { + "expanded_ids": "⿰堇欠", + "characters": [ + "歎", + "歏" + ], + "codepoints": [ + "U+6B4E", + "U+6B4F" + ] + }, + { + "expanded_ids": "⿰女⿻木一", + "characters": [ + "妹", + "妺" + ], + "codepoints": [ + "U+59B9", + "U+59BA" + ] + }, + { + "expanded_ids": "⿰忄⿱八⿱口儿", + "characters": [ + "悅", + "悦" + ], + "codepoints": [ + "U+6085", + "U+60A6" + ] + }, + { + "expanded_ids": "⿰扌⿱八⿱口儿", + "characters": [ + "挩", + "捝" + ], + "codepoints": [ + "U+6329", + "U+635D" + ] + }, + { + "expanded_ids": "⿰扌⿱爪缶", + "characters": [ + "搖", + "摇" + ], + "codepoints": [ + "U+6416", + "U+6447" + ] + }, + { + "expanded_ids": "⿰扌⿻木一", + "characters": [ + "抹", + "抺" + ], + "codepoints": [ + "U+62B9", + "U+62BA" + ] + }, + { + "expanded_ids": "⿰日⿻木一", + "characters": [ + "昧", + "昩" + ], + "codepoints": [ + "U+6627", + "U+6629" + ] + }, + { + "expanded_ids": "⿰日免", + "characters": [ + "晚", + "晩" + ], + "codepoints": [ + "U+665A", + "U+6669" + ] + }, + { + "expanded_ids": "⿰月⿱⿱丷⿻一大馬", + "characters": [ + "腾", + "騰" + ], + "codepoints": [ + "U+817E", + "U+9A30" + ] + }, + { + "expanded_ids": "⿰月⿱⿱厶儿夂", + "characters": [ + "朘", + "脧" + ], + "codepoints": [ + "U+6718", + "U+8127" + ] + }, + { + "expanded_ids": "⿰月⿱八⿱口儿", + "characters": [ + "脫", + "脱" + ], + "codepoints": [ + "U+812B", + "U+8131" + ] + }, + { + "expanded_ids": "⿰月⿱八刀", + "characters": [ + "朌", + "肦" + ], + "codepoints": [ + "U+670C", + "U+80A6" + ] + }, + { + "expanded_ids": "⿰月⿻大丶", + "characters": [ + "肰", + "肽" + ], + "codepoints": [ + "U+80B0", + "U+80BD" + ] + }, + { + "expanded_ids": "⿰木⿰⿱乂朩⿱几又", + "characters": [ + "榝", + "樧" + ], + "codepoints": [ + "U+699D", + "U+6A27" + ] + }, + { + "expanded_ids": "⿰木⿱八⿱口儿", + "characters": [ + "梲", + "棁" + ], + "codepoints": [ + "U+68B2", + "U+68C1" + ] + }, + { + "expanded_ids": "⿰木丹", + "characters": [ + "枬", + "栴" + ], + "codepoints": [ + "U+67AC", + "U+6834" + ] + }, + { + "expanded_ids": "⿰氵⿱⿱宀八⿱⿱一厶土", + "characters": [ + "漥", + "潌" + ], + "codepoints": [ + "U+6F25", + "U+6F4C" + ] + }, + { + "expanded_ids": "⿰氵⿱八⿱口儿", + "characters": [ + "涗", + "涚" + ], + "codepoints": [ + "U+6D97", + "U+6D9A" + ] + }, + { + "expanded_ids": "⿰氵⿱口⿻冂人", + "characters": [ + "涡", + "涢" + ], + "codepoints": [ + "U+6DA1", + "U+6DA2" + ] + }, + { + "expanded_ids": "⿰氵⿱巛田", + "characters": [ + "淄", + "湽" + ], + "codepoints": [ + "U+6DC4", + "U+6E7D" + ] + }, + { + "expanded_ids": "⿰氵⿱止𣥂", + "characters": [ + "涉", + "渉" + ], + "codepoints": [ + "U+6D89", + "U+6E09" + ] + }, + { + "expanded_ids": "⿰氵⿻大丶", + "characters": [ + "汰", + "汱" + ], + "codepoints": [ + "U+6C70", + "U+6C71" + ] + }, + { + "expanded_ids": "⿰氵⿻木一", + "characters": [ + "沫", + "沬", + "泍" + ], + "codepoints": [ + "U+6CAB", + "U+6CAC", + "U+6CCD" + ] + }, + { + "expanded_ids": "⿰犭⿰言尤", + "characters": [ + "狱", + "獄" + ], + "codepoints": [ + "U+72F1", + "U+7344" + ] + }, + { + "expanded_ids": "⿰王⿱爪缶", + "characters": [ + "瑤", + "瑶" + ], + "codepoints": [ + "U+7464", + "U+7476" + ] + }, + { + "expanded_ids": "⿰目⿻木一", + "characters": [ + "眛", + "眜" + ], + "codepoints": [ + "U+771B", + "U+771C" + ] + }, + { + "expanded_ids": "⿰石⿻木一", + "characters": [ + "砞", + "砵" + ], + "codepoints": [ + "U+781E", + "U+7835" + ] + }, + { + "expanded_ids": "⿰虫⿱八⿱口儿", + "characters": [ + "蛻", + "蜕" + ], + "codepoints": [ + "U+86FB", + "U+8715" + ] + }, + { + "expanded_ids": "⿰言⿱八⿱口儿", + "characters": [ + "說", + "説" + ], + "codepoints": [ + "U+8AAA", + "U+8AAC" + ] + }, + { + "expanded_ids": "⿰言⿱爪缶", + "characters": [ + "謠", + "謡" + ], + "codepoints": [ + "U+8B20", + "U+8B21" + ] + }, + { + "expanded_ids": "⿰車⿱巛田", + "characters": [ + "輜", + "輺" + ], + "codepoints": [ + "U+8F1C", + "U+8F3A" + ] + }, + { + "expanded_ids": "⿰車王", + "characters": [ + "軖", + "軠" + ], + "codepoints": [ + "U+8ED6", + "U+8EE0" + ] + }, + { + "expanded_ids": "⿰辶⿱爪缶", + "characters": [ + "遙", + "遥" + ], + "codepoints": [ + "U+9059", + "U+9065" + ] + }, + { + "expanded_ids": "⿰辶⿻大丶", + "characters": [ + "迏", + "迖" + ], + "codepoints": [ + "U+8FCF", + "U+8FD6" + ] + }, + { + "expanded_ids": "⿰金⿱八⿱口儿", + "characters": [ + "銳", + "鋭" + ], + "codepoints": [ + "U+92B3", + "U+92ED" + ] + }, + { + "expanded_ids": "⿰金⿱巛田", + "characters": [ + "錙", + "鍿" + ], + "codepoints": [ + "U+9319", + "U+937F" + ] + }, + { + "expanded_ids": "⿰钅⿻冂人", + "characters": [ + "钠", + "钡" + ], + "codepoints": [ + "U+94A0", + "U+94A1" + ] + }, + { + "expanded_ids": "⿱⿱⿱亠八厂⿱牛一", + "characters": [ + "產", + "産" + ], + "codepoints": [ + "U+7522", + "U+7523" + ] + }, + { + "expanded_ids": "⿱⿱⿱亠八厂彡", + "characters": [ + "彥", + "彦" + ], + "codepoints": [ + "U+5F65", + "U+5F66" + ] + }, + { + "expanded_ids": "⿱⿱⿱十目乚心", + "characters": [ + "悳", + "惪" + ], + "codepoints": [ + "U+60B3", + "U+60EA" + ] + }, + { + "expanded_ids": "⿱⿱口⿰口口山", + "characters": [ + "喦", + "嵒" + ], + "codepoints": [ + "U+55A6", + "U+5D52" + ] + }, + { + "expanded_ids": "⿱人⿻丶艮", + "characters": [ + "食", + "飠" + ], + "codepoints": [ + "U+98DF", + "U+98E0" + ] + }, + { + "expanded_ids": "⿱口⿻冂人", + "characters": [ + "员", + "呙" + ], + "codepoints": [ + "U+5458", + "U+5459" + ] + }, + { + "expanded_ids": "⿱牛口", + "characters": [ + "吿", + "告" + ], + "codepoints": [ + "U+543F", + "U+544A" + ] + }, + { + "expanded_ids": "⿱罒⿰言刂", + "characters": [ + "罚", + "罰" + ], + "codepoints": [ + "U+7F5A", + "U+7F70" + ] + }, + { + "expanded_ids": "⿱艹⿱巛田", + "characters": [ + "菑", + "葘" + ], + "codepoints": [ + "U+83D1", + "U+8458" + ] + }, + { + "expanded_ids": "⿱艹⿻木一", + "characters": [ + "苯", + "苿", + "茉" + ], + "codepoints": [ + "U+82EF", + "U+82FF", + "U+8309" + ] + }, + { + "expanded_ids": "⿲⿱口口⿱⿱一丿⿱目八⿱口口", + "characters": [ + "嚻", + "囂" + ], + "codepoints": [ + "U+56BB", + "U+56C2" + ] + }, + { + "expanded_ids": "⿻一大", + "characters": [ + "天", + "夫" + ], + "codepoints": [ + "U+5929", + "U+592B" + ] + }, + { + "expanded_ids": "⿻冂人", + "characters": [ + "内", + "贝" + ], + "codepoints": [ + "U+5185", + "U+8D1D" + ] + }, + { + "expanded_ids": "⿻力丷", + "characters": [ + "为", + "办" + ], + "codepoints": [ + "U+4E3A", + "U+529E" + ] + }, + { + "expanded_ids": "⿻大丶", + "characters": [ + "太", + "犬" + ], + "codepoints": [ + "U+592A", + "U+72AC" + ] + }, + { + "expanded_ids": "⿻木一", + "characters": [ + "未", + "末", + "本" + ], + "codepoints": [ + "U+672A", + "U+672B", + "U+672C" + ] + }, + { + "expanded_ids": "⿻王丶", + "characters": [ + "玉", + "玊" + ], + "codepoints": [ + "U+7389", + "U+738A" + ] + } + ], + "dataset_issues": [ + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10, + "character": "三", + "raw": "['三', 3, '回', '二', 2, '一', 1, 'MMM', '/', '一']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 53, + "character": "临", + "raw": "['临', 9, '吅', '丩', 2, '2丶4', 7, 'LLOA', '/?', '丨']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 62, + "character": "丽", + "raw": "['丽', 7, '吕', '一', 1, '卪卪', 6, 'MBIB', '/?', '丶']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 86, + "character": "乕", + "raw": "['乕', 7, '吕', '厈', 5, '卩', 2, 'HQB', '?/?', '丿']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 95, + "character": "乞", + "raw": "['乞', 3, '吕', '𠂉', 2, '乙', 1, 'ON', '?/', '乙']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 122, + "character": "乹", + "raw": "['乹', 9, '吅', '𠦝', 8, '乚', 1, 'JJU', '?/', '乙']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 128, + "character": "乿", + "raw": "['乿', 11, '吅', '爫糸', 10, '乚', 1, 'BFU', '?/', '乙']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 130, + "character": "亁", + "raw": "['亁', 12, '吅', '十日干', 9, '乞', 3, 'JJON', '?/', '乙']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 136, + "character": "亇", + "raw": "['亇', 3, '吕', '人*', 2, '亅', 1, 'ON', '?/', '亅']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 138, + "character": "争", + "raw": "['争', 6, '吕', '𠂊', 2, '肀', 4, 'NSD', '?/', '亅']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 139, + "character": "亊", + "raw": "['亊', 7, '+', '丁丷', 3, '肀', 4, 'JFLN', '?/?', '亅']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 148, + "character": "亓", + "raw": "['亓', 4, '吕', '二', 2, '儿*', 2, 'MML', '/?', '二']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 153, + "character": "亘", + "raw": "['亘', 6, '回', '二', 2, '日', 4, 'MAM', '/', '二']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 154, + "character": "亙", + "raw": "['亙', 6, '回', '二', 2, '匀', 4, 'MBM', '/', '二']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 160, + "character": "亟", + "raw": "['亟', 8, '回', '二', 2, '口勹 又', 6, 'NEM', '/?', '二']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 164, + "character": "亣", + "raw": "['亣', 4, '吕', '亠', 2, '儿*', 2, 'YLL', '/?', '亠']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 166, + "character": "亥", + "raw": "['亥', 6, '吕', '亠', 2, '?人', 4, 'YVHO', '/?', '亠']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 169, + "character": "亨", + "raw": "['亨', 7, '吕', '亠口', 5, '了', 2, 'YRNN', '?/', '亠']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 172, + "character": "享", + "raw": "['享', 8, '吕', '亠口', 5, '子', 3, 'YRND', '?/', '亠']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 173, + "character": "京", + "raw": "['京', 8, '吕', '亠口', 5, '小', 3, 'YRF', '?/', '亠']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 174, + "character": "亭", + "raw": "['亭', 9, '冖', '亠口', 5, '丁', 2, 'YRBN', '?/', '亠']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 175, + "character": "亮", + "raw": "['亮', 9, '冖', '亠口', 5, '儿', 2, 'YRBU', '?/', '亠']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 176, + "character": "亯", + "raw": "['亯', 9, '吕', '亠口', 5, '日', 4, 'YRA', '?/', '亠']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 180, + "character": "亳", + "raw": "['亳', 10, '冖', '亠口', 5, '乇', 3, 'YRBP', '?/', '亠']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 181, + "character": "亴", + "raw": "['亴', 12, '冖', '亠口', 5, '土九', 5, 'YRBN', '?/?', '亠']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 182, + "character": "亵", + "raw": "['亵', 12, '回', '衣', 6, '执', 6, 'YQIV', '/', '亠']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 184, + "character": "亷", + "raw": "['亷', 13, '吕', '产', 6, '兼*', 7, 'YHXC', '/?', '亠']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 191, + "character": "亾", + "raw": "['亾', 3, '吅', '𠃊', 1, '人', 2, 'OV', '?/', '人']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 204, + "character": "介", + "raw": "['介', 4, '吕', '人', 2, '儿*', 2, 'OLL', '/?', '人']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 251, + "character": "仺", + "raw": "['仺', 5, '吕', '人', 2, '匚一', 3, 'OSM', '/?', '人']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 287, + "character": "伞", + "raw": "['伞', 6, '吕', '人', 2, '丷十', 4, 'OFJ', '/?', '人']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 293, + "character": "伤", + "raw": "['伤', 6, '回', '𠆧', 4, '力', 2, 'OOKS', '/', '人']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 351, + "character": "佞", + "raw": "['佞', 7, '回', '仁', 4, '女', 3, 'OMMV', '/', '人']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 358, + "character": "佥", + "raw": "['佥', 7, '吕', '亼', 3, '小一', 4, 'OMFM', '/?', '人']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 388, + "character": "侃", + "raw": "['侃', 8, '吅', '亻', 2, '口川', 6, 'ORHU', '/?', '人']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 432, + "character": "侯", + "raw": "['侯', 9, '吅', '亻', 2, '2矢', 7, 'ONMK', '/?', '人']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 437, + "character": "侴", + "raw": "['侴', 9, '吕', '亼', 3, '丑刂', 6, 'OMNN', '/?', '人']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 495, + "character": "修", + "raw": "['修', 10, '回', '攸', 7, '彡', 3, 'OLOH', '?/', '人']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 522, + "character": "倉", + "raw": "['倉', 10, '吕', '食', 7, '囗', 3, 'OIAR', '?/?', '人']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 528, + "character": "倏", + "raw": "['倏', 11, '回', '攸', 7, '犬', 4, 'OLOK', '/', '人']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 529, + "character": "倐", + "raw": "['倐', 10, '回', '攸', 6, '火', 4, 'OLHF', '/', '人']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 542, + "character": "倝", + "raw": "['倝', 10, '吅', '𠦝', 8, '人', 2, 'JJO', '?/', '人']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 634, + "character": "偹", + "raw": "['偹', 12, '回', '攸', 7, '田', 5, 'OLHW', '/', '人']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 665, + "character": "傘", + "raw": "['傘', 12, '吕', '人', 2, '仌十仌', 10, 'OOOJ', '/?', '人']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 666, + "character": "備", + "raw": "['備', 12, '吅', '亻', 2, '萹?', 10, 'OTHB', '/?', '人']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 669, + "character": "傜", + "raw": "['傜', 12, '吅', '亻', 2, '䍃', 10, 'OBOU', '/?', '人']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 696, + "character": "傷", + "raw": "['傷', 13, '吅', '亻', 2, '𥏫*', 11, 'OOAH', '/?', '人']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 700, + "character": "傻", + "raw": "['傻', 13, '吅', '亻', 2, '<夓', 11, 'OHCE', '/?', '人']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 714, + "character": "僉", + "raw": "['僉', 13, '吕', '亼', 3, '兄兄', 10, 'OMRO', '/?', '人']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 755, + "character": "僲", + "raw": "['僲', 15, '吅', '亻', 2, '覀舛', 13, 'OMWQ', '/?', '人']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 782, + "character": "儍", + "raw": "['儍', 15, '吅', '亻', 2, '凵?八夊', 13, 'OUCE', '/?', '人']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 822, + "character": "儵", + "raw": "['儵', 19, '回', '攸', 7, '黑', 12, 'OLOF', '?/', '人']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 847, + "character": "兎", + "raw": "['兎', 7, '+', '丿', 1, '7儿', 6, 'HLAI', '?/?', '儿']" + }, + { + "kind": "ccd_opaque_component", + "message": "rightComponent: concatenated/opaque component cannot be placed unambiguously", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 848, + "character": "兏", + "raw": "['兏', 7, '吕', '厂', 2, '上儿', 5, 'MYMU', '/', '儿']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 861, + "character": "兜", + "raw": "['兜', 11, '吕', '?', 9, '儿', 2, 'HVHU', '?/', '儿']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 865, + "character": "兠", + "raw": "['兠', 12, '吕', '北白', 10, '儿', 2, 'LMMU', '?/', '儿']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 871, + "character": "兦", + "raw": "['兦', 3, '吅', '𠃊', 1, '入', 2, 'OV', '?/', '入']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 875, + "character": "兪", + "raw": "['兪', 9, '吕', '亼', 3, '舟巜', 6, 'OMBV', '/?', '入']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 894, + "character": "兽", + "raw": "['兽', 11, '吕', '八田', 7, '𠮛', 4, 'CWMR', '?/', '八']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 896, + "character": "兿", + "raw": "['兿', 13, '吕', '丷一', 3, '执云', 10, 'TQII', '?/?', '八']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 900, + "character": "冃", + "raw": "['冃', 4, '回', '冂', 2, '二', 2, 'BMM', '/', '冂']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 903, + "character": "円", + "raw": "['円', 4, '回', '冂', 2, '丄', 2, 'BLM', '/', '冂']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 905, + "character": "冈", + "raw": "['冈', 4, '回', '冂', 2, '乂', 2, 'BK', '/', '冂']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 908, + "character": "冋", + "raw": "['冋', 5, '回', '冂', 2, '囗', 3, 'BR', '/', '冂']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 935, + "character": "冦", + "raw": "['冦', 10, '吕', '冖', 2, '元攴', 8, 'BMUE', '/?', '冖']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 994, + "character": "凡", + "raw": "['凡', 3, '回', '几', 2, '丶', 1, 'HNI', '/', '几']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 997, + "character": "凤", + "raw": "['凤', 4, '回', '几', 2, '又', 2, 'HNE', '/', '几']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1000, + "character": "凧", + "raw": "['凧', 5, '回', '几', 2, '巾', 3, 'HNLB', '/', '几']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1001, + "character": "凨", + "raw": "['凨', 6, '回', '几', 2, '云', 4, 'HNMMI', '/', '几']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1002, + "character": "凩", + "raw": "['凩', 6, '回', '几', 2, '木', 4, 'HND', '/', '几']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1003, + "character": "凪", + "raw": "['凪', 6, '回', '几', 2, '止', 4, 'HNYLM', '/', '几']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1005, + "character": "凬", + "raw": "['凬', 7, '回', '几', 2, '𣄼', 5, 'HNMA', '/', '几']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1007, + "character": "凮", + "raw": "['凮', 8, '回', '几', 2, '百', 6, 'HNMA', '/', '几']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1009, + "character": "凰", + "raw": "['凰', 11, '回', '几', 2, '皇', 9, 'HNHAG', '/', '几']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1011, + "character": "凲", + "raw": "['凲', 12, '回', '几', 2, '兼', 10, 'HNTXC', '/', '几']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1015, + "character": "凶", + "raw": "['凶', 4, '回', '凵', 2, '乂', 2, 'UK', '/', '凵']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1016, + "character": "凷", + "raw": "['凷', 5, '回', '凵', 2, '土', 3, 'UG', '/', '凵']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1020, + "character": "击", + "raw": "['击', 5, '回', '凵', 2, '扌', 3, 'QU', '/?', '凵']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1021, + "character": "凼", + "raw": "['凼', 6, '回', '凵', 2, '水', 4, 'UE', '/', '凵']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1070, + "character": "刭", + "raw": "['刭', 7, '吅', '𢀖', 5, '刂', 2, 'NMLN', '?/', '刀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1079, + "character": "制", + "raw": "['制', 8, '吅', '', 6, '刂', 2, 'HBLN', '?/', '刀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1080, + "character": "刷", + "raw": "['刷', 8, '吅', '𡰯', 6, '刂', 2, 'SBLN', '?/', '刀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1103, + "character": "剎", + "raw": "['剎', 9, '吅', '𣏂', 7, '刂', 2, 'KDLN', '?/', '刀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1108, + "character": "剓", + "raw": "['剓', 10, '吕', '𥝢', 8, '刀', 2, 'HHSH', '?/', '刀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1147, + "character": "剺", + "raw": "['剺', 13, '吕', '𠩺', 11, '刀', 2, 'JKMSH', '?/', '刀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1203, + "character": "劲", + "raw": "['劲', 7, '吅', '𢀖', 5, '力', 2, 'NMKS', '?/', '力']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1256, + "character": "勧", + "raw": "['勧', 13, '吅', '', 11, '力', 2, 'OGKS', '?/', '力']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1257, + "character": "勨", + "raw": "['勨', 14, '吅', '', 12, '力', 2, 'NOKS', '?/', '力']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1275, + "character": "勺", + "raw": "['勺', 3, '回', '勹', 2, '丶', 1, 'PI', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1276, + "character": "勻", + "raw": "['勻', 4, '回', '勹', 2, '二', 2, 'PMM', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1277, + "character": "勼", + "raw": "['勼', 4, '回', '勹', 2, '九', 2, 'PKN', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1278, + "character": "勽", + "raw": "['勽', 4, '回', '勹', 2, '人', 2, 'PO', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1279, + "character": "勾", + "raw": "['勾', 4, '回', '勹', 2, '厶', 2, 'PI', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1281, + "character": "匀", + "raw": "['匀', 4, '回', '勹', 2, '冫', 2, 'PIM', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1283, + "character": "匂", + "raw": "['匂', 4, '回', '勹', 2, '匕', 2, 'PP', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1284, + "character": "匃", + "raw": "['匃', 5, '回', '勹', 2, '亾', 3, 'PVO', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1285, + "character": "匄", + "raw": "['匄', 5, '回', '勹', 2, '亡', 3, 'PYV', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1286, + "character": "包", + "raw": "['包', 5, '回', '勹', 2, '巳', 3, 'PRU', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1288, + "character": "匇", + "raw": "['匇', 5, '回', '勹', 2, '夕', 3, 'PNI', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1289, + "character": "匈", + "raw": "['匈', 6, '回', '勹', 2, '凶', 4, 'PUK', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1290, + "character": "匉", + "raw": "['匉', 7, '回', '勹', 2, '平', 5, 'PMFJ', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1291, + "character": "匊", + "raw": "['匊', 8, '回', '勹', 2, '米', 6, 'PFD', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1292, + "character": "匋", + "raw": "['匋', 8, '回', '勹', 2, '缶', 6, 'POJU', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1293, + "character": "匌", + "raw": "['匌', 8, '回', '勹', 2, '合', 6, 'POMR', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1294, + "character": "匍", + "raw": "['匍', 9, '回', '勹', 2, '甫', 7, 'PIJB', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1295, + "character": "匎", + "raw": "['匎', 10, '回', '勹', 2, '奄', 8, 'PKLU', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1297, + "character": "匐", + "raw": "['匐', 11, '回', '勹', 2, '畐', 9, 'PMRW', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1298, + "character": "匑", + "raw": "['匑', 12, '回', '勹', 2, '躬', 10, 'PHHN', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1299, + "character": "匒", + "raw": "['匒', 11, '回', '勹', 2, '荅', 9, 'PTOR', '/', '勹']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1300, + "character": "匓", + "raw": "['匓', 13, '回', '勹', 2, '皀殳', 11, 'PHPE', '/?', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1301, + "character": "匔", + "raw": "['匔', 15, '回', '勹', 2, '躳', 13, 'PHHR', '/', '勹']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1304, + "character": "北", + "raw": "['北', 5, '吅', '爿?', 3, '匕', 2, 'LMP', '?/', '匕']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1308, + "character": "匛", + "raw": "['匛', 5, '回', '匚', 2, '久', 3, 'SNO', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1309, + "character": "匜", + "raw": "['匜', 5, '回', '匚', 2, '也', 3, 'SPD', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1310, + "character": "匝", + "raw": "['匝', 5, '回', '匚', 2, '巾', 3, 'SLB', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1311, + "character": "匞", + "raw": "['匞', 5, '回', '匚', 2, '工', 3, 'SM', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1312, + "character": "匟", + "raw": "['匟', 6, '回', '匚', 2, '亢', 4, 'SYHN', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1313, + "character": "匠", + "raw": "['匠', 6, '回', '匚', 2, '斤', 4, 'SHML', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1314, + "character": "匡", + "raw": "['匡', 6, '回', '匚', 2, '王', 4, 'SMG', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1315, + "character": "匢", + "raw": "['匢', 6, '回', '匚', 2, '勿', 4, 'SPHH', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1316, + "character": "匣", + "raw": "['匣', 7, '回', '匚', 2, '甲', 5, 'SWL', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1317, + "character": "匤", + "raw": "['匤', 7, '回', '匚', 2, '玉', 5, 'SMGI', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1318, + "character": "匥", + "raw": "['匥', 7, '回', '匚', 2, '弁', 5, 'SIT', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1319, + "character": "匦", + "raw": "['匦', 8, '回', '匚', 2, '轨', 6, 'SKQN', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1320, + "character": "匧", + "raw": "['匧', 9, '回', '匚', 2, '夾', 7, 'SKOO', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1321, + "character": "匨", + "raw": "['匨', 9, '回', '匚', 2, '壯', 7, 'SVMG', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1322, + "character": "匩", + "raw": "['匩', 9, '回', '匚', 2, '㞷', 7, 'SUMG', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1323, + "character": "匪", + "raw": "['匪', 10, '回', '匚', 2, '非', 8, 'SLMY', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1324, + "character": "匫", + "raw": "['匫', 10, '回', '匚', 2, '曶', 8, 'SPHA', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1325, + "character": "匬", + "raw": "['匬', 11, '回', '匚', 2, '俞', 9, 'SOMN', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1326, + "character": "匭", + "raw": "['匭', 11, '回', '匚', 2, '軌', 9, 'SJJN', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1327, + "character": "匮", + "raw": "['匮', 11, '回', '匚', 2, '贵', 9, 'SLMO', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1328, + "character": "匯", + "raw": "['匯', 13, '回', '匚', 2, '淮', 11, 'SEOG', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1329, + "character": "匰", + "raw": "['匰', 14, '回', '匚', 2, '單', 12, 'SRRJ', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1330, + "character": "匱", + "raw": "['匱', 14, '回', '匚', 2, '貴', 12, 'SLMC', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1331, + "character": "匲", + "raw": "['匲', 14, '回', '匚', 2, '𡙗', 12, 'SKRR', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1332, + "character": "匳", + "raw": "['匳', 15, '回', '匚', 2, '僉', 13, 'SOMO', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1333, + "character": "匴", + "raw": "['匴', 16, '回', '匚', 2, '算', 14, 'SHBT', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1334, + "character": "匵", + "raw": "['匵', 17, '回', '匚', 2, '賣', 15, 'SGWC', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1335, + "character": "匶", + "raw": "['匶', 19, '回', '匚', 2, '舊', 17, 'STOX', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1336, + "character": "匷", + "raw": "['匷', 20, '回', '匚', 2, '瞿', 18, 'SBUG', '/', '匚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1338, + "character": "匹", + "raw": "['匹', 4, '回', '匚', 2, '儿', 2, 'SC', '/', '匸']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1339, + "character": "区", + "raw": "['区', 4, '回', '匚', 2, '乂', 2, 'SK', '/', '匸']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1340, + "character": "医", + "raw": "['医', 7, '回', '匚', 2, '矢', 5, 'SOK', '/', '匸']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1341, + "character": "匼", + "raw": "['匼', 8, '回', '匚', 2, '合', 6, 'SOMR', '/', '匸']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1342, + "character": "匽", + "raw": "['匽', 9, '回', '匚', 2, '妟', 7, 'SAV', '/', '匸']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1343, + "character": "匾", + "raw": "['匾', 11, '回', '匚', 2, '扁', 9, 'SISB', '/', '匸']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1344, + "character": "匿", + "raw": "['匿', 10, '回', '匚', 2, '若', 8, 'STKR', '/', '匸']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1345, + "character": "區", + "raw": "['區', 11, '回', '匚', 2, '品', 9, 'SRRR', '/', '匸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1363, + "character": "卒", + "raw": "['卒', 8, '吕', '亠从', 6, '十', 2, 'YOOJ', '?/', '十']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1366, + "character": "单", + "raw": "['单', 8, '吕', '八田', 6, '十', 2, 'CWJ', '?/?', '十']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1368, + "character": "南", + "raw": "['南', 9, '吕', '十冂', 4, '丷干', 5, 'JBTJ', '?/?', '十']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1369, + "character": "単", + "raw": "['単', 9, '+', '畄', 8, '十', 2, 'FWJ', '?/?', '十']" + }, + { + "kind": "ccd_unsupported_row", + "message": "rightComponent: uncertain component marker", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1382, + "character": "卥", + "raw": "['卥', 8, '吕', '卜', 2, '囪*', 6, 'YWKK', '/', '卜']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1391, + "character": "卮", + "raw": "['卮', 5, '吕', '𠂋', 3, '㔾', 2, 'HMSU', '?/', '卩']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1392, + "character": "卯", + "raw": "['卯', 5, '吅', '𠂎', 3, '卩', 2, 'HHSL', '?/', '卩']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1393, + "character": "印", + "raw": "['印', 6, '吅', '厂二', 4, '卩', 2, 'HPSL', '?/', '卩']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1449, + "character": "厨", + "raw": "['厨', 12, '吕', '厂', 2, '豆寸', 10, 'MMTI', '/?', '厂']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1456, + "character": "厯", + "raw": "['厯', 13, '吕', '𠩵', 10, '?', 3, 'MDDI', '/?', '厂']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1460, + "character": "厳", + "raw": "['厳', 17, '吕', '小厂', 5, '敢', 12, 'FMMJK', '?/', '厂']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1464, + "character": "厷", + "raw": "['厷', 4, '吕', '𠂇', 2, '厶', 2, 'KI', '?/', '厶']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1474, + "character": "叁", + "raw": "['叁', 8, '吕', '厶大', 5, '三', 3, 'IKMMM', '?/', '厶']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1475, + "character": "参", + "raw": "['参', 8, '吕', '厶', 2, '人彡', 6, 'IKHHH', '/?', '厶']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1476, + "character": "參", + "raw": "['參', 11, '吕', '𠫯', 8, '彡', 3, 'IIIH', '?/', '厶']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1486, + "character": "反", + "raw": "['反', 4, '吕', '⺁', 2, '又', 2, 'HE', '?/', '又']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1488, + "character": "叏", + "raw": "['叏', 5, '吕', '?', 3, '又', 2, 'DJE', '?/', '又']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1503, + "character": "叞", + "raw": "['叞', 10, '吅', '尸示', 8, '又', 2, 'SFE', '?/', '又']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1507, + "character": "叢", + "raw": "['叢', 18, '吕', '菐*', 10, '取', 8, 'TCTE', '?/', '又']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1510, + "character": "句", + "raw": "['句', 5, '回', '勹', 2, '口', 3, 'PR', '/', '口']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1529, + "character": "司", + "raw": "['司', 5, '吕', '𠃌', 1, '𠮛', 4, 'SMR', '?/', '口']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1549, + "character": "同", + "raw": "['同', 6, '回', '冂', 2, '𠮛', 4, 'BMR', '/', '口']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1551, + "character": "后", + "raw": "['后', 6, '吕', '⺁', 2, '𠮛', 4, 'HMR', '?/', '口']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1552, + "character": "吏", + "raw": "['吏', 6, '+', '丈', 3, '口', 3, 'JLK', '?/', '口']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1603, + "character": "呂", + "raw": "['呂', 7, '吕', '口', 3, '丶口', 4, 'RHR', '/?', '口']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "ambiguous CCD '*' composition cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1610, + "character": "呉", + "raw": "['呉', 7, '*', '吳', 7, None, 0, 'RVNC', '/', '口']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1641, + "character": "周", + "raw": "['周', 8, '回', '冂', 2, '吉', 6, 'BGR', '/', '口']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1721, + "character": "咸", + "raw": "['咸', 9, '回', '戌', 6, '口', 3, 'IHMR', '/', '口']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1729, + "character": "哀", + "raw": "['哀', 9, '回', '衣', 6, '口', 3, 'YRHV', '/', '口']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1738, + "character": "哉", + "raw": "['哉', 9, '回', '𢦏', 6, '口', 3, 'JIR', '?/', '口']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1741, + "character": "哌", + "raw": "['哌', 9, '吅', '口', 3, '辰?', 6, 'RHHV', '/?', '口']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1809, + "character": "唐", + "raw": "['唐', 10, '吕', '广肀', 7, '口', 3, 'ILR', '?/', '口']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1817, + "character": "唘", + "raw": "['唘', 10, '吕', '石又', 7, '口', 3, 'MER', '?/', '口']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1827, + "character": "唢", + "raw": "['唢', 10, '吅', '口', 3, '?贝', 7, 'RFBO', '/?', '口']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1864, + "character": "啇", + "raw": "['啇', 11, '吕', '六', 4, '冂古', 7, 'YCBR', '*/?', '口']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1872, + "character": "問", + "raw": "['問', 11, '回', '門', 8, '口', 3, 'ANR', '/', '口']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1876, + "character": "啓", + "raw": "['啓', 11, '吕', '𢼄', 8, '口', 3, 'HKR', '?/', '口']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1877, + "character": "啔", + "raw": "['啔', 11, '吕', '戶戈', 8, '口', 3, 'HIR', '?/', '口']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1883, + "character": "啚", + "raw": "['啚', 11, '吕', '口十', 5, '回', 6, 'RYWR', '?/', '口']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1901, + "character": "啬", + "raw": "['啬', 11, '吕', '亠?', 5, '回', 6, 'GCWR', '?/', '口']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1925, + "character": "善", + "raw": "['善', 12, '吕', '羊', 6, '业口', 6, 'TTR', '/?', '口']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1967, + "character": "單", + "raw": "['單', 12, '咒', '口', 3, '甲一', 6, 'RRWJ', '/?', '口']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 1985, + "character": "嗀", + "raw": "['嗀', 13, '回', '𣪊', 10, '口', 3, 'GRHNE', '/', '口']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2020, + "character": "嗣", + "raw": "['嗣', 13, '吅', '口冊', 8, '司', 5, 'RBSMR', '?/', '口']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2211, + "character": "嚢", + "raw": "['嚢', 19, '回', '衣', 6, '', 13, 'JCTTV', '?/?', '口']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2212, + "character": "嚣", + "raw": "['嚣', 18, '回', '㗊', 12, '页', 6, 'RRMOR', '/', '口']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2228, + "character": "嚳", + "raw": "['嚳', 20, '冖', '𦥯', 11, '告', 7, 'HBHGR', '?/', '口']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2235, + "character": "嚺", + "raw": "['嚺', 17, '吅', '口', 3, '', 14, 'RYWO', '/?', '口']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2265, + "character": "囘", + "raw": "['囘', 5, '回', '冂', 2, '巳', 3, 'BRU', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2267, + "character": "囚", + "raw": "['囚', 5, '回', '囗', 3, '人', 2, 'WO', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2268, + "character": "四", + "raw": "['四', 5, '回', '囗', 3, '儿', 2, 'WC', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2269, + "character": "囜", + "raw": "['囜', 5, '回', '囗', 3, '厶', 2, 'WI', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2270, + "character": "囝", + "raw": "['囝', 6, '回', '囗', 3, '子', 3, 'WND', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2271, + "character": "回", + "raw": "['回', 6, '回', '囗', 3, '口', 3, 'WR', '/', '囗']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2272, + "character": "囟", + "raw": "['囟', 6, '回', '丶囗', 4, '乄', 2, 'HWK', '?/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2273, + "character": "因", + "raw": "['因', 6, '回', '囗', 3, '大', 3, 'WK', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2274, + "character": "囡", + "raw": "['囡', 6, '回', '囗', 3, '女', 3, 'WV', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2275, + "character": "团", + "raw": "['团', 6, '回', '囗', 3, '才', 3, 'WDH', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2276, + "character": "団", + "raw": "['団', 6, '回', '囗', 3, '寸', 3, 'WDI', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2277, + "character": "囤", + "raw": "['囤', 7, '回', '囗', 3, '屯', 4, 'WPU', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2278, + "character": "囥", + "raw": "['囥', 7, '回', '囗', 3, '亢', 4, 'WYHN', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2279, + "character": "囦", + "raw": "['囦', 7, '回', '囗', 3, '水', 4, 'WE', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2281, + "character": "囨", + "raw": "['囨', 7, '回', '囗', 3, '不', 4, 'WMF', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2282, + "character": "囩", + "raw": "['囩', 7, '回', '囗', 3, '云', 4, 'WMMI', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2284, + "character": "囫", + "raw": "['囫', 7, '回', '囗', 3, '勿', 4, 'WPHH', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "ambiguous CCD '*' composition cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2285, + "character": "囬", + "raw": "['囬', 7, '*', '回', 6, None, 0, 'WSL', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2286, + "character": "园", + "raw": "['园', 7, '回', '囗', 3, '元', 4, 'WMMU', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2287, + "character": "囮", + "raw": "['囮', 7, '回', '囗', 3, '化', 4, 'WOP', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2288, + "character": "囯", + "raw": "['囯', 7, '回', '囗', 3, '王', 4, 'WMG', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2289, + "character": "困", + "raw": "['困', 7, '回', '囗', 3, '木', 4, 'WD', '/', '囗']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2290, + "character": "囱", + "raw": "['囱', 7, '回', '丶囗', 4, '夕', 3, 'HWNI', '?/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2291, + "character": "囲", + "raw": "['囲', 7, '回', '囗', 3, '井', 4, 'WTT', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2292, + "character": "図", + "raw": "['図', 7, '回', '囗', 3, '斗', 4, 'WYK', '/*', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2293, + "character": "围", + "raw": "['围', 7, '回', '囗', 3, '韦', 4, 'WQS', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2294, + "character": "囵", + "raw": "['囵', 7, '回', '囗', 3, '仑', 4, 'WOP', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2295, + "character": "囶", + "raw": "['囶', 8, '回', '囗', 3, '𡉀', 5, 'WCG', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2296, + "character": "囷", + "raw": "['囷', 8, '回', '囗', 3, '禾', 5, 'WHD', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2297, + "character": "囸", + "raw": "['囸', 8, '回', '囗', 3, '正', 5, 'WMYM', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2298, + "character": "囹", + "raw": "['囹', 8, '回', '囗', 3, '令', 5, 'WOII', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2299, + "character": "固", + "raw": "['固', 8, '回', '囗', 3, '古', 5, 'WJR', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2300, + "character": "囻", + "raw": "['囻', 8, '回', '囗', 3, '民', 5, 'WRVP', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2301, + "character": "囼", + "raw": "['囼', 8, '回', '囗', 3, '台', 5, 'WIR', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2302, + "character": "国", + "raw": "['国', 8, '回', '囗', 3, '玉', 5, 'WMGI', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2303, + "character": "图", + "raw": "['图', 8, '回', '囗', 3, '冬', 5, 'WHEY', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2304, + "character": "囿", + "raw": "['囿', 9, '回', '囗', 3, '有', 6, 'WKB', '/', '囗']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2305, + "character": "圀", + "raw": "['圀', 9, '回', '囗', 3, '儿方', 6, 'WCYS', '/?', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2306, + "character": "圁", + "raw": "['圁', 10, '回', '囗', 3, '言', 7, 'WYMR', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2307, + "character": "圂", + "raw": "['圂', 10, '回', '囗', 3, '豕', 7, 'WMSO', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2308, + "character": "圃", + "raw": "['圃', 10, '回', '囗', 3, '甫', 7, 'WIJB', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2309, + "character": "圄", + "raw": "['圄', 10, '回', '囗', 3, '吾', 7, 'WMMR', '/', '囗']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2310, + "character": "圅", + "raw": "['圅', 10, '回', '龴', 5, '丷干', 5, 'NIWJ', '/?', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2311, + "character": "圆", + "raw": "['圆', 10, '回', '囗', 3, '员', 7, 'WRBO', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2312, + "character": "圇", + "raw": "['圇', 11, '回', '囗', 3, '侖', 8, 'WOMB', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2313, + "character": "圈", + "raw": "['圈', 11, '回', '囗', 3, '卷', 8, 'WFQU', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2314, + "character": "圉", + "raw": "['圉', 11, '回', '囗', 3, '幸', 8, 'WGTJ', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2315, + "character": "圊", + "raw": "['圊', 11, '回', '囗', 3, '青', 8, 'WQMB', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2316, + "character": "國", + "raw": "['國', 11, '回', '囗', 3, '或', 8, 'WIRM', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2317, + "character": "圌", + "raw": "['圌', 12, '回', '囗', 3, '耑', 9, 'WUMB', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2318, + "character": "圍", + "raw": "['圍', 12, '回', '囗', 3, '韋', 9, 'WDMQ', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2319, + "character": "圎", + "raw": "['圎', 12, '回', '囗', 3, '貟', 9, 'WIBC', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2320, + "character": "圏", + "raw": "['圏', 12, '回', '囗', 3, '巻', 9, 'WFQU', '/', '囗']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2321, + "character": "圐", + "raw": "['圐', 12, '回', '囗', 3, '罒方', 9, 'WWLS', '/?', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2322, + "character": "圑", + "raw": "['圑', 13, '回', '囗', 3, '尃', 10, 'WIBI', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2323, + "character": "園", + "raw": "['園', 13, '回', '囗', 3, '袁', 10, 'WGRV', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2324, + "character": "圓", + "raw": "['圓', 13, '回', '囗', 3, '員', 10, 'WRBC', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2325, + "character": "圔", + "raw": "['圔', 13, '回', '囗', 3, '盍', 10, 'WGIT', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2326, + "character": "圕", + "raw": "['圕', 13, '回', '囗', 3, '書', 10, 'WLGA', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2327, + "character": "圖", + "raw": "['圖', 14, '回', '囗', 3, '啚', 11, 'WRJW', '/', '囗']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2328, + "character": "圗", + "raw": "['圗', 14, '回', '囗', 3, '厶十囬', 11, 'WIJW', '/?', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2329, + "character": "團", + "raw": "['團', 14, '回', '囗', 3, '專', 11, 'WJII', '/', '囗']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2330, + "character": "圙", + "raw": "['圙', 14, '回', '囗', 3, '', 11, 'WCMW', '/?', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2331, + "character": "圚", + "raw": "['圚', 15, '回', '囗', 3, '貴', 12, 'WLMC', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2332, + "character": "圛", + "raw": "['圛', 16, '回', '囗', 3, '睪', 13, 'WWLJ', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2333, + "character": "圜", + "raw": "['圜', 16, '回', '囗', 3, '睘', 13, 'WWLV', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2334, + "character": "圝", + "raw": "['圝', 22, '回', '囗', 3, '䜌', 19, 'WVFF', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2335, + "character": "圞", + "raw": "['圞', 26, '回', '囗', 3, '欒', 23, 'WVFD', '/', '囗']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2394, + "character": "坙", + "raw": "['坙', 7, '吕', '一巛', 4, '土', 3, 'MVVG', '?/', '土']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "ambiguous CCD '*' composition cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2497, + "character": "埀", + "raw": "['埀', 10, '*', '垂', 8, None, 0, 'HJLG', '/', '土']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2514, + "character": "埑", + "raw": "['埑', 10, '吕', '折', 7, '土', 3, 'QLG', '?/', '土']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2585, + "character": "堘", + "raw": "['堘', 12, '吅', '土', 3, '关土', 9, 'GFQG', '/?', '土']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2615, + "character": "堶", + "raw": "['堶', 12, '吅', '土', 3, '𤯝', 9, 'GKMB', '/?', '土']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2626, + "character": "塁", + "raw": "['塁', 12, '吕', '界?', 9, '土', 3, 'WIOG', '?/', '土']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2629, + "character": "塄", + "raw": "['塄', 12, '吅', '土', 3, '罒方', 9, 'GWLS', '/?', '土']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2638, + "character": "塍", + "raw": "['塍', 13, '吅', '月', 4, '关土', 9, 'BFQG', '/?', '土']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2675, + "character": "塲", + "raw": "['塲', 14, '吅', '土', 3, '𥏫*', 11, 'GOAH', '/?', '土']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2759, + "character": "壆", + "raw": "['壆', 16, '冖', '𦥯', 11, '土', 3, 'HBG', '?/', '土']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2763, + "character": "壊", + "raw": "['壊', 16, '吅', '土', 3, '十皿衣', 13, 'GJWV', '/?', '土']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "ambiguous CCD '*' composition cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2808, + "character": "壷", + "raw": "['壷', 11, '*', '壺', 12, None, 0, 'GBLM', '/', '士']" + }, + { + "kind": "ccd_unsupported_row", + "message": "rightComponent: uncertain component marker", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2811, + "character": "壺", + "raw": "['壺', 12, '冖', '土', 3, '亞*', 7, 'GBLM', '/', '士']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2814, + "character": "壽", + "raw": "['壽', 14, '吕', '士乙工', 8, '吋', 6, 'GNMI', '?/', '士']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2817, + "character": "夀", + "raw": "['夀', 15, '吕', '', 12, '寸', 3, 'QMRDI', '?/', '士']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2830, + "character": "复", + "raw": "['复', 9, '吕', '𠂉', 2, '', 7, 'OAHE', '?/?', '夊']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2832, + "character": "夏", + "raw": "['夏', 10, '吕', '𦣻', 7, '夂', 3, 'MUHE', '?/', '夊']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2833, + "character": "夐", + "raw": "['夐', 14, '吕', '⺈内', 6, '𡕥', 8, 'NBBUE', '?/', '夊']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2834, + "character": "夑", + "raw": "['夑', 18, '吕', '火言火', 15, '夂', 3, 'FFHE', '?/', '夊']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2835, + "character": "夒", + "raw": "['夒', 19, '吕', '止頁*巳', 16, '夂', 3, 'MCHE', '?/', '夊']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2836, + "character": "夓", + "raw": "['夓', 18, '吕', '⺽頁', 15, '夂', 3, 'HCHE', '?/', '夊']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2842, + "character": "夙", + "raw": "['夙', 6, '回', '几', 2, '歹', 4, 'HNMNI', '/', '夕']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2845, + "character": "夜", + "raw": "['夜', 8, '吕', '亠', 2, '亻夂丶', 6, 'YONK', '/?', '夕']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2851, + "character": "夢", + "raw": "['夢', 11, '冖', '苜*', 8, '夕', 3, 'TWLN', '?/', '夕']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2852, + "character": "夣", + "raw": "['夣', 14, '冖', '', 9, '夕', 3, 'YIWN', '?/', '夕']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2897, + "character": "奐", + "raw": "['奐', 9, '吕', '负*', 6, '大', 3, 'NBK', '?/', '大']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2903, + "character": "奖", + "raw": "['奖', 9, '吕', '丬夕', 6, '大', 3, 'LNK', '?/', '大']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2914, + "character": "奡", + "raw": "['奡', 12, '吕', '𦣻', 7, '夰', 5, 'MUKLL', '?/', '大']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2929, + "character": "奰", + "raw": "['奰', 18, '吕', '𦋹', 15, '大', 3, 'WLWWK', '?/', '大']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 2972, + "character": "妛", + "raw": "['妛', 7, '吕', '㞢', 4, '女', 3, 'UMV', '?/', '女']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3004, + "character": "妻", + "raw": "['妻', 8, '吕', '一肀', 5, '女', 3, 'JLV', '?/', '女']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3048, + "character": "姧", + "raw": "['姧', 9, '吅', '㚣', 6, '干', 3, 'VVMJ', '?/', '女']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3074, + "character": "威", + "raw": "['威', 9, '回', '戌', 6, '女', 3, 'IHMV', '/', '女']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3138, + "character": "婁", + "raw": "['婁', 11, '吕', '', 8, '女', 3, 'LLV', '?/', '女']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3254, + "character": "媵", + "raw": "['媵', 13, '吅', '月', 4, '', 9, 'BFQV', '/?', '女']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3284, + "character": "嫓", + "raw": "['嫓', 13, '吅', '女', 3, '', 10, 'VHBP', '/?', '女']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3339, + "character": "嬊", + "raw": "['嬊', 15, '吕', '廿北口', 12, '女', 3, 'TLPV', '?/', '女']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3342, + "character": "嬍", + "raw": "['嬍', 15, '吅', '女', 3, '', 12, 'VUGK', '/?', '女']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3343, + "character": "嬎", + "raw": "['嬎', 15, '吅', '女', 3, '免生', 12, 'VNUM', '/?', '女']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3349, + "character": "嬔", + "raw": "['嬔', 16, '吅', '女', 3, '兔生', 13, 'VNUM', '/?', '女']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3381, + "character": "嬴", + "raw": "['嬴', 16, '回', '𣎆', 13, '女', 3, 'YNV', '/', '女']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3417, + "character": "存", + "raw": "['存', 6, '吕', '一亻', 3, '子', 3, 'KLND', '?/', '子']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3447, + "character": "孶", + "raw": "['孶', 12, '吕', '茲', 9, '子', 3, 'YIND', '?/', '子']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3448, + "character": "孷", + "raw": "['孷', 13, '吕', '𠩺', 10, '子', 3, 'JKMND', '?/', '子']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3473, + "character": "宐", + "raw": "['宐', 7, '吕', '宀', 3, '勺?一', 4, 'JNIM', '/?', '宀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3508, + "character": "害", + "raw": "['害', 10, '吕', '宀', 3, ' 丯口', 7, 'JQMR', '/?', '宀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3516, + "character": "宻", + "raw": "['宻', 10, '吕', '宀', 3, '又?山', 7, 'JECU', '/?', '宀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3517, + "character": "宼", + "raw": "['宼', 10, '吕', '宀', 3, '元女', 7, 'JMUV', '/?', '宀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3526, + "character": "寅", + "raw": "['寅', 11, '吕', '宀', 3, '一由八', 8, 'JMLC', '/?', '宀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3528, + "character": "寇", + "raw": "['寇', 11, '吕', '宀', 3, '元攴', 8, 'JMUE', '/?', '宀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3534, + "character": "寍", + "raw": "['寍', 12, '吕', '宀心', 7, '皿', 5, 'JPBT', '?/', '宀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3535, + "character": "寎", + "raw": "['寎', 12, '吕', '宀', 3, '爿丙', 9, 'JVMB', '/?', '宀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3537, + "character": "寐", + "raw": "['寐', 12, '吕', '宀', 3, '爿未', 9, 'JVMD', '/?', '宀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3542, + "character": "寕", + "raw": "['寕', 12, '吕', '宀', 3, '', 9, 'JMWN', '/?', '宀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3547, + "character": "寚", + "raw": "['寚', 13, '吕', '宀', 3, '王缶', 10, 'JMGU', '/?', '宀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3549, + "character": "寜", + "raw": "['寜', 13, '吕', '寍', 12, '亅', 1, 'JPBN', '/?', '宀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3550, + "character": "寝", + "raw": "['寝', 13, '吕', '宀', 3, '丬彐冖又', 10, 'JLME', '/?', '宀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3554, + "character": "寡", + "raw": "['寡', 14, '吕', '宀', 3, '丆且分', 11, 'JMCH', '/?', '宀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3555, + "character": "寢", + "raw": "['寢', 14, '吕', '宀', 3, '爿?冖又', 11, 'JVME', '/?', '宀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3556, + "character": "寣", + "raw": "['寣', 14, '吕', '宀', 3, '爿言', 11, 'JVMR', '/?', '宀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3561, + "character": "寨", + "raw": "['寨', 14, '吕', '𡨄', 10, '朩', 4, 'JTCD', '?/', '宀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3570, + "character": "寱", + "raw": "['寱', 17, '吕', '宀', 3, '爿臬', 14, 'JVMD', '/?', '宀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3572, + "character": "寳", + "raw": "['寳', 19, '吕', '宀', 3, '王尓貝', 16, 'JMFC', '/?', '宀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3575, + "character": "寶", + "raw": "['寶', 20, '吕', '𡩧', 13, '貝', 7, 'JMUC', '?/', '宀']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3591, + "character": "将", + "raw": "['将', 10, '吅', '丬', 3, '夕寸', 7, 'LMNII', '/?', '寸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3592, + "character": "將", + "raw": "['將', 11, '吅', '爿', 4, '月寸', 7, 'VMBDI', '/?', '寸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3594, + "character": "尉", + "raw": "['尉', 11, '吅', '尸示', 8, '寸', 3, 'SFDI', '?/', '寸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3596, + "character": "尋", + "raw": "['尋', 12, '吕', '彐工口', 9, '寸', 3, 'SMMRI', '?/', '寸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3604, + "character": "尓", + "raw": "['尓', 5, '吕', '𠂉', 2, '小', 3, 'OF', '?/', '小']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3625, + "character": "尧", + "raw": "['尧', 6, '吕', '丈?', 3, '兀', 3, 'JPMU', '?/', '尢']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3643, + "character": "尹", + "raw": "['尹', 4, '+', '彐', 3, '丿', 1, 'SK', '?/', '尸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3650, + "character": "局", + "raw": "['局', 7, '吕', '尸', 3, '乛口', 4, 'SSR', '/?', '尸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3666, + "character": "屐", + "raw": "['屐', 10, '吕', '尸', 3, '彳支', 7, 'SHOE', '/?', '尸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3671, + "character": "展", + "raw": "['展', 10, '吕', '尸', 3, '', 7, 'STV', '/?', '尸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3678, + "character": "屜", + "raw": "['屜', 11, '吕', '尸', 3, '彳世', 8, 'SHOT', '/?', '尸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3688, + "character": "屦", + "raw": "['屦', 15, '吕', '尸', 3, '彳娄', 12, 'SHOV', '/?', '尸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3689, + "character": "屧", + "raw": "['屧', 15, '吕', '尸', 3, '彳枼', 12, 'SHOD', '/?', '尸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3690, + "character": "屨", + "raw": "['屨', 17, '吕', '尸', 3, '彳婁', 14, 'SHOV', '/?', '尸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3693, + "character": "屫", + "raw": "['屫', 19, '吕', '尸', 3, '爿喬', 16, 'SVMB', '/?', '尸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3694, + "character": "屬", + "raw": "['屬', 21, '吕', '尸', 3, '', 18, 'SEWI', '/?', '尸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3747, + "character": "岡", + "raw": "['岡', 8, '回', '冂', 2, '屰', 6, 'BTU', '/?', '山']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3788, + "character": "峊", + "raw": "['峊', 9, '吕', '𠂤', 6, '山', 3, 'HRU', '?/', '山']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3804, + "character": "峚", + "raw": "['峚', 9, '吕', '山', 3, '大土', 6, 'UKG', '/?', '山']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3827, + "character": "峱", + "raw": "['峱', 10, '吅', '犭', 3, '丑山', 7, 'KHNGU', '/?', '山']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3832, + "character": "島", + "raw": "['島', 10, '吕', '鳥*', 7, '山', 3, 'HAYU', '?/', '山']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "ambiguous CCD '*' composition cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3912, + "character": "嵆", + "raw": "['嵆', 12, '*', '嵇', 12, None, 0, 'HUU', '/', '山']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3913, + "character": "嵇", + "raw": "['嵇', 12, '吅', '禾', 5, '犬山', 7, 'HDIUU', '/?', '山']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 3929, + "character": "嵗", + "raw": "['嵗', 12, '吕', '山', 3, '戊少', 9, 'UIHH', '/?', '山']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4010, + "character": "嶨", + "raw": "['嶨', 16, '冖', '𦥯', 11, '山', 3, 'HBU', '?/', '山']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4015, + "character": "嶭", + "raw": "['嶭', 16, '吕', '山', 3, '', 13, 'UHRJ', '/?', '山']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4021, + "character": "嶳", + "raw": "['嶳', 16, '吕', '山豕', 10, '圭*', 6, 'UMOG', '?/?', '山']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4032, + "character": "嶾", + "raw": "['嶾', 17, '吅', '山', 3, '', 14, 'UBMP', '/?', '山']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4055, + "character": "巕", + "raw": "['巕', 22, '吅', '山', 3, '', 19, 'UTHV', '/?', '山']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4066, + "character": "巠", + "raw": "['巠', 7, '吕', '一巛', 4, '工', 3, 'MVVM', '?/', '巛']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4070, + "character": "巤", + "raw": "['巤', 15, '吕', '巛', 3, '鼠?', 12, 'VVWKV', '/?', '巛']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4072, + "character": "左", + "raw": "['左', 5, '吕', '𠂇', 2, '工', 3, 'KM', '?/', '工']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4078, + "character": "巬", + "raw": "['巬', 9, '吕', '工几', 5, '夫', 4, 'MNQO', '?/', '工']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4081, + "character": "巯", + "raw": "['巯', 12, '吅', '𢀖', 5, '㐬', 7, 'NMYIU', '?/', '工']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4087, + "character": "巵", + "raw": "['巵', 7, '吕', '𠂋', 3, '巴', 4, 'HMAU', '?/', '己']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4092, + "character": "巺", + "raw": "['巺', 9, '咒', '巳', 3, '兀?', 3, 'RUMC', '/?', '己']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4101, + "character": "布", + "raw": "['布', 5, '吕', '𠂇', 2, '巾', 3, 'KLB', '?/', '巾']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4135, + "character": "帥", + "raw": "['帥', 9, '吅', '𠂤', 6, '巾', 3, 'HRLB', '?/', '巾']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4141, + "character": "師", + "raw": "['師', 10, '吅', '𠂤', 6, '帀', 4, 'HRMLB', '?/', '巾']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4179, + "character": "幑", + "raw": "['幑', 14, '回', '微', 10, '帀', 4, 'HOUBK', '*/', '巾']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4217, + "character": "幷", + "raw": "['幷', 8, '吅', '丶干', 4, None, 4, 'YJYJ', '?/', '干']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4219, + "character": "幹", + "raw": "['幹', 13, '回', '倝', 10, '干', 3, 'JJOMJ', '/', '干']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4246, + "character": "应", + "raw": "['应', 7, '吕', '广', 3, '小一', 4, 'IFM', '/?', '广']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4252, + "character": "庚", + "raw": "['庚', 8, '吕', '广', 3, '彐+人', 5, 'ILO', '/?', '广']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4264, + "character": "度", + "raw": "['度', 9, '吕', '广廿', 7, '又', 2, 'ITE', '?/', '广']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4282, + "character": "庸", + "raw": "['庸', 11, '吕', '广', 3, '肀用', 8, 'ILB', '/?', '广']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4283, + "character": "庹", + "raw": "['庹', 11, '吕', '广艹', 7, '尺', 4, 'ITSO', '?/', '广']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4294, + "character": "廄", + "raw": "['廄', 14, '吕', '广', 3, '艮殳', 11, 'IAIE', '/?', '广']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4417, + "character": "弿", + "raw": "['弿', 13, '吕', '宀7', 10, '弓', 3, 'JTCN', '?/', '弓']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4418, + "character": "彀", + "raw": "['彀', 13, '回', '𣪊', 10, '弓', 3, 'GNHNE', '/', '弓']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4442, + "character": "彘", + "raw": "['彘', 12, '吕', '彑', 3, '匕矢匕', 9, 'VMPOP', '/?', '彐']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4445, + "character": "彛", + "raw": "['彛', 16, '吕', '彐', 3, '粉廾', 13, 'NMFHT', '/?', '彐']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4446, + "character": "彜", + "raw": "['彜', 16, '吕', '彑', 3, '粉廾', 13, 'VMFHT', '/?', '彐']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4447, + "character": "彝", + "raw": "['彝', 18, '吕', '彑', 3, '', 15, 'VMFFT', '/?', '彐']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4448, + "character": "彞", + "raw": "['彞', 18, '吕', '彐', 3, '', 15, 'NMFFT', '/?', '彐']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4457, + "character": "彧", + "raw": "['彧', 10, '+', '', 4, '𢦑', 6, 'IKRM', '?/', '彡']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4494, + "character": "後", + "raw": "['後', 9, '吅', '彳', 3, '幺夂', 6, 'HOVIE', '/?', '彳']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4501, + "character": "従", + "raw": "['従', 10, '吅', '彳', 3, '丷疋', 7, 'HOTYO', '/?', '彳']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4512, + "character": "從", + "raw": "['從', 11, '吅', '彳', 3, '从止', 8, 'HOOOO', '/?', '彳']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4530, + "character": "徰", + "raw": "['徰', 13, '吅', '彳', 3, '正正', 10, 'HOMMM', '/?', '彳']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4533, + "character": "徳", + "raw": "['徳', 14, '吅', '彳', 3, '', 11, 'HOJWP', '/?', '彳']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4534, + "character": "徴", + "raw": "['徴', 14, '回', '微', 10, '王', 4, 'HOUGK', '*/', '彳']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4535, + "character": "徵", + "raw": "['徵', 15, '回', '微', 11, '王', 4, 'HOUGK', '/', '彳']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4539, + "character": "徹", + "raw": "['徹', 15, '回', '彳', 7, '育攵', 8, 'HOYBK', '/?', '彳']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4543, + "character": "徽", + "raw": "['徽', 16, '回', '微', 10, '糸', 6, 'HOUFK', '*/', '彳']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4544, + "character": "徾", + "raw": "['徾', 17, '回', '微', 10, '言', 7, 'HOURK', '*/', '彳']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4547, + "character": "忁", + "raw": "['忁', 20, '吅', '彳', 3, '', 17, 'HOAUE', '/?', '彳']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4699, + "character": "恙", + "raw": "['恙', 10, '吕', '𦍌', 6, '心', 4, 'TGP', '?/', '心']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4779, + "character": "悩", + "raw": "['悩', 10, '吅', '忄', 3, '川凶', 7, 'PFUK', '/?', '心']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4792, + "character": "悶", + "raw": "['悶', 12, '回', '門', 8, '心', 4, 'ANP', '/', '心']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4846, + "character": "惬", + "raw": "['惬', 11, '吅', '忄', 3, '匚夹', 8, 'PSKT', '/?', '心']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4901, + "character": "愣", + "raw": "['愣', 12, '吅', '忄', 3, '罒方', 9, 'PWLS', '/?', '心']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4975, + "character": "慭", + "raw": "['慭', 16, '吕', '釆?犬', 12, '心', 4, 'DKP', '?/', '心']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4977, + "character": "慯", + "raw": "['慯', 14, '吅', '忄', 3, '𥏫*', 11, 'POAH', '/?', '心']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4984, + "character": "慶", + "raw": "['慶', 15, '吕', '广?', 8, '乛心夂', 7, 'IXE', '?/?', '心']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 4993, + "character": "慿", + "raw": "['慿', 14, '吕', '𠗦', 10, '心', 4, 'ITP', '?/', '心']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5017, + "character": "憗", + "raw": "['憗', 16, '吕', '𢽟', 12, '心', 4, 'DKP', '?/', '心']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5035, + "character": "憩", + "raw": "['憩', 16, '吕', '舌自', 12, '心', 4, 'HUP', '?/', '心']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5044, + "character": "憲", + "raw": "['憲', 15, '吕', '𡩜', 11, '心', 4, 'JQMP', '?/', '心']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5067, + "character": "應", + "raw": "['應', 17, '吕', '䧹', 13, '心', 4, 'IOGP', '/?', '心']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5074, + "character": "懐", + "raw": "['懐', 16, '吅', '忄', 3, '', 13, 'PYWV', '/?', '心']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5084, + "character": "懚", + "raw": "['懚', 17, '吅', '忄', 3, '', 14, 'PBMP', '/?', '心']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5130, + "character": "戈", + "raw": "['戈', 4, '+', '弋', 3, '丿', 1, 'I', '?/', None]" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5134, + "character": "戌", + "raw": "['戌', 6, '回', '戊', 5, '一', 1, 'IHM', '/', '戈']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5135, + "character": "戍", + "raw": "['戍', 6, '回', '戊', 5, '丶', 1, 'IHI', '/', '戈']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5138, + "character": "成", + "raw": "['成', 6, '回', '戊', 5, '丁', 1, 'IHS', '/*', '戈']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5144, + "character": "或", + "raw": "['或', 8, '回', '戈', 4, '一口', 4, 'IRM', '/?', '戈']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5148, + "character": "戚", + "raw": "['戚', 11, '回', '戊', 5, '尗', 6, 'IHYMF', '/', '戈']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5153, + "character": "戟", + "raw": "['戟', 12, '吅', '𠦝', 8, '戈', 4, 'JJI', '?/', '戈']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5174, + "character": "戴", + "raw": "['戴', 17, '回', '𢦏', 6, '異', 11, 'JIWTC', '?/', '戈']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5223, + "character": "扥", + "raw": "['扥', 6, '吅', '扌', 3, '乇*', 3, 'QQU', '/?', '手']" + }, + { + "kind": "ccd_opaque_component", + "message": "rightComponent: concatenated/opaque component cannot be placed unambiguously", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5295, + "character": "抭", + "raw": "['抭', 8, '吅', '扌', 3, '宀儿', 5, 'QJHU', '/', '手']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5342, + "character": "拜", + "raw": "['拜', 9, '吅', '手', 4, '干干', 5, 'HQMQJ', '/?', '手']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5343, + "character": "拝", + "raw": "['拝', 8, '吅', '扌', 3, '干干', 5, 'QMQJ', '/?', '手']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5378, + "character": "挀", + "raw": "['挀', 9, '吅', '扌', 3, '辰?', 6, 'QHHV', '/?', '手']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5459, + "character": "捑", + "raw": "['捑', 10, '吅', '扌', 3, '日夨', 7, 'QAVK', '/?', '手']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5470, + "character": "捜", + "raw": "['捜', 10, '吅', '扌', 3, '申又', 7, 'QLWE', '/?', '手']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5556, + "character": "掲", + "raw": "['掲', 12, '吅', '扌', 3, '日匂', 9, 'QAPP', '/?', '手']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5587, + "character": "揑", + "raw": "['揑', 12, '吅', '扌', 3, '臼工', 9, 'QHXM', '/?', '手']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5628, + "character": "揺", + "raw": "['揺', 12, '吅', '扌', 3, '爫击?', 9, 'QBMU', '/?', '手']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5634, + "character": "搀", + "raw": "['搀', 12, '吅', '扌', 3, '免冫', 9, 'QNUY', '/?', '手']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5686, + "character": "搴", + "raw": "['搴', 14, '吕', '𡨄', 10, '手', 4, 'JTCQ', '?/', '手']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5700, + "character": "摂", + "raw": "['摂', 13, '吅', '扌', 3, '聂?', 10, 'QSJO', '/?', '手']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5707, + "character": "摉", + "raw": "['摉', 13, '吅', '扌', 3, '穴人夕', 10, 'QJCN', '/?', '手']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5735, + "character": "摥", + "raw": "['摥', 14, '吅', '扌', 3, '𥏫*', 11, 'QOAH', '/?', '手']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5761, + "character": "摿", + "raw": "['摿', 14, '吅', '扌', 3, '人音', 11, 'QOYA', '/?', '手']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5798, + "character": "撤", + "raw": "['撤', 15, '吅', '扌', 3, '育攵', 12, 'QYBK', '/?', '手']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5836, + "character": "擊", + "raw": "['擊', 16, '吕', '𣪠', 12, '手', 4, 'JEQ', '?/', '手']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5863, + "character": "擥", + "raw": "['擥', 19, '吕', '監', 15, '手', 4, 'SWQ', '?/', '手']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5930, + "character": "攨", + "raw": "['攨', 23, '吅', '扌', 3, '穴瓜瓜瓜', 20, 'QJCO', '/?', '手']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5946, + "character": "攸", + "raw": "['攸', 7, '吅', '亻丨', 3, '攵', 4, 'OLOK', '?/', '攵']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5968, + "character": "敎", + "raw": "['敎', 11, '吅', '𡥉', 7, '攵', 4, 'KDOK', '?/', '攵']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5976, + "character": "敖", + "raw": "['敖', 11, '吅', '土方', 7, '攵', 4, 'QSOK', '?/', '攵']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5988, + "character": "敢", + "raw": "['敢', 11, '吅', '乛耳', 7, '攵', 4, 'NJOK', '?/', '攵']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5989, + "character": "散", + "raw": "['散', 12, '吅', '?', 8, '攵', 4, 'TBOK', '?/', '攵']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 5997, + "character": "敫", + "raw": "['敫', 13, '吅', '白方', 9, '攵', 4, 'HSOK', '?/', '攵']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6009, + "character": "敷", + "raw": "['敷', 15, '吅', '甫方', 11, '攵', 4, 'ISOK', '?/', '攵']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6011, + "character": "敹", + "raw": "['敹', 15, '吅', '⺊冖釆', 11, '攵', 4, 'YDOK', '?/', '攵']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6013, + "character": "敻", + "raw": "['敻', 15, '吕', '⺈内', 6, '𡕥', 9, '', '?/?', '攵']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6027, + "character": "斉", + "raw": "['斉', 8, '吕', '文', 4, '井*', 4, 'YKSL', '/?', '文']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6032, + "character": "斎", + "raw": "['斎', 11, '回', '齐', 6, '示', 5, 'YKLML', '/', '文']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6051, + "character": "斡", + "raw": "['斡', 14, '回', '倝', 10, '斗', 4, 'JJOYJ', '/', '斗']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6063, + "character": "断", + "raw": "['断', 11, '吅', '乚米*', 7, '斤', 4, 'VDHML', '?/', '斤']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6068, + "character": "斲", + "raw": "['斲', 14, '吅', '𠁁', 10, '斤', 4, 'RMHML', '?/', '斤']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6071, + "character": "斵", + "raw": "['斵', 17, '吅', '', 13, '斤', 4, 'HMHML', '?/', '斤']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6084, + "character": "旂", + "raw": "['旂', 10, '回', '㫃', 6, '斤', 4, 'YSOHL', '/', '方']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6085, + "character": "旃", + "raw": "['旃', 10, '回', '㫃', 6, '丹', 4, 'YSOBY', '/', '方']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6086, + "character": "旄", + "raw": "['旄', 10, '回', '㫃', 6, '毛', 4, 'YSOHU', '/', '方']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6087, + "character": "旅", + "raw": "['旅', 10, '回', '㫃', 6, '氏', 4, 'YSOHV', '/', '方']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6088, + "character": "旆", + "raw": "['旆', 10, '回', '㫃', 6, '市', 4, 'YSOJB', '/', '方']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6089, + "character": "旇", + "raw": "['旇', 11, '回', '㫃', 6, '皮', 5, 'YSODE', '/', '方']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6092, + "character": "旊", + "raw": "['旊', 11, '回', '㫃', 6, '瓦', 5, 'YSOMN', '/', '方']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6093, + "character": "旋", + "raw": "['旋', 11, '回', '㫃', 6, '疋', 5, 'YSONO', '/', '方']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6094, + "character": "旌", + "raw": "['旌', 11, '回', '㫃', 6, '生', 5, 'YSOHM', '/', '方']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6095, + "character": "旍", + "raw": "['旍', 11, '回', '㫃', 6, '令', 5, 'YSOOI', '/', '方']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6096, + "character": "旎", + "raw": "['旎', 11, '回', '㫃', 6, '尼', 5, 'YSOSP', '/', '方']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6097, + "character": "族", + "raw": "['族', 11, '回', '㫃', 6, '矢', 5, 'YSOOK', '/', '方']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6098, + "character": "旐", + "raw": "['旐', 12, '回', '㫃', 6, '兆', 6, 'YSOLO', '/', '方']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6100, + "character": "旒", + "raw": "['旒', 13, '回', '㫃', 6, '㐬', 7, 'YSOYU', '/', '方']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6101, + "character": "旓", + "raw": "['旓', 13, '回', '㫃', 6, '肖', 7, 'YSOFB', '/', '方']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6104, + "character": "旖", + "raw": "['旖', 14, '回', '㫃', 6, '奇', 8, 'YSOKR', '/', '方']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6105, + "character": "旗", + "raw": "['旗', 14, '回', '㫃', 6, '其', 8, 'YSOTC', '/', '方']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6108, + "character": "旚", + "raw": "['旚', 17, '回', '㫃', 6, '票', 11, 'YSOMF', '/', '方']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6109, + "character": "旛", + "raw": "['旛', 18, '回', '㫃', 6, '番', 12, 'YSOHW', '?/', '方']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6110, + "character": "旜", + "raw": "['旜', 19, '回', '㫃', 6, '亶', 13, 'YSOYM', '?/', '方']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6111, + "character": "旝", + "raw": "['旝', 19, '回', '㫃', 6, '會', 13, 'YSOOA', '/', '方']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6112, + "character": "旞", + "raw": "['旞', 19, '回', '㫃', 6, '遂', 13, 'YSYOO', '?/', '方']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6113, + "character": "旟", + "raw": "['旟', 20, '回', '㫃', 6, '與', 14, 'YSOHC', '/', '方']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6126, + "character": "旬", + "raw": "['旬', 6, '回', '勹', 2, '日', 4, 'PA', '/', '日']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6172, + "character": "昚", + "raw": "['昚', 9, '吕', '𡗜', 5, '日', 4, 'KCA', '?/', '日']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6219, + "character": "晉", + "raw": "['晉', 10, '吕', '?厸二', 6, '日', 4, 'MIIA', '?/', '日']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6263, + "character": "晵", + "raw": "['晵', 12, '吕', '𢼄', 8, '日', 4, 'HKA', '?/', '日']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6357, + "character": "曓", + "raw": "['曓', 17, '吕', '𣅽', 9, '大夲', 8, 'AUUJ', '/?', '日']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6387, + "character": "曱", + "raw": "['曱', 5, '+', '曰', 4, '丨', 1, 'WMLL', '?/', '曰']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6395, + "character": "曹", + "raw": "['曹', 11, '吕', '一曲', 7, '曰', 4, 'TWA', '?/', '曰']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6398, + "character": "曼", + "raw": "['曼', 11, '吕', '曰', 4, '罒又', 7, 'AWLE', '/?', '曰']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6399, + "character": "曽", + "raw": "['曽', 11, '吕', '八田', 7, '曰', 4, 'CWA', '?/', '曰']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6400, + "character": "曾", + "raw": "['曾', 12, '吕', '八田', 8, '曰', 4, 'CWA', '?/', '曰']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6408, + "character": "朆", + "raw": "['朆', 16, '吅', '曾', 12, '勿', 4, 'CAPHH', '?/', '曰']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6431, + "character": "朝", + "raw": "['朝', 12, '吅', '𠦝', 8, '月', 4, 'JJB', '?/', '月']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6436, + "character": "朢", + "raw": "['朢', 14, '吕', '臣月', 10, '王', 4, 'SBHG', '?/', '月']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6448, + "character": "朮", + "raw": "['朮', 5, '+', '𣎳', 4, '丶', 1, 'IJC', '?/', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6503, + "character": "来", + "raw": "['来', 7, '+', '米', 6, '一', 1, 'DT', '?/', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6592, + "character": "枾", + "raw": "['枾', 9, '吅', '木', 4, '?', 5, 'DQLL', '/?', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6612, + "character": "柒", + "raw": "['柒', 9, '吕', '氵七', 5, '木', 4, 'EPD', '?/', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6627, + "character": "柡", + "raw": "['柡', 10, '吅', '木', 4, '汞*', 6, 'DMME', '/?', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6664, + "character": "栆", + "raw": "['栆', 8, '吕', '', 6, '冫', 2, 'KLY', '?/', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6719, + "character": "栽", + "raw": "['栽', 10, '回', '𢦏', 4, '木', 6, 'JID', '?/', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6750, + "character": "桜", + "raw": "['桜', 10, '吅', '木', 4, '小女', 6, 'DFV', '/?', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6762, + "character": "桨", + "raw": "['桨', 10, '吕', '~收', 6, '木', 4, 'LND', '?/', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6773, + "character": "桳", + "raw": "['桳', 11, '吅', '木', 4, '厶?', 7, 'DIKJ', '/?', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6787, + "character": "梁", + "raw": "['梁', 11, '吕', '氵刅', 7, '木', 4, 'ECD', '?/', '木']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6815, + "character": "條", + "raw": "['條', 11, '回', '攸', 7, '木', 4, 'OLOD', '/', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6817, + "character": "梟", + "raw": "['梟', 11, '吕', '鳥*', 7, '木', 4, 'HAYD', '?/', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6822, + "character": "梤", + "raw": "['梤', 11, '吅', '木', 4, '山分', 7, 'DUCH', '/?', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6841, + "character": "梷", + "raw": "['梷', 11, '吕', '占又', 7, '木', 4, 'YED', '?/', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6853, + "character": "棃", + "raw": "['棃', 12, '吕', '𥝢', 8, '木', 4, 'HHD', '?/', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 6890, + "character": "棨", + "raw": "['棨', 12, '吕', '𢼄', 8, '木', 4, 'HKD', '?/', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7008, + "character": "楞", + "raw": "['楞', 13, '吅', '木', 4, '罒方', 9, 'DWLS', '/?', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7039, + "character": "楽", + "raw": "['楽', 13, '吕', '冫白冫', 9, '木', 4, 'IOD', '?/', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7053, + "character": "榋", + "raw": "['榋', 13, '吅', '木', 4, '彐彐彐', 9, 'DSMS', '/?', '木']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7064, + "character": "榖", + "raw": "['榖', 14, '回', '𣪊', 10, '木', 4, 'GDHNE', '/', '木']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7080, + "character": "榦", + "raw": "['榦', 14, '回', '倝', 10, '木', 4, 'JJOD', '/', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7172, + "character": "樂", + "raw": "['樂', 15, '吕', '幺白幺', 11, '木', 4, 'VID', '?/', '木']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7211, + "character": "権", + "raw": "['権', 15, '回', '朲', 6, '隹', 9, 'DOKG', '/', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7234, + "character": "橀", + "raw": "['橀', 16, '吅', '木', 4, '㐬皿', 12, 'DYIT', '/?', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7240, + "character": "橆", + "raw": "['橆', 16, '吕', '無*', 8, '林', 8, 'OTDD', '?/', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7293, + "character": "橻", + "raw": "['橻', 16, '吅', '木', 4, '丑丑丑', 12, 'DNGG', '/?', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7301, + "character": "檃", + "raw": "['檃', 17, '吕', '', 13, '木', 4, 'NMD', '?/', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7358, + "character": "檼", + "raw": "['檼', 18, '吅', '木', 4, '', 14, 'DBMP', '/?', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7397, + "character": "櫣", + "raw": "['櫣', 19, '吅', '木', 4, '', 15, 'DYTJ', '/?', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7455, + "character": "欝", + "raw": "['欝', 26, '吕', '棥', 12, '罒?寸', 14, 'DDWLI', '/?', '木']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7469, + "character": "欫", + "raw": "['欫', 10, '吅', '𦈢', 6, '欠', 4, 'OMNO', '?/', '欠']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7477, + "character": "欳", + "raw": "['欳', 11, '吅', '卜冊', 7, '欠', 4, 'YBNO', '?/', '欠']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7479, + "character": "欵", + "raw": "['欵', 11, '吅', '𠤕', 7, '欠', 4, 'PKNO', '?/', '欠']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7488, + "character": "款", + "raw": "['款', 12, '吅', '土示', 8, '欠', 4, 'GFNO', '?/', '欠']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7509, + "character": "歓", + "raw": "['歓', 15, '吅', '', 11, '欠', 4, 'OGNO', '?/', '欠']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7522, + "character": "歠", + "raw": "['歠', 19, '吅', '叕酉', 15, '欠', 4, 'EWNO', '?/', '欠']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7528, + "character": "武", + "raw": "['武', 8, '吕', '一弋', 4, '止', 4, 'MPYLM', '?/', '止']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7538, + "character": "歰", + "raw": "['歰', 14, '吅', '刃止', 7, None, 7, 'SIYMM', '?/', '止']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7540, + "character": "歲", + "raw": "['歲', 13, '吕', '止', 4, '戊少', 9, 'YMIHH', '/?', '止']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7541, + "character": "歳", + "raw": "['歳', 13, '吕', '止', 4, '戌小', 9, 'YMIHF', '/?', '止']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7542, + "character": "歴", + "raw": "['歴', 14, '吕', '𠩵', 10, '止', 4, 'MDDM', '?/', '止']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7546, + "character": "歸", + "raw": "['歸', 18, '吅', '', 10, '帚', 8, 'HMSMB', '?/', '止']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7553, + "character": "歿", + "raw": "['歿', 8, '吅', '歹', 4, '𠬛', 4, 'MNNE', '/?', '歹']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7561, + "character": "殇", + "raw": "['殇', 9, '吅', '歹', 4, '3勿', 5, 'MNONH', '/?', '歹']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7590, + "character": "殤", + "raw": "['殤', 15, '吅', '歹', 4, '𥏫*', 11, 'MNOAH', '/?', '歹']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7607, + "character": "段", + "raw": "['段', 9, '吅', '?', 5, '殳', 4, 'HJHNE', '?/', '殳']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7613, + "character": "殻", + "raw": "['殻', 11, '吅', '壳', 7, '殳', 4, 'GNHNE', '?/', '殳']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7614, + "character": "殼", + "raw": "['殼', 12, '吅', '?', 8, '殳', 4, 'GNHNE', '?/', '殳']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7617, + "character": "殿", + "raw": "['殿', 13, '回', '𡱒', 9, '殳', 4, 'SCHNE', '?/', '殳']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7618, + "character": "毀", + "raw": "['毀', 13, '吅', '臼土', 9, '殳', 4, 'HGHNE', '?/', '殳']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7619, + "character": "毁", + "raw": "['毁', 13, '吅', '臼?', 9, '殳', 4, 'HMHNE', '?/', '殳']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7620, + "character": "毂", + "raw": "['毂', 13, '吅', '士?车', 9, '殳', 4, 'GQHNE', '?/', '殳']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7632, + "character": "毎", + "raw": "['毎', 6, '吕', '𠂉', 2, '毋', 4, 'OWJ', '?/', '毋']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7644, + "character": "毚", + "raw": "['毚', 17, '吕', '右*比', 9, '兔', 8, 'NRPPI', '?/', '比']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7661, + "character": "毫", + "raw": "['毫', 11, '冖', '亠口', 5, '毛', 4, 'YRBU', '?/', '毛']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7677, + "character": "毻", + "raw": "['毻', 13, '吅', '?', 9, '毛', 4, 'KBHQU', '?/', '毛']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7684, + "character": "氂", + "raw": "['氂', 14, '吕', '𠩺', 10, '毛', 4, 'JKMHU', '?/', '毛']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7706, + "character": "氘", + "raw": "['氘', 6, '吕', '气', 4, '儿*', 2, 'ONLL', '/?', '气']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 7738, + "character": "永", + "raw": "['永', 5, '+', '水', 4, '丶', 1, 'INE', '?/', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8000, + "character": "派", + "raw": "['派', 9, '吅', '氵', 3, '辰?', 6, 'EHHV', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8008, + "character": "浆", + "raw": "['浆', 10, '吕', '~收', 6, '水', 4, 'LNE', '?/', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8107, + "character": "涩", + "raw": "['涩', 10, '吅', '氵', 3, '刃?止', 7, 'ESIM', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8195, + "character": "渁", + "raw": "['渁', 11, '吅', '氵', 3, '水水', 8, 'EEE', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8201, + "character": "渇", + "raw": "['渇', 11, '吅', '氵', 3, '日匂', 8, 'EAPP', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8204, + "character": "渊", + "raw": "['渊', 11, '吅', '氵', 3, '儿*米', 6, 'ELFL', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8205, + "character": "渋", + "raw": "['渋', 11, '吅', '氵', 3, '', 8, 'EYMO', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8213, + "character": "渓", + "raw": "['渓', 11, '吅', '氵', 3, '爫夫', 8, 'EBQO', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8306, + "character": "湰", + "raw": "['湰', 12, '吅', '氵', 3, '夂一生', 9, 'EHEM', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8318, + "character": "湼", + "raw": "['湼', 12, '吅', '氵', 3, '臼工', 9, 'EHXM', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8322, + "character": "満", + "raw": "['満', 12, '吅', '氵', 3, '卄両', 9, 'ETUB', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8326, + "character": "溄", + "raw": "['溄', 12, '吅', '氵', 3, '', 9, 'EUHQ', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8410, + "character": "滘", + "raw": "['滘', 13, '吅', '氵', 3, '', 10, 'EBCR', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8419, + "character": "满", + "raw": "['满', 13, '吅', '氵', 3, '艹两', 10, 'ETMB', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8483, + "character": "漡", + "raw": "['漡', 14, '吅', '氵', 3, '𥏫*', 11, 'EOAH', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8488, + "character": "漦", + "raw": "['漦', 14, '吕', '𠩺', 10, '水', 4, 'JKME', '?/', '水']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8515, + "character": "潁", + "raw": "['潁', 15, '回', '水', 4, '頃', 11, 'PEMBC', '/*', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8516, + "character": "潂", + "raw": "['潂', 14, '吅', '氵', 3, '山並', 11, 'EUTC', '/?', '水']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8519, + "character": "潅", + "raw": "['潅', 14, '回', '汄', 5, '隹', 9, 'EOKG', '/', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8522, + "character": "潈", + "raw": "['潈', 14, '吅', '氵', 3, '', 11, 'EHTO', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8570, + "character": "潸", + "raw": "['潸', 15, '吅', '氵', 3, '林月', 12, 'EDDB', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8580, + "character": "澂", + "raw": "['澂', 15, '吅', '氵', 3, '', 12, 'EUGK', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8586, + "character": "澈", + "raw": "['澈', 15, '吅', '氵', 3, '育攵', 12, 'EYBK', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8604, + "character": "澚", + "raw": "['澚', 15, '吅', '氵', 3, '', 12, 'EHBS', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8619, + "character": "澩", + "raw": "['澩', 17, '冖', '𦥯', 11, '水', 4, 'HBE', '?/', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8647, + "character": "濅", + "raw": "['濅', 16, '吅', '氵', 3, '宀帚又', 13, 'EJSE', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8680, + "character": "濦", + "raw": "['濦', 17, '吅', '氵', 3, '', 14, 'EBMP', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8695, + "character": "濵", + "raw": "['濵', 17, '吅', '氵', 3, '賔', 14, 'EJAC', '/?', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8781, + "character": "灋", + "raw": "['灋', 21, '吅', '氵', 3, '廌去', 18, 'EIFI', '/?', '水']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8821, + "character": "灳", + "raw": "['灳', 6, '回', '勹', 2, '火', 4, 'PF', '/', '火']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8897, + "character": "炿", + "raw": "['炿', 9, '吅', '火', 4, '丶丹', 5, 'FHBY', '/?', '火']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8907, + "character": "烉", + "raw": "['烉', 10, '吕', '负*', 6, '火', 4, 'NBF', '?/', '火']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8919, + "character": "烕", + "raw": "['烕', 10, '回', '戌', 6, '火', 4, 'IHMF', '/', '火']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8920, + "character": "烖", + "raw": "['烖', 10, '回', '𢦏', 4, '火', 6, 'JIF', '?/', '火']" + }, + { + "kind": "ccd_unsupported_row", + "message": "leftComponent: uncertain component marker", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8970, + "character": "焈", + "raw": "['焈', 11, '吕', '戺*', 7, '火', 4, 'HUF', '/', '火']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8977, + "character": "焏", + "raw": "['焏', 11, '吕', '口了又', 7, '灬', 4, 'NEF', '?/', '火']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8982, + "character": "焔", + "raw": "['焔', 12, '吅', '火', 4, '2旧', 8, 'FNLA', '/?', '火']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 8989, + "character": "焛", + "raw": "['焛', 12, '回', '門', 8, '火', 4, 'ANF', '/', '火']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9047, + "character": "煕", + "raw": "['煕', 13, '吕', '巸*', 9, '灬', 4, 'SUF', '?/', '火']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9056, + "character": "煞", + "raw": "['煞', 13, '吕', '刍攵', 9, '灬', 4, 'NKF', '?/', '火']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9071, + "character": "煭", + "raw": "['煭', 13, '吕', '巛歹刂 ', 9, '灬', 4, 'VNF', '?/', '火']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9098, + "character": "熈", + "raw": "['熈', 14, '吕', '', 10, '灬', 4, 'HUF', '?/', '火']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9105, + "character": "熏", + "raw": "['熏', 14, '吕', '', 10, '灬', 4, 'HGF', '?/', '火']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9140, + "character": "熲", + "raw": "['熲', 15, '回', '火', 4, '頃', 11, 'PFMBC', '/*', '火']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9175, + "character": "燕", + "raw": "['燕', 16, '吕', '廿北口', 12, '灬', 4, 'TLPF', '?/', '火']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9184, + "character": "燞", + "raw": "['燞', 16, '吕', '隹欠', 12, '灬', 4, 'OOF', '?/', '火']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9188, + "character": "燢", + "raw": "['燢', 17, '冖', '𦥯', 11, '火', 4, 'HBF', '?/', '火']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9200, + "character": "燮", + "raw": "['燮', 17, '吕', '火言火', 15, '又', 2, 'FFE', '?/', '火']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9220, + "character": "爂", + "raw": "['爂', 18, '冖', '臼日', 12, '火', 4, 'HBF', '?/', '火']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9239, + "character": "爕", + "raw": "['爕', 19, '吕', '火言火', 15, '火', 4, 'FFF', '?/', '火']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9258, + "character": "爨", + "raw": "['爨', 30, '冖', '臼同', 13, '𤍾', 15, 'HBDDF', '?/', '火']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9268, + "character": "爲", + "raw": "['爲', 12, '吕', '爫', 4, '?灬', 8, 'BHNF', '/?', '爪']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9271, + "character": "爵", + "raw": "['爵', 18, '吕', '爫', 4, '罒?寸', 14, 'BWLI', '/?', '爪']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9304, + "character": "牖", + "raw": "['牖', 15, '吅', '片', 4, '', 11, 'LNISB', '/?', '片']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9343, + "character": "牽", + "raw": "['牽', 12, '吕', '玄冖', 8, '牛', 4, 'YVBQ', '?/', '牛']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9346, + "character": "犀", + "raw": "['犀', 12, '吕', '尿*', 8, '牛', 4, 'SEHQ', '?/', '牛']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9348, + "character": "犂", + "raw": "['犂', 12, '吕', '𥝢', 8, '牛', 4, 'HHHQ', '?/', '牛']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9367, + "character": "犕", + "raw": "['犕', 14, '吅', '牜', 4, '萹?', 10, 'HQTHB', '/?', '牛']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9392, + "character": "犮", + "raw": "['犮', 5, '+', '犬', 4, '丿', 1, 'IKK', '?/', '犬']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9505, + "character": "猟", + "raw": "['猟', 11, '吅', '犭', 3, '川用', 8, 'KHFHN', '/?', '犬']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9573, + "character": "獣", + "raw": "['獣', 15, '吅', '畄?口', 11, '犬', 4, 'FRIK', '?/', '犬']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9609, + "character": "率", + "raw": "['率', 11, '吕', '冫玄冫', 9, '十', 2, 'YIOJ', '?/', '玄']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9610, + "character": "玈", + "raw": "['玈', 11, '吅', '玄', 5, '', 6, 'YIOHV', '/?', '玄']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9715, + "character": "珱", + "raw": "['珱', 10, '吅', '王', 4, '小女', 6, 'MGFV', '/?', '玉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9731, + "character": "琁", + "raw": "['琁', 11, '吅', '王', 4, '人*疋', 7, 'MGONO', '/?', '玉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9746, + "character": "琐", + "raw": "['琐', 11, '吅', '王', 4, '?贝', 7, 'MGFBO', '/?', '玉']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9846, + "character": "瑴", + "raw": "['瑴', 14, '回', '𣪊', 10, '王', 4, 'GGHNE', '/', '玉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9916, + "character": "璺", + "raw": "['璺', 20, '冖', '臼同', 13, '玉', 5, 'HBMGI', '?/', '玉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9959, + "character": "瓥", + "raw": "['瓥', 24, '吕', '豕瓜', 12, '䖵', 12, 'HOLII', '?/', '瓜']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 9999, + "character": "甍", + "raw": "['甍', 15, '冖', '苜*', 8, '瓦', 5, 'TWLN', '?/', '瓦']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10024, + "character": "甦", + "raw": "['甦', 12, '吅', '更', 7, '生', 5, 'MKHQM', '?/', '生']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10027, + "character": "甩", + "raw": "['甩', 5, '+', '月', 4, '乚', 1, 'BQU', '?/', '用']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10033, + "character": "甯", + "raw": "['甯', 12, '吕', '宓', 7, '用', 5, 'JPBQ', '?/', '用']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10035, + "character": "由", + "raw": "['由', 5, '+', '曰', 4, '丨', 1, 'LW', '?/', '田']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10036, + "character": "甲", + "raw": "['甲', 5, '+', '曰', 4, '丨', 1, 'WL', '?/', '田']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10037, + "character": "申", + "raw": "['申', 5, '+', '曰', 4, '丨', 1, 'LWL', '?/', '田']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10039, + "character": "电", + "raw": "['电', 5, '+', '曰', 4, '乚', 1, 'LWU', '?/', '田']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10042, + "character": "甸", + "raw": "['甸', 7, '回', '勹', 2, '田', 5, 'PW', '/', '田']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10045, + "character": "画", + "raw": "['画', 8, '吕', '一由', 6, '凵', 2, 'MUW', '?/', '田']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10066, + "character": "畐", + "raw": "['畐', 9, '吕', '𠮛', 4, '田', 5, 'MRW', '?/', '田']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10073, + "character": "畗", + "raw": "['畗', 10, '吕', '亠口', 5, '田', 5, 'YRW', '?/', '田']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10075, + "character": "留", + "raw": "['留', 10, '吕', '卯', 5, '田', 5, 'HHW', '?/', '田']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10081, + "character": "畟", + "raw": "['畟', 10, '吕', '田', 5, '儿夂', 5, 'WCHE', '?/?', '田']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10093, + "character": "畫", + "raw": "['畫', 12, '吕', '聿', 6, '田一', 6, 'LGWM', '/?', '田']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10103, + "character": "畵", + "raw": "['畵', 13, '吕', '聿', 6, '田凵', 7, 'LGUW', '/?', '田']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10109, + "character": "畻", + "raw": "['畻', 14, '吅', '田', 5, '关土', 9, 'WFQG', '/?', '田']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10113, + "character": "畿", + "raw": "['畿', 15, '吕', '幺戈幺', 10, '田', 5, 'VIW', '?/', '田']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10116, + "character": "疂", + "raw": "['疂', 16, '冖', '界?', 9, '且', 5, 'WIOM', '?/', '田']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10120, + "character": "疆", + "raw": "['疆', 19, '吅', '弓土', 6, '畺', 13, 'NGMWM', '?/', '田']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10126, + "character": "疌", + "raw": "['疌', 8, '+', '肀*', 3, '疋', 5, 'JLYO', '?/', '疋']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10130, + "character": "疐", + "raw": "['疐', 14, '冖', '十', 2, '田疋', 10, 'JBWNO', '/?', '疋']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10131, + "character": "疑", + "raw": "['疑', 14, '吅', '𠤕', 7, '又*疋', 7, 'PKNIO', '?/?', '疋']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10145, + "character": "疟", + "raw": "['疟', 8, '吕', '疒', 5, '匚一', 3, 'KSM', '/?', '疒']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10219, + "character": "痩", + "raw": "['痩', 12, '吕', '疒', 5, '申又', 7, 'KLWE', '/?', '疒']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10265, + "character": "瘗", + "raw": "['瘗', 14, '吕', '疒', 5, '夹土', 9, 'KKTG', '/?', '疒']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10272, + "character": "瘞", + "raw": "['瘞', 15, '吕', '㾜', 12, '土', 3, 'KKOG', '/?', '疒']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10284, + "character": "瘪", + "raw": "['瘪', 15, '吕', '疒', 5, '自仑', 10, 'KHUP', '/?', '疒']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10337, + "character": "癟", + "raw": "['癟', 19, '吕', '疒', 5, '自亼冊', 14, 'KHUB', '/?', '疒']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10364, + "character": "発", + "raw": "['発', 9, '吕', '癶', 5, '井?', 4, 'NOMKP', '/?', '癶']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10366, + "character": "發", + "raw": "['發', 12, '吕', '癶', 5, '弓殳', 7, 'NONHE', '/?', '癶']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10386, + "character": "皐", + "raw": "['皐', 11, '吕', '白', 5, ' 夲*', 6, 'HAEJ', '/?', '白']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10444, + "character": "益", + "raw": "['益', 10, '吕', '?', 5, '皿', 5, 'TCBT', '?/', '皿']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10451, + "character": "监", + "raw": "['监', 10, '吕', '', 5, '皿', 5, 'LIBT', '?/', '皿']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10456, + "character": "盖", + "raw": "['盖', 11, '吕', '𦍌', 6, '皿', 5, 'TGBT', '?/', '皿']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10467, + "character": "盡", + "raw": "['盡', 14, '吕', '焄*?', 9, '皿', 5, 'LMFBT', '?/', '皿']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10469, + "character": "監", + "raw": "['監', 14, '吕', '臣亽*', 9, '皿', 5, 'SIBT', '?/', '皿']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10471, + "character": "盥", + "raw": "['盥', 16, '吕', '⺽水', 11, '皿', 5, 'HXBT', '?/', '皿']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10475, + "character": "盩", + "raw": "['盩', 17, '吕', '𪯧', 12, '皿', 5, 'GKBT', '?/', '皿']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10478, + "character": "盬", + "raw": "['盬', 18, '吕', '臣午口', 13, '皿', 5, 'SRBT', '?/', '皿']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10479, + "character": "盭", + "raw": "['盭', 20, '吕', '𢿐', 15, '皿', 5, 'VKBT', '?/', '皿']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10510, + "character": "県", + "raw": "['県', 9, '吕', '目乚', 6, '小', 3, 'BUVF', '?/', '目']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10522, + "character": "眘", + "raw": "['眘', 10, '吕', '𡗜', 5, '目', 5, 'KCBU', '?/', '目']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10559, + "character": "眽", + "raw": "['眽', 11, '吅', '目', 5, '辰?', 6, 'BUHHV', '/?', '目']" + }, + { + "kind": "ccd_unsupported_row", + "message": "rightComponent: uncertain component marker", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10560, + "character": "眾", + "raw": "['眾', 11, '吕', '罒', 5, '众*', 6, 'WLOOO', '/', '目']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10564, + "character": "睂", + "raw": "['睂', 12, '吕', '仌丨厂', 7, '目', 5, 'OLMBU', '?/', '目']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10586, + "character": "睘", + "raw": "['睘', 13, '吕', '目', 5, '袁*', 8, 'WLMRV', '/?', '目']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10591, + "character": "睝", + "raw": "['睝', 13, '吕', '𥝢', 8, '目', 5, 'HHBU', '?/', '目']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10635, + "character": "瞉", + "raw": "['瞉', 15, '回', '士冖一目', 11, '殳', 4, 'GUHNE', '?/', '目']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10644, + "character": "瞒", + "raw": "['瞒', 15, '吅', '目', 5, '艹两', 10, 'BUTMB', '/?', '目']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10660, + "character": "瞢", + "raw": "['瞢', 15, '冖', '苜*', 8, '目', 5, 'TWLU', '?/', '目']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10672, + "character": "瞮", + "raw": "['瞮', 17, '吅', '目', 5, '育攵', 12, 'BUYBK', '/?', '目']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 10698, + "character": "矈", + "raw": "['矈', 19, '吅', '目', 5, '', 14, 'BUHAS', '/?', '目']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11026, + "character": "礐", + "raw": "['礐', 18, '冖', '𦥯', 11, '石', 5, 'HBMR', '?/', '石']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11109, + "character": "祣", + "raw": "['祣', 10, '吅', '礻', 4, '', 6, 'IFOHV', '/?', '示']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11119, + "character": "祭", + "raw": "['祭', 11, '吕', '月又', 6, '示', 5, 'BOMMF', '?/', '示']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11138, + "character": "禀", + "raw": "['禀', 13, '吕', '㐭', 8, '示', 5, 'YWRF', '?/', '示']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11174, + "character": "禤", + "raw": "['禤', 15, '吅', '礻', 4, '罒羽', 11, 'IFWLM', '/?', '示']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11195, + "character": "禹", + "raw": "['禹', 9, '+', '䖝', 7, '⺆', 2, 'HLBI', '?/', '禸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11267, + "character": "稁", + "raw": "['稁', 12, '冖', '亠口', 5, '禾', 5, 'YRBD', '?/', '禾']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11316, + "character": "稲", + "raw": "['稲', 14, '吅', '禾', 5, '爫旧', 9, 'HDBLA', '/?', '禾']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11327, + "character": "稽", + "raw": "['稽', 15, '吅', '禾', 5, '尤旨', 10, 'HDIUA', '/?', '禾']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11330, + "character": "穀", + "raw": "['穀', 15, '吅', '士冖禾', 11, '殳', 4, 'GDHNE', '?/', '禾']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11344, + "character": "穎", + "raw": "['穎', 16, '回', '禾', 5, '頃', 11, 'PDMBC', '/*', '禾']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11345, + "character": "穏", + "raw": "['穏', 16, '吅', '禾', 5, '', 11, 'HDBSP', '/?', '禾']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11371, + "character": "穩", + "raw": "['穩', 19, '吅', '禾', 5, '', 14, 'HDBMP', '/?', '禾']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11377, + "character": "穯", + "raw": "['穯', 20, '吅', '禾', 5, '', 15, 'HDGRW', '/?', '禾']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11413, + "character": "窓", + "raw": "['窓', 11, '吕', '穴', 5, '厶心', 6, 'JCIP', '/?', '穴']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11421, + "character": "窛", + "raw": "['窛', 12, '吕', '穴', 5, '元女', 7, 'JCMUV', '/?', '穴']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11458, + "character": "竀", + "raw": "['竀', 17, '吕', '穴', 5, '正見', 12, 'JCMMU', '/?', '穴']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11461, + "character": "竃", + "raw": "['竃', 21, '吕', '穴土', 8, '田*电', 9, 'JCGWU', '?/?', '穴']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11466, + "character": "竈", + "raw": "['竈', 21, '吕', '穴土', 8, '黽', 13, 'JCGRU', '?/', '穴']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11468, + "character": "竊", + "raw": "['竊', 22, '吕', '穴', 5, '釆卜?禸', 17, 'JCHDB', '/?', '穴']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11513, + "character": "竷", + "raw": "['竷', 20, '吅', '章', 11, '夂?夂', 9, 'YJHEE', '/?', '立']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11656, + "character": "箆", + "raw": "['箆', 14, '吕', '笍*', 10, '比', 4, 'HBOP', '?/', '竹']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11689, + "character": "箧", + "raw": "['箧', 14, '吕', '竹', 6, '匚夹', 8, 'HSKT', '/?', '竹']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11771, + "character": "篹", + "raw": "['篹', 17, '吕', '竹', 6, '目大㔾', 11, 'HBUU', '/?', '竹']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11796, + "character": "簒", + "raw": "['簒', 17, '吕', '𥬥', 11, '', 6, 'HBUI', '/?', '竹']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11804, + "character": "簚", + "raw": "['簚', 18, '吕', '竹', 6, '罒戈巾', 12, 'HWLB', '/?', '竹']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11823, + "character": "簭", + "raw": "['簭', 18, '吕', '竹', 6, '', 12, 'HGCR', '/?', '竹']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11859, + "character": "籑", + "raw": "['籑', 21, '吕', '竹', 6, '目大良', 15, 'HBUV', '/?', '竹']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11933, + "character": "粛", + "raw": "['粛', 11, '+', '肀', 4, '儿*米', 7, 'LLFL', '?/?', '米']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11942, + "character": "粤", + "raw": "['粤', 12, '吕', '丶囗米', 10, '丂', 2, 'HWMVS', '?/', '米']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11955, + "character": "粱", + "raw": "['粱', 13, '吕', '氵刅', 7, '米', 6, 'EIFD', '?/', '米']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11959, + "character": "粵", + "raw": "['粵', 13, '吕', '丶囗釆', 11, '丂', 2, 'HWMVS', '?/', '米']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11988, + "character": "糒", + "raw": "['糒', 16, '吅', '米', 6, '萹?', 10, 'FDTHB', '/?', '米']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 11989, + "character": "糓", + "raw": "['糓', 16, '回', '𣪊', 10, '米', 6, 'GDHNE', '/', '米']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12015, + "character": "糭", + "raw": "['糭', 19, '吅', '米', 6, '凵?八夊', 13, 'FDUCE', '/?', '米']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12021, + "character": "糳", + "raw": "['糳', 22, '吕', '𣫞', 16, '米', 6, 'TEFD', '?/', '米']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12119, + "character": "絕", + "raw": "['絕', 12, '吅', '糸', 6, '力巴', 6, 'VFSHU', '/?', '糸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12125, + "character": "絛", + "raw": "['絛', 13, '回', '攸', 7, '糸', 6, 'OLOF', '?/', '糸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12187, + "character": "継", + "raw": "['継', 13, '吅', '糸', 6, '乚米', 7, 'VFVFD', '/?', '糸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12208, + "character": "綮", + "raw": "['綮', 14, '吕', '𢼄', 8, '糸', 6, 'IKVIF', '?/', '糸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12229, + "character": "緃", + "raw": "['緃', 14, '吅', '糸', 6, '从止', 8, 'VFOOO', '/?', '糸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12254, + "character": "緜", + "raw": "['緜', 15, '吅', '白巾', 8, '系', 7, 'HBHVF', '?/', '糸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12322, + "character": "縠", + "raw": "['縠', 16, '回', '𣪊', 12, '糸', 4, 'GFHNE', '?/', '糸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12361, + "character": "繇", + "raw": "['繇', 17, '吅', '䍃', 10, '系', 7, 'BUHVF', '?/', '糸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12363, + "character": "繉", + "raw": "['繉', 17, '吅', '糸', 6, '目兆', 11, 'VFBUO', '/?', '糸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12364, + "character": "繊", + "raw": "['繊', 17, '吅', '糸', 6, '十戈业', 11, 'VFJIC', '/?', '糸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12366, + "character": "繌", + "raw": "['繌', 17, '吅', '糸', 6, '<夓', 11, 'VFHCE', '/?', '糸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12390, + "character": "繤", + "raw": "['繤', 18, '吕', '莫', 12, '糸', 6, 'TAKF', '?/', '糸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12399, + "character": "繭", + "raw": "['繭', 18, '+', '艹巾', 6, '糸虫', 12, 'TBLI', '?/?', '糸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12420, + "character": "纂", + "raw": "['纂', 20, '吕', '算', 14, '糸', 6, 'HBUF', '?/', '糸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12521, + "character": "继", + "raw": "['继', 10, '吅', '纟', 3, '乚米', 7, 'VMVFD', '/?', '糸']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12629, + "character": "罓", + "raw": "['罓', 4, '回', '冂', 2, '乄', 2, 'BK', '/', '网']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12630, + "character": "罔", + "raw": "['罔', 8, '回', '网*', 5, '亡', 3, 'BTYV', '?/', '网']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12671, + "character": "罽", + "raw": "['罽', 17, '吕', '罒', 5, '', 12, 'WLMFN', '/?', '网']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12675, + "character": "羁", + "raw": "['羁', 17, '吕', '罒', 5, '革马', 12, 'WLTJM', '/?', '网']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12688, + "character": "美", + "raw": "['美', 9, '吕', '𦍌', 6, '大', 3, 'TGK', '?/', '羊']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12690, + "character": "羐", + "raw": "['羐', 9, '吕', '艹土', 6, '久', 3, 'TGNO', '?/', '羊']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12694, + "character": "羔", + "raw": "['羔', 10, '吕', '𦍌', 6, '灬', 4, 'TGF', '?/', '羊']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12695, + "character": "羕", + "raw": "['羕', 11, '吕', '𦍌', 6, '永', 5, 'TGINE', '?/', '羊']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12699, + "character": "羙", + "raw": "['羙', 10, '吕', '𦍌', 6, '火', 4, 'TGF', '?/', '羊']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12714, + "character": "羨", + "raw": "['羨', 13, '吕', '𦍌', 6, '㳄', 7, 'TGENO', '?/', '羊']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12715, + "character": "義", + "raw": "['義', 13, '吕', '𦍌', 6, '我', 7, 'TGHQI', '?/', '羊']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12720, + "character": "羮", + "raw": "['羮', 15, '吕', '羔', 10, '美*', 5, 'TGFMO', '/?', '羊']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12724, + "character": "羲", + "raw": "['羲', 16, '吕', '𦍌', 6, '', 10, 'TGHDS', '?/?', '羊']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12730, + "character": "羸", + "raw": "['羸', 19, '回', '𣎆', 6, '羊', 13, 'YNTQ', '?/', '羊']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12765, + "character": "翛", + "raw": "['翛', 13, '回', '攸', 7, '羽', 6, 'OLOM', '/', '羽']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12774, + "character": "翤", + "raw": "['翤', 14, '吅', '口冊', 8, '羽', 6, 'RBSMM', '?/', '羽']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12786, + "character": "翰", + "raw": "['翰', 16, '回', '倝', 10, '羽', 6, 'JJOSM', '/', '羽']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12820, + "character": "耒", + "raw": "['耒', 6, '+', '未', 5, '丿', 1, 'QD', '?/', None]" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12896, + "character": "聞", + "raw": "['聞', 14, '回', '門', 8, '耳', 6, 'ANSJ', '/', '耳']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12909, + "character": "聫", + "raw": "['聫', 15, '吅', '耳', 6, '幺幺大', 9, 'SJVIK', '/?', '耳']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12918, + "character": "聴", + "raw": "['聴', 17, '吅', '耳', 6, '十罒心', 11, 'SJJWP', '/?', '耳']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12926, + "character": "聼", + "raw": "['聼', 19, '吅', '丅耳', 7, '十罒一心', 12, 'MJJWP', '?/?', '耳']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12927, + "character": "聽", + "raw": "['聽', 22, '回', '𦗟', 18, '王', 4, 'SGJWP', '/', '耳']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12929, + "character": "聿", + "raw": "['聿', 6, '+', '肀', 4, '二', 2, 'LQ', '?/', None]" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12933, + "character": "肃", + "raw": "['肃', 8, '+', '肀', 4, '儿丷', 4, 'LX', '?/?', '聿']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12934, + "character": "肄", + "raw": "['肄', 13, '吅', '𠤕', 7, '聿', 6, 'PKLQ', '?/', '聿']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12937, + "character": "肇", + "raw": "['肇', 14, '吕', '𢼄', 8, '聿', 6, 'IKLQ', '?/', '聿']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12938, + "character": "肈", + "raw": "['肈', 14, '吕', '戶戈', 8, '聿', 6, 'HILQ', '?/', '聿']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12980, + "character": "育", + "raw": "['育', 8, '吕', '亠厶', 4, '月', 4, 'YIB', '?/', '肉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 12986, + "character": "肸", + "raw": "['肸', 8, '吅', '月', 4, '八十', 4, 'BCJ', '/?', '肉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13010, + "character": "胐", + "raw": "['胐', 9, '吅', '月', 4, '出', 5, 'BUU', '?/', '肉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13030, + "character": "胤", + "raw": "['胤', 9, '吕', '幺?儿', 5, '月', 4, 'LVBU', '?/', '肉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13055, + "character": "能", + "raw": "['能', 10, '吅', '䏍', 6, '比', 4, 'IBPP', '?/', '肉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13056, + "character": "胾", + "raw": "['胾', 12, '回', '𢦏', 6, '肉', 6, 'JIOBO', '?/', '肉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13059, + "character": "脁", + "raw": "['脁', 10, '吅', '月', 4, '兆', 6, 'BLMO', '?/', '肉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13066, + "character": "脈", + "raw": "['脈', 10, '吅', '月', 4, '辰?', 6, 'BHHV', '/?', '肉']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13099, + "character": "脩", + "raw": "['脩', 11, '回', '攸', 7, '月', 4, 'OLOB', '/', '肉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13109, + "character": "脳", + "raw": "['脳', 11, '吅', '月', 4, '川凶', 7, 'BFUK', '/?', '肉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13205, + "character": "膓", + "raw": "['膓', 15, '吅', '月', 4, '𥏫*', 11, 'BOAH', '/?', '肉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13223, + "character": "膥", + "raw": "['膥', 18, '吕', '末成', 12, '肉', 6, 'DSOBO', '?/', '肉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13225, + "character": "膧", + "raw": "['膧', 17, '吅', '月', 4, '童', 13, 'BYTG', '?/', '肉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13279, + "character": "臝", + "raw": "['臝', 21, '回', '𣎆', 6, '果', 15, 'YNWD', '?/', '肉']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13289, + "character": "臧", + "raw": "['臧', 14, '回', '戕', 8, '臣', 6, 'IMSLL', '/', '臣']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13290, + "character": "臨", + "raw": "['臨', 17, '回', '臥', 6, '品', 11, 'SLORR', '/', '臣']" + }, + { + "kind": "ccd_unsupported_row", + "message": "rightComponent: uncertain component marker", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13296, + "character": "臮", + "raw": "['臮', 12, '吕', '自', 6, '众*', 6, 'HUOOO', '/', '自']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13297, + "character": "臯", + "raw": "['臯', 12, '吕', '自', 6, ' 夲*', 6, 'HUEJ', '/?', '自']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13299, + "character": "臱", + "raw": "['臱', 15, '吕', '自', 6, '穴方', 9, 'HUJCS', '/?', '自']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13305, + "character": "臷", + "raw": "['臷', 12, '回', '𢦏', 6, '至', 6, 'JIMIG', '?/', '至']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13320, + "character": "舆", + "raw": "['舆', 13, '回', '兒*', 9, '车', 4, 'HXKC', '?/', '臼']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13322, + "character": "興", + "raw": "['興', 15, '回', '兒*', 9, '同', 6, 'HXBC', '?/', '臼']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13324, + "character": "舊", + "raw": "['舊', 17, '吕', '雈', 11, '臼', 6, 'TOGX', '?/', '臼']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13325, + "character": "舋", + "raw": "['舋', 19, '冖', '臼同', 12, '且', 5, 'HBBM', '?/', '臼']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13343, + "character": "舝", + "raw": "['舝', 13, '冖', '?', 7, '𠫚', 4, 'DMVVQ', '?/', '舛']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13344, + "character": "舞", + "raw": "['舞', 14, '吕', '無*', 8, '舛', 6, 'OTNIQ', '?/', '舛']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13353, + "character": "舧", + "raw": "['舧', 10, '吅', '舟', 6, '丶凡', 4, 'HYHNI', '/?', '舟']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13501, + "character": "芻", + "raw": "['芻', 10, '吕', '勹屮', 5, None, 5, 'PUPU', '?/', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13618, + "character": "茰", + "raw": "['茰', 9, '吕', '艹', 3, '申乁', 6, 'TLWK', '/?', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13624, + "character": "茶", + "raw": "['茶', 9, '吕', '艹', 3, '人木', 6, 'TOD', '/?', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13759, + "character": "莽", + "raw": "['莽', 9, '吕', '艹', 3, '大廾', 6, 'TIKT', '/?', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13856, + "character": "萞", + "raw": "['萞', 11, '吕', '芮*', 7, '比', 4, 'TBOP', '?/', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13866, + "character": "萨", + "raw": "['萨', 8, '吕', '艹', 3, '阝产', 5, 'TNLH', '/?', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13934, + "character": "葬", + "raw": "['葬', 12, '吕', '艹', 3, '死廾', 9, 'TMPT', '/?', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13960, + "character": "蒆", + "raw": "['蒆', 12, '吕', '艹', 3, '巩女', 9, 'TMNV', '/?', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13961, + "character": "蒇", + "raw": "['蒇', 12, '吕', '艹', 3, '戊贝', 9, 'TIHO', '/?', '艸']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 13993, + "character": "蒧", + "raw": "['蒧', 13, '回', '茂', 8, '占', 5, 'TIHR', '/', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14049, + "character": "蓟", + "raw": "['蓟', 13, '吕', '艹', 3, '魝*', 10, 'TNMN', '/?', '艸']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14135, + "character": "蔵", + "raw": "['蔵', 14, '回', '茂', 8, '臣', 6, 'TIHS', '/', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14152, + "character": "蕆", + "raw": "['蕆', 15, '吕', '艹', 3, '戊貝', 12, 'TIHC', '/?', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14162, + "character": "蕐", + "raw": "['蕐', 15, '吕', '艹', 3, '', 12, 'TMOQ', '/?', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14172, + "character": "蕚", + "raw": "['蕚', 15, '吕', '艹品', 12, '亏', 3, 'TRRS', '?/', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14196, + "character": "蕲", + "raw": "['蕲', 15, '吕', '艹', 3, '单斤', 12, 'TCJL', '/?', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14205, + "character": "蕻", + "raw": "['蕻', 16, '吕', '艹', 3, '7?共', 13, 'TSIC', '/?', '艸']" + }, + { + "kind": "ccd_unsupported_row", + "message": "leftComponent: uncertain component marker", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14224, + "character": "薎", + "raw": "['薎', 16, '冖', '苜*', 8, '伐', 6, 'TWLI', '/', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14237, + "character": "薛", + "raw": "['薛', 16, '吕', '艹', 3, '', 13, 'THRJ', '/?', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14246, + "character": "薤", + "raw": "['薤', 16, '吕', '艹', 3, '', 13, 'TMNM', '/?', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14249, + "character": "薧", + "raw": "['薧', 16, '吕', '艹', 3, '', 13, 'TYRP', '/?', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14250, + "character": "薨", + "raw": "['薨', 16, '冖', '苜*', 8, '死', 6, 'TWLP', '?/', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14342, + "character": "蘄", + "raw": "['蘄', 19, '吕', '艹', 3, '', 16, 'TRJL', '/?', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14347, + "character": "蘉", + "raw": "['蘉', 19, '冖', '苜*', 8, '侵', 9, 'TWLE', '?/', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14357, + "character": "蘓", + "raw": "['蘓', 19, '吕', '艹', 3, '禾魚', 16, 'THDF', '/?', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14365, + "character": "蘛", + "raw": "['蘛', 20, '吕', '艹', 3, '甚育', 17, 'TTVB', '/?', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14406, + "character": "虄", + "raw": "['虄', 23, '吕', '艹', 3, '', 20, 'TLIM', '/?', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14409, + "character": "虇", + "raw": "['虇', 23, '吕', '艹', 3, '弓雚', 20, 'TNTG', '/?', '艸']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14418, + "character": "虐", + "raw": "['虐', 9, '吕', '虍', 6, '匚一', 3, 'YPSM', '/?', '虍']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14420, + "character": "虒", + "raw": "['虒', 10, '吕', '⺁', 2, '虎', 8, 'HYPU', '?/', '虍']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14429, + "character": "虛", + "raw": "['虛', 12, '吕', '虍', 6, '业*', 6, 'YPTM', '/?', '虍']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14442, + "character": "虨", + "raw": "['虨', 15, '吅', '𧇃', 12, '彡', 3, 'YDHHH', '?/', '虍']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14443, + "character": "虩", + "raw": "['虩', 18, '吅', '𡭴', 10, '虎', 8, 'FFYPU', '?/', '虍']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14507, + "character": "蚩", + "raw": "['蚩', 10, '吕', '㞢', 4, '虫', 6, 'UMLI', '?/', '虫']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14549, + "character": "蛓", + "raw": "['蛓', 12, '回', '𢦏', 6, '虫', 6, 'JILMI', '/', '虫']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14553, + "character": "蛗", + "raw": "['蛗', 12, '吕', '𠂤', 6, '虫', 6, 'HRLMI', '?/', '虫']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14595, + "character": "蜁", + "raw": "['蜁', 13, '吅', '虫', 6, '人*疋', 7, 'LIONO', '/?', '虫']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14740, + "character": "螒", + "raw": "['螒', 16, '回', '倝', 10, '虫', 6, 'JJOLI', '/', '虫']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14762, + "character": "螨", + "raw": "['螨', 16, '吅', '虫', 6, '艹两', 10, 'LITMB', '/?', '虫']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14778, + "character": "螸", + "raw": "['螸', 17, '吕', '欲', 11, '虫', 6, 'COLMI', '?/', '虫']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14809, + "character": "蟗", + "raw": "['蟗', 16, '吕', '', 10, '虫', 6, 'JBUUI', '?/', '虫']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14853, + "character": "蠃", + "raw": "['蠃', 19, '回', '𣎆', 6, '虫', 13, 'YNLMI', '?/', '虫']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14893, + "character": "蠫", + "raw": "['蠫', 21, '吕', '豸刂', 9, '䖵', 12, 'BNLII', '?/', '虫']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14907, + "character": "蠹", + "raw": "['蠹', 24, '吕', '', 12, '䖵', 12, 'JBMRI', '?/', '虫']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14908, + "character": "蠺", + "raw": "['蠺', 24, '咒', '天', 4, '日虫虫', 16, 'MKALI', '/?', '虫']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14911, + "character": "蠽", + "raw": "['蠽', 27, '吕', '𢧵', 15, '䖵', 12, 'FILII', '?/', '虫']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14913, + "character": "蠿", + "raw": "['蠿', 27, '吕', '𢇍', 15, '䖵', 12, 'SILII', '?/', '虫']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14914, + "character": "血", + "raw": "['血', 6, '+', '皿', 5, '丶', 1, 'HBT', '?/', None]" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14921, + "character": "衇", + "raw": "['衇', 12, '吅', '血', 6, '辰?', 6, 'HTHHV', '/?', '血']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14925, + "character": "衋", + "raw": "['衋', 24, '吕', '聿', 6, '皕血', 18, 'LQMAT', '/?', '血']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14944, + "character": "衞", + "raw": "['衞', 16, '弼', '彳', 3, '帀', 10, 'HODBN', '/?', '行']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14947, + "character": "衡", + "raw": "['衡', 16, '弼', '彳', 3, '', 10, 'HONKN', '/?', '行']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14954, + "character": "表", + "raw": "['表', 9, '回', '衣', 6, '土', 3, 'QMV', '/', '衣']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14960, + "character": "衮", + "raw": "['衮', 10, '回', '衣', 6, '公', 4, 'YCIHV', '/', '衣']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14962, + "character": "衰", + "raw": "['衰', 10, '回', '衣', 6, '丑', 4, 'YWMV', '/?', '衣']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14969, + "character": "衷", + "raw": "['衷', 10, '回', '衣', 6, '中', 4, 'YLHV', '/', '衣']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14972, + "character": "衺", + "raw": "['衺', 10, '回', '衣', 6, '牙', 4, 'YMHV', '/', '衣']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14979, + "character": "袁", + "raw": "['袁', 10, '吕', '𠮷', 6, '氏', 4, 'GRHV', '?/?', '衣']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14983, + "character": "袅", + "raw": "['袅', 10, '吕', '鸟*', 4, '衣', 6, 'PYSV', '?/', '衣']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 14990, + "character": "袌", + "raw": "['袌', 11, '回', '衣', 6, '包', 5, 'YPUV', '/', '衣']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15008, + "character": "袞", + "raw": "['袞', 11, '回', '衣', 6, '八口', 5, 'YCRHV', '/?', '衣']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15010, + "character": "袠", + "raw": "['袠', 11, '回', '衣', 6, '失', 5, 'YHOV', '/', '衣']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15014, + "character": "袤", + "raw": "['袤', 11, '回', '衣', 6, '矛', 5, 'YNHV', '/', '衣']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15022, + "character": "袬", + "raw": "['袬', 11, '回', '衣', 6, '台', 5, 'YIRV', '/', '衣']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15028, + "character": "袲", + "raw": "['袲', 12, '回', '衣', 6, '多', 6, 'YNIV', '/', '衣']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15043, + "character": "裁", + "raw": "['裁', 12, '回', '𢦏', 6, '衣', 6, 'JIYHV', '?/', '衣']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15052, + "character": "裊", + "raw": "['裊', 13, '吕', '鳥*', 7, '衣', 6, 'HAYV', '?/', '衣']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15057, + "character": "裏", + "raw": "['裏', 14, '回', '衣', 6, '里', 8, 'YWGV', '/', '衣']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15060, + "character": "裒", + "raw": "['裒', 12, '回', '衣', 6, '臼', 6, 'YHXV', '/', '衣']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15069, + "character": "裛", + "raw": "['裛', 13, '回', '衣', 6, '邑', 7, 'YRAV', '/', '衣']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15080, + "character": "裦", + "raw": "['裦', 15, '回', '衣', 6, '臼?矛', 9, 'YHHV', '/?', '衣']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15095, + "character": "裵", + "raw": "['裵', 14, '回', '衣', 6, '非', 8, 'YLYV', '/', '衣']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15099, + "character": "裹", + "raw": "['裹', 15, '回', '衣', 6, '果', 9, 'YWDV', '/', '衣']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15120, + "character": "褎", + "raw": "['褎', 15, '回', '衣', 6, '臼?禾', 9, 'YHDV', '/?', '衣']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15121, + "character": "褏", + "raw": "['褏', 15, '回', '衣', 6, '臼?由', 9, 'YHWV', '/?', '衣']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15124, + "character": "褒", + "raw": "['褒', 15, '回', '衣', 6, '保', 9, 'YODV', '/', '衣']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15140, + "character": "褢", + "raw": "['褢', 16, '回', '衣', 6, '鬼', 10, 'YHIV', '/', '衣']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15151, + "character": "褭", + "raw": "['褭', 16, '回', '衣', 6, '馬', 10, 'YSFV', '/', '衣']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15154, + "character": "褰", + "raw": "['褰', 16, '吕', '𡨄', 10, '衣', 6, 'JTCV', '?/', '衣']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15155, + "character": "褱", + "raw": "['褱', 16, '回', '衣', 6, '眔', 10, 'YWLV', '/', '衣']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15165, + "character": "褻", + "raw": "['褻', 17, '回', '衣', 6, '埶', 11, 'YGIV', '/', '衣']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15166, + "character": "褼", + "raw": "['褼', 16, '吅', '衤', 5, '⻃大巳', 11, 'LMWU', '/?', '衣']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15173, + "character": "襃", + "raw": "['襃', 17, '回', '衣', 6, '', 11, 'YHDV', '/?', '衣']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15174, + "character": "襄", + "raw": "['襄', 17, '回', '衣', 6, '', 11, 'YRRV', '/?', '衣']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15261, + "character": "覛", + "raw": "['覛', 13, '吅', '𠂢', 6, '見', 7, 'HVBUU', '?/', '見']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15273, + "character": "覧", + "raw": "['覧', 16, '吕', '臣亽*', 9, '見', 7, 'SIBUU', '?/', '見']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15285, + "character": "観", + "raw": "['観', 18, '吅', '', 11, '見', 7, 'OGBUU', '?/', '見']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15292, + "character": "覺", + "raw": "['覺', 20, '冖', '𦥯', 11, '見', 7, 'HBBUU', '?/', '見']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15295, + "character": "覽", + "raw": "['覽', 21, '吕', '監', 14, '見', 7, 'SWBUU', '?/', '見']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15306, + "character": "览", + "raw": "['览', 9, '吕', '', 5, '见', 4, 'LIBHU', '?/', '見']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15328, + "character": "觞", + "raw": "['觞', 12, '吅', '角', 7, '3勿', 5, 'NBONH', '/?', '角']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15333, + "character": "解", + "raw": "['解', 13, '吅', '角', 7, '刀牛', 6, 'NBSHQ', '/?', '角']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15348, + "character": "觲", + "raw": "['觲', 17, '吅', '角', 7, '羊?', 10, 'NBTGQ', '/?', '角']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15349, + "character": "觳", + "raw": "['觳', 17, '回', '𣪊', 10, '角', 7, 'GBHNE', '/', '角']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15350, + "character": "觴", + "raw": "['觴', 18, '吅', '角', 7, '𥏫*', 11, 'NBOAH', '/?', '角']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15353, + "character": "觷", + "raw": "['觷', 20, '冖', '𦥯', 11, '角', 7, 'HBNBG', '?/', '角']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15369, + "character": "訇", + "raw": "['訇', 9, '回', '勹', 2, '言', 7, 'PYMR', '/', '言']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15388, + "character": "訚", + "raw": "['訚', 10, '回', '门', 3, '言', 7, 'LSYMR', '/', '言']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15465, + "character": "詧", + "raw": "['詧', 13, '吕', '月又', 6, '言', 7, 'BOYMR', '?/', '言']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15483, + "character": "詹", + "raw": "['詹', 13, '吕', '厃儿', 6, '言', 7, 'NCYMR', '?/', '言']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15552, + "character": "誾", + "raw": "['誾', 15, '回', '門', 8, '言', 7, 'ANYMR', '/', '言']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15598, + "character": "諬", + "raw": "['諬', 16, '吕', '禾*', 9, '言', 7, 'HUYMR', '?/', '言']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15625, + "character": "謇", + "raw": "['謇', 17, '吕', '𡨄', 10, '言', 7, 'JTCR', '?/', '言']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15626, + "character": "謈", + "raw": "['謈', 17, '吕', '日共', 10, '言', 7, 'ATCR', '?/', '言']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15695, + "character": "譍", + "raw": "['譍', 20, '吕', '䧹', 13, '言', 7, 'IOGR', '?/', '言']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15742, + "character": "譼", + "raw": "['譼', 21, '吕', '監', 14, '言', 7, 'SWYMR', '?/', '言']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15897, + "character": "谗", + "raw": "['谗', 11, '吅', '讠', 2, '免冫', 9, 'IVNUY', '/?', '言']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15949, + "character": "豋", + "raw": "['豋', 13, '吕', '月又', 6, '豆', 7, 'BOMRT', '?/', '豆']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15960, + "character": "豖", + "raw": "['豖', 8, '+', '豕', 7, '丶', 1, 'MSKO', '?/', '豕']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15980, + "character": "豪", + "raw": "['豪', 14, '冖', '亠口', 5, '豕', 7, 'YRBO', '?/', '豕']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 15986, + "character": "豰", + "raw": "['豰', 17, '回', '𣪊', 10, '豕', 7, 'GOHNE', '?/', '豕']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16047, + "character": "貭", + "raw": "['貭', 11, '吕', '𣂑', 4, '貝', 7, 'HJBC', '/?', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16048, + "character": "貮", + "raw": "['貮', 11, '吕', '一弋', 4, '貝', 7, 'MPBUC', '?/', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16055, + "character": "貵", + "raw": "['貵', 12, '吕', '厶大', 5, '貝', 7, 'IKBUC', '?/', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16065, + "character": "貿", + "raw": "['貿', 12, '吕', '卯', 5, '貝', 7, 'HHBUC', '?/', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16085, + "character": "賓", + "raw": "['賓', 14, '吕', '宀?少', 7, '貝', 7, 'JMHC', '?/', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16086, + "character": "賔", + "raw": "['賔', 14, '吕', '宀', 3, '貭*', 11, 'JAHC', '/?', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16112, + "character": "賮", + "raw": "['賮', 16, '吕', '焄*?', 9, '貝', 7, 'LMFBC', '?/', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16118, + "character": "賴", + "raw": "['賴', 16, '吅', '束', 7, '負', 9, 'DLNBC', '/?', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16121, + "character": "賷", + "raw": "['賷', 17, '冖', '', 8, '貝', 7, 'JBBUC', '?/', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16122, + "character": "賸", + "raw": "['賸', 17, '吅', '月', 4, '关貝', 13, 'BFQC', '/?', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16127, + "character": "賽", + "raw": "['賽', 17, '吕', '𡨄', 10, '貝', 7, 'JTCC', '?/', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16128, + "character": "賾", + "raw": "['賾', 17, '吅', '𦣞', 6, '責', 11, 'SLQMC', '?/', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16131, + "character": "贁", + "raw": "['贁', 18, '吅', '貝貝', 14, '攵', 4, 'BCOK', '?/', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16145, + "character": "贏", + "raw": "['贏', 20, '回', '𣎆', 6, '貝', 14, 'YNBUC', '?/', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16148, + "character": "贒", + "raw": "['贒', 21, '吕', '臣忠', 14, '貝', 7, 'SPBUC', '?/', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16157, + "character": "贛", + "raw": "['贛', 24, '吅', '章', 11, '夂貢', 13, 'YJHEC', '/?', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16186, + "character": "贸", + "raw": "['贸', 9, '吕', '卯', 5, '贝', 4, 'HHBO', '?/', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16221, + "character": "赛", + "raw": "['赛', 14, '吕', '𡨄', 10, '贝', 4, 'JTCO', '?/', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16222, + "character": "赜", + "raw": "['赜', 15, '吅', '𦣞', 7, '责', 8, 'SLQMO', '?/', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16224, + "character": "赞", + "raw": "['赞', 16, '吕', '旡', 12, '贝', 4, 'HUBO', '?/', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16228, + "character": "赢", + "raw": "['赢', 17, '回', '𣎆', 6, '贝', 11, 'YNBO', '?/', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16229, + "character": "赣", + "raw": "['赣', 21, '吅', '章', 11, '夂贡', 10, 'YJHEO', '/?', '貝']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16243, + "character": "赱", + "raw": "['赱', 7, '吕', '土', 3, '丷人', 4, 'GCO', '/?', '走']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16426, + "character": "踨", + "raw": "['踨', 15, '吅', '足', 7, '从止', 8, 'RMOOO', '/?', '足']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16457, + "character": "蹇", + "raw": "['蹇', 17, '吕', '𡨄', 10, '足', 7, 'JTCO', '?/', '足']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16468, + "character": "蹒", + "raw": "['蹒', 17, '吅', '足', 7, '艹两', 10, 'RMTMB', '/?', '足']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16613, + "character": "軣", + "raw": "['軣', 11, '吕', '車', 7, '冫冫', 4, 'JJIMO', '/?', '車']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16622, + "character": "軬", + "raw": "['軬', 12, '吕', '厶大', 5, '車', 7, 'IKJWJ', '?/', '車']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16651, + "character": "載", + "raw": "['載', 13, '回', '𢦏', 6, '車', 7, 'JIJWJ', '?/', '車']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16653, + "character": "輋", + "raw": "['輋', 13, '吕', '山大', 6, '車', 7, 'UKJJ', '?/', '車']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16705, + "character": "輿", + "raw": "['輿', 16, '回', '兒*', 9, '車', 7, 'HXJC', '?/', '車']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16708, + "character": "轂", + "raw": "['轂', 17, '回', '𣪊', 10, '車', 7, 'GJHNE', '/', '車']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16719, + "character": "轍", + "raw": "['轍', 19, '吅', '車', 7, '育攵', 12, 'JJYBK', '/?', '車']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16767, + "character": "载", + "raw": "['载', 10, '回', '𢦏', 4, '车', 6, 'JIKQ', '?/', '車']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16790, + "character": "辔", + "raw": "['辔', 13, '吕', '纟车纟', 10, '口', 3, 'VMR', '?/', '車']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16795, + "character": "辙", + "raw": "['辙', 16, '吅', '车', 4, '育攵', 12, 'KQYBK', '/?', '車']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16812, + "character": "辪", + "raw": "['辪', 16, '吅', '', 9, '辛', 7, 'YRYTJ', '?/', '辛']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 16946, + "character": "逰", + "raw": "['逰', 11, '吅', '辶', 3, '扌2子', 8, 'YQOD', '/?', '辵']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17017, + "character": "遷", + "raw": "['遷', 15, '吅', '辶', 3, '', 12, 'YMWU', '/?', '辵']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17035, + "character": "邉", + "raw": "['邉', 16, '吅', '辶*', 3, '', 13, 'YHUR', '?/?', '辵']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17039, + "character": "邍", + "raw": "['邍', 19, '吅', '辶', 3, '备录', 16, 'YHWE', '*/?', '辵']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17094, + "character": "郄", + "raw": "['郄', 9, '吅', '𠫤', 6, '阝', 3, 'KINL', '?/', '邑']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17149, + "character": "郻", + "raw": "['郻', 12, '吅', '目乚巛', 9, '阝', 3, 'BVNL', '?/', '邑']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17175, + "character": "鄕", + "raw": "['鄕', 13, '吅', '乡', 3, '皀阝', 10, 'VHHPL', '/?', '邑']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17197, + "character": "鄫", + "raw": "['鄫', 15, '吅', '曾', 12, '阝', 3, 'CANL', '?/', '邑']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17227, + "character": "酉", + "raw": "['酉', 7, '+', '西', 6, '一', 1, 'MCWM', '?/', None]" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17258, + "character": "酨", + "raw": "['酨', 13, '回', '𢦏', 6, '酉', 7, 'JIMCW', '?/', '酉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17267, + "character": "酱", + "raw": "['酱', 13, '吕', '丬夕', 6, '酉', 7, 'LNMCW', '?/', '酉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17269, + "character": "酳", + "raw": "['酳', 14, '吅', '酉', 7, '幺月', 7, 'MWVIB', '/?', '酉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17301, + "character": "醓", + "raw": "['醓', 16, '吅', '酉', 7, '冘皿', 9, 'MWLUT', '/?', '酉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17329, + "character": "醯", + "raw": "['醯', 19, '吅', '酉', 7, '㐬皿', 12, 'MWYIT', '/?', '酉']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17347, + "character": "釁", + "raw": "['釁', 26, '冖', '臼同', 13, '酉分', 11, 'HBMCH', '?/?', '酉']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "ambiguous CCD '*' composition cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17358, + "character": "里", + "raw": "['里', 8, '*', '田', 5, '土', 3, 'WG', '/', None]" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17362, + "character": "釐", + "raw": "['釐', 18, '吕', '𠩺', 10, '里', 8, 'JKMWG', '?/', '里']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17374, + "character": "釜", + "raw": "['釜', 10, '吕', '父', 4, '王丷', 6, 'CKMGC', '/?', '金']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17526, + "character": "鉴", + "raw": "['鉴', 13, '吕', '', 5, '金', 8, 'LIC', '?/', '金']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17569, + "character": "銟", + "raw": "['銟', 14, '吅', '金', 8, '山巾', 6, 'CULB', '/?', '金']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17572, + "character": "銢", + "raw": "['銢', 13, '吅', '金', 8, '二水', 5, 'CINE', '/?', '金']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17606, + "character": "鋄", + "raw": "['鋄', 15, '吅', '金', 8, '一火又', 7, 'CMFE', '/?', '金']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17671, + "character": "錅", + "raw": "['錅', 16, '吕', '𥝢', 8, '金', 8, 'HHC', '?/', '金']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17781, + "character": "鍳", + "raw": "['鍳', 17, '吕', '臣亽*', 9, '金', 8, 'SIC', '?/', '金']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17837, + "character": "鎫", + "raw": "['鎫', 18, '吅', '金', 8, '丿?夂', 10, 'CHBE', '/?', '金']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17955, + "character": "鐡", + "raw": "['鐡', 20, '吅', '金', 8, '', 12, 'CJIT', '/?', '金']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 17987, + "character": "鑁", + "raw": "['鑁', 21, '吅', '金', 8, '凵?八夊', 13, 'CUCE', '/?', '金']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18004, + "character": "鑒", + "raw": "['鑒', 22, '吕', '監', 14, '金', 8, 'SWC', '?/', '金']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18011, + "character": "鑙", + "raw": "['鑙', 23, '吅', '金', 8, '禾尤旨', 15, 'CHUA', '/?', '金']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18015, + "character": "鑝", + "raw": "['鑝', 23, '吅', '金', 8, '蓬', 15, 'CTYJ', '/?', '金']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18049, + "character": "鑿", + "raw": "['鑿', 27, '吕', '', 19, '金', 8, 'TEC', '?/', '金']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18122, + "character": "铈", + "raw": "['铈', 10, '吅', '钅', 5, '市*', 5, 'OPYLB', '/?', '金']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18179, + "character": "锁", + "raw": "['锁', 12, '吅', '钅', 5, '?贝', 7, 'CFBO', '/?', '金']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18307, + "character": "閁", + "raw": "['閁', 9, '回', '門', 8, '丿', 1, 'ANH', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18308, + "character": "閂", + "raw": "['閂', 9, '回', '門', 8, '一', 1, 'ANM', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18309, + "character": "閃", + "raw": "['閃', 10, '回', '門', 8, '人', 2, 'ANO', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18311, + "character": "閅", + "raw": "['閅', 10, '回', '門', 8, '丁', 2, 'ANMN', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18312, + "character": "閆", + "raw": "['閆', 11, '回', '門', 8, '三', 3, 'ANMMM', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18313, + "character": "閇", + "raw": "['閇', 11, '回', '門', 8, '下', 3, 'ANMY', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18314, + "character": "閈", + "raw": "['閈', 11, '回', '門', 8, '干', 3, 'ANMJ', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18315, + "character": "閉", + "raw": "['閉', 11, '回', '門', 8, '才', 3, 'ANDH', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18316, + "character": "閊", + "raw": "['閊', 11, '回', '門', 8, '山', 3, 'ANU', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18317, + "character": "開", + "raw": "['開', 12, '回', '門', 8, '开', 4, 'ANMT', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18318, + "character": "閌", + "raw": "['閌', 12, '回', '門', 8, '亢', 4, 'ANYHN', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18319, + "character": "閍", + "raw": "['閍', 12, '回', '門', 8, '方', 4, 'ANYHS', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18320, + "character": "閎", + "raw": "['閎', 12, '回', '門', 8, '厷', 4, 'ANKI', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18321, + "character": "閏", + "raw": "['閏', 12, '回', '門', 8, '王', 4, 'ANMG', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18322, + "character": "閐", + "raw": "['閐', 12, '回', '門', 8, '毛', 4, 'ANHQU', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18323, + "character": "閑", + "raw": "['閑', 12, '回', '門', 8, '木', 4, 'AND', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18324, + "character": "閒", + "raw": "['閒', 12, '回', '門', 8, '月', 4, 'ANB', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18325, + "character": "間", + "raw": "['間', 12, '回', '門', 8, '日', 4, 'ANA', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18326, + "character": "閔", + "raw": "['閔', 12, '回', '門', 8, '文', 4, 'ANYK', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18327, + "character": "閕", + "raw": "['閕', 12, '回', '門', 8, '牙', 4, 'ANMVH', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18328, + "character": "閖", + "raw": "['閖', 12, '回', '門', 8, '水', 4, 'ANE', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18329, + "character": "閗", + "raw": "['閗', 12, '回', '門', 8, '斗', 4, 'ANYJ', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18330, + "character": "閘", + "raw": "['閘', 13, '回', '門', 8, '甲', 5, 'ANWL', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18331, + "character": "閙", + "raw": "['閙', 12, '回', '門', 8, '市', 4, 'ANYLB', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18332, + "character": "閚", + "raw": "['閚', 13, '回', '門', 8, '立', 5, 'ANYT', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18333, + "character": "閛", + "raw": "['閛', 13, '回', '門', 8, '平', 5, 'ANMFJ', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18334, + "character": "閜", + "raw": "['閜', 13, '回', '門', 8, '可', 5, 'ANMNR', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18335, + "character": "閝", + "raw": "['閝', 13, '回', '門', 8, '令', 5, 'ANOII', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18336, + "character": "閞", + "raw": "['閞', 13, '回', '門', 8, '弁', 5, 'ANIT', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18337, + "character": "閟", + "raw": "['閟', 13, '回', '門', 8, '必', 5, 'ANPH', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18338, + "character": "閠", + "raw": "['閠', 13, '回', '門', 8, '玉', 5, 'ANMGI', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18339, + "character": "閡", + "raw": "['閡', 14, '回', '門', 8, '亥', 6, 'ANYVO', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18340, + "character": "関", + "raw": "['関', 14, '回', '門', 8, '关', 6, 'ANTK', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18341, + "character": "閣", + "raw": "['閣', 14, '回', '門', 8, '各', 6, 'ANHER', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18342, + "character": "閤", + "raw": "['閤', 14, '回', '門', 8, '合', 6, 'ANOMR', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18343, + "character": "閥", + "raw": "['閥', 14, '回', '門', 8, '伐', 6, 'ANOI', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18344, + "character": "閦", + "raw": "['閦', 14, '回', '門', 8, '众', 6, 'ANOOO', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18345, + "character": "閧", + "raw": "['閧', 14, '回', '門', 8, '共', 6, 'ANTC', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18346, + "character": "閨", + "raw": "['閨', 14, '回', '門', 8, '圭', 6, 'ANGG', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18347, + "character": "閩", + "raw": "['閩', 14, '回', '門', 8, '虫', 6, 'ANLMI', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18348, + "character": "閪", + "raw": "['閪', 14, '回', '門', 8, '西', 6, 'ANMCW', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18349, + "character": "閫", + "raw": "['閫', 15, '回', '門', 8, '困', 7, 'ANWD', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18350, + "character": "閬", + "raw": "['閬', 15, '回', '門', 8, '良', 7, 'ANIAV', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18351, + "character": "閭", + "raw": "['閭', 15, '回', '門', 8, '呂', 7, 'ANRHR', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18352, + "character": "閮", + "raw": "['閮', 15, '回', '門', 8, '廷', 7, 'ANNKG', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18353, + "character": "閯", + "raw": "['閯', 15, '回', '門', 8, '沙', 7, 'ANEFH', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18354, + "character": "閰", + "raw": "['閰', 14, '回', '門', 8, '臼', 6, 'ANHX', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18355, + "character": "閱", + "raw": "['閱', 15, '回', '門', 8, '兌', 7, 'ANCRU', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18356, + "character": "閲", + "raw": "['閲', 15, '回', '門', 8, '兌', 7, 'ANCRU', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18357, + "character": "閳", + "raw": "['閳', 15, '回', '門', 8, '車', 7, 'ANJWJ', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18358, + "character": "閴", + "raw": "['閴', 15, '回', '門', 8, '貝', 7, 'ANBUC', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18359, + "character": "閵", + "raw": "['閵', 16, '回', '門', 8, '隹', 8, 'ANOG', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18360, + "character": "閶", + "raw": "['閶', 16, '回', '門', 8, '昌', 8, 'ANAA', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18362, + "character": "閸", + "raw": "['閸', 16, '回', '門', 8, '亞', 8, 'ANMLM', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18363, + "character": "閹", + "raw": "['閹', 16, '回', '門', 8, '奄', 8, 'ANKLU', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18364, + "character": "閺", + "raw": "['閺', 16, '回', '門', 8, '旻', 8, 'ANAYK', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18365, + "character": "閻", + "raw": "['閻', 16, '回', '門', 8, '臽', 8, 'ANNHX', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18366, + "character": "閼", + "raw": "['閼', 16, '回', '門', 8, '於', 8, 'ANYSY', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18367, + "character": "閽", + "raw": "['閽', 16, '回', '門', 8, '昏', 8, 'ANHPA', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18368, + "character": "閾", + "raw": "['閾', 16, '回', '門', 8, '或', 8, 'ANIRM', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18369, + "character": "閿", + "raw": "['閿', 16, '回', '門', 8, '受', 8, 'ANBBE', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18370, + "character": "闀", + "raw": "['闀', 17, '回', '門', 8, '巷', 9, 'ANTCU', '/', '門']" + }, + { + "kind": "ccd_unsupported_row", + "message": "rightComponent: missing component", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18371, + "character": "闁", + "raw": "['闁', 16, '回', '門', 8, None, 8, 'ANAN', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18372, + "character": "闂", + "raw": "['闂', 16, '回', '門', 8, '卷', 8, 'ANFQU', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18373, + "character": "闃", + "raw": "['闃', 17, '回', '門', 8, '狊', 9, 'ANBUK', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18374, + "character": "闄", + "raw": "['闄', 17, '回', '門', 8, '要', 9, 'ANMWV', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18375, + "character": "闅", + "raw": "['闅', 17, '回', '門', 8, '𥄎', 9, 'ANBUE', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18376, + "character": "闆", + "raw": "['闆', 17, '回', '門', 8, '品', 9, 'ANRRR', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18377, + "character": "闇", + "raw": "['闇', 17, '回', '門', 8, '音', 9, 'ANYTA', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18378, + "character": "闈", + "raw": "['闈', 17, '回', '門', 8, '韋', 9, 'ANDMQ', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18379, + "character": "闉", + "raw": "['闉', 17, '回', '門', 8, '垔', 9, 'ANMWG', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18380, + "character": "闊", + "raw": "['闊', 17, '回', '門', 8, '活', 9, 'ANEHR', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18381, + "character": "闋", + "raw": "['闋', 17, '回', '門', 8, '癸', 9, 'ANNOK', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18382, + "character": "闌", + "raw": "['闌', 17, '回', '門', 8, '柬', 9, 'ANDWF', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18383, + "character": "闍", + "raw": "['闍', 16, '回', '門', 8, '者', 8, 'ANJKA', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18384, + "character": "闎", + "raw": "['闎', 17, '回', '門', 8, '泉', 9, 'ANHAE', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18385, + "character": "闏", + "raw": "['闏', 17, '回', '門', 8, '風', 9, 'ANHNI', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18386, + "character": "闐", + "raw": "['闐', 18, '回', '門', 8, '真', 10, 'ANJBC', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18387, + "character": "闑", + "raw": "['闑', 18, '回', '門', 8, '臬', 10, 'ANHUD', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18388, + "character": "闒", + "raw": "['闒', 18, '回', '門', 8, '𦐇', 10, 'ANASM', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18389, + "character": "闓", + "raw": "['闓', 18, '回', '門', 8, '豈', 10, 'ANUMT', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18390, + "character": "闔", + "raw": "['闔', 18, '回', '門', 8, '盍', 10, 'ANGIT', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18391, + "character": "闕", + "raw": "['闕', 18, '回', '門', 8, '欮', 10, 'ANTUO', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18392, + "character": "闖", + "raw": "['闖', 18, '回', '門', 8, '馬', 10, 'ANSQF', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18393, + "character": "闗", + "raw": "['闗', 18, '回', '門', 8, '𢇁', 10, 'ANVIF', '/', '門']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18394, + "character": "闘", + "raw": "['闘', 18, '回', '門', 8, '豆寸', 10, 'ANMTI', '/?', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18395, + "character": "闙", + "raw": "['闙', 19, '回', '門', 8, '啟', 11, 'ANIKR', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18396, + "character": "闚", + "raw": "['闚', 19, '回', '門', 8, '規', 11, 'ANQOU', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18397, + "character": "闛", + "raw": "['闛', 19, '回', '門', 8, '堂', 11, 'ANFBG', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18398, + "character": "關", + "raw": "['關', 19, '回', '門', 8, '𢇇', 11, 'ANVIT', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18399, + "character": "闝", + "raw": "['闝', 19, '回', '門', 8, '敗', 11, 'ANBCK', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18400, + "character": "闞", + "raw": "['闞', 19, '回', '門', 8, '敢', 11, 'ANMJK', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18401, + "character": "闟", + "raw": "['闟', 20, '回', '門', 8, '翕', 12, 'ANORM', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18402, + "character": "闠", + "raw": "['闠', 20, '回', '門', 8, '貴', 12, 'ANLMC', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18403, + "character": "闡", + "raw": "['闡', 20, '回', '門', 8, '單', 12, 'ANRRJ', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18404, + "character": "闢", + "raw": "['闢', 21, '回', '門', 8, '辟', 13, 'ANSRJ', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18405, + "character": "闣", + "raw": "['闣', 21, '回', '門', 8, '當', 13, 'ANFBW', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18406, + "character": "闤", + "raw": "['闤', 21, '回', '門', 8, '睘', 13, 'ANWLV', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18407, + "character": "闥", + "raw": "['闥', 21, '回', '門', 8, '達', 13, 'ANYGQ', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18408, + "character": "闦", + "raw": "['闦', 21, '回', '門', 8, '豊', 13, 'ANTWT', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18409, + "character": "闧", + "raw": "['闧', 21, '回', '門', 8, '遠', 13, 'ANYGV', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18411, + "character": "闩", + "raw": "['闩', 4, '回', '门', 3, '一', 1, 'LSM', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18412, + "character": "闪", + "raw": "['闪', 5, '回', '门', 3, '人', 2, 'LSO', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18413, + "character": "闫", + "raw": "['闫', 6, '回', '门', 3, '三', 3, 'LSMMM', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18414, + "character": "闬", + "raw": "['闬', 6, '回', '门', 3, '干', 3, 'LSMJ', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18415, + "character": "闭", + "raw": "['闭', 6, '回', '门', 3, '才', 3, 'LSDH', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18416, + "character": "问", + "raw": "['问', 6, '回', '门', 3, '口', 3, 'LSR', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18417, + "character": "闯", + "raw": "['闯', 6, '回', '门', 3, '马', 3, 'LSNVM', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18418, + "character": "闰", + "raw": "['闰', 7, '回', '门', 3, '王', 4, 'LSMG', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18419, + "character": "闱", + "raw": "['闱', 7, '回', '门', 3, '韦', 4, 'LSQS', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18420, + "character": "闲", + "raw": "['闲', 7, '回', '门', 3, '木', 4, 'LSD', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18421, + "character": "闳", + "raw": "['闳', 7, '回', '门', 3, '厷', 4, 'LSKI', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18422, + "character": "间", + "raw": "['间', 7, '回', '门', 3, '日', 4, 'LSA', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18423, + "character": "闵", + "raw": "['闵', 7, '回', '门', 3, '文', 4, 'LSYK', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18424, + "character": "闶", + "raw": "['闶', 7, '回', '门', 3, '亢', 4, 'LSYHN', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18425, + "character": "闷", + "raw": "['闷', 7, '回', '门', 3, '心', 4, 'LSP', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18426, + "character": "闸", + "raw": "['闸', 8, '回', '门', 3, '甲', 5, 'LSWL', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18427, + "character": "闹", + "raw": "['闹', 7, '回', '门', 3, '市', 4, 'LSYLB', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18428, + "character": "闺", + "raw": "['闺', 9, '回', '门', 3, '圭', 6, 'LSGG', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18429, + "character": "闻", + "raw": "['闻', 9, '回', '门', 3, '耳', 6, 'LSSJ', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18430, + "character": "闼", + "raw": "['闼', 9, '回', '门', 3, '达', 6, 'LSYK', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18431, + "character": "闽", + "raw": "['闽', 9, '回', '门', 3, '虫', 6, 'LSLMI', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18432, + "character": "闾", + "raw": "['闾', 9, '回', '门', 3, '吕', 6, 'LSRR', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18433, + "character": "闿", + "raw": "['闿', 9, '回', '门', 3, '岂', 6, 'LSUSU', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18434, + "character": "阀", + "raw": "['阀', 9, '回', '门', 3, '伐', 6, 'LSOI', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18435, + "character": "阁", + "raw": "['阁', 9, '回', '门', 3, '各', 6, 'LSHER', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18436, + "character": "阂", + "raw": "['阂', 9, '回', '门', 3, '亥', 6, 'LSYVO', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18437, + "character": "阃", + "raw": "['阃', 10, '回', '门', 3, '困', 7, 'LSWD', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18438, + "character": "阄", + "raw": "['阄', 10, '回', '门', 3, '龟', 7, 'LSNWU', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18439, + "character": "阅", + "raw": "['阅', 10, '回', '门', 3, '兌', 7, 'LSCRU', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18440, + "character": "阆", + "raw": "['阆', 10, '回', '门', 3, '良', 7, 'LSIAV', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18441, + "character": "阇", + "raw": "['阇', 11, '回', '门', 3, '者', 8, 'LSJKA', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18442, + "character": "阈", + "raw": "['阈', 11, '回', '门', 3, '或', 8, 'LSIRM', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18443, + "character": "阉", + "raw": "['阉', 11, '回', '门', 3, '奄', 8, 'LSKLU', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18444, + "character": "阊", + "raw": "['阊', 11, '回', '门', 3, '昌', 8, 'LSAA', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18445, + "character": "阋", + "raw": "['阋', 11, '回', '门', 3, '兒', 8, 'LSHXU', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18446, + "character": "阌", + "raw": "['阌', 11, '回', '门', 3, '受', 8, 'LSBBE', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18447, + "character": "阍", + "raw": "['阍', 11, '回', '门', 3, '昏', 8, 'LSHPA', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18448, + "character": "阎", + "raw": "['阎', 11, '回', '门', 3, '臽', 8, 'LSNHX', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18449, + "character": "阏", + "raw": "['阏', 11, '回', '门', 3, '於', 8, 'LSYSY', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18450, + "character": "阐", + "raw": "['阐', 11, '回', '门', 3, '单', 8, 'LSCWJ', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18451, + "character": "阑", + "raw": "['阑', 12, '回', '门', 3, '柬', 9, 'LSDWF', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18452, + "character": "阒", + "raw": "['阒', 12, '回', '门', 3, '狊', 9, 'LSBUK', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18453, + "character": "阓", + "raw": "['阓', 12, '回', '门', 3, '贵', 9, 'LSLMO', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18454, + "character": "阔", + "raw": "['阔', 12, '回', '门', 3, '活', 9, 'LSEHR', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18455, + "character": "阕", + "raw": "['阕', 12, '回', '门', 3, '癸', 9, 'LSNOK', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18456, + "character": "阖", + "raw": "['阖', 13, '回', '门', 3, '盍', 10, 'LSGIT', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18457, + "character": "阗", + "raw": "['阗', 13, '回', '门', 3, '真', 10, 'LSJBC', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18458, + "character": "阘", + "raw": "['阘', 13, '回', '门', 3, '𦐇', 10, 'LSASM', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18459, + "character": "阙", + "raw": "['阙', 13, '回', '门', 3, '欮', 10, 'LSTUO', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18460, + "character": "阚", + "raw": "['阚', 14, '回', '门', 3, '敢', 11, 'LSNJK', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18461, + "character": "阛", + "raw": "['阛', 16, '回', '门', 3, '睘', 13, 'LSWLV', '/', '門']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18509, + "character": "陋", + "raw": "['陋', 9, '吅', '阝', 3, '乚丙', 6, 'NLMBV', '/?', '阜']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18535, + "character": "陥", + "raw": "['陥', 10, '吅', '阝', 3, '2旧', 7, 'NLNLA', '/?', '阜']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18555, + "character": "陹", + "raw": "['陹', 11, '吅', '阝', 3, '升日', 8, 'NLHTA', '/?', '阜']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18564, + "character": "隂", + "raw": "['隂', 12, '吅', '阝', 3, '人镸', 9, 'NLOSI', '/?', '阜']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18568, + "character": "隆", + "raw": "['隆', 12, '吅', '阝', 3, '夂生', 9, 'NLHEM', '/?', '阜']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18571, + "character": "隉", + "raw": "['隉', 12, '吅', '阝', 3, '臼土', 9, 'NLHXG', '/?', '阜']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18594, + "character": "隠", + "raw": "['隠', 14, '吅', '阝', 3, '', 11, 'NLBSP', '/?', '阜']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18611, + "character": "隱", + "raw": "['隱', 17, '吅', '阝', 3, '', 14, 'NLBMP', '/?', '阜']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18612, + "character": "隲", + "raw": "['隲', 17, '吅', '阝', 3, '少馬', 14, 'NLFHF', '/?', '阜']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18616, + "character": "隶", + "raw": "['隶', 8, '+', '肀*', 3, '氺', 5, 'LE', '?/', None]" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18617, + "character": "隷", + "raw": "['隷', 16, '吅', '土示', 8, '隶', 8, 'GFLE', '?/', '隶']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18639, + "character": "雍", + "raw": "['雍', 13, '吕', '亠', 2, '', 11, 'YVHG', '/?', '隹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18649, + "character": "雗", + "raw": "['雗', 18, '回', '倝', 10, '隹', 8, 'JJOOG', '/', '隹']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18654, + "character": "雜", + "raw": "['雜', 18, '吅', '亠从木', 10, '隹', 8, 'YDOG', '?/', '隹']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18657, + "character": "雟", + "raw": "['雟', 18, '吕', '屮', 3, '隹冏', 15, 'UOGB', '/?', '隹']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18662, + "character": "雤", + "raw": "['雤', 21, '冖', '𦥯', 11, '隹', 8, 'HBOG', '?/', '隹']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18700, + "character": "霊", + "raw": "['霊', 15, '吕', '雨', 8, '一亚', 7, 'MBMMC', '/?', '雨']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18753, + "character": "霿", + "raw": "['霿', 22, '吕', '雨', 8, '敄目', 14, 'MBNHU', '/?', '雨']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18841, + "character": "鞗", + "raw": "['鞗', 15, '回', '攸', 7, '革', 8, 'OLOJ', '/', '革']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18870, + "character": "鞴", + "raw": "['鞴', 18, '吅', '革', 8, '萹?', 10, 'TJTHB', '/?', '革']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18901, + "character": "韓", + "raw": "['韓', 17, '吅', '𠦝', 8, '韋', 9, 'JJDMQ', '?/', '韋']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18909, + "character": "韛", + "raw": "['韛', 20, '吅', '韋', 9, '萹?', 11, 'DQTHB', '/?', '韋']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18923, + "character": "韩", + "raw": "['韩', 12, '吅', '𠦝', 8, '韦', 4, 'JJQS', '?/', '韋']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18929, + "character": "韯", + "raw": "['韯', 15, '回', '𢦏', 6, '韭', 9, 'JILSM', '?/', '韭']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18931, + "character": "韱", + "raw": "['韱', 17, '吕', '㦰', 8, '韭', 9, 'OILSM', '?/', '韭']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18932, + "character": "韲", + "raw": "['韲', 19, '吕', '齊*', 10, '韭', 9, 'YSOM', '?/', '韭']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18982, + "character": "頤", + "raw": "['頤', 15, '吅', '𦣞', 6, '頁', 9, 'SLMBC', '?/', '頁']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18983, + "character": "頥", + "raw": "['頥', 16, '吅', '丨臣', 7, '頁', 9, 'LSLC', '?/', '頁']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18985, + "character": "頧", + "raw": "['頧', 15, '吅', '𠂤', 6, '頁', 9, 'HRMBC', '?/', '頁']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 18992, + "character": "頮", + "raw": "['頮', 16, '吅', '水廾', 7, '頁', 9, 'ETMBC', '?/', '頁']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19009, + "character": "頿", + "raw": "['頿', 17, '吅', '辵匕', 8, '頁', 9, 'HPMBC', '?/', '頁']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19018, + "character": "顈", + "raw": "['顈', 17, '回', '糸', 6, '頃', 11, 'PFMBC', '/*', '頁']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19060, + "character": "顲", + "raw": "['顲', 25, '吅', '𤎭', 16, '頁', 9, 'FWMBC', '?/', '頁']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19082, + "character": "颈", + "raw": "['颈', 11, '吅', '𢀖', 5, '页', 6, 'NMMBO', '?/', '頁']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19087, + "character": "颍", + "raw": "['颍', 12, '回', '水', 4, '顷', 8, 'PEMBO', '/*', '頁']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19088, + "character": "颎", + "raw": "['颎', 12, '回', '火', 4, '顷', 8, 'PFMBO', '/*', '頁']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19090, + "character": "颐", + "raw": "['颐', 12, '吅', '𦣞', 6, '页', 6, 'SLMBO', '?/', '頁']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19092, + "character": "颒", + "raw": "['颒', 13, '吅', '水廾', 7, '页', 6, 'ETMBO', '?/', '頁']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19096, + "character": "颖", + "raw": "['颖', 13, '回', '禾', 5, '顷', 8, 'PDMBO', '/*', '頁']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19105, + "character": "颟", + "raw": "['颟', 16, '吅', '艹两', 10, '页', 6, 'TBMBO', '?/', '頁']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19126, + "character": "颴", + "raw": "['颴', 16, '吅', '風', 9, '人*疋', 7, 'HNONO', '/?', '風']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19133, + "character": "颻", + "raw": "['颻', 19, '吅', '䍃', 10, '風', 9, 'BUHNI', '?/', '風']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19152, + "character": "风", + "raw": "['风', 4, '回', '几', 2, '乂', 2, 'HNK', '/', '風']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19160, + "character": "飖", + "raw": "['飖', 13, '吅', '爫缶', 9, '风', 4, 'BUHNK', '?/', '風']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19183, + "character": "飭", + "raw": "['飭', 13, '回', '飤', 11, '力', 2, 'OIOKS', '/', '食']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19212, + "character": "養", + "raw": "['養', 16, '吕', '𦍌', 6, '食', 10, 'TOIAV', '?/', '食']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19310, + "character": "饬", + "raw": "['饬', 7, '回', '飤', 3, '力', 4, 'NVOKS', '*/', '食']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19341, + "character": "馋", + "raw": "['馋', 12, '吅', '饣', 3, '免冫', 9, 'NVNUY', '/?', '食']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19396, + "character": "駂", + "raw": "['駂', 14, '吅', '𠤏', 4, '馬', 10, 'PJSQF', '?/', '馬']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19501, + "character": "騫", + "raw": "['騫', 20, '吕', '𡨄', 10, '馬', 10, 'JTCF', '?/', '馬']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19546, + "character": "驘", + "raw": "['驘', 23, '回', '𣎆', 13, '馬', 10, 'YNSQF', '?/', '馬']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19616, + "character": "骞", + "raw": "['骞', 13, '吕', '𡨄', 10, '马', 3, 'JTCM', '?/', '馬']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19674, + "character": "高", + "raw": "['高', 10, '吕', '亠口', 5, '冋', 5, 'YRBR', '?/', None]" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19675, + "character": "髙", + "raw": "['髙', 11, '吕', '丶耳', 6, '冋', 5, 'YSLB', '?/', '高']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19741, + "character": "鬛", + "raw": "['鬛', 22, '吕', '髟', 10, '鼠?', 12, 'SHWKV', '/?', '髟']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19756, + "character": "鬪", + "raw": "['鬪', 20, '吕', '鬥', 10, '豆寸', 10, 'LNMTI', '/?', '鬥']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19758, + "character": "鬬", + "raw": "['鬬', 24, '吕', '鬥', 10, '?', 14, 'LNBML', '/?', '鬥']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19761, + "character": "鬯", + "raw": "['鬯', 10, '吕', '𠚍', 10, '匕', 0, 'UIP', '?/', None]" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19762, + "character": "鬰", + "raw": "['鬰', 27, '冖', '木爻木', 12, '鬯彡', 13, 'DDBUH', '?/?', '鬯']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19763, + "character": "鬱", + "raw": "['鬱', 28, '冖', '木缶木', 13, '鬯彡', 13, 'DDBUH', '?/?', '鬯']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19772, + "character": "鬺", + "raw": "['鬺', 21, '吅', '鬲', 10, '𥏫*', 11, 'MBOAH', '/?', '鬲']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19900, + "character": "鮺", + "raw": "['鮺', 17, '吕', '羊', 6, '魚', 11, 'TQNWF', '?/', '魚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19914, + "character": "鯈", + "raw": "['鯈', 18, '回', '攸', 7, '魚', 11, 'OLOF', '/', '魚']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 19950, + "character": "鯬", + "raw": "['鯬', 19, '吕', '𥝢', 8, '魚', 11, 'HHNWF', '?/', '魚']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20022, + "character": "鰴", + "raw": "['鰴', 22, '回', '微', 11, '魚', 11, 'HOUFK', '/', '魚']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20065, + "character": "鱟", + "raw": "['鱟', 24, '冖', '𦥯', 11, '魚', 11, 'HBNWF', '?/', '魚']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20127, + "character": "鲝", + "raw": "['鲝', 14, '吕', '羊', 6, '鱼', 8, 'TQNWM', '?/', '魚']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20206, + "character": "鳬", + "raw": "['鳬', 9, '吕', '鳥*', 7, '几', 2, 'HAYN', '?/', '鳥']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20209, + "character": "鳯", + "raw": "['鳯', 13, '回', '几', 2, '鳥', 11, 'HNHAF', '/', '鳥']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20213, + "character": "鳳", + "raw": "['鳳', 13, '回', '几', 3, '𩾏', 10, 'HNMAF', '/', '鳥']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20233, + "character": "鴇", + "raw": "['鴇', 15, '吅', '𠤏', 4, '鳥', 11, 'PJHAF', '?/', '鳥']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20271, + "character": "鴭", + "raw": "['鴭', 17, '吅', '𠂤', 6, '鳥', 11, 'HRHAF', '?/', '鳥']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20347, + "character": "鵹", + "raw": "['鵹', 19, '吕', '𥝢', 8, '鳥', 11, 'HHHAF', '?/', '鳥']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20369, + "character": "鶏", + "raw": "['鶏', 19, '吅', '爫无', 8, '鳥', 11, 'BOHAF', '?/', '鳥']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20403, + "character": "鶱", + "raw": "['鶱', 21, '吕', '𡨄', 10, '鳥', 11, 'JTCF', '?/', '鳥']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20416, + "character": "鶾", + "raw": "['鶾', 21, '回', '倝', 10, '鳥', 11, 'JJOHF', '/', '鳥']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20417, + "character": "鶿", + "raw": "['鶿', 21, '吕', '玆', 10, '鳥', 11, 'TVIF', '?/', '鳥']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20418, + "character": "鷀", + "raw": "['鷀', 21, '吅', '玆', 10, '鳥', 11, 'TIHAF', '?/', '鳥']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20420, + "character": "鷂", + "raw": "['鷂', 21, '吅', '䍃', 10, '鳥', 11, 'BUHAF', '?/', '鳥']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20425, + "character": "鷇", + "raw": "['鷇', 21, '回', '𣪊', 10, '鳥', 11, 'GFHNE', '/', '鳥']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20455, + "character": "鷥", + "raw": "['鷥', 23, '咒', '糸', 6, '鳥', 11, 'VFHAF', '?/', '鳥']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20460, + "character": "鷪", + "raw": "['鷪', 23, '冖', '目目', 10, '鳥', 11, 'BUBHF', '?/', '鳥']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20466, + "character": "鷰", + "raw": "['鷰', 23, '吕', '廿北口', 12, '鳥', 11, 'TLPF', '?/', '鳥']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20475, + "character": "鷹", + "raw": "['鷹', 24, '吕', '䧹', 13, '鳥', 11, 'IOGF', '?/', '鳥']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20479, + "character": "鷽", + "raw": "['鷽', 24, '冖', '𦥯', 11, '鳥', 11, 'HBHAF', '?/', '鳥']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20483, + "character": "鸁", + "raw": "['鸁', 24, '回', '𣎆', 6, '鳥', 18, 'YNHAF', '?/', '鳥']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20522, + "character": "鸨", + "raw": "['鸨', 9, '吅', '𠤏', 4, '鸟', 5, 'PJPYM', '?/', '鳥']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20576, + "character": "鹞", + "raw": "['鹞', 15, '吅', '爫缶', 10, '鸟', 5, 'BUPYM', '?/', '鳥']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20607, + "character": "鹽", + "raw": "['鹽', 24, '吕', '', 19, '皿', 5, 'SWBT', '?/', '鹵']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20686, + "character": "黌", + "raw": "['黌', 25, '冖', '𦥯', 11, '黃', 12, 'HBTLC', '?/', '黃']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20688, + "character": "黎", + "raw": "['黎', 15, '吕', '𥝢', 8, '汆', 7, 'HHOE', '?/', '黍']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20699, + "character": "黙", + "raw": "['黙', 16, '吕', '里犬', 12, '灬', 4, 'WKF', '?/', '黑']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20713, + "character": "黧", + "raw": "['黧', 20, '吕', '𥝢', 8, '黑', 12, 'HHWGF', '?/', '黑']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20723, + "character": "黱", + "raw": "['黱', 22, '吅', '月', 4, '关黑', 18, 'BFQF', '/?', '黑']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20726, + "character": "黴", + "raw": "['黴', 23, '回', '微', 11, '黑', 12, 'HOUFK', '/', '黑']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20751, + "character": "鼍", + "raw": "['鼍', 20, '吕', '口口田一', 12, '黾', 8, 'RRWMU', '?/', '黽']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20836, + "character": "齢", + "raw": "['齢', 20, '吅', '歯', 15, '令', 5, 'YUOII', '?/', '齒']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20904, + "character": "龨", + "raw": "['龨', 10, '回', '匚', 2, '隹', 8, '1', '/', '匚']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20915, + "character": "㐮", + "raw": "['㐮', 13, '回', '衣', 6, '?', 7, '', '/?', '亠']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20928, + "character": "㕡", + "raw": "['㕡', 14, '吅', '?', 12, '又', 2, '', '?/', '又']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20932, + "character": "㘝", + "raw": "['㘝', 5, '回', '囗', 3, '又', 2, '', '/', '囗']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "ambiguous CCD '*' composition cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20950, + "character": "㣺", + "raw": "['㣺', 4, '*', '心', 4, None, 0, '', '*/', '心']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 20990, + "character": "䦚", + "raw": "['䦚', 14, '回', '門', 8, '舌', 6, '', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21024, + "character": "𠚍", + "raw": "['𠚍', 7, '回', '凵', 2, '𠂭', 5, '', '/', '凵']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21025, + "character": "𠣜", + "raw": "['𠣜', 8, '回', '勹', 2, '虫', 6, '', '/', '勹']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "ambiguous CCD '*' composition cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21029, + "character": "𠦝", + "raw": "['𠦝', 8, '*', '卓', 8, None, 0, '', '*/', '十']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21052, + "character": "𡆦", + "raw": "['𡆦', 5, '回', '囗', 3, '八', 2, '', '/', '囗']" + }, + { + "kind": "ccd_unsupported_row", + "message": "rightComponent: uncertain component marker", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21054, + "character": "𡊮", + "raw": "['𡊮', 8, '吕', '土', 3, '?', 5, '', '/', '土']" + }, + { + "kind": "ccd_unsupported_row", + "message": "leftComponent: uncertain component marker", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21055, + "character": "𡌥", + "raw": "['𡌥', 10, '吕', '?', 7, '土', 3, '', '/', '土']" + }, + { + "kind": "ccd_unsupported_row", + "message": "rightComponent: uncertain component marker", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21065, + "character": "𡩜", + "raw": "['𡩜', 12, '吕', '宀', 3, '?', 9, '', '/', '宀']" + }, + { + "kind": "ccd_unsupported_row", + "message": "rightComponent: uncertain component marker", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21091, + "character": "𢦑", + "raw": "['𢦑', 6, '+', '戈', 4, '?', 2, '', '/', '戈']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21092, + "character": "𢧜", + "raw": "['𢧜', 13, '回', '𢦏', 6, '呈', 7, '', '/', '戈']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21098, + "character": "𢿐", + "raw": "['𢿐', 5, '吅', '?', 11, '攵', 4, '', '?/', '攴']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21113, + "character": "𣪊", + "raw": "['𣪊', 10, '吅', '?', 6, '殳', 4, '', '?/', '殳']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21115, + "character": "𣫞", + "raw": "['𣫞', 20, '吅', '?', 16, '殳', 4, '', '?/', '殳']" + }, + { + "kind": "ccd_unsupported_row", + "message": "rightComponent: uncertain component marker", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21119, + "character": "𣹰", + "raw": "['𣹰', 13, '吅', '氵', 3, '?', 10, '', '/', '水']" + }, + { + "kind": "ccd_unverified_row", + "message": "CCD verification notes contain '?'; row rejected in strict mode", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21123, + "character": "𤔔", + "raw": "['𤔔', 12, '吕', '爪', 8, '?', 4, '', '/?', '爪']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "ambiguous CCD '*' composition cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21142, + "character": "𦍌", + "raw": "['𦍌', 6, '*', '羊', 6, None, 0, '', '*/', '羊']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "ambiguous CCD '*' composition cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21151, + "character": "𦣞", + "raw": "['𦣞', 6, '*', '臣', 6, None, 0, '', '*/', '臣']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21153, + "character": "𦥔", + "raw": "['𦥔', 7, '回', '臼', 6, '丨', 1, '', '*/', '臼']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21154, + "character": "𦥯", + "raw": "['𦥯', 13, '回', '臼', 7, '爻', 4, '', '/', '臼']" + }, + { + "kind": "ccd_unsupported_row", + "message": "rightComponent: uncertain component marker", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21155, + "character": "𦰩", + "raw": "['𦰩', 10, '吕', '艹', 3, '?', 7, '', '/', '艸']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21167, + "character": "𨳐", + "raw": "['𨳐', 11, '回', '門', 8, '女 ', 3, '', '/', '門']" + }, + { + "kind": "ccd_ambiguous_layout", + "message": "CCD enclosure side is implicit and cannot be mapped losslessly", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21169, + "character": "𩰬", + "raw": "['𩰬', 13, '回', '鬲', 10, '㐄', 3, '', '/', '鬲']" + }, + { + "kind": "conflicting_decomposition", + "message": "kept first decomposition; alternatives are '⿱亠日' and '⿱夂日'", + "source": "/tmp/hanzi-factor-ccd.json", + "line": 21101, + "character": "𣅀", + "raw": "['𣅀', 7, '吕', '夂', 3, '日', 4, '', '/', '日']" + } + ], + "records": [ + { + "character": "一", + "codepoint": "U+4E00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E00", + "status": "leaf_self_fallback", + "ids": "一", + "canonical_ids": "一", + "expanded_ids": "一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丁", + "codepoint": "U+4E01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E01", + "status": "exact_ids", + "ids": "⿱一亅", + "canonical_ids": "⿱一亅", + "expanded_ids": "⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丂", + "codepoint": "U+4E02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E02", + "status": "leaf_self_fallback", + "ids": "丂", + "canonical_ids": "丂", + "expanded_ids": "丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "七", + "codepoint": "U+4E03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E03", + "status": "leaf_self_fallback", + "ids": "七", + "canonical_ids": "七", + "expanded_ids": "七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丄", + "codepoint": "U+4E04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E04", + "status": "leaf_self_fallback", + "ids": "丄", + "canonical_ids": "丄", + "expanded_ids": "丄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丅", + "codepoint": "U+4E05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E05", + "status": "leaf_self_fallback", + "ids": "丅", + "canonical_ids": "丅", + "expanded_ids": "丅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丆", + "codepoint": "U+4E06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E06", + "status": "exact_ids", + "ids": "⿱一丿", + "canonical_ids": "⿱一丿", + "expanded_ids": "⿱一丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "万", + "codepoint": "U+4E07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E07", + "status": "leaf_self_fallback", + "ids": "万", + "canonical_ids": "万", + "expanded_ids": "万", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "万" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丈", + "codepoint": "U+4E08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E08", + "status": "leaf_self_fallback", + "ids": "丈", + "canonical_ids": "丈", + "expanded_ids": "丈", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丈" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "三", + "codepoint": "U+4E09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E09", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "上", + "codepoint": "U+4E0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E0A", + "status": "leaf_self_fallback", + "ids": "上", + "canonical_ids": "上", + "expanded_ids": "上", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "下", + "codepoint": "U+4E0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E0B", + "status": "exact_ids", + "ids": "⿱一卜", + "canonical_ids": "⿱一卜", + "expanded_ids": "⿱一卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "卜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丌", + "codepoint": "U+4E0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E0C", + "status": "leaf_self_fallback", + "ids": "丌", + "canonical_ids": "丌", + "expanded_ids": "丌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "不", + "codepoint": "U+4E0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E0D", + "status": "leaf_self_fallback", + "ids": "不", + "canonical_ids": "不", + "expanded_ids": "不", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "与", + "codepoint": "U+4E0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E0E", + "status": "leaf_self_fallback", + "ids": "与", + "canonical_ids": "与", + "expanded_ids": "与", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "与" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丏", + "codepoint": "U+4E0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E0F", + "status": "leaf_self_fallback", + "ids": "丏", + "canonical_ids": "丏", + "expanded_ids": "丏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丐", + "codepoint": "U+4E10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E10", + "status": "leaf_self_fallback", + "ids": "丐", + "canonical_ids": "丐", + "expanded_ids": "丐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丑", + "codepoint": "U+4E11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E11", + "status": "leaf_self_fallback", + "ids": "丑", + "canonical_ids": "丑", + "expanded_ids": "丑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丒", + "codepoint": "U+4E12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E12", + "status": "exact_ids", + "ids": "⿱刃一", + "canonical_ids": "⿱刃一", + "expanded_ids": "⿱⿻刀丶一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "刀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "专", + "codepoint": "U+4E13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E13", + "status": "leaf_self_fallback", + "ids": "专", + "canonical_ids": "专", + "expanded_ids": "专", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "专" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "且", + "codepoint": "U+4E14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E14", + "status": "leaf_self_fallback", + "ids": "且", + "canonical_ids": "且", + "expanded_ids": "且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丕", + "codepoint": "U+4E15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E15", + "status": "exact_ids", + "ids": "⿱不一", + "canonical_ids": "⿱不一", + "expanded_ids": "⿱不一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "世", + "codepoint": "U+4E16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E16", + "status": "leaf_self_fallback", + "ids": "世", + "canonical_ids": "世", + "expanded_ids": "世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丗", + "codepoint": "U+4E17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E17", + "status": "leaf_self_fallback", + "ids": "丗", + "canonical_ids": "丗", + "expanded_ids": "丗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丘", + "codepoint": "U+4E18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E18", + "status": "leaf_self_fallback", + "ids": "丘", + "canonical_ids": "丘", + "expanded_ids": "丘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丙", + "codepoint": "U+4E19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E19", + "status": "exact_ids", + "ids": "⿱一内", + "canonical_ids": "⿱一内", + "expanded_ids": "⿱一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "业", + "codepoint": "U+4E1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E1A", + "status": "leaf_self_fallback", + "ids": "业", + "canonical_ids": "业", + "expanded_ids": "业", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丛", + "codepoint": "U+4E1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E1B", + "status": "exact_ids", + "ids": "⿱⿰人人一", + "canonical_ids": "⿱⿰人人一", + "expanded_ids": "⿱⿰人人一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "东", + "codepoint": "U+4E1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E1C", + "status": "leaf_self_fallback", + "ids": "东", + "canonical_ids": "东", + "expanded_ids": "东", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "东" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丝", + "codepoint": "U+4E1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E1D", + "status": "leaf_self_fallback", + "ids": "丝", + "canonical_ids": "丝", + "expanded_ids": "丝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丞", + "codepoint": "U+4E1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E1E", + "status": "exact_ids", + "ids": "⿱氶一", + "canonical_ids": "⿱氶一", + "expanded_ids": "⿱⿱乛水一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乛", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丟", + "codepoint": "U+4E1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E1F", + "status": "exact_ids", + "ids": "⿱王厶", + "canonical_ids": "⿱王厶", + "expanded_ids": "⿱王厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丠", + "codepoint": "U+4E20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E20", + "status": "exact_ids", + "ids": "⿱北一", + "canonical_ids": "⿱北一", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "両", + "codepoint": "U+4E21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E21", + "status": "leaf_self_fallback", + "ids": "両", + "canonical_ids": "両", + "expanded_ids": "両", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "両" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丢", + "codepoint": "U+4E22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E22", + "status": "exact_ids", + "ids": "⿱壬厶", + "canonical_ids": "⿱壬厶", + "expanded_ids": "⿱⿱丿士厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厶", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丣", + "codepoint": "U+4E23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E23", + "status": "leaf_self_fallback", + "ids": "丣", + "canonical_ids": "丣", + "expanded_ids": "丣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "两", + "codepoint": "U+4E24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E24", + "status": "leaf_self_fallback", + "ids": "两", + "canonical_ids": "两", + "expanded_ids": "两", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "两" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "严", + "codepoint": "U+4E25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E25", + "status": "leaf_self_fallback", + "ids": "严", + "canonical_ids": "严", + "expanded_ids": "严", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "严" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "並", + "codepoint": "U+4E26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E26", + "status": "exact_ids", + "ids": "⿱丷亚", + "canonical_ids": "⿱丷亚", + "expanded_ids": "⿱丷亚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丧", + "codepoint": "U+4E27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E27", + "status": "leaf_self_fallback", + "ids": "丧", + "canonical_ids": "丧", + "expanded_ids": "丧", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丧" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丨", + "codepoint": "U+4E28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E28", + "status": "leaf_self_fallback", + "ids": "丨", + "canonical_ids": "丨", + "expanded_ids": "丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丩", + "codepoint": "U+4E29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E29", + "status": "exact_ids", + "ids": "⿰丨丨", + "canonical_ids": "⿰丨丨", + "expanded_ids": "⿰丨丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "个", + "codepoint": "U+4E2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E2A", + "status": "exact_ids", + "ids": "⿱人丨", + "canonical_ids": "⿱人丨", + "expanded_ids": "⿱人丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "人" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丫", + "codepoint": "U+4E2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E2B", + "status": "leaf_self_fallback", + "ids": "丫", + "canonical_ids": "丫", + "expanded_ids": "丫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丬", + "codepoint": "U+4E2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E2C", + "status": "exact_ids", + "ids": "⿰冫丨", + "canonical_ids": "⿰冫丨", + "expanded_ids": "⿰冫丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "中", + "codepoint": "U+4E2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E2D", + "status": "exact_ids", + "ids": "⿻口丨", + "canonical_ids": "⿻口丨", + "expanded_ids": "⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丮", + "codepoint": "U+4E2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E2E", + "status": "exact_ids", + "ids": "⿱乁㐄", + "canonical_ids": "⿱乁㐄", + "expanded_ids": "⿱乁⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乁", + "二" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丯", + "codepoint": "U+4E2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E2F", + "status": "exact_ids", + "ids": "⿻彡丨", + "canonical_ids": "⿻彡丨", + "expanded_ids": "⿻彡丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丰", + "codepoint": "U+4E30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E30", + "status": "leaf_self_fallback", + "ids": "丰", + "canonical_ids": "丰", + "expanded_ids": "丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丱", + "codepoint": "U+4E31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E31", + "status": "leaf_self_fallback", + "ids": "丱", + "canonical_ids": "丱", + "expanded_ids": "丱", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丱" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "串", + "codepoint": "U+4E32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E32", + "status": "exact_ids", + "ids": "⿻吕丨", + "canonical_ids": "⿻吕丨", + "expanded_ids": "⿻⿱口口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丳", + "codepoint": "U+4E33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E33", + "status": "exact_ids", + "ids": "⿻串丿", + "canonical_ids": "⿻串丿", + "expanded_ids": "⿻⿻⿱口口丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丿", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "临", + "codepoint": "U+4E34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E34", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丵", + "codepoint": "U+4E35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E35", + "status": "exact_ids", + "ids": "⿱业𢆉", + "canonical_ids": "⿱业𢆉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丶", + "codepoint": "U+4E36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E36", + "status": "leaf_self_fallback", + "ids": "丶", + "canonical_ids": "丶", + "expanded_ids": "丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丷", + "codepoint": "U+4E37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E37", + "status": "leaf_self_fallback", + "ids": "丷", + "canonical_ids": "丷", + "expanded_ids": "丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丸", + "codepoint": "U+4E38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E38", + "status": "exact_ids", + "ids": "⿻九丶", + "canonical_ids": "⿻九丶", + "expanded_ids": "⿻九丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丹", + "codepoint": "U+4E39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E39", + "status": "leaf_self_fallback", + "ids": "丹", + "canonical_ids": "丹", + "expanded_ids": "丹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "为", + "codepoint": "U+4E3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E3A", + "status": "exact_ids", + "ids": "⿻力丷", + "canonical_ids": "⿻力丷", + "expanded_ids": "⿻力丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "力" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "办" + ] + }, + { + "character": "主", + "codepoint": "U+4E3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E3B", + "status": "exact_ids", + "ids": "⿻丶王", + "canonical_ids": "⿻丶王", + "expanded_ids": "⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丼", + "codepoint": "U+4E3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E3C", + "status": "exact_ids", + "ids": "⿻井丶", + "canonical_ids": "⿻井丶", + "expanded_ids": "⿻井丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "井" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丽", + "codepoint": "U+4E3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E3D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "举", + "codepoint": "U+4E3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E3E", + "status": "exact_ids", + "ids": "⿱兴㐄", + "canonical_ids": "⿱兴㐄", + "expanded_ids": "⿱兴⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "兴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "丿", + "codepoint": "U+4E3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E3F", + "status": "leaf_self_fallback", + "ids": "丿", + "canonical_ids": "丿", + "expanded_ids": "丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乀", + "codepoint": "U+4E40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E40", + "status": "leaf_self_fallback", + "ids": "乀", + "canonical_ids": "乀", + "expanded_ids": "乀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乁", + "codepoint": "U+4E41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E41", + "status": "leaf_self_fallback", + "ids": "乁", + "canonical_ids": "乁", + "expanded_ids": "乁", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乁" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乂", + "codepoint": "U+4E42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E42", + "status": "leaf_self_fallback", + "ids": "乂", + "canonical_ids": "乂", + "expanded_ids": "乂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乃", + "codepoint": "U+4E43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E43", + "status": "leaf_self_fallback", + "ids": "乃", + "canonical_ids": "乃", + "expanded_ids": "乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乄", + "codepoint": "U+4E44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E44", + "status": "leaf_self_fallback", + "ids": "乄", + "canonical_ids": "乄", + "expanded_ids": "乄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "久", + "codepoint": "U+4E45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E45", + "status": "leaf_self_fallback", + "ids": "久", + "canonical_ids": "久", + "expanded_ids": "久", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "久" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乆", + "codepoint": "U+4E46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E46", + "status": "leaf_self_fallback", + "ids": "乆", + "canonical_ids": "乆", + "expanded_ids": "乆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乇", + "codepoint": "U+4E47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E47", + "status": "exact_ids", + "ids": "⿱丿七", + "canonical_ids": "⿱丿七", + "expanded_ids": "⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "么", + "codepoint": "U+4E48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E48", + "status": "exact_ids", + "ids": "⿱丿厶", + "canonical_ids": "⿱丿厶", + "expanded_ids": "⿱丿厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "义", + "codepoint": "U+4E49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E49", + "status": "exact_ids", + "ids": "⿻乂丶", + "canonical_ids": "⿻乂丶", + "expanded_ids": "⿻乂丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乊", + "codepoint": "U+4E4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E4A", + "status": "exact_ids", + "ids": "⿱丿丷", + "canonical_ids": "⿱丿丷", + "expanded_ids": "⿱丿丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "之", + "codepoint": "U+4E4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E4B", + "status": "leaf_self_fallback", + "ids": "之", + "canonical_ids": "之", + "expanded_ids": "之", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "之" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乌", + "codepoint": "U+4E4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E4C", + "status": "leaf_self_fallback", + "ids": "乌", + "canonical_ids": "乌", + "expanded_ids": "乌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乍", + "codepoint": "U+4E4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E4D", + "status": "leaf_self_fallback", + "ids": "乍", + "canonical_ids": "乍", + "expanded_ids": "乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乎", + "codepoint": "U+4E4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E4E", + "status": "leaf_self_fallback", + "ids": "乎", + "canonical_ids": "乎", + "expanded_ids": "乎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乎" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乏", + "codepoint": "U+4E4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E4F", + "status": "exact_ids", + "ids": "⿱丿之", + "canonical_ids": "⿱丿之", + "expanded_ids": "⿱丿之", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "之" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乐", + "codepoint": "U+4E50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E50", + "status": "leaf_self_fallback", + "ids": "乐", + "canonical_ids": "乐", + "expanded_ids": "乐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乑", + "codepoint": "U+4E51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E51", + "status": "leaf_self_fallback", + "ids": "乑", + "canonical_ids": "乑", + "expanded_ids": "乑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乒", + "codepoint": "U+4E52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E52", + "status": "exact_ids", + "ids": "⿻丘丿", + "canonical_ids": "⿻丘丿", + "expanded_ids": "⿻丘丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "丿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乓", + "codepoint": "U+4E53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E53", + "status": "exact_ids", + "ids": "⿻丘丶", + "canonical_ids": "⿻丘丶", + "expanded_ids": "⿻丘丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "丶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乔", + "codepoint": "U+4E54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E54", + "status": "exact_ids", + "ids": "⿱丿夰", + "canonical_ids": "⿱丿夰", + "expanded_ids": "⿱丿⿱大儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乕", + "codepoint": "U+4E55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E55", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乖", + "codepoint": "U+4E56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E56", + "status": "exact_ids", + "ids": "⿻千北", + "canonical_ids": "⿻千北", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乗", + "codepoint": "U+4E57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E57", + "status": "exact_ids", + "ids": "⿻禾廿", + "canonical_ids": "⿻禾廿", + "expanded_ids": "⿻⿻丿木廿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "廿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乘", + "codepoint": "U+4E58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E58", + "status": "exact_ids", + "ids": "⿻禾北", + "canonical_ids": "⿻禾北", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乙", + "codepoint": "U+4E59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E59", + "status": "leaf_self_fallback", + "ids": "乙", + "canonical_ids": "乙", + "expanded_ids": "乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乚", + "codepoint": "U+4E5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E5A", + "status": "leaf_self_fallback", + "ids": "乚", + "canonical_ids": "乚", + "expanded_ids": "乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乛", + "codepoint": "U+4E5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E5B", + "status": "leaf_self_fallback", + "ids": "乛", + "canonical_ids": "乛", + "expanded_ids": "乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乜", + "codepoint": "U+4E5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E5C", + "status": "leaf_self_fallback", + "ids": "乜", + "canonical_ids": "乜", + "expanded_ids": "乜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "九", + "codepoint": "U+4E5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E5D", + "status": "leaf_self_fallback", + "ids": "九", + "canonical_ids": "九", + "expanded_ids": "九", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乞", + "codepoint": "U+4E5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E5E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "也", + "codepoint": "U+4E5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E5F", + "status": "exact_ids", + "ids": "⿻乜丨", + "canonical_ids": "⿻乜丨", + "expanded_ids": "⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "习", + "codepoint": "U+4E60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E60", + "status": "leaf_self_fallback", + "ids": "习", + "canonical_ids": "习", + "expanded_ids": "习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乡", + "codepoint": "U+4E61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E61", + "status": "leaf_self_fallback", + "ids": "乡", + "canonical_ids": "乡", + "expanded_ids": "乡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乢", + "codepoint": "U+4E62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E62", + "status": "exact_ids", + "ids": "⿰山乚", + "canonical_ids": "⿰山乚", + "expanded_ids": "⿰山乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乣", + "codepoint": "U+4E63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E63", + "status": "exact_ids", + "ids": "⿰幺乚", + "canonical_ids": "⿰幺乚", + "expanded_ids": "⿰幺乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乤", + "codepoint": "U+4E64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E64", + "status": "exact_ids", + "ids": "⿱下乙", + "canonical_ids": "⿱下乙", + "expanded_ids": "⿱⿱一卜乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乙", + "卜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乥", + "codepoint": "U+4E65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E65", + "status": "exact_ids", + "ids": "⿱乊乙", + "canonical_ids": "⿱乊乙", + "expanded_ids": "⿱⿱丿丷乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "乙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "书", + "codepoint": "U+4E66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E66", + "status": "leaf_self_fallback", + "ids": "书", + "canonical_ids": "书", + "expanded_ids": "书", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "书" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乧", + "codepoint": "U+4E67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E67", + "status": "exact_ids", + "ids": "⿱斗乙", + "canonical_ids": "⿱斗乙", + "expanded_ids": "⿱斗乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "斗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乨", + "codepoint": "U+4E68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E68", + "status": "exact_ids", + "ids": "⿰台乚", + "canonical_ids": "⿰台乚", + "expanded_ids": "⿰⿱厶口乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "厶", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乩", + "codepoint": "U+4E69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E69", + "status": "exact_ids", + "ids": "⿰占乚", + "canonical_ids": "⿰占乚", + "expanded_ids": "⿰⿱卜口乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "卜", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乪", + "codepoint": "U+4E6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E6A", + "status": "exact_ids", + "ids": "⿰乙田", + "canonical_ids": "⿰乙田", + "expanded_ids": "⿰乙田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乫", + "codepoint": "U+4E6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E6B", + "status": "exact_ids", + "ids": "⿱加乙", + "canonical_ids": "⿱加乙", + "expanded_ids": "⿱⿰力口乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "力", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乬", + "codepoint": "U+4E6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E6C", + "status": "exact_ids", + "ids": "⿱巨乙", + "canonical_ids": "⿱巨乙", + "expanded_ids": "⿱巨乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "巨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乭", + "codepoint": "U+4E6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E6D", + "status": "exact_ids", + "ids": "⿱石乙", + "canonical_ids": "⿱石乙", + "expanded_ids": "⿱石乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乮", + "codepoint": "U+4E6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E6E", + "status": "exact_ids", + "ids": "⿱卯乙", + "canonical_ids": "⿱卯乙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙" + ], + "unresolved_leaves": [ + "卯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乯", + "codepoint": "U+4E6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E6F", + "status": "exact_ids", + "ids": "⿱乎乙", + "canonical_ids": "⿱乎乙", + "expanded_ids": "⿱乎乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乎", + "乙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "买", + "codepoint": "U+4E70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E70", + "status": "exact_ids", + "ids": "⿱乛头", + "canonical_ids": "⿱乛头", + "expanded_ids": "⿱乛⿻大冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "冫", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乱", + "codepoint": "U+4E71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E71", + "status": "exact_ids", + "ids": "⿰舌乚", + "canonical_ids": "⿰舌乚", + "expanded_ids": "⿰⿱⿱丿十口乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乚", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乲", + "codepoint": "U+4E72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E72", + "status": "exact_ids", + "ids": "⿱次乙", + "canonical_ids": "⿱次乙", + "expanded_ids": "⿱⿰冫欠乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "冫", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乳", + "codepoint": "U+4E73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E73", + "status": "exact_ids", + "ids": "⿰孚乚", + "canonical_ids": "⿰孚乚", + "expanded_ids": "⿰⿱爫子乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "子", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乴", + "codepoint": "U+4E74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E74", + "status": "exact_ids", + "ids": "⿱折乙", + "canonical_ids": "⿱折乙", + "expanded_ids": "⿱⿰扌斤乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "扌", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乵", + "codepoint": "U+4E75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E75", + "status": "exact_ids", + "ids": "⿰辛乚", + "canonical_ids": "⿰辛乚", + "expanded_ids": "⿰⿱立十乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "十", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乶", + "codepoint": "U+4E76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E76", + "status": "exact_ids", + "ids": "⿱甫乙", + "canonical_ids": "⿱甫乙", + "expanded_ids": "⿱甫乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乷", + "codepoint": "U+4E77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E77", + "status": "exact_ids", + "ids": "⿱沙乙", + "canonical_ids": "⿱沙乙", + "expanded_ids": "⿱⿰氵⿱小丿乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乙", + "小", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乸", + "codepoint": "U+4E78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E78", + "status": "exact_ids", + "ids": "⿰也母", + "canonical_ids": "⿰也母", + "expanded_ids": "⿰⿻乜丨母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乹", + "codepoint": "U+4E79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E79", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乺", + "codepoint": "U+4E7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E7A", + "status": "exact_ids", + "ids": "⿱所乙", + "canonical_ids": "⿱所乙", + "expanded_ids": "⿱⿰⿻一尸斤乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乙", + "尸", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乻", + "codepoint": "U+4E7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E7B", + "status": "exact_ids", + "ids": "⿱於乙", + "canonical_ids": "⿱於乙", + "expanded_ids": "⿱⿰方⿱人冫乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "人", + "冫", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乼", + "codepoint": "U+4E7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E7C", + "status": "exact_ids", + "ids": "⿱注乙", + "canonical_ids": "⿱注乙", + "expanded_ids": "⿱⿰氵⿻丶王乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乙", + "氵", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乽", + "codepoint": "U+4E7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E7D", + "status": "exact_ids", + "ids": "⿱者乙", + "canonical_ids": "⿱者乙", + "expanded_ids": "⿱⿱⿻土丿日乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乙", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乾", + "codepoint": "U+4E7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E7E", + "status": "exact_ids", + "ids": "⿰車乞", + "canonical_ids": "⿰車乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "乿", + "codepoint": "U+4E7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E7F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亀", + "codepoint": "U+4E80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E80", + "status": "leaf_self_fallback", + "ids": "亀", + "canonical_ids": "亀", + "expanded_ids": "亀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亁", + "codepoint": "U+4E81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E81", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亂", + "codepoint": "U+4E82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E82", + "status": "exact_ids", + "ids": "⿰𤔔乚", + "canonical_ids": "⿰𤔔乚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚" + ], + "unresolved_leaves": [ + "𤔔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亃", + "codepoint": "U+4E83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E83", + "status": "exact_ids", + "ids": "⿰粦乚", + "canonical_ids": "⿰粦乚", + "expanded_ids": "⿰⿱⿻木丷⿰夕⿻丨二乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "乚", + "二", + "夕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亄", + "codepoint": "U+4E84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E84", + "status": "exact_ids", + "ids": "⿰壹乚", + "canonical_ids": "⿰壹乚", + "expanded_ids": "⿰⿳土冖豆乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "冖", + "土", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亅", + "codepoint": "U+4E85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E85", + "status": "leaf_self_fallback", + "ids": "亅", + "canonical_ids": "亅", + "expanded_ids": "亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "了", + "codepoint": "U+4E86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E86", + "status": "leaf_self_fallback", + "ids": "了", + "canonical_ids": "了", + "expanded_ids": "了", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "了" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亇", + "codepoint": "U+4E87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E87", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "予", + "codepoint": "U+4E88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E88", + "status": "exact_ids", + "ids": "⿱龴丁", + "canonical_ids": "⿱龴丁", + "expanded_ids": "⿱龴⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "争", + "codepoint": "U+4E89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E89", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亊", + "codepoint": "U+4E8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E8A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "事", + "codepoint": "U+4E8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E8B", + "status": "leaf_self_fallback", + "ids": "事", + "canonical_ids": "事", + "expanded_ids": "事", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "事" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "二", + "codepoint": "U+4E8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E8C", + "status": "leaf_self_fallback", + "ids": "二", + "canonical_ids": "二", + "expanded_ids": "二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亍", + "codepoint": "U+4E8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E8D", + "status": "exact_ids", + "ids": "⿱二亅", + "canonical_ids": "⿱二亅", + "expanded_ids": "⿱二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "于", + "codepoint": "U+4E8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E8E", + "status": "exact_ids", + "ids": "⿻二亅", + "canonical_ids": "⿻二亅", + "expanded_ids": "⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亏", + "codepoint": "U+4E8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E8F", + "status": "exact_ids", + "ids": "⿱一丂", + "canonical_ids": "⿱一丂", + "expanded_ids": "⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亐", + "codepoint": "U+4E90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E90", + "status": "leaf_self_fallback", + "ids": "亐", + "canonical_ids": "亐", + "expanded_ids": "亐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "云", + "codepoint": "U+4E91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E91", + "status": "exact_ids", + "ids": "⿱二厶", + "canonical_ids": "⿱二厶", + "expanded_ids": "⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "互", + "codepoint": "U+4E92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E92", + "status": "exact_ids", + "ids": "⿱一彑", + "canonical_ids": "⿱一彑", + "expanded_ids": "⿱一彑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "彑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亓", + "codepoint": "U+4E93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E93", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "五", + "codepoint": "U+4E94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E94", + "status": "leaf_self_fallback", + "ids": "五", + "canonical_ids": "五", + "expanded_ids": "五", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "井", + "codepoint": "U+4E95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E95", + "status": "leaf_self_fallback", + "ids": "井", + "canonical_ids": "井", + "expanded_ids": "井", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "井" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亖", + "codepoint": "U+4E96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E96", + "status": "exact_ids", + "ids": "⿱二二", + "canonical_ids": "⿱二二", + "expanded_ids": "⿱二二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亗", + "codepoint": "U+4E97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E97", + "status": "exact_ids", + "ids": "⿱山二", + "canonical_ids": "⿱山二", + "expanded_ids": "⿱山二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亘", + "codepoint": "U+4E98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E98", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亙", + "codepoint": "U+4E99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E99", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亚", + "codepoint": "U+4E9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E9A", + "status": "leaf_self_fallback", + "ids": "亚", + "canonical_ids": "亚", + "expanded_ids": "亚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "些", + "codepoint": "U+4E9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E9B", + "status": "exact_ids", + "ids": "⿱此二", + "canonical_ids": "⿱此二", + "expanded_ids": "⿱⿰止匕二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "匕", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亜", + "codepoint": "U+4E9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E9C", + "status": "leaf_self_fallback", + "ids": "亜", + "canonical_ids": "亜", + "expanded_ids": "亜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亝", + "codepoint": "U+4E9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E9D", + "status": "exact_ids", + "ids": "⿱厽二", + "canonical_ids": "⿱厽二", + "expanded_ids": "⿱⿱厶⿰厶厶二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亞", + "codepoint": "U+4E9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E9E", + "status": "leaf_self_fallback", + "ids": "亞", + "canonical_ids": "亞", + "expanded_ids": "亞", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亞" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亟", + "codepoint": "U+4E9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4E9F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亠", + "codepoint": "U+4EA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EA0", + "status": "leaf_self_fallback", + "ids": "亠", + "canonical_ids": "亠", + "expanded_ids": "亠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亡", + "codepoint": "U+4EA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EA1", + "status": "exact_ids", + "ids": "⿻亠乚", + "canonical_ids": "⿻亠乚", + "expanded_ids": "⿻亠乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亢", + "codepoint": "U+4EA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EA2", + "status": "exact_ids", + "ids": "⿱亠几", + "canonical_ids": "⿱亠几", + "expanded_ids": "⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亣", + "codepoint": "U+4EA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EA3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "交", + "codepoint": "U+4EA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EA4", + "status": "exact_ids", + "ids": "⿱亠父", + "canonical_ids": "⿱亠父", + "expanded_ids": "⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亥", + "codepoint": "U+4EA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EA5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亦", + "codepoint": "U+4EA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EA6", + "status": "leaf_self_fallback", + "ids": "亦", + "canonical_ids": "亦", + "expanded_ids": "亦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "产", + "codepoint": "U+4EA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EA7", + "status": "exact_ids", + "ids": "⿱六厂", + "canonical_ids": "⿱六厂", + "expanded_ids": "⿱⿱亠八厂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "厂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亨", + "codepoint": "U+4EA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EA8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亩", + "codepoint": "U+4EA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EA9", + "status": "exact_ids", + "ids": "⿱亠田", + "canonical_ids": "⿱亠田", + "expanded_ids": "⿱亠田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亪", + "codepoint": "U+4EAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EAA", + "status": "exact_ids", + "ids": "⿱亦乁", + "canonical_ids": "⿱亦乁", + "expanded_ids": "⿱亦乁", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乁", + "亦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "享", + "codepoint": "U+4EAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EAB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "京", + "codepoint": "U+4EAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EAC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亭", + "codepoint": "U+4EAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EAD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亮", + "codepoint": "U+4EAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EAE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亯", + "codepoint": "U+4EAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EAF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亰", + "codepoint": "U+4EB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EB0", + "status": "exact_ids", + "ids": "⿱亠𣌢", + "canonical_ids": "⿱亠𣌢", + "expanded_ids": "⿱亠⿱曰小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "小", + "曰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亱", + "codepoint": "U+4EB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EB1", + "status": "exact_ids", + "ids": "⿱亠但", + "canonical_ids": "⿱亠但", + "expanded_ids": "⿱亠⿰亻⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "亻", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亲", + "codepoint": "U+4EB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EB2", + "status": "exact_ids", + "ids": "⿱立朩", + "canonical_ids": "⿱立朩", + "expanded_ids": "⿱立朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "朩", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亳", + "codepoint": "U+4EB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EB3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亴", + "codepoint": "U+4EB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EB4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亵", + "codepoint": "U+4EB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EB5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亶", + "codepoint": "U+4EB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EB6", + "status": "exact_ids", + "ids": "⿱㐭旦", + "canonical_ids": "⿱㐭旦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "日" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亷", + "codepoint": "U+4EB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EB7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亸", + "codepoint": "U+4EB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EB8", + "status": "exact_ids", + "ids": "⿰享单", + "canonical_ids": "⿰享单", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "享", + "单" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亹", + "codepoint": "U+4EB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EB9", + "status": "exact_ids", + "ids": "⿱亠舋", + "canonical_ids": "⿱亠舋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠" + ], + "unresolved_leaves": [ + "舋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "人", + "codepoint": "U+4EBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EBA", + "status": "leaf_self_fallback", + "ids": "人", + "canonical_ids": "人", + "expanded_ids": "人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亻", + "codepoint": "U+4EBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EBB", + "status": "leaf_self_fallback", + "ids": "亻", + "canonical_ids": "亻", + "expanded_ids": "亻", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亼", + "codepoint": "U+4EBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EBC", + "status": "exact_ids", + "ids": "⿱人一", + "canonical_ids": "⿱人一", + "expanded_ids": "⿱人一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亽", + "codepoint": "U+4EBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EBD", + "status": "exact_ids", + "ids": "⿱人丶", + "canonical_ids": "⿱人丶", + "expanded_ids": "⿱人丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亾", + "codepoint": "U+4EBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EBE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "亿", + "codepoint": "U+4EBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EBF", + "status": "exact_ids", + "ids": "⿰亻乙", + "canonical_ids": "⿰亻乙", + "expanded_ids": "⿰亻乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "什", + "codepoint": "U+4EC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EC0", + "status": "exact_ids", + "ids": "⿰亻十", + "canonical_ids": "⿰亻十", + "expanded_ids": "⿰亻十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仁", + "codepoint": "U+4EC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EC1", + "status": "exact_ids", + "ids": "⿰亻二", + "canonical_ids": "⿰亻二", + "expanded_ids": "⿰亻二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仂", + "codepoint": "U+4EC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EC2", + "status": "exact_ids", + "ids": "⿰亻力", + "canonical_ids": "⿰亻力", + "expanded_ids": "⿰亻力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "力" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仃", + "codepoint": "U+4EC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EC3", + "status": "exact_ids", + "ids": "⿰亻丁", + "canonical_ids": "⿰亻丁", + "expanded_ids": "⿰亻⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仄", + "codepoint": "U+4EC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EC4", + "status": "exact_ids", + "ids": "⿱厂人", + "canonical_ids": "⿱厂人", + "expanded_ids": "⿱厂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "厂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仅", + "codepoint": "U+4EC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EC5", + "status": "exact_ids", + "ids": "⿰亻又", + "canonical_ids": "⿰亻又", + "expanded_ids": "⿰亻又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仆", + "codepoint": "U+4EC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EC6", + "status": "exact_ids", + "ids": "⿰亻卜", + "canonical_ids": "⿰亻卜", + "expanded_ids": "⿰亻卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "卜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仇", + "codepoint": "U+4EC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EC7", + "status": "exact_ids", + "ids": "⿰亻九", + "canonical_ids": "⿰亻九", + "expanded_ids": "⿰亻九", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仈", + "codepoint": "U+4EC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EC8", + "status": "exact_ids", + "ids": "⿰亻八", + "canonical_ids": "⿰亻八", + "expanded_ids": "⿰亻八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仉", + "codepoint": "U+4EC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EC9", + "status": "exact_ids", + "ids": "⿰亻几", + "canonical_ids": "⿰亻几", + "expanded_ids": "⿰亻几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "几" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "今", + "codepoint": "U+4ECA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4ECA", + "status": "exact_ids", + "ids": "⿱亼㇇", + "canonical_ids": "⿱亼㇇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "介", + "codepoint": "U+4ECB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4ECB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仌", + "codepoint": "U+4ECC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4ECC", + "status": "exact_ids", + "ids": "⿱人人", + "canonical_ids": "⿱人人", + "expanded_ids": "⿱人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仍", + "codepoint": "U+4ECD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4ECD", + "status": "exact_ids", + "ids": "⿰亻乃", + "canonical_ids": "⿰亻乃", + "expanded_ids": "⿰亻乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "从", + "codepoint": "U+4ECE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4ECE", + "status": "exact_ids", + "ids": "⿰人人", + "canonical_ids": "⿰人人", + "expanded_ids": "⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仏", + "codepoint": "U+4ECF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4ECF", + "status": "exact_ids", + "ids": "⿰亻厶", + "canonical_ids": "⿰亻厶", + "expanded_ids": "⿰亻厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仐", + "codepoint": "U+4ED0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4ED0", + "status": "exact_ids", + "ids": "⿱人十", + "canonical_ids": "⿱人十", + "expanded_ids": "⿱人十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仑", + "codepoint": "U+4ED1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4ED1", + "status": "exact_ids", + "ids": "⿱人匕", + "canonical_ids": "⿱人匕", + "expanded_ids": "⿱人匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "匕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仒", + "codepoint": "U+4ED2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4ED2", + "status": "exact_ids", + "ids": "⿱人冫", + "canonical_ids": "⿱人冫", + "expanded_ids": "⿱人冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仓", + "codepoint": "U+4ED3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4ED3", + "status": "exact_ids", + "ids": "⿱人㔾", + "canonical_ids": "⿱人㔾", + "expanded_ids": "⿱人㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "人" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 68, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仔", + "codepoint": "U+4ED4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4ED4", + "status": "exact_ids", + "ids": "⿰亻子", + "canonical_ids": "⿰亻子", + "expanded_ids": "⿰亻子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仕", + "codepoint": "U+4ED5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4ED5", + "status": "exact_ids", + "ids": "⿰亻士", + "canonical_ids": "⿰亻士", + "expanded_ids": "⿰亻士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "他", + "codepoint": "U+4ED6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4ED6", + "status": "exact_ids", + "ids": "⿰亻也", + "canonical_ids": "⿰亻也", + "expanded_ids": "⿰亻⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仗", + "codepoint": "U+4ED7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4ED7", + "status": "exact_ids", + "ids": "⿰亻丈", + "canonical_ids": "⿰亻丈", + "expanded_ids": "⿰亻丈", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丈", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "付", + "codepoint": "U+4ED8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4ED8", + "status": "exact_ids", + "ids": "⿰亻寸", + "canonical_ids": "⿰亻寸", + "expanded_ids": "⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仙", + "codepoint": "U+4ED9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4ED9", + "status": "exact_ids", + "ids": "⿰亻山", + "canonical_ids": "⿰亻山", + "expanded_ids": "⿰亻山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仚", + "codepoint": "U+4EDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EDA", + "status": "exact_ids", + "ids": "⿱人山", + "canonical_ids": "⿱人山", + "expanded_ids": "⿱人山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仛", + "codepoint": "U+4EDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EDB", + "status": "exact_ids", + "ids": "⿰亻乇", + "canonical_ids": "⿰亻乇", + "expanded_ids": "⿰亻⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仜", + "codepoint": "U+4EDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EDC", + "status": "exact_ids", + "ids": "⿰亻工", + "canonical_ids": "⿰亻工", + "expanded_ids": "⿰亻工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仝", + "codepoint": "U+4EDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EDD", + "status": "exact_ids", + "ids": "⿱人工", + "canonical_ids": "⿱人工", + "expanded_ids": "⿱人工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仞", + "codepoint": "U+4EDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EDE", + "status": "exact_ids", + "ids": "⿰亻刃", + "canonical_ids": "⿰亻刃", + "expanded_ids": "⿰亻⿻刀丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亻", + "刀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仟", + "codepoint": "U+4EDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EDF", + "status": "exact_ids", + "ids": "⿰亻千", + "canonical_ids": "⿰亻千", + "expanded_ids": "⿰亻⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仠", + "codepoint": "U+4EE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EE0", + "status": "exact_ids", + "ids": "⿰亻干", + "canonical_ids": "⿰亻干", + "expanded_ids": "⿰亻⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仡", + "codepoint": "U+4EE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EE1", + "status": "exact_ids", + "ids": "⿰亻乞", + "canonical_ids": "⿰亻乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仢", + "codepoint": "U+4EE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EE2", + "status": "exact_ids", + "ids": "⿰亻勺", + "canonical_ids": "⿰亻勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "代", + "codepoint": "U+4EE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EE3", + "status": "exact_ids", + "ids": "⿰亻弋", + "canonical_ids": "⿰亻弋", + "expanded_ids": "⿰亻弋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "弋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "令", + "codepoint": "U+4EE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EE4", + "status": "exact_ids", + "ids": "⿱亼龴", + "canonical_ids": "⿱亼龴", + "expanded_ids": "⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "以", + "codepoint": "U+4EE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EE5", + "status": "exact_ids", + "ids": "⿰厶人", + "canonical_ids": "⿰厶人", + "expanded_ids": "⿰厶人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仦", + "codepoint": "U+4EE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EE6", + "status": "exact_ids", + "ids": "⿰亻小", + "canonical_ids": "⿰亻小", + "expanded_ids": "⿰亻小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仧", + "codepoint": "U+4EE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EE7", + "status": "exact_ids", + "ids": "⿱上人", + "canonical_ids": "⿱上人", + "expanded_ids": "⿱上人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "人" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仨", + "codepoint": "U+4EE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EE8", + "status": "exact_ids", + "ids": "⿰亻三", + "canonical_ids": "⿰亻三", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "三" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仩", + "codepoint": "U+4EE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EE9", + "status": "exact_ids", + "ids": "⿰亻上", + "canonical_ids": "⿰亻上", + "expanded_ids": "⿰亻上", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仪", + "codepoint": "U+4EEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EEA", + "status": "exact_ids", + "ids": "⿰亻义", + "canonical_ids": "⿰亻义", + "expanded_ids": "⿰亻⿻乂丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乂", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仫", + "codepoint": "U+4EEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EEB", + "status": "exact_ids", + "ids": "⿰亻么", + "canonical_ids": "⿰亻么", + "expanded_ids": "⿰亻⿱丿厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "们", + "codepoint": "U+4EEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EEC", + "status": "exact_ids", + "ids": "⿰亻门", + "canonical_ids": "⿰亻门", + "expanded_ids": "⿰亻门", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "门" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仭", + "codepoint": "U+4EED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EED", + "status": "exact_ids", + "ids": "⿰亻刄", + "canonical_ids": "⿰亻刄", + "expanded_ids": "⿰亻⿻刀乀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乀", + "亻", + "刀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仮", + "codepoint": "U+4EEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EEE", + "status": "exact_ids", + "ids": "⿰亻反", + "canonical_ids": "⿰亻反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仯", + "codepoint": "U+4EEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EEF", + "status": "exact_ids", + "ids": "⿰亻少", + "canonical_ids": "⿰亻少", + "expanded_ids": "⿰亻⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仰", + "codepoint": "U+4EF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EF0", + "status": "exact_ids", + "ids": "⿰亻卬", + "canonical_ids": "⿰亻卬", + "expanded_ids": "⿰亻⿰匚卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匚", + "卩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仱", + "codepoint": "U+4EF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EF1", + "status": "exact_ids", + "ids": "⿰亻今", + "canonical_ids": "⿰亻今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "亻" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仲", + "codepoint": "U+4EF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EF2", + "status": "exact_ids", + "ids": "⿰亻中", + "canonical_ids": "⿰亻中", + "expanded_ids": "⿰亻⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亻", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仳", + "codepoint": "U+4EF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EF3", + "status": "exact_ids", + "ids": "⿰亻比", + "canonical_ids": "⿰亻比", + "expanded_ids": "⿰亻⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仴", + "codepoint": "U+4EF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EF4", + "status": "exact_ids", + "ids": "⿰亻月", + "canonical_ids": "⿰亻月", + "expanded_ids": "⿰亻月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仵", + "codepoint": "U+4EF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EF5", + "status": "exact_ids", + "ids": "⿰亻午", + "canonical_ids": "⿰亻午", + "expanded_ids": "⿰亻⿱⿻丿一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亻", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "件", + "codepoint": "U+4EF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EF6", + "status": "exact_ids", + "ids": "⿰亻牛", + "canonical_ids": "⿰亻牛", + "expanded_ids": "⿰亻牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "价", + "codepoint": "U+4EF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EF7", + "status": "exact_ids", + "ids": "⿰亻介", + "canonical_ids": "⿰亻介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仸", + "codepoint": "U+4EF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EF8", + "status": "exact_ids", + "ids": "⿰亻夭", + "canonical_ids": "⿰亻夭", + "expanded_ids": "⿰亻⿱丿大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仹", + "codepoint": "U+4EF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EF9", + "status": "exact_ids", + "ids": "⿰亻丰", + "canonical_ids": "⿰亻丰", + "expanded_ids": "⿰亻丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仺", + "codepoint": "U+4EFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EFA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "任", + "codepoint": "U+4EFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EFB", + "status": "exact_ids", + "ids": "⿰亻壬", + "canonical_ids": "⿰亻壬", + "expanded_ids": "⿰亻⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仼", + "codepoint": "U+4EFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EFC", + "status": "exact_ids", + "ids": "⿰亻王", + "canonical_ids": "⿰亻王", + "expanded_ids": "⿰亻王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "份", + "codepoint": "U+4EFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EFD", + "status": "exact_ids", + "ids": "⿰亻分", + "canonical_ids": "⿰亻分", + "expanded_ids": "⿰亻⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "刀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仾", + "codepoint": "U+4EFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EFE", + "status": "exact_ids", + "ids": "⿰亻互", + "canonical_ids": "⿰亻互", + "expanded_ids": "⿰亻⿱一彑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "彑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "仿", + "codepoint": "U+4EFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4EFF", + "status": "exact_ids", + "ids": "⿰亻方", + "canonical_ids": "⿰亻方", + "expanded_ids": "⿰亻方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伀", + "codepoint": "U+4F00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F00", + "status": "exact_ids", + "ids": "⿰亻公", + "canonical_ids": "⿰亻公", + "expanded_ids": "⿰亻⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "企", + "codepoint": "U+4F01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F01", + "status": "exact_ids", + "ids": "⿱人止", + "canonical_ids": "⿱人止", + "expanded_ids": "⿱人止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伂", + "codepoint": "U+4F02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F02", + "status": "exact_ids", + "ids": "⿰亻巿", + "canonical_ids": "⿰亻巿", + "expanded_ids": "⿰亻⿻⿻冂丨一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "亻", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伃", + "codepoint": "U+4F03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F03", + "status": "exact_ids", + "ids": "⿰亻予", + "canonical_ids": "⿰亻予", + "expanded_ids": "⿰亻⿱龴⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "亻", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伄", + "codepoint": "U+4F04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F04", + "status": "exact_ids", + "ids": "⿰亻弔", + "canonical_ids": "⿰亻弔", + "expanded_ids": "⿰亻⿻弓丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亻", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伅", + "codepoint": "U+4F05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F05", + "status": "exact_ids", + "ids": "⿰亻屯", + "canonical_ids": "⿰亻屯", + "expanded_ids": "⿰亻屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "屯" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伆", + "codepoint": "U+4F06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F06", + "status": "exact_ids", + "ids": "⿰亻勿", + "canonical_ids": "⿰亻勿", + "expanded_ids": "⿰亻勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "勿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伇", + "codepoint": "U+4F07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F07", + "status": "exact_ids", + "ids": "⿰亻殳", + "canonical_ids": "⿰亻殳", + "expanded_ids": "⿰亻⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "几", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伈", + "codepoint": "U+4F08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F08", + "status": "exact_ids", + "ids": "⿰亻心", + "canonical_ids": "⿰亻心", + "expanded_ids": "⿰亻心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伉", + "codepoint": "U+4F09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F09", + "status": "exact_ids", + "ids": "⿰亻亢", + "canonical_ids": "⿰亻亢", + "expanded_ids": "⿰亻⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "亻", + "几" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伊", + "codepoint": "U+4F0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F0A", + "status": "exact_ids", + "ids": "⿰亻尹", + "canonical_ids": "⿰亻尹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伋", + "codepoint": "U+4F0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F0B", + "status": "exact_ids", + "ids": "⿰亻及", + "canonical_ids": "⿰亻及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "亻" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伌", + "codepoint": "U+4F0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F0C", + "status": "exact_ids", + "ids": "⿰亻厄", + "canonical_ids": "⿰亻厄", + "expanded_ids": "⿰亻⿱厂㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "亻", + "厂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伍", + "codepoint": "U+4F0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F0D", + "status": "exact_ids", + "ids": "⿰亻五", + "canonical_ids": "⿰亻五", + "expanded_ids": "⿰亻五", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伎", + "codepoint": "U+4F0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F0E", + "status": "exact_ids", + "ids": "⿰亻支", + "canonical_ids": "⿰亻支", + "expanded_ids": "⿰亻⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "十", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伏", + "codepoint": "U+4F0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F0F", + "status": "exact_ids", + "ids": "⿰亻犬", + "canonical_ids": "⿰亻犬", + "expanded_ids": "⿰亻⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亻", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伐", + "codepoint": "U+4F10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F10", + "status": "exact_ids", + "ids": "⿰亻戈", + "canonical_ids": "⿰亻戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "休", + "codepoint": "U+4F11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F11", + "status": "exact_ids", + "ids": "⿰亻木", + "canonical_ids": "⿰亻木", + "expanded_ids": "⿰亻木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伒", + "codepoint": "U+4F12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F12", + "status": "exact_ids", + "ids": "⿰亻斤", + "canonical_ids": "⿰亻斤", + "expanded_ids": "⿰亻斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伓", + "codepoint": "U+4F13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F13", + "status": "exact_ids", + "ids": "⿰亻不", + "canonical_ids": "⿰亻不", + "expanded_ids": "⿰亻不", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伔", + "codepoint": "U+4F14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F14", + "status": "exact_ids", + "ids": "⿰亻冗", + "canonical_ids": "⿰亻冗", + "expanded_ids": "⿰亻⿱冖几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "冖", + "几" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伕", + "codepoint": "U+4F15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F15", + "status": "exact_ids", + "ids": "⿰亻夫", + "canonical_ids": "⿰亻夫", + "expanded_ids": "⿰亻⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伖", + "codepoint": "U+4F16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F16", + "status": "exact_ids", + "ids": "⿰亻友", + "canonical_ids": "⿰亻友", + "expanded_ids": "⿰亻⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亻", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "众", + "codepoint": "U+4F17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F17", + "status": "exact_ids", + "ids": "⿱人⿰人人", + "canonical_ids": "⿱人⿰人人", + "expanded_ids": "⿱人⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "优", + "codepoint": "U+4F18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F18", + "status": "exact_ids", + "ids": "⿰亻尤", + "canonical_ids": "⿰亻尤", + "expanded_ids": "⿰亻尤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "尤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伙", + "codepoint": "U+4F19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F19", + "status": "exact_ids", + "ids": "⿰亻火", + "canonical_ids": "⿰亻火", + "expanded_ids": "⿰亻火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "会", + "codepoint": "U+4F1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F1A", + "status": "exact_ids", + "ids": "⿱亼𠫔", + "canonical_ids": "⿱亼𠫔", + "expanded_ids": "⿱⿱人一⿱一厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伛", + "codepoint": "U+4F1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F1B", + "status": "exact_ids", + "ids": "⿰亻区", + "canonical_ids": "⿰亻区", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "区" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伜", + "codepoint": "U+4F1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F1C", + "status": "exact_ids", + "ids": "⿰亻卆", + "canonical_ids": "⿰亻卆", + "expanded_ids": "⿰亻⿱九十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "亻", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伝", + "codepoint": "U+4F1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F1D", + "status": "exact_ids", + "ids": "⿰亻云", + "canonical_ids": "⿰亻云", + "expanded_ids": "⿰亻⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "亻", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伞", + "codepoint": "U+4F1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F1E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伟", + "codepoint": "U+4F1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F1F", + "status": "exact_ids", + "ids": "⿰亻韦", + "canonical_ids": "⿰亻韦", + "expanded_ids": "⿰亻韦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "韦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "传", + "codepoint": "U+4F20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F20", + "status": "exact_ids", + "ids": "⿰亻专", + "canonical_ids": "⿰亻专", + "expanded_ids": "⿰亻专", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "专", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伡", + "codepoint": "U+4F21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F21", + "status": "exact_ids", + "ids": "⿰亻车", + "canonical_ids": "⿰亻车", + "expanded_ids": "⿰亻车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伢", + "codepoint": "U+4F22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F22", + "status": "exact_ids", + "ids": "⿰亻牙", + "canonical_ids": "⿰亻牙", + "expanded_ids": "⿰亻牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "牙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伣", + "codepoint": "U+4F23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F23", + "status": "exact_ids", + "ids": "⿰亻见", + "canonical_ids": "⿰亻见", + "expanded_ids": "⿰亻⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "儿", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伤", + "codepoint": "U+4F24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F24", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伥", + "codepoint": "U+4F25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F25", + "status": "exact_ids", + "ids": "⿰亻长", + "canonical_ids": "⿰亻长", + "expanded_ids": "⿰亻长", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "长" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伦", + "codepoint": "U+4F26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F26", + "status": "exact_ids", + "ids": "⿰亻仑", + "canonical_ids": "⿰亻仑", + "expanded_ids": "⿰亻⿱人匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "亻", + "匕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伧", + "codepoint": "U+4F27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F27", + "status": "exact_ids", + "ids": "⿰亻仓", + "canonical_ids": "⿰亻仓", + "expanded_ids": "⿰亻⿱人㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "人", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伨", + "codepoint": "U+4F28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F28", + "status": "exact_ids", + "ids": "⿰亻匀", + "canonical_ids": "⿰亻匀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "匀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伩", + "codepoint": "U+4F29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F29", + "status": "exact_ids", + "ids": "⿰亻文", + "canonical_ids": "⿰亻文", + "expanded_ids": "⿰亻文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "文" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伪", + "codepoint": "U+4F2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F2A", + "status": "exact_ids", + "ids": "⿰亻为", + "canonical_ids": "⿰亻为", + "expanded_ids": "⿰亻⿻力丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亻", + "力" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伫", + "codepoint": "U+4F2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F2B", + "status": "exact_ids", + "ids": "⿰亻㝉", + "canonical_ids": "⿰亻㝉", + "expanded_ids": "⿰亻⿱宀一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伬", + "codepoint": "U+4F2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F2C", + "status": "exact_ids", + "ids": "⿰亻尺", + "canonical_ids": "⿰亻尺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "尸" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伭", + "codepoint": "U+4F2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F2D", + "status": "exact_ids", + "ids": "⿰亻玄", + "canonical_ids": "⿰亻玄", + "expanded_ids": "⿰亻⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "亻", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伮", + "codepoint": "U+4F2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F2E", + "status": "exact_ids", + "ids": "⿰亻奴", + "canonical_ids": "⿰亻奴", + "expanded_ids": "⿰亻⿰女又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "又", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伯", + "codepoint": "U+4F2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F2F", + "status": "exact_ids", + "ids": "⿰亻白", + "canonical_ids": "⿰亻白", + "expanded_ids": "⿰亻⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亻", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "估", + "codepoint": "U+4F30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F30", + "status": "exact_ids", + "ids": "⿰亻古", + "canonical_ids": "⿰亻古", + "expanded_ids": "⿰亻⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伱", + "codepoint": "U+4F31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F31", + "status": "exact_ids", + "ids": "⿰亻尒", + "canonical_ids": "⿰亻尒", + "expanded_ids": "⿰亻⿱人小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "亻", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伲", + "codepoint": "U+4F32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F32", + "status": "exact_ids", + "ids": "⿰亻尼", + "canonical_ids": "⿰亻尼", + "expanded_ids": "⿰亻⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伳", + "codepoint": "U+4F33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F33", + "status": "exact_ids", + "ids": "⿰亻世", + "canonical_ids": "⿰亻世", + "expanded_ids": "⿰亻世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伴", + "codepoint": "U+4F34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F34", + "status": "exact_ids", + "ids": "⿰亻半", + "canonical_ids": "⿰亻半", + "expanded_ids": "⿰亻半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "半" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伵", + "codepoint": "U+4F35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F35", + "status": "exact_ids", + "ids": "⿰亻四", + "canonical_ids": "⿰亻四", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "四" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伶", + "codepoint": "U+4F36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F36", + "status": "exact_ids", + "ids": "⿰亻令", + "canonical_ids": "⿰亻令", + "expanded_ids": "⿰亻⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "亻", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伷", + "codepoint": "U+4F37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F37", + "status": "exact_ids", + "ids": "⿰亻由", + "canonical_ids": "⿰亻由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伸", + "codepoint": "U+4F38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F38", + "status": "exact_ids", + "ids": "⿰亻申", + "canonical_ids": "⿰亻申", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伹", + "codepoint": "U+4F39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F39", + "status": "exact_ids", + "ids": "⿰亻且", + "canonical_ids": "⿰亻且", + "expanded_ids": "⿰亻且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伺", + "codepoint": "U+4F3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F3A", + "status": "exact_ids", + "ids": "⿰亻司", + "canonical_ids": "⿰亻司", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "司" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伻", + "codepoint": "U+4F3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F3B", + "status": "exact_ids", + "ids": "⿰亻平", + "canonical_ids": "⿰亻平", + "expanded_ids": "⿰亻⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "亻", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "似", + "codepoint": "U+4F3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F3C", + "status": "exact_ids", + "ids": "⿰亻以", + "canonical_ids": "⿰亻以", + "expanded_ids": "⿰亻⿰厶人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "亻", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伽", + "codepoint": "U+4F3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F3D", + "status": "exact_ids", + "ids": "⿰亻加", + "canonical_ids": "⿰亻加", + "expanded_ids": "⿰亻⿰力口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "力", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伾", + "codepoint": "U+4F3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F3E", + "status": "exact_ids", + "ids": "⿰亻丕", + "canonical_ids": "⿰亻丕", + "expanded_ids": "⿰亻⿱不一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "伿", + "codepoint": "U+4F3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F3F", + "status": "exact_ids", + "ids": "⿰亻只", + "canonical_ids": "⿰亻只", + "expanded_ids": "⿰亻⿱口八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佀", + "codepoint": "U+4F40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F40", + "status": "exact_ids", + "ids": "⿰亻㠯", + "canonical_ids": "⿰亻㠯", + "expanded_ids": "⿰亻㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 68, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佁", + "codepoint": "U+4F41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F41", + "status": "exact_ids", + "ids": "⿰亻台", + "canonical_ids": "⿰亻台", + "expanded_ids": "⿰亻⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "厶", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佂", + "codepoint": "U+4F42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F42", + "status": "exact_ids", + "ids": "⿰亻正", + "canonical_ids": "⿰亻正", + "expanded_ids": "⿰亻⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佃", + "codepoint": "U+4F43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F43", + "status": "exact_ids", + "ids": "⿰亻田", + "canonical_ids": "⿰亻田", + "expanded_ids": "⿰亻田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佄", + "codepoint": "U+4F44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F44", + "status": "exact_ids", + "ids": "⿰亻甘", + "canonical_ids": "⿰亻甘", + "expanded_ids": "⿰亻甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佅", + "codepoint": "U+4F45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F45", + "status": "exact_ids", + "ids": "⿰亻未", + "canonical_ids": "⿰亻未", + "expanded_ids": "⿰亻⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "体" + ] + }, + { + "character": "但", + "codepoint": "U+4F46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F46", + "status": "exact_ids", + "ids": "⿰亻旦", + "canonical_ids": "⿰亻旦", + "expanded_ids": "⿰亻⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佇", + "codepoint": "U+4F47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F47", + "status": "exact_ids", + "ids": "⿰亻宁", + "canonical_ids": "⿰亻宁", + "expanded_ids": "⿰亻⿱宀⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "亻", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佈", + "codepoint": "U+4F48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F48", + "status": "exact_ids", + "ids": "⿰亻布", + "canonical_ids": "⿰亻布", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佉", + "codepoint": "U+4F49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F49", + "status": "exact_ids", + "ids": "⿰亻去", + "canonical_ids": "⿰亻去", + "expanded_ids": "⿰亻⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "厶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佊", + "codepoint": "U+4F4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F4A", + "status": "exact_ids", + "ids": "⿰亻皮", + "canonical_ids": "⿰亻皮", + "expanded_ids": "⿰亻皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佋", + "codepoint": "U+4F4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F4B", + "status": "exact_ids", + "ids": "⿰亻召", + "canonical_ids": "⿰亻召", + "expanded_ids": "⿰亻⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "刀", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佌", + "codepoint": "U+4F4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F4C", + "status": "exact_ids", + "ids": "⿰亻此", + "canonical_ids": "⿰亻此", + "expanded_ids": "⿰亻⿰止匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "位", + "codepoint": "U+4F4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F4D", + "status": "exact_ids", + "ids": "⿰亻立", + "canonical_ids": "⿰亻立", + "expanded_ids": "⿰亻立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "低", + "codepoint": "U+4F4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F4E", + "status": "exact_ids", + "ids": "⿰亻氐", + "canonical_ids": "⿰亻氐", + "expanded_ids": "⿰亻⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亻", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "住", + "codepoint": "U+4F4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F4F", + "status": "exact_ids", + "ids": "⿰亻主", + "canonical_ids": "⿰亻主", + "expanded_ids": "⿰亻⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亻", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佐", + "codepoint": "U+4F50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F50", + "status": "exact_ids", + "ids": "⿰亻左", + "canonical_ids": "⿰亻左", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "左" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佑", + "codepoint": "U+4F51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F51", + "status": "exact_ids", + "ids": "⿰亻右", + "canonical_ids": "⿰亻右", + "expanded_ids": "⿰亻⿱⿻丿一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亻", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佒", + "codepoint": "U+4F52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F52", + "status": "exact_ids", + "ids": "⿰亻央", + "canonical_ids": "⿰亻央", + "expanded_ids": "⿰亻⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "冂", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "体", + "codepoint": "U+4F53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F53", + "status": "exact_ids", + "ids": "⿰亻本", + "canonical_ids": "⿰亻本", + "expanded_ids": "⿰亻⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "佅" + ] + }, + { + "character": "佔", + "codepoint": "U+4F54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F54", + "status": "exact_ids", + "ids": "⿰亻占", + "canonical_ids": "⿰亻占", + "expanded_ids": "⿰亻⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "卜", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "何", + "codepoint": "U+4F55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F55", + "status": "exact_ids", + "ids": "⿰亻可", + "canonical_ids": "⿰亻可", + "expanded_ids": "⿰亻⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "亻", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佖", + "codepoint": "U+4F56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F56", + "status": "exact_ids", + "ids": "⿰亻必", + "canonical_ids": "⿰亻必", + "expanded_ids": "⿰亻⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佗", + "codepoint": "U+4F57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F57", + "status": "exact_ids", + "ids": "⿰亻它", + "canonical_ids": "⿰亻它", + "expanded_ids": "⿰亻⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佘", + "codepoint": "U+4F58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F58", + "status": "exact_ids", + "ids": "⿱人示", + "canonical_ids": "⿱人示", + "expanded_ids": "⿱人⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "人", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "余", + "codepoint": "U+4F59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F59", + "status": "exact_ids", + "ids": "⿱亼朩", + "canonical_ids": "⿱亼朩", + "expanded_ids": "⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佚", + "codepoint": "U+4F5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F5A", + "status": "exact_ids", + "ids": "⿰亻失", + "canonical_ids": "⿰亻失", + "expanded_ids": "⿰亻⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亻", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佛", + "codepoint": "U+4F5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F5B", + "status": "exact_ids", + "ids": "⿰亻弗", + "canonical_ids": "⿰亻弗", + "expanded_ids": "⿰亻⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "刂", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "作", + "codepoint": "U+4F5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F5C", + "status": "exact_ids", + "ids": "⿰亻乍", + "canonical_ids": "⿰亻乍", + "expanded_ids": "⿰亻乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佝", + "codepoint": "U+4F5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F5D", + "status": "exact_ids", + "ids": "⿰亻句", + "canonical_ids": "⿰亻句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佞", + "codepoint": "U+4F5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F5E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佟", + "codepoint": "U+4F5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F5F", + "status": "exact_ids", + "ids": "⿰亻冬", + "canonical_ids": "⿰亻冬", + "expanded_ids": "⿰亻⿱夂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "冫", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "你", + "codepoint": "U+4F60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F60", + "status": "exact_ids", + "ids": "⿰亻尔", + "canonical_ids": "⿰亻尔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "小" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佡", + "codepoint": "U+4F61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F61", + "status": "exact_ids", + "ids": "⿰亻仚", + "canonical_ids": "⿰亻仚", + "expanded_ids": "⿰亻⿱人山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "亻", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佢", + "codepoint": "U+4F62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F62", + "status": "exact_ids", + "ids": "⿰亻巨", + "canonical_ids": "⿰亻巨", + "expanded_ids": "⿰亻巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "巨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佣", + "codepoint": "U+4F63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F63", + "status": "exact_ids", + "ids": "⿰亻用", + "canonical_ids": "⿰亻用", + "expanded_ids": "⿰亻⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亻", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佤", + "codepoint": "U+4F64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F64", + "status": "exact_ids", + "ids": "⿰亻瓦", + "canonical_ids": "⿰亻瓦", + "expanded_ids": "⿰亻瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佥", + "codepoint": "U+4F65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F65", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佦", + "codepoint": "U+4F66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F66", + "status": "exact_ids", + "ids": "⿰亻石", + "canonical_ids": "⿰亻石", + "expanded_ids": "⿰亻石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佧", + "codepoint": "U+4F67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F67", + "status": "exact_ids", + "ids": "⿰亻卡", + "canonical_ids": "⿰亻卡", + "expanded_ids": "⿰亻⿱上卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "亻", + "卜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佨", + "codepoint": "U+4F68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F68", + "status": "exact_ids", + "ids": "⿰亻包", + "canonical_ids": "⿰亻包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佩", + "codepoint": "U+4F69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F69", + "status": "exact_ids", + "ids": "⿰亻凧", + "canonical_ids": "⿰亻凧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "凧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佪", + "codepoint": "U+4F6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F6A", + "status": "exact_ids", + "ids": "⿰亻回", + "canonical_ids": "⿰亻回", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佫", + "codepoint": "U+4F6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F6B", + "status": "exact_ids", + "ids": "⿰亻各", + "canonical_ids": "⿰亻各", + "expanded_ids": "⿰亻⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佬", + "codepoint": "U+4F6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F6C", + "status": "exact_ids", + "ids": "⿰亻老", + "canonical_ids": "⿰亻老", + "expanded_ids": "⿰亻⿱⿻土丿匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "匕", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佭", + "codepoint": "U+4F6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F6D", + "status": "exact_ids", + "ids": "⿰亻夅", + "canonical_ids": "⿰亻夅", + "expanded_ids": "⿰亻⿱夂⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "亻", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佮", + "codepoint": "U+4F6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F6E", + "status": "exact_ids", + "ids": "⿰亻合", + "canonical_ids": "⿰亻合", + "expanded_ids": "⿰亻⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "亻", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佯", + "codepoint": "U+4F6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F6F", + "status": "exact_ids", + "ids": "⿰亻羊", + "canonical_ids": "⿰亻羊", + "expanded_ids": "⿰亻羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佰", + "codepoint": "U+4F70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F70", + "status": "exact_ids", + "ids": "⿰亻百", + "canonical_ids": "⿰亻百", + "expanded_ids": "⿰亻⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "亻", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佱", + "codepoint": "U+4F71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F71", + "status": "exact_ids", + "ids": "⿱亼正", + "canonical_ids": "⿱亼正", + "expanded_ids": "⿱⿱人一⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佲", + "codepoint": "U+4F72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F72", + "status": "exact_ids", + "ids": "⿰亻名", + "canonical_ids": "⿰亻名", + "expanded_ids": "⿰亻⿱夕口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佳", + "codepoint": "U+4F73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F73", + "status": "exact_ids", + "ids": "⿰亻圭", + "canonical_ids": "⿰亻圭", + "expanded_ids": "⿰亻⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佴", + "codepoint": "U+4F74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F74", + "status": "exact_ids", + "ids": "⿰亻耳", + "canonical_ids": "⿰亻耳", + "expanded_ids": "⿰亻耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "併", + "codepoint": "U+4F75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F75", + "status": "exact_ids", + "ids": "⿰亻并", + "canonical_ids": "⿰亻并", + "expanded_ids": "⿰亻⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "亻", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佶", + "codepoint": "U+4F76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F76", + "status": "exact_ids", + "ids": "⿰亻吉", + "canonical_ids": "⿰亻吉", + "expanded_ids": "⿰亻⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佷", + "codepoint": "U+4F77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F77", + "status": "exact_ids", + "ids": "⿰亻艮", + "canonical_ids": "⿰亻艮", + "expanded_ids": "⿰亻艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佸", + "codepoint": "U+4F78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F78", + "status": "exact_ids", + "ids": "⿰亻舌", + "canonical_ids": "⿰亻舌", + "expanded_ids": "⿰亻⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佹", + "codepoint": "U+4F79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F79", + "status": "exact_ids", + "ids": "⿰亻危", + "canonical_ids": "⿰亻危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "亻", + "厂" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佺", + "codepoint": "U+4F7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F7A", + "status": "exact_ids", + "ids": "⿰亻全", + "canonical_ids": "⿰亻全", + "expanded_ids": "⿰亻⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "入", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佻", + "codepoint": "U+4F7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F7B", + "status": "exact_ids", + "ids": "⿰亻兆", + "canonical_ids": "⿰亻兆", + "expanded_ids": "⿰亻兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "兆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佼", + "codepoint": "U+4F7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F7C", + "status": "exact_ids", + "ids": "⿰亻交", + "canonical_ids": "⿰亻交", + "expanded_ids": "⿰亻⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "亻", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佽", + "codepoint": "U+4F7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F7D", + "status": "exact_ids", + "ids": "⿰亻次", + "canonical_ids": "⿰亻次", + "expanded_ids": "⿰亻⿰冫欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "冫", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "佾", + "codepoint": "U+4F7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F7E", + "status": "exact_ids", + "ids": "⿰亻䏌", + "canonical_ids": "⿰亻䏌", + "expanded_ids": "⿰亻⿱八月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "使", + "codepoint": "U+4F7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F7F", + "status": "exact_ids", + "ids": "⿰亻吏", + "canonical_ids": "⿰亻吏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "吏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侀", + "codepoint": "U+4F80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F80", + "status": "exact_ids", + "ids": "⿰亻刑", + "canonical_ids": "⿰亻刑", + "expanded_ids": "⿰亻⿰⿱一廾刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "刂", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侁", + "codepoint": "U+4F81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F81", + "status": "exact_ids", + "ids": "⿰亻先", + "canonical_ids": "⿰亻先", + "expanded_ids": "⿰亻⿱牛儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "儿", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侂", + "codepoint": "U+4F82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F82", + "status": "exact_ids", + "ids": "⿰亻㡯", + "canonical_ids": "⿰亻㡯", + "expanded_ids": "⿰亻⿱广⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "亻", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侃", + "codepoint": "U+4F83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F83", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侄", + "codepoint": "U+4F84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F84", + "status": "exact_ids", + "ids": "⿰亻至", + "canonical_ids": "⿰亻至", + "expanded_ids": "⿰亻⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "厶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侅", + "codepoint": "U+4F85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F85", + "status": "exact_ids", + "ids": "⿰亻亥", + "canonical_ids": "⿰亻亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "來", + "codepoint": "U+4F86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F86", + "status": "exact_ids", + "ids": "⿻木从", + "canonical_ids": "⿻木从", + "expanded_ids": "⿻木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侇", + "codepoint": "U+4F87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F87", + "status": "exact_ids", + "ids": "⿰亻夷", + "canonical_ids": "⿰亻夷", + "expanded_ids": "⿰亻⿻大弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "大", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侈", + "codepoint": "U+4F88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F88", + "status": "exact_ids", + "ids": "⿰亻多", + "canonical_ids": "⿰亻多", + "expanded_ids": "⿰亻⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侉", + "codepoint": "U+4F89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F89", + "status": "exact_ids", + "ids": "⿰亻夸", + "canonical_ids": "⿰亻夸", + "expanded_ids": "⿰亻⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "亻", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侊", + "codepoint": "U+4F8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F8A", + "status": "exact_ids", + "ids": "⿰亻光", + "canonical_ids": "⿰亻光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "儿" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "例", + "codepoint": "U+4F8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F8B", + "status": "exact_ids", + "ids": "⿰亻列", + "canonical_ids": "⿰亻列", + "expanded_ids": "⿰亻⿰⿻夕一刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "刂", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侌", + "codepoint": "U+4F8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F8C", + "status": "exact_ids", + "ids": "⿱今云", + "canonical_ids": "⿱今云", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "二", + "人", + "厶" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侍", + "codepoint": "U+4F8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F8D", + "status": "exact_ids", + "ids": "⿰亻寺", + "canonical_ids": "⿰亻寺", + "expanded_ids": "⿰亻⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "土", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侎", + "codepoint": "U+4F8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F8E", + "status": "exact_ids", + "ids": "⿰亻米", + "canonical_ids": "⿰亻米", + "expanded_ids": "⿰亻⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亻", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侏", + "codepoint": "U+4F8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F8F", + "status": "exact_ids", + "ids": "⿰亻朱", + "canonical_ids": "⿰亻朱", + "expanded_ids": "⿰亻⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亻", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侐", + "codepoint": "U+4F90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F90", + "status": "exact_ids", + "ids": "⿰亻血", + "canonical_ids": "⿰亻血", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "血" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侑", + "codepoint": "U+4F91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F91", + "status": "exact_ids", + "ids": "⿰亻有", + "canonical_ids": "⿰亻有", + "expanded_ids": "⿰亻⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亻", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侒", + "codepoint": "U+4F92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F92", + "status": "exact_ids", + "ids": "⿰亻安", + "canonical_ids": "⿰亻安", + "expanded_ids": "⿰亻⿱宀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "女", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侓", + "codepoint": "U+4F93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F93", + "status": "exact_ids", + "ids": "⿰亻聿", + "canonical_ids": "⿰亻聿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侔", + "codepoint": "U+4F94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F94", + "status": "exact_ids", + "ids": "⿰亻牟", + "canonical_ids": "⿰亻牟", + "expanded_ids": "⿰亻⿱厶牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "厶", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侕", + "codepoint": "U+4F95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F95", + "status": "exact_ids", + "ids": "⿰亻而", + "canonical_ids": "⿰亻而", + "expanded_ids": "⿰亻而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侖", + "codepoint": "U+4F96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F96", + "status": "exact_ids", + "ids": "⿱亼𠕁", + "canonical_ids": "⿱亼𠕁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侗", + "codepoint": "U+4F97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F97", + "status": "exact_ids", + "ids": "⿰亻同", + "canonical_ids": "⿰亻同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侘", + "codepoint": "U+4F98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F98", + "status": "exact_ids", + "ids": "⿰亻宅", + "canonical_ids": "⿰亻宅", + "expanded_ids": "⿰亻⿱宀⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "亻", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侙", + "codepoint": "U+4F99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F99", + "status": "exact_ids", + "ids": "⿰亻式", + "canonical_ids": "⿰亻式", + "expanded_ids": "⿰亻⿱弋工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "工", + "弋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侚", + "codepoint": "U+4F9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F9A", + "status": "exact_ids", + "ids": "⿰亻旬", + "canonical_ids": "⿰亻旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "供", + "codepoint": "U+4F9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F9B", + "status": "exact_ids", + "ids": "⿰亻共", + "canonical_ids": "⿰亻共", + "expanded_ids": "⿰亻⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "廾", + "廿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侜", + "codepoint": "U+4F9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F9C", + "status": "exact_ids", + "ids": "⿰亻舟", + "canonical_ids": "⿰亻舟", + "expanded_ids": "⿰亻舟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "依", + "codepoint": "U+4F9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F9D", + "status": "exact_ids", + "ids": "⿰亻衣", + "canonical_ids": "⿰亻衣", + "expanded_ids": "⿰亻衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侞", + "codepoint": "U+4F9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F9E", + "status": "exact_ids", + "ids": "⿰亻如", + "canonical_ids": "⿰亻如", + "expanded_ids": "⿰亻⿰女口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侟", + "codepoint": "U+4F9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4F9F", + "status": "exact_ids", + "ids": "⿰亻存", + "canonical_ids": "⿰亻存", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "存" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侠", + "codepoint": "U+4FA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FA0", + "status": "exact_ids", + "ids": "⿰亻夹", + "canonical_ids": "⿰亻夹", + "expanded_ids": "⿰亻⿻⿻一大丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "亻", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "価", + "codepoint": "U+4FA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FA1", + "status": "exact_ids", + "ids": "⿰亻覀", + "canonical_ids": "⿰亻覀", + "expanded_ids": "⿰亻覀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侢", + "codepoint": "U+4FA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FA2", + "status": "exact_ids", + "ids": "⿰亻再", + "canonical_ids": "⿰亻再", + "expanded_ids": "⿰亻⿱一⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "冂", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侣", + "codepoint": "U+4FA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FA3", + "status": "exact_ids", + "ids": "⿰亻吕", + "canonical_ids": "⿰亻吕", + "expanded_ids": "⿰亻⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侤", + "codepoint": "U+4FA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FA4", + "status": "exact_ids", + "ids": "⿰亻考", + "canonical_ids": "⿰亻考", + "expanded_ids": "⿰亻⿱⿻土丿丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "丿", + "亻", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侥", + "codepoint": "U+4FA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FA5", + "status": "exact_ids", + "ids": "⿰亻尧", + "canonical_ids": "⿰亻尧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "尧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侦", + "codepoint": "U+4FA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FA6", + "status": "exact_ids", + "ids": "⿰亻贞", + "canonical_ids": "⿰亻贞", + "expanded_ids": "⿰亻⿱卜⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "亻", + "冂", + "卜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侧", + "codepoint": "U+4FA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FA7", + "status": "exact_ids", + "ids": "⿰亻则", + "canonical_ids": "⿰亻则", + "expanded_ids": "⿰亻⿰⿻冂人刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "亻", + "冂", + "刂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侨", + "codepoint": "U+4FA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FA8", + "status": "exact_ids", + "ids": "⿰亻乔", + "canonical_ids": "⿰亻乔", + "expanded_ids": "⿰亻⿱丿⿱大儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "儿", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侩", + "codepoint": "U+4FA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FA9", + "status": "exact_ids", + "ids": "⿰亻会", + "canonical_ids": "⿰亻会", + "expanded_ids": "⿰亻⿱⿱人一⿱一厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "亻", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侪", + "codepoint": "U+4FAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FAA", + "status": "exact_ids", + "ids": "⿰亻齐", + "canonical_ids": "⿰亻齐", + "expanded_ids": "⿰亻齐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "齐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侫", + "codepoint": "U+4FAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FAB", + "status": "exact_ids", + "ids": "⿰亻妄", + "canonical_ids": "⿰亻妄", + "expanded_ids": "⿰亻⿱⿻亠乚女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "亻", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侬", + "codepoint": "U+4FAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FAC", + "status": "exact_ids", + "ids": "⿰亻农", + "canonical_ids": "⿰亻农", + "expanded_ids": "⿰亻农", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "农" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侭", + "codepoint": "U+4FAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FAD", + "status": "exact_ids", + "ids": "⿰亻尽", + "canonical_ids": "⿰亻尽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "冫", + "尸" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侮", + "codepoint": "U+4FAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FAE", + "status": "exact_ids", + "ids": "⿰亻每", + "canonical_ids": "⿰亻每", + "expanded_ids": "⿰亻⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亻", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侯", + "codepoint": "U+4FAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FAF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侰", + "codepoint": "U+4FB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FB0", + "status": "exact_ids", + "ids": "⿰亻君", + "canonical_ids": "⿰亻君", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侱", + "codepoint": "U+4FB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FB1", + "status": "exact_ids", + "ids": "⿰亻呈", + "canonical_ids": "⿰亻呈", + "expanded_ids": "⿰亻⿱口王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侲", + "codepoint": "U+4FB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FB2", + "status": "exact_ids", + "ids": "⿰亻辰", + "canonical_ids": "⿰亻辰", + "expanded_ids": "⿰亻辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侳", + "codepoint": "U+4FB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FB3", + "status": "exact_ids", + "ids": "⿰亻坐", + "canonical_ids": "⿰亻坐", + "expanded_ids": "⿰亻⿱⿰人人土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "亻", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侴", + "codepoint": "U+4FB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FB4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侵", + "codepoint": "U+4FB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FB5", + "status": "exact_ids", + "ids": "⿰亻𠬶", + "canonical_ids": "⿰亻𠬶", + "expanded_ids": "⿰亻⿳彐冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "冖", + "又", + "彐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侶", + "codepoint": "U+4FB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FB6", + "status": "exact_ids", + "ids": "⿰亻呂", + "canonical_ids": "⿰亻呂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "呂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侷", + "codepoint": "U+4FB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FB7", + "status": "exact_ids", + "ids": "⿰亻局", + "canonical_ids": "⿰亻局", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "局" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侸", + "codepoint": "U+4FB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FB8", + "status": "exact_ids", + "ids": "⿰亻豆", + "canonical_ids": "⿰亻豆", + "expanded_ids": "⿰亻豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侹", + "codepoint": "U+4FB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FB9", + "status": "exact_ids", + "ids": "⿰亻廷", + "canonical_ids": "⿰亻廷", + "expanded_ids": "⿰亻⿰廴⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "士", + "廴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侺", + "codepoint": "U+4FBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FBA", + "status": "exact_ids", + "ids": "⿰亻岑", + "canonical_ids": "⿰亻岑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "亻", + "山" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侻", + "codepoint": "U+4FBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FBB", + "status": "exact_ids", + "ids": "⿰亻兌", + "canonical_ids": "⿰亻兌", + "expanded_ids": "⿰亻⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "儿", + "八", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侼", + "codepoint": "U+4FBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FBC", + "status": "exact_ids", + "ids": "⿰亻孛", + "canonical_ids": "⿰亻孛", + "expanded_ids": "⿰亻⿳十冖子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "冖", + "十", + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侽", + "codepoint": "U+4FBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FBD", + "status": "exact_ids", + "ids": "⿰亻男", + "canonical_ids": "⿰亻男", + "expanded_ids": "⿰亻⿱田力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "力", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "侾", + "codepoint": "U+4FBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FBE", + "status": "exact_ids", + "ids": "⿰亻孝", + "canonical_ids": "⿰亻孝", + "expanded_ids": "⿰亻⿱⿻土丿子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "土", + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "便", + "codepoint": "U+4FBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FBF", + "status": "exact_ids", + "ids": "⿰亻更", + "canonical_ids": "⿰亻更", + "expanded_ids": "⿰亻更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "更" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俀", + "codepoint": "U+4FC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FC0", + "status": "exact_ids", + "ids": "⿰亻妥", + "canonical_ids": "⿰亻妥", + "expanded_ids": "⿰亻⿱爫女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "女", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俁", + "codepoint": "U+4FC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FC1", + "status": "exact_ids", + "ids": "⿰亻吳", + "canonical_ids": "⿰亻吳", + "expanded_ids": "⿰亻⿱口⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "亻", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "係", + "codepoint": "U+4FC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FC2", + "status": "exact_ids", + "ids": "⿰亻系", + "canonical_ids": "⿰亻系", + "expanded_ids": "⿰亻⿱丿⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "促", + "codepoint": "U+4FC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FC3", + "status": "exact_ids", + "ids": "⿰亻足", + "canonical_ids": "⿰亻足", + "expanded_ids": "⿰亻⿱口龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俄", + "codepoint": "U+4FC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FC4", + "status": "exact_ids", + "ids": "⿰亻我", + "canonical_ids": "⿰亻我", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "十" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俅", + "codepoint": "U+4FC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FC5", + "status": "exact_ids", + "ids": "⿰亻求", + "canonical_ids": "⿰亻求", + "expanded_ids": "⿰亻求", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "求" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俆", + "codepoint": "U+4FC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FC6", + "status": "exact_ids", + "ids": "⿰亻余", + "canonical_ids": "⿰亻余", + "expanded_ids": "⿰亻⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "亻", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俇", + "codepoint": "U+4FC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FC7", + "status": "exact_ids", + "ids": "⿰亻狂", + "canonical_ids": "⿰亻狂", + "expanded_ids": "⿰亻⿰犭王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "犭", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俈", + "codepoint": "U+4FC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FC8", + "status": "exact_ids", + "ids": "⿰亻告", + "canonical_ids": "⿰亻告", + "expanded_ids": "⿰亻⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俉", + "codepoint": "U+4FC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FC9", + "status": "exact_ids", + "ids": "⿰亻吾", + "canonical_ids": "⿰亻吾", + "expanded_ids": "⿰亻⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "亻", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俊", + "codepoint": "U+4FCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FCA", + "status": "exact_ids", + "ids": "⿰亻夋", + "canonical_ids": "⿰亻夋", + "expanded_ids": "⿰亻⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "儿", + "厶", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俋", + "codepoint": "U+4FCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FCB", + "status": "exact_ids", + "ids": "⿰亻邑", + "canonical_ids": "⿰亻邑", + "expanded_ids": "⿰亻⿱口巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "巴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俌", + "codepoint": "U+4FCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FCC", + "status": "exact_ids", + "ids": "⿰亻甫", + "canonical_ids": "⿰亻甫", + "expanded_ids": "⿰亻甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俍", + "codepoint": "U+4FCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FCD", + "status": "exact_ids", + "ids": "⿰亻良", + "canonical_ids": "⿰亻良", + "expanded_ids": "⿰亻⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亻", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俎", + "codepoint": "U+4FCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FCE", + "status": "exact_ids", + "ids": "⿰仌且", + "canonical_ids": "⿰仌且", + "expanded_ids": "⿰⿱人人且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "人" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俏", + "codepoint": "U+4FCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FCF", + "status": "exact_ids", + "ids": "⿰亻肖", + "canonical_ids": "⿰亻肖", + "expanded_ids": "⿰亻⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "小", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俐", + "codepoint": "U+4FD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FD0", + "status": "exact_ids", + "ids": "⿰亻利", + "canonical_ids": "⿰亻利", + "expanded_ids": "⿰亻⿰⿻丿木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "刂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俑", + "codepoint": "U+4FD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FD1", + "status": "exact_ids", + "ids": "⿰亻甬", + "canonical_ids": "⿰亻甬", + "expanded_ids": "⿰亻⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亻", + "月", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俒", + "codepoint": "U+4FD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FD2", + "status": "exact_ids", + "ids": "⿰亻完", + "canonical_ids": "⿰亻完", + "expanded_ids": "⿰亻⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "儿", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俓", + "codepoint": "U+4FD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FD3", + "status": "exact_ids", + "ids": "⿰亻巠", + "canonical_ids": "⿰亻巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俔", + "codepoint": "U+4FD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FD4", + "status": "exact_ids", + "ids": "⿰亻見", + "canonical_ids": "⿰亻見", + "expanded_ids": "⿰亻⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "儿", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俕", + "codepoint": "U+4FD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FD5", + "status": "exact_ids", + "ids": "⿰亻宋", + "canonical_ids": "⿰亻宋", + "expanded_ids": "⿰亻⿱宀木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俖", + "codepoint": "U+4FD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FD6", + "status": "exact_ids", + "ids": "⿰亻否", + "canonical_ids": "⿰亻否", + "expanded_ids": "⿰亻⿱不口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "亻", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俗", + "codepoint": "U+4FD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FD7", + "status": "exact_ids", + "ids": "⿰亻谷", + "canonical_ids": "⿰亻谷", + "expanded_ids": "⿰亻⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俘", + "codepoint": "U+4FD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FD8", + "status": "exact_ids", + "ids": "⿰亻孚", + "canonical_ids": "⿰亻孚", + "expanded_ids": "⿰亻⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "子", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俙", + "codepoint": "U+4FD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FD9", + "status": "exact_ids", + "ids": "⿰亻希", + "canonical_ids": "⿰亻希", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "亻" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俚", + "codepoint": "U+4FDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FDA", + "status": "exact_ids", + "ids": "⿰亻里", + "canonical_ids": "⿰亻里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俛", + "codepoint": "U+4FDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FDB", + "status": "exact_ids", + "ids": "⿰亻免", + "canonical_ids": "⿰亻免", + "expanded_ids": "⿰亻免", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "免" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俜", + "codepoint": "U+4FDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FDC", + "status": "exact_ids", + "ids": "⿰亻甹", + "canonical_ids": "⿰亻甹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "亻" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "保", + "codepoint": "U+4FDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FDD", + "status": "exact_ids", + "ids": "⿰亻呆", + "canonical_ids": "⿰亻呆", + "expanded_ids": "⿰亻⿱口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俞", + "codepoint": "U+4FDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FDE", + "status": "exact_ids", + "ids": "⿱亼刖", + "canonical_ids": "⿱亼刖", + "expanded_ids": "⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俟", + "codepoint": "U+4FDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FDF", + "status": "exact_ids", + "ids": "⿰亻矣", + "canonical_ids": "⿰亻矣", + "expanded_ids": "⿰亻⿱厶⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亻", + "厶", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俠", + "codepoint": "U+4FE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FE0", + "status": "exact_ids", + "ids": "⿰亻夾", + "canonical_ids": "⿰亻夾", + "expanded_ids": "⿰亻⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "亻", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "信", + "codepoint": "U+4FE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FE1", + "status": "exact_ids", + "ids": "⿰亻言", + "canonical_ids": "⿰亻言", + "expanded_ids": "⿰亻言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俢", + "codepoint": "U+4FE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FE2", + "status": "exact_ids", + "ids": "⿰亻㣊", + "canonical_ids": "⿰亻㣊", + "expanded_ids": "⿰亻⿱夂彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "夂", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俣", + "codepoint": "U+4FE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FE3", + "status": "exact_ids", + "ids": "⿰亻吴", + "canonical_ids": "⿰亻吴", + "expanded_ids": "⿰亻⿱口⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俤", + "codepoint": "U+4FE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FE4", + "status": "exact_ids", + "ids": "⿰亻弟", + "canonical_ids": "⿰亻弟", + "expanded_ids": "⿰亻⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "亻", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俥", + "codepoint": "U+4FE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FE5", + "status": "exact_ids", + "ids": "⿰亻車", + "canonical_ids": "⿰亻車", + "expanded_ids": "⿰亻車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俦", + "codepoint": "U+4FE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FE6", + "status": "exact_ids", + "ids": "⿰亻寿", + "canonical_ids": "⿰亻寿", + "expanded_ids": "⿰亻⿻丰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "亻", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俧", + "codepoint": "U+4FE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FE7", + "status": "exact_ids", + "ids": "⿰亻志", + "canonical_ids": "⿰亻志", + "expanded_ids": "⿰亻⿱士心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "士", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俨", + "codepoint": "U+4FE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FE8", + "status": "exact_ids", + "ids": "⿰亻严", + "canonical_ids": "⿰亻严", + "expanded_ids": "⿰亻严", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "严", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俩", + "codepoint": "U+4FE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FE9", + "status": "exact_ids", + "ids": "⿰亻两", + "canonical_ids": "⿰亻两", + "expanded_ids": "⿰亻两", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "两", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俪", + "codepoint": "U+4FEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FEA", + "status": "exact_ids", + "ids": "⿰亻丽", + "canonical_ids": "⿰亻丽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俫", + "codepoint": "U+4FEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FEB", + "status": "exact_ids", + "ids": "⿰亻来", + "canonical_ids": "⿰亻来", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "来" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俬", + "codepoint": "U+4FEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FEC", + "status": "exact_ids", + "ids": "⿰亻私", + "canonical_ids": "⿰亻私", + "expanded_ids": "⿰亻⿰⿻丿木厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "厶", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俭", + "codepoint": "U+4FED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FED", + "status": "exact_ids", + "ids": "⿰亻佥", + "canonical_ids": "⿰亻佥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "佥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "修", + "codepoint": "U+4FEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FEE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俯", + "codepoint": "U+4FEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FEF", + "status": "exact_ids", + "ids": "⿰亻府", + "canonical_ids": "⿰亻府", + "expanded_ids": "⿰亻⿱广⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俰", + "codepoint": "U+4FF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FF0", + "status": "exact_ids", + "ids": "⿰亻和", + "canonical_ids": "⿰亻和", + "expanded_ids": "⿰亻⿰⿻丿木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俱", + "codepoint": "U+4FF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FF1", + "status": "exact_ids", + "ids": "⿰亻具", + "canonical_ids": "⿰亻具", + "expanded_ids": "⿰亻⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "八", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "倶" + ] + }, + { + "character": "俲", + "codepoint": "U+4FF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FF2", + "status": "exact_ids", + "ids": "⿰亻効", + "canonical_ids": "⿰亻効", + "expanded_ids": "⿰亻⿰⿱亠父力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "亻", + "力", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俳", + "codepoint": "U+4FF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FF3", + "status": "exact_ids", + "ids": "⿰亻非", + "canonical_ids": "⿰亻非", + "expanded_ids": "⿰亻非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俴", + "codepoint": "U+4FF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FF4", + "status": "exact_ids", + "ids": "⿰亻戔", + "canonical_ids": "⿰亻戔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俵", + "codepoint": "U+4FF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FF5", + "status": "exact_ids", + "ids": "⿰亻表", + "canonical_ids": "⿰亻表", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "表" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俶", + "codepoint": "U+4FF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FF6", + "status": "exact_ids", + "ids": "⿰亻叔", + "canonical_ids": "⿰亻叔", + "expanded_ids": "⿰亻⿰⿱上小又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "亻", + "又", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俷", + "codepoint": "U+4FF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FF7", + "status": "exact_ids", + "ids": "⿰亻肥", + "canonical_ids": "⿰亻肥", + "expanded_ids": "⿰亻⿰月巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "巴", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俸", + "codepoint": "U+4FF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FF8", + "status": "exact_ids", + "ids": "⿰亻奉", + "canonical_ids": "⿰亻奉", + "expanded_ids": "⿰亻⿱𡗗⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "亻", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俹", + "codepoint": "U+4FF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FF9", + "status": "exact_ids", + "ids": "⿰亻亞", + "canonical_ids": "⿰亻亞", + "expanded_ids": "⿰亻亞", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亞", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俺", + "codepoint": "U+4FFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FFA", + "status": "exact_ids", + "ids": "⿰亻奄", + "canonical_ids": "⿰亻奄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "大" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俻", + "codepoint": "U+4FFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FFB", + "status": "exact_ids", + "ids": "⿰亻备", + "canonical_ids": "⿰亻备", + "expanded_ids": "⿰亻⿱夂田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "夂", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俼", + "codepoint": "U+4FFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FFC", + "status": "exact_ids", + "ids": "⿰亻育", + "canonical_ids": "⿰亻育", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "育" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俽", + "codepoint": "U+4FFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FFD", + "status": "exact_ids", + "ids": "⿰亻欣", + "canonical_ids": "⿰亻欣", + "expanded_ids": "⿰亻⿰斤欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "斤", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俾", + "codepoint": "U+4FFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FFE", + "status": "exact_ids", + "ids": "⿰亻卑", + "canonical_ids": "⿰亻卑", + "expanded_ids": "⿰亻卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "卑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "俿", + "codepoint": "U+4FFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-4FFF", + "status": "exact_ids", + "ids": "⿰亻虎", + "canonical_ids": "⿰亻虎", + "expanded_ids": "⿰亻⿱虍儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "儿", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倀", + "codepoint": "U+5000", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5000", + "status": "exact_ids", + "ids": "⿰亻長", + "canonical_ids": "⿰亻長", + "expanded_ids": "⿰亻長", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "長" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倁", + "codepoint": "U+5001", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5001", + "status": "exact_ids", + "ids": "⿰亻知", + "canonical_ids": "⿰亻知", + "expanded_ids": "⿰亻⿰⿱⿻丿一大口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亻", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倂", + "codepoint": "U+5002", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5002", + "status": "exact_ids", + "ids": "⿰亻幷", + "canonical_ids": "⿰亻幷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "幷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倃", + "codepoint": "U+5003", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5003", + "status": "exact_ids", + "ids": "⿰亻咎", + "canonical_ids": "⿰亻咎", + "expanded_ids": "⿰亻⿱⿰夂卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "卜", + "口", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倄", + "codepoint": "U+5004", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5004", + "status": "exact_ids", + "ids": "⿰亻肴", + "canonical_ids": "⿰亻肴", + "expanded_ids": "⿰亻⿱乂⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "乂", + "亻", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倅", + "codepoint": "U+5005", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5005", + "status": "exact_ids", + "ids": "⿰亻卒", + "canonical_ids": "⿰亻卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倆", + "codepoint": "U+5006", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5006", + "status": "exact_ids", + "ids": "⿰亻兩", + "canonical_ids": "⿰亻兩", + "expanded_ids": "⿰亻⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "亻", + "入", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倇", + "codepoint": "U+5007", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5007", + "status": "exact_ids", + "ids": "⿰亻宛", + "canonical_ids": "⿰亻宛", + "expanded_ids": "⿰亻⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "亻", + "夕", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倈", + "codepoint": "U+5008", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5008", + "status": "exact_ids", + "ids": "⿰亻來", + "canonical_ids": "⿰亻來", + "expanded_ids": "⿰亻⿻木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "亻", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倉", + "codepoint": "U+5009", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5009", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倊", + "codepoint": "U+500A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-500A", + "status": "exact_ids", + "ids": "⿰亻忩", + "canonical_ids": "⿰亻忩", + "expanded_ids": "⿰亻⿱⿱八厶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "厶", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "個", + "codepoint": "U+500B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-500B", + "status": "exact_ids", + "ids": "⿰亻固", + "canonical_ids": "⿰亻固", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "固" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倌", + "codepoint": "U+500C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-500C", + "status": "exact_ids", + "ids": "⿰亻官", + "canonical_ids": "⿰亻官", + "expanded_ids": "⿰亻⿱宀㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "亻", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倍", + "codepoint": "U+500D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-500D", + "status": "exact_ids", + "ids": "⿰亻咅", + "canonical_ids": "⿰亻咅", + "expanded_ids": "⿰亻⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倎", + "codepoint": "U+500E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-500E", + "status": "exact_ids", + "ids": "⿰亻典", + "canonical_ids": "⿰亻典", + "expanded_ids": "⿰亻典", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "典" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倏", + "codepoint": "U+500F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-500F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倐", + "codepoint": "U+5010", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5010", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "們", + "codepoint": "U+5011", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5011", + "status": "exact_ids", + "ids": "⿰亻門", + "canonical_ids": "⿰亻門", + "expanded_ids": "⿰亻門", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "門" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倒", + "codepoint": "U+5012", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5012", + "status": "exact_ids", + "ids": "⿰亻到", + "canonical_ids": "⿰亻到", + "expanded_ids": "⿰亻⿰⿱⿱一厶土刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "刂", + "厶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倓", + "codepoint": "U+5013", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5013", + "status": "exact_ids", + "ids": "⿰亻炎", + "canonical_ids": "⿰亻炎", + "expanded_ids": "⿰亻⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倔", + "codepoint": "U+5014", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5014", + "status": "exact_ids", + "ids": "⿰亻屈", + "canonical_ids": "⿰亻屈", + "expanded_ids": "⿰亻⿱尸⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "凵", + "尸", + "屮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倕", + "codepoint": "U+5015", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5015", + "status": "exact_ids", + "ids": "⿰亻垂", + "canonical_ids": "⿰亻垂", + "expanded_ids": "⿰亻垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "垂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倖", + "codepoint": "U+5016", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5016", + "status": "exact_ids", + "ids": "⿰亻幸", + "canonical_ids": "⿰亻幸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "土" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倗", + "codepoint": "U+5017", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5017", + "status": "exact_ids", + "ids": "⿰亻朋", + "canonical_ids": "⿰亻朋", + "expanded_ids": "⿰亻⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倘", + "codepoint": "U+5018", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5018", + "status": "exact_ids", + "ids": "⿰亻尚", + "canonical_ids": "⿰亻尚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "小" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "候", + "codepoint": "U+5019", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5019", + "status": "exact_ids", + "ids": "⿰亻侯", + "canonical_ids": "⿰亻侯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "侯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倚", + "codepoint": "U+501A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-501A", + "status": "exact_ids", + "ids": "⿰亻奇", + "canonical_ids": "⿰亻奇", + "expanded_ids": "⿰亻⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "亻", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倛", + "codepoint": "U+501B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-501B", + "status": "exact_ids", + "ids": "⿰亻其", + "canonical_ids": "⿰亻其", + "expanded_ids": "⿰亻其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "其" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倜", + "codepoint": "U+501C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-501C", + "status": "exact_ids", + "ids": "⿰亻周", + "canonical_ids": "⿰亻周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倝", + "codepoint": "U+501D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-501D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倞", + "codepoint": "U+501E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-501E", + "status": "exact_ids", + "ids": "⿰亻京", + "canonical_ids": "⿰亻京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "借", + "codepoint": "U+501F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-501F", + "status": "exact_ids", + "ids": "⿰亻昔", + "canonical_ids": "⿰亻昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "日" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倠", + "codepoint": "U+5020", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5020", + "status": "exact_ids", + "ids": "⿰亻隹", + "canonical_ids": "⿰亻隹", + "expanded_ids": "⿰亻隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倡", + "codepoint": "U+5021", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5021", + "status": "exact_ids", + "ids": "⿰亻昌", + "canonical_ids": "⿰亻昌", + "expanded_ids": "⿰亻⿱日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倢", + "codepoint": "U+5022", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5022", + "status": "exact_ids", + "ids": "⿰亻疌", + "canonical_ids": "⿰亻疌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "疌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倣", + "codepoint": "U+5023", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5023", + "status": "exact_ids", + "ids": "⿰亻放", + "canonical_ids": "⿰亻放", + "expanded_ids": "⿰亻⿰方攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "攵", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "値", + "codepoint": "U+5024", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5024", + "status": "exact_ids", + "ids": "⿰亻直", + "canonical_ids": "⿰亻直", + "expanded_ids": "⿰亻⿱⿱十目乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亻", + "十", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "值" + ] + }, + { + "character": "倥", + "codepoint": "U+5025", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5025", + "status": "exact_ids", + "ids": "⿰亻空", + "canonical_ids": "⿰亻空", + "expanded_ids": "⿰亻⿱⿱宀八工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "宀", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倦", + "codepoint": "U+5026", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5026", + "status": "exact_ids", + "ids": "⿰亻卷", + "canonical_ids": "⿰亻卷", + "expanded_ids": "⿰亻⿱龹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "卩", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倧", + "codepoint": "U+5027", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5027", + "status": "exact_ids", + "ids": "⿰亻宗", + "canonical_ids": "⿰亻宗", + "expanded_ids": "⿰亻⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "亻", + "宀", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倨", + "codepoint": "U+5028", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5028", + "status": "exact_ids", + "ids": "⿰亻居", + "canonical_ids": "⿰亻居", + "expanded_ids": "⿰亻⿱尸⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "十", + "口", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倩", + "codepoint": "U+5029", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5029", + "status": "exact_ids", + "ids": "⿰亻靑", + "canonical_ids": "⿰亻靑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "円", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倪", + "codepoint": "U+502A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-502A", + "status": "exact_ids", + "ids": "⿰亻兒", + "canonical_ids": "⿰亻兒", + "expanded_ids": "⿰亻⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "儿", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倫", + "codepoint": "U+502B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-502B", + "status": "exact_ids", + "ids": "⿰亻侖", + "canonical_ids": "⿰亻侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "亻" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倬", + "codepoint": "U+502C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-502C", + "status": "exact_ids", + "ids": "⿰亻卓", + "canonical_ids": "⿰亻卓", + "expanded_ids": "⿰亻⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "十", + "卜", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倭", + "codepoint": "U+502D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-502D", + "status": "exact_ids", + "ids": "⿰亻委", + "canonical_ids": "⿰亻委", + "expanded_ids": "⿰亻⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倮", + "codepoint": "U+502E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-502E", + "status": "exact_ids", + "ids": "⿰亻果", + "canonical_ids": "⿰亻果", + "expanded_ids": "⿰亻⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倯", + "codepoint": "U+502F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-502F", + "status": "exact_ids", + "ids": "⿰亻松", + "canonical_ids": "⿰亻松", + "expanded_ids": "⿰亻⿰木⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "厶", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倰", + "codepoint": "U+5030", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5030", + "status": "exact_ids", + "ids": "⿰亻夌", + "canonical_ids": "⿰亻夌", + "expanded_ids": "⿰亻⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "儿", + "土", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倱", + "codepoint": "U+5031", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5031", + "status": "exact_ids", + "ids": "⿰亻昆", + "canonical_ids": "⿰亻昆", + "expanded_ids": "⿰亻⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倲", + "codepoint": "U+5032", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5032", + "status": "exact_ids", + "ids": "⿰亻東", + "canonical_ids": "⿰亻東", + "expanded_ids": "⿰亻⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倳", + "codepoint": "U+5033", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5033", + "status": "exact_ids", + "ids": "⿰亻事", + "canonical_ids": "⿰亻事", + "expanded_ids": "⿰亻事", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "事", + "亻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倴", + "codepoint": "U+5034", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5034", + "status": "exact_ids", + "ids": "⿰亻奔", + "canonical_ids": "⿰亻奔", + "expanded_ids": "⿰亻⿱大⿱十廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "十", + "大", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倵", + "codepoint": "U+5035", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5035", + "status": "exact_ids", + "ids": "⿰亻武", + "canonical_ids": "⿰亻武", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "武" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倶", + "codepoint": "U+5036", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5036", + "status": "exact_ids", + "ids": "⿰亻具", + "canonical_ids": "⿰亻具", + "expanded_ids": "⿰亻⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "八", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "俱" + ] + }, + { + "character": "倷", + "codepoint": "U+5037", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5037", + "status": "exact_ids", + "ids": "⿰亻奈", + "canonical_ids": "⿰亻奈", + "expanded_ids": "⿰亻⿱大⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "亻", + "大", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倸", + "codepoint": "U+5038", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5038", + "status": "exact_ids", + "ids": "⿰亻采", + "canonical_ids": "⿰亻采", + "expanded_ids": "⿰亻⿱爫木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "木", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倹", + "codepoint": "U+5039", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5039", + "status": "exact_ids", + "ids": "⿰亻㑒", + "canonical_ids": "⿰亻㑒", + "expanded_ids": "⿰亻⿻⿱⿱人一口人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "亻", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "债", + "codepoint": "U+503A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-503A", + "status": "exact_ids", + "ids": "⿰亻责", + "canonical_ids": "⿰亻责", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "亻", + "冂" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倻", + "codepoint": "U+503B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-503B", + "status": "exact_ids", + "ids": "⿰亻耶", + "canonical_ids": "⿰亻耶", + "expanded_ids": "⿰亻⿰耳阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "耳", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "值", + "codepoint": "U+503C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-503C", + "status": "exact_ids", + "ids": "⿰亻直", + "canonical_ids": "⿰亻直", + "expanded_ids": "⿰亻⿱⿱十目乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亻", + "十", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "値" + ] + }, + { + "character": "倽", + "codepoint": "U+503D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-503D", + "status": "exact_ids", + "ids": "⿰亻舍", + "canonical_ids": "⿰亻舍", + "expanded_ids": "⿰亻⿱⿱人一⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "亻", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倾", + "codepoint": "U+503E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-503E", + "status": "exact_ids", + "ids": "⿰亻顷", + "canonical_ids": "⿰亻顷", + "expanded_ids": "⿰亻⿰匕⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "亻", + "冂", + "匕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "倿", + "codepoint": "U+503F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-503F", + "status": "exact_ids", + "ids": "⿰亻妾", + "canonical_ids": "⿰亻妾", + "expanded_ids": "⿰亻⿱立女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "女", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偀", + "codepoint": "U+5040", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5040", + "status": "exact_ids", + "ids": "⿰亻英", + "canonical_ids": "⿰亻英", + "expanded_ids": "⿰亻⿱艹⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "冂", + "大", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偁", + "codepoint": "U+5041", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5041", + "status": "exact_ids", + "ids": "⿰亻爯", + "canonical_ids": "⿰亻爯", + "expanded_ids": "⿰亻⿱爫⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "冂", + "土", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偂", + "codepoint": "U+5042", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5042", + "status": "exact_ids", + "ids": "⿰亻前", + "canonical_ids": "⿰亻前", + "expanded_ids": "⿰亻⿱止⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "刂", + "月", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偃", + "codepoint": "U+5043", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5043", + "status": "exact_ids", + "ids": "⿰亻匽", + "canonical_ids": "⿰亻匽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "匽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偄", + "codepoint": "U+5044", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5044", + "status": "exact_ids", + "ids": "⿰亻耎", + "canonical_ids": "⿰亻耎", + "expanded_ids": "⿰亻⿱而大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "大", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偅", + "codepoint": "U+5045", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5045", + "status": "exact_ids", + "ids": "⿰亻重", + "canonical_ids": "⿰亻重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "十" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偆", + "codepoint": "U+5046", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5046", + "status": "exact_ids", + "ids": "⿰亻春", + "canonical_ids": "⿰亻春", + "expanded_ids": "⿰亻⿱𡗗日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "日", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "假", + "codepoint": "U+5047", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5047", + "status": "exact_ids", + "ids": "⿰亻叚", + "canonical_ids": "⿰亻叚", + "expanded_ids": "⿰亻叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "叚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偈", + "codepoint": "U+5048", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5048", + "status": "exact_ids", + "ids": "⿰亻曷", + "canonical_ids": "⿰亻曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "曰" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偉", + "codepoint": "U+5049", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5049", + "status": "exact_ids", + "ids": "⿰亻韋", + "canonical_ids": "⿰亻韋", + "expanded_ids": "⿰亻韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偊", + "codepoint": "U+504A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-504A", + "status": "exact_ids", + "ids": "⿰亻禹", + "canonical_ids": "⿰亻禹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "禹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偋", + "codepoint": "U+504B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-504B", + "status": "exact_ids", + "ids": "⿰亻屏", + "canonical_ids": "⿰亻屏", + "expanded_ids": "⿰亻⿱尸⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "亻", + "尸", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偌", + "codepoint": "U+504C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-504C", + "status": "exact_ids", + "ids": "⿰亻若", + "canonical_ids": "⿰亻若", + "expanded_ids": "⿰亻⿱艹⿱⿻丿一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亻", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偍", + "codepoint": "U+504D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-504D", + "status": "exact_ids", + "ids": "⿰亻是", + "canonical_ids": "⿰亻是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "日" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偎", + "codepoint": "U+504E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-504E", + "status": "exact_ids", + "ids": "⿰亻畏", + "canonical_ids": "⿰亻畏", + "expanded_ids": "⿰亻⿱田氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "氏", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偏", + "codepoint": "U+504F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-504F", + "status": "exact_ids", + "ids": "⿰亻扁", + "canonical_ids": "⿰亻扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "尸" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偐", + "codepoint": "U+5050", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5050", + "status": "exact_ids", + "ids": "⿰亻彦", + "canonical_ids": "⿰亻彦", + "expanded_ids": "⿰亻⿱⿱⿱亠八厂彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "亻", + "八", + "厂", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偑", + "codepoint": "U+5051", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5051", + "status": "exact_ids", + "ids": "⿰亻風", + "canonical_ids": "⿰亻風", + "expanded_ids": "⿰亻風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偒", + "codepoint": "U+5052", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5052", + "status": "exact_ids", + "ids": "⿰亻昜", + "canonical_ids": "⿰亻昜", + "expanded_ids": "⿰亻⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "勿", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偓", + "codepoint": "U+5053", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5053", + "status": "exact_ids", + "ids": "⿰亻屋", + "canonical_ids": "⿰亻屋", + "expanded_ids": "⿰亻⿱尸⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "厶", + "土", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偔", + "codepoint": "U+5054", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5054", + "status": "exact_ids", + "ids": "⿰亻咢", + "canonical_ids": "⿰亻咢", + "expanded_ids": "⿰亻⿱⿰口口⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "亻", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偕", + "codepoint": "U+5055", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5055", + "status": "exact_ids", + "ids": "⿰亻皆", + "canonical_ids": "⿰亻皆", + "expanded_ids": "⿰亻⿱⿰匕匕⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亻", + "匕", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偖", + "codepoint": "U+5056", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5056", + "status": "exact_ids", + "ids": "⿰亻者", + "canonical_ids": "⿰亻者", + "expanded_ids": "⿰亻⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偗", + "codepoint": "U+5057", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5057", + "status": "exact_ids", + "ids": "⿰亻省", + "canonical_ids": "⿰亻省", + "expanded_ids": "⿰亻⿱⿱小丿目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "小", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偘", + "codepoint": "U+5058", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5058", + "status": "exact_ids", + "ids": "⿰亻品", + "canonical_ids": "⿰亻品", + "expanded_ids": "⿰亻⿱口⿰口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偙", + "codepoint": "U+5059", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5059", + "status": "exact_ids", + "ids": "⿰亻帝", + "canonical_ids": "⿰亻帝", + "expanded_ids": "⿰亻⿳⿱亠八冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "亻", + "八", + "冂", + "冖" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "做", + "codepoint": "U+505A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-505A", + "status": "exact_ids", + "ids": "⿰亻故", + "canonical_ids": "⿰亻故", + "expanded_ids": "⿰亻⿰⿻十口攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "十", + "口", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偛", + "codepoint": "U+505B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-505B", + "status": "exact_ids", + "ids": "⿰亻臿", + "canonical_ids": "⿰亻臿", + "expanded_ids": "⿰亻⿱⿱丿十臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "十", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "停", + "codepoint": "U+505C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-505C", + "status": "exact_ids", + "ids": "⿰亻亭", + "canonical_ids": "⿰亻亭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "亭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偝", + "codepoint": "U+505D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-505D", + "status": "exact_ids", + "ids": "⿰亻背", + "canonical_ids": "⿰亻背", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "月" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偞", + "codepoint": "U+505E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-505E", + "status": "exact_ids", + "ids": "⿰亻枼", + "canonical_ids": "⿰亻枼", + "expanded_ids": "⿰亻⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "亻", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偟", + "codepoint": "U+505F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-505F", + "status": "exact_ids", + "ids": "⿰亻皇", + "canonical_ids": "⿰亻皇", + "expanded_ids": "⿰亻⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亻", + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偠", + "codepoint": "U+5060", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5060", + "status": "exact_ids", + "ids": "⿰亻要", + "canonical_ids": "⿰亻要", + "expanded_ids": "⿰亻⿱覀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "女", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偡", + "codepoint": "U+5061", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5061", + "status": "exact_ids", + "ids": "⿰亻甚", + "canonical_ids": "⿰亻甚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "甘" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偢", + "codepoint": "U+5062", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5062", + "status": "exact_ids", + "ids": "⿰亻秋", + "canonical_ids": "⿰亻秋", + "expanded_ids": "⿰亻⿰⿻丿木火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偣", + "codepoint": "U+5063", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5063", + "status": "exact_ids", + "ids": "⿰亻音", + "canonical_ids": "⿰亻音", + "expanded_ids": "⿰亻⿱立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偤", + "codepoint": "U+5064", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5064", + "status": "exact_ids", + "ids": "⿰亻酋", + "canonical_ids": "⿰亻酋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亻" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "健", + "codepoint": "U+5065", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5065", + "status": "exact_ids", + "ids": "⿰亻建", + "canonical_ids": "⿰亻建", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "廴" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偦", + "codepoint": "U+5066", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5066", + "status": "exact_ids", + "ids": "⿰亻胥", + "canonical_ids": "⿰亻胥", + "expanded_ids": "⿰亻⿱疋月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "月", + "疋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偧", + "codepoint": "U+5067", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5067", + "status": "exact_ids", + "ids": "⿰亻奓", + "canonical_ids": "⿰亻奓", + "expanded_ids": "⿰亻⿱大⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "夕", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偨", + "codepoint": "U+5068", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5068", + "status": "exact_ids", + "ids": "⿰亻柴", + "canonical_ids": "⿰亻柴", + "expanded_ids": "⿰亻⿱⿰止匕木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "木", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偩", + "codepoint": "U+5069", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5069", + "status": "exact_ids", + "ids": "⿰亻負", + "canonical_ids": "⿰亻負", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "目" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偪", + "codepoint": "U+506A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-506A", + "status": "exact_ids", + "ids": "⿰亻畐", + "canonical_ids": "⿰亻畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偫", + "codepoint": "U+506B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-506B", + "status": "exact_ids", + "ids": "⿰亻待", + "canonical_ids": "⿰亻待", + "expanded_ids": "⿰亻⿰彳⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "土", + "寸", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偬", + "codepoint": "U+506C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-506C", + "status": "exact_ids", + "ids": "⿰亻怱", + "canonical_ids": "⿰亻怱", + "expanded_ids": "⿰亻⿱⿻勿丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亻", + "勿", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偭", + "codepoint": "U+506D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-506D", + "status": "exact_ids", + "ids": "⿰亻面", + "canonical_ids": "⿰亻面", + "expanded_ids": "⿰亻面", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "面" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偮", + "codepoint": "U+506E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-506E", + "status": "exact_ids", + "ids": "⿰亻咠", + "canonical_ids": "⿰亻咠", + "expanded_ids": "⿰亻⿱口耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偯", + "codepoint": "U+506F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-506F", + "status": "exact_ids", + "ids": "⿰亻哀", + "canonical_ids": "⿰亻哀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "哀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偰", + "codepoint": "U+5070", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5070", + "status": "exact_ids", + "ids": "⿰亻契", + "canonical_ids": "⿰亻契", + "expanded_ids": "⿰亻⿱⿰丰刀大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "亻", + "刀", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偱", + "codepoint": "U+5071", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5071", + "status": "exact_ids", + "ids": "⿰亻盾", + "canonical_ids": "⿰亻盾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "十", + "目" + ], + "unresolved_leaves": [ + "⺁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偲", + "codepoint": "U+5072", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5072", + "status": "exact_ids", + "ids": "⿰亻思", + "canonical_ids": "⿰亻思", + "expanded_ids": "⿰亻⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "心", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偳", + "codepoint": "U+5073", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5073", + "status": "exact_ids", + "ids": "⿰亻耑", + "canonical_ids": "⿰亻耑", + "expanded_ids": "⿰亻⿱山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "山", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "側", + "codepoint": "U+5074", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5074", + "status": "exact_ids", + "ids": "⿰亻則", + "canonical_ids": "⿰亻則", + "expanded_ids": "⿰亻⿰⿱目八刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "刂", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偵", + "codepoint": "U+5075", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5075", + "status": "exact_ids", + "ids": "⿰亻貞", + "canonical_ids": "⿰亻貞", + "expanded_ids": "⿰亻⿱卜⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "卜", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偶", + "codepoint": "U+5076", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5076", + "status": "exact_ids", + "ids": "⿰亻禺", + "canonical_ids": "⿰亻禺", + "expanded_ids": "⿰亻⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "田", + "禸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偷", + "codepoint": "U+5077", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5077", + "status": "exact_ids", + "ids": "⿰亻俞", + "canonical_ids": "⿰亻俞", + "expanded_ids": "⿰亻⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "亻", + "刂", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偸", + "codepoint": "U+5078", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5078", + "status": "exact_ids", + "ids": "⿰亻兪", + "canonical_ids": "⿰亻兪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "兪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偹", + "codepoint": "U+5079", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5079", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偺", + "codepoint": "U+507A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-507A", + "status": "exact_ids", + "ids": "⿰亻昝", + "canonical_ids": "⿰亻昝", + "expanded_ids": "⿰亻⿱⿰夂卜日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "卜", + "夂", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偻", + "codepoint": "U+507B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-507B", + "status": "exact_ids", + "ids": "⿰亻娄", + "canonical_ids": "⿰亻娄", + "expanded_ids": "⿰亻⿱⿻木丷女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亻", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偼", + "codepoint": "U+507C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-507C", + "status": "exact_ids", + "ids": "⿰亻疌", + "canonical_ids": "⿰亻疌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "疌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偽", + "codepoint": "U+507D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-507D", + "status": "exact_ids", + "ids": "⿰亻為", + "canonical_ids": "⿰亻為", + "expanded_ids": "⿰亻為", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "為" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偾", + "codepoint": "U+507E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-507E", + "status": "exact_ids", + "ids": "⿰亻贲", + "canonical_ids": "⿰亻贲", + "expanded_ids": "⿰亻⿱⿱十廾⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "亻", + "冂", + "十", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "偿", + "codepoint": "U+507F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-507F", + "status": "exact_ids", + "ids": "⿰亻尝", + "canonical_ids": "⿰亻尝", + "expanded_ids": "⿰亻⿳小冖⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "亻", + "冖", + "厶", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傀", + "codepoint": "U+5080", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5080", + "status": "exact_ids", + "ids": "⿰亻鬼", + "canonical_ids": "⿰亻鬼", + "expanded_ids": "⿰亻鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傁", + "codepoint": "U+5081", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5081", + "status": "exact_ids", + "ids": "⿰亻叟", + "canonical_ids": "⿰亻叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "又" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傂", + "codepoint": "U+5082", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5082", + "status": "exact_ids", + "ids": "⿰亻虒", + "canonical_ids": "⿰亻虒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "虒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傃", + "codepoint": "U+5083", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5083", + "status": "exact_ids", + "ids": "⿰亻素", + "canonical_ids": "⿰亻素", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "小", + "幺" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傄", + "codepoint": "U+5084", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5084", + "status": "exact_ids", + "ids": "⿰亻眘", + "canonical_ids": "⿰亻眘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "眘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傅", + "codepoint": "U+5085", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5085", + "status": "exact_ids", + "ids": "⿰亻尃", + "canonical_ids": "⿰亻尃", + "expanded_ids": "⿰亻⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傆", + "codepoint": "U+5086", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5086", + "status": "exact_ids", + "ids": "⿰亻原", + "canonical_ids": "⿰亻原", + "expanded_ids": "⿰亻⿱厂⿱⿻日丶小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亻", + "厂", + "小", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傇", + "codepoint": "U+5087", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5087", + "status": "exact_ids", + "ids": "⿰亻茸", + "canonical_ids": "⿰亻茸", + "expanded_ids": "⿰亻⿱艹耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "耳", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傈", + "codepoint": "U+5088", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5088", + "status": "exact_ids", + "ids": "⿰亻栗", + "canonical_ids": "⿰亻栗", + "expanded_ids": "⿰亻⿱覀木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "木", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傉", + "codepoint": "U+5089", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5089", + "status": "exact_ids", + "ids": "⿰亻辱", + "canonical_ids": "⿰亻辱", + "expanded_ids": "⿰亻⿱辰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傊", + "codepoint": "U+508A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-508A", + "status": "exact_ids", + "ids": "⿰亻員", + "canonical_ids": "⿰亻員", + "expanded_ids": "⿰亻⿱口⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傋", + "codepoint": "U+508B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-508B", + "status": "exact_ids", + "ids": "⿰亻冓", + "canonical_ids": "⿰亻冓", + "expanded_ids": "⿰亻⿱井⿱一⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "井", + "亻", + "冂", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傌", + "codepoint": "U+508C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-508C", + "status": "exact_ids", + "ids": "⿰亻馬", + "canonical_ids": "⿰亻馬", + "expanded_ids": "⿰亻馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傍", + "codepoint": "U+508D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-508D", + "status": "exact_ids", + "ids": "⿰亻旁", + "canonical_ids": "⿰亻旁", + "expanded_ids": "⿰亻⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "亻", + "八", + "冖", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傎", + "codepoint": "U+508E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-508E", + "status": "exact_ids", + "ids": "⿰亻真", + "canonical_ids": "⿰亻真", + "expanded_ids": "⿰亻⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "八", + "十", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傏", + "codepoint": "U+508F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-508F", + "status": "exact_ids", + "ids": "⿰亻唐", + "canonical_ids": "⿰亻唐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傐", + "codepoint": "U+5090", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5090", + "status": "exact_ids", + "ids": "⿰亻高", + "canonical_ids": "⿰亻高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傑", + "codepoint": "U+5091", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5091", + "status": "exact_ids", + "ids": "⿰亻桀", + "canonical_ids": "⿰亻桀", + "expanded_ids": "⿰亻⿱⿰夕⿻丨二木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "亻", + "夕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傒", + "codepoint": "U+5092", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5092", + "status": "exact_ids", + "ids": "⿰亻奚", + "canonical_ids": "⿰亻奚", + "expanded_ids": "⿰亻⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "大", + "幺", + "爪" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傓", + "codepoint": "U+5093", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5093", + "status": "exact_ids", + "ids": "⿰亻扇", + "canonical_ids": "⿰亻扇", + "expanded_ids": "⿰亻⿱⿻一尸⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "亻", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傔", + "codepoint": "U+5094", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5094", + "status": "exact_ids", + "ids": "⿰亻兼", + "canonical_ids": "⿰亻兼", + "expanded_ids": "⿰亻兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "兼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傕", + "codepoint": "U+5095", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5095", + "status": "exact_ids", + "ids": "⿰亻隺", + "canonical_ids": "⿰亻隺", + "expanded_ids": "⿰亻⿻冖隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "冖", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傖", + "codepoint": "U+5096", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5096", + "status": "exact_ids", + "ids": "⿰亻倉", + "canonical_ids": "⿰亻倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傗", + "codepoint": "U+5097", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5097", + "status": "exact_ids", + "ids": "⿰亻畜", + "canonical_ids": "⿰亻畜", + "expanded_ids": "⿰亻⿱⿱亠幺田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "亻", + "幺", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傘", + "codepoint": "U+5098", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5098", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "備", + "codepoint": "U+5099", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5099", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傚", + "codepoint": "U+509A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-509A", + "status": "exact_ids", + "ids": "⿰亻效", + "canonical_ids": "⿰亻效", + "expanded_ids": "⿰亻⿰⿱亠父攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "亻", + "攵", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傛", + "codepoint": "U+509B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-509B", + "status": "exact_ids", + "ids": "⿰亻容", + "canonical_ids": "⿰亻容", + "expanded_ids": "⿰亻⿱宀⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "口", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傜", + "codepoint": "U+509C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-509C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傝", + "codepoint": "U+509D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-509D", + "status": "exact_ids", + "ids": "⿰亻𦐇", + "canonical_ids": "⿰亻𦐇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "亻" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傞", + "codepoint": "U+509E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-509E", + "status": "exact_ids", + "ids": "⿰亻差", + "canonical_ids": "⿰亻差", + "expanded_ids": "⿰亻⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "工", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傟", + "codepoint": "U+509F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-509F", + "status": "exact_ids", + "ids": "⿰亻翁", + "canonical_ids": "⿰亻翁", + "expanded_ids": "⿰亻⿱⿱八厶⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "亻", + "八", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傠", + "codepoint": "U+50A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50A0", + "status": "exact_ids", + "ids": "⿰亻討", + "canonical_ids": "⿰亻討", + "expanded_ids": "⿰亻⿰言寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傡", + "codepoint": "U+50A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50A1", + "status": "exact_ids", + "ids": "⿰亻竝", + "canonical_ids": "⿰亻竝", + "expanded_ids": "⿰亻⿰立立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傢", + "codepoint": "U+50A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50A2", + "status": "exact_ids", + "ids": "⿰亻家", + "canonical_ids": "⿰亻家", + "expanded_ids": "⿰亻⿱宀豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "宀", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傣", + "codepoint": "U+50A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50A3", + "status": "exact_ids", + "ids": "⿰亻泰", + "canonical_ids": "⿰亻泰", + "expanded_ids": "⿰亻⿱𡗗氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "氺", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傤", + "codepoint": "U+50A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50A4", + "status": "exact_ids", + "ids": "⿰亻载", + "canonical_ids": "⿰亻载", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "载" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傥", + "codepoint": "U+50A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50A5", + "status": "exact_ids", + "ids": "⿰亻党", + "canonical_ids": "⿰亻党", + "expanded_ids": "⿰亻⿳小冖⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "儿", + "冖", + "口", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傦", + "codepoint": "U+50A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50A6", + "status": "exact_ids", + "ids": "⿰亻骨", + "canonical_ids": "⿰亻骨", + "expanded_ids": "⿰亻⿱冎月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "冎", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傧", + "codepoint": "U+50A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50A7", + "status": "exact_ids", + "ids": "⿰亻宾", + "canonical_ids": "⿰亻宾", + "expanded_ids": "⿰亻⿱宀⿱丘八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "亻", + "八", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "储", + "codepoint": "U+50A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50A8", + "status": "exact_ids", + "ids": "⿰亻诸", + "canonical_ids": "⿰亻诸", + "expanded_ids": "⿰亻⿰讠⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "土", + "日", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傩", + "codepoint": "U+50A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50A9", + "status": "exact_ids", + "ids": "⿰亻难", + "canonical_ids": "⿰亻难", + "expanded_ids": "⿰亻⿰又隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "又", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傪", + "codepoint": "U+50AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50AA", + "status": "exact_ids", + "ids": "⿰亻參", + "canonical_ids": "⿰亻參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傫", + "codepoint": "U+50AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50AB", + "status": "exact_ids", + "ids": "⿰亻累", + "canonical_ids": "⿰亻累", + "expanded_ids": "⿰亻⿱田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "小", + "幺", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "催", + "codepoint": "U+50AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50AC", + "status": "exact_ids", + "ids": "⿰亻崔", + "canonical_ids": "⿰亻崔", + "expanded_ids": "⿰亻⿱山隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "山", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傭", + "codepoint": "U+50AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50AD", + "status": "exact_ids", + "ids": "⿰亻庸", + "canonical_ids": "⿰亻庸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "庸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傮", + "codepoint": "U+50AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50AE", + "status": "exact_ids", + "ids": "⿰亻曹", + "canonical_ids": "⿰亻曹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "曹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傯", + "codepoint": "U+50AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50AF", + "status": "exact_ids", + "ids": "⿰亻悤", + "canonical_ids": "⿰亻悤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "心" + ], + "unresolved_leaves": [ + "囱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傰", + "codepoint": "U+50B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50B0", + "status": "exact_ids", + "ids": "⿰亻崩", + "canonical_ids": "⿰亻崩", + "expanded_ids": "⿰亻⿱山⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "山", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傱", + "codepoint": "U+50B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50B1", + "status": "exact_ids", + "ids": "⿰亻從", + "canonical_ids": "⿰亻從", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "從" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傲", + "codepoint": "U+50B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50B2", + "status": "exact_ids", + "ids": "⿰亻敖", + "canonical_ids": "⿰亻敖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傳", + "codepoint": "U+50B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50B3", + "status": "exact_ids", + "ids": "⿰亻專", + "canonical_ids": "⿰亻專", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "厶", + "寸" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傴", + "codepoint": "U+50B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50B4", + "status": "exact_ids", + "ids": "⿰亻區", + "canonical_ids": "⿰亻區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "債", + "codepoint": "U+50B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50B5", + "status": "exact_ids", + "ids": "⿰亻責", + "canonical_ids": "⿰亻責", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "目" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傶", + "codepoint": "U+50B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50B6", + "status": "exact_ids", + "ids": "⿰亻戚", + "canonical_ids": "⿰亻戚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "戚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傷", + "codepoint": "U+50B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50B7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傸", + "codepoint": "U+50B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50B8", + "status": "exact_ids", + "ids": "⿰亻爽", + "canonical_ids": "⿰亻爽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "大" + ], + "unresolved_leaves": [ + "㸚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傹", + "codepoint": "U+50B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50B9", + "status": "exact_ids", + "ids": "⿰亻竟", + "canonical_ids": "⿰亻竟", + "expanded_ids": "⿰亻⿱立⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "儿", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傺", + "codepoint": "U+50BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50BA", + "status": "exact_ids", + "ids": "⿰亻祭", + "canonical_ids": "⿰亻祭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傻", + "codepoint": "U+50BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50BB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傼", + "codepoint": "U+50BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50BC", + "status": "exact_ids", + "ids": "⿰亻𦰩", + "canonical_ids": "⿰亻𦰩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "𦰩" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傽", + "codepoint": "U+50BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50BD", + "status": "exact_ids", + "ids": "⿰亻章", + "canonical_ids": "⿰亻章", + "expanded_ids": "⿰亻⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "十", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傾", + "codepoint": "U+50BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50BE", + "status": "exact_ids", + "ids": "⿰亻頃", + "canonical_ids": "⿰亻頃", + "expanded_ids": "⿰亻⿰匕⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亻", + "八", + "匕", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "傿", + "codepoint": "U+50BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50BF", + "status": "exact_ids", + "ids": "⿰亻焉", + "canonical_ids": "⿰亻焉", + "expanded_ids": "⿰亻⿱⿱一止⿱⿱卜乙灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乙", + "亻", + "卜", + "止", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僀", + "codepoint": "U+50C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50C0", + "status": "exact_ids", + "ids": "⿰亻帶", + "canonical_ids": "⿰亻帶", + "expanded_ids": "⿰亻⿳卌冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亻", + "冂", + "冖", + "卌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僁", + "codepoint": "U+50C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50C1", + "status": "exact_ids", + "ids": "⿰亻悉", + "canonical_ids": "⿰亻悉", + "expanded_ids": "⿰亻⿱⿱丿⿻木丷心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "亻", + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僂", + "codepoint": "U+50C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50C2", + "status": "exact_ids", + "ids": "⿰亻婁", + "canonical_ids": "⿰亻婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僃", + "codepoint": "U+50C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50C3", + "status": "exact_ids", + "ids": "⿰亻䓒", + "canonical_ids": "⿰亻䓒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "艹" + ], + "unresolved_leaves": [ + "甸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僄", + "codepoint": "U+50C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50C4", + "status": "exact_ids", + "ids": "⿰亻票", + "canonical_ids": "⿰亻票", + "expanded_ids": "⿰亻⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "亻", + "小", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僅", + "codepoint": "U+50C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50C5", + "status": "exact_ids", + "ids": "⿰亻堇", + "canonical_ids": "⿰亻堇", + "expanded_ids": "⿰亻堇", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "堇" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僆", + "codepoint": "U+50C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50C6", + "status": "exact_ids", + "ids": "⿰亻連", + "canonical_ids": "⿰亻連", + "expanded_ids": "⿰亻⿰辶車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "車", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僇", + "codepoint": "U+50C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50C7", + "status": "exact_ids", + "ids": "⿰亻翏", + "canonical_ids": "⿰亻翏", + "expanded_ids": "⿰亻⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "亻", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僈", + "codepoint": "U+50C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50C8", + "status": "exact_ids", + "ids": "⿰亻曼", + "canonical_ids": "⿰亻曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僉", + "codepoint": "U+50C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50C9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僊", + "codepoint": "U+50CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50CA", + "status": "exact_ids", + "ids": "⿰亻䙴", + "canonical_ids": "⿰亻䙴", + "expanded_ids": "⿰亻⿱⿱覀大巳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "大", + "巳", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僋", + "codepoint": "U+50CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50CB", + "status": "exact_ids", + "ids": "⿰亻貪", + "canonical_ids": "⿰亻貪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "亻", + "八", + "目" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僌", + "codepoint": "U+50CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50CC", + "status": "exact_ids", + "ids": "⿰俥攵", + "canonical_ids": "⿰俥攵", + "expanded_ids": "⿰⿰亻車攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "攵", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "働", + "codepoint": "U+50CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50CD", + "status": "exact_ids", + "ids": "⿰亻動", + "canonical_ids": "⿰亻動", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "力", + "十" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僎", + "codepoint": "U+50CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50CE", + "status": "exact_ids", + "ids": "⿰亻巽", + "canonical_ids": "⿰亻巽", + "expanded_ids": "⿰亻⿱⿰己己⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "己", + "廾", + "廿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "像", + "codepoint": "U+50CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50CF", + "status": "exact_ids", + "ids": "⿰亻象", + "canonical_ids": "⿰亻象", + "expanded_ids": "⿰亻象", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "象" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僐", + "codepoint": "U+50D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50D0", + "status": "exact_ids", + "ids": "⿰亻善", + "canonical_ids": "⿰亻善", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "善" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僑", + "codepoint": "U+50D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50D1", + "status": "exact_ids", + "ids": "⿰亻喬", + "canonical_ids": "⿰亻喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "口", + "大" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僒", + "codepoint": "U+50D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50D2", + "status": "exact_ids", + "ids": "⿰亻窘", + "canonical_ids": "⿰亻窘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "口", + "宀" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僓", + "codepoint": "U+50D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50D3", + "status": "exact_ids", + "ids": "⿰亻貴", + "canonical_ids": "⿰亻貴", + "expanded_ids": "⿰亻⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "亻", + "八", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僔", + "codepoint": "U+50D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50D4", + "status": "exact_ids", + "ids": "⿰亻尊", + "canonical_ids": "⿰亻尊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亻", + "寸" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僕", + "codepoint": "U+50D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50D5", + "status": "exact_ids", + "ids": "⿰亻菐", + "canonical_ids": "⿰亻菐", + "expanded_ids": "⿰亻⿱业⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "亻", + "儿", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僖", + "codepoint": "U+50D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50D6", + "status": "exact_ids", + "ids": "⿰亻喜", + "canonical_ids": "⿰亻喜", + "expanded_ids": "⿰亻⿱⿱十豆口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "十", + "口", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僗", + "codepoint": "U+50D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50D7", + "status": "exact_ids", + "ids": "⿰亻勞", + "canonical_ids": "⿰亻勞", + "expanded_ids": "⿰亻⿳⿰火火冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "冖", + "力", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僘", + "codepoint": "U+50D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50D8", + "status": "exact_ids", + "ids": "⿰亻敞", + "canonical_ids": "⿰亻敞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "小", + "攵" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僙", + "codepoint": "U+50D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50D9", + "status": "exact_ids", + "ids": "⿰亻黄", + "canonical_ids": "⿰亻黄", + "expanded_ids": "⿰亻黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僚", + "codepoint": "U+50DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50DA", + "status": "exact_ids", + "ids": "⿰亻尞", + "canonical_ids": "⿰亻尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "小" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僛", + "codepoint": "U+50DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50DB", + "status": "exact_ids", + "ids": "⿰亻欺", + "canonical_ids": "⿰亻欺", + "expanded_ids": "⿰亻⿰其欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "其", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僜", + "codepoint": "U+50DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50DC", + "status": "exact_ids", + "ids": "⿰亻登", + "canonical_ids": "⿰亻登", + "expanded_ids": "⿰亻⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "癶", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僝", + "codepoint": "U+50DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50DD", + "status": "exact_ids", + "ids": "⿰亻孱", + "canonical_ids": "⿰亻孱", + "expanded_ids": "⿰亻⿱尸⿱子⿰子子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "子", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僞", + "codepoint": "U+50DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50DE", + "status": "exact_ids", + "ids": "⿰亻爲", + "canonical_ids": "⿰亻爲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "爲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僟", + "codepoint": "U+50DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50DF", + "status": "exact_ids", + "ids": "⿰亻幾", + "canonical_ids": "⿰亻幾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "幺" + ], + "unresolved_leaves": [ + "戍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僠", + "codepoint": "U+50E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50E0", + "status": "exact_ids", + "ids": "⿰亻番", + "canonical_ids": "⿰亻番", + "expanded_ids": "⿰亻⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "亻", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僡", + "codepoint": "U+50E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50E1", + "status": "exact_ids", + "ids": "⿰亻惠", + "canonical_ids": "⿰亻惠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "厶", + "心" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僢", + "codepoint": "U+50E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50E2", + "status": "exact_ids", + "ids": "⿰亻舜", + "canonical_ids": "⿰亻舜", + "expanded_ids": "⿰亻⿳爫冖⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "亻", + "冖", + "夕", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僣", + "codepoint": "U+50E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50E3", + "status": "exact_ids", + "ids": "⿰亻替", + "canonical_ids": "⿰亻替", + "expanded_ids": "⿰亻⿱⿰⿻一大⿻一大曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "大", + "曰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僤", + "codepoint": "U+50E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50E4", + "status": "exact_ids", + "ids": "⿰亻單", + "canonical_ids": "⿰亻單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僥", + "codepoint": "U+50E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50E5", + "status": "exact_ids", + "ids": "⿰亻堯", + "canonical_ids": "⿰亻堯", + "expanded_ids": "⿰亻⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "儿", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僦", + "codepoint": "U+50E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50E6", + "status": "exact_ids", + "ids": "⿰亻就", + "canonical_ids": "⿰亻就", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "尤" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僧", + "codepoint": "U+50E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50E7", + "status": "exact_ids", + "ids": "⿰亻曽", + "canonical_ids": "⿰亻曽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "曽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僨", + "codepoint": "U+50E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50E8", + "status": "exact_ids", + "ids": "⿰亻賁", + "canonical_ids": "⿰亻賁", + "expanded_ids": "⿰亻⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "十", + "廾", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僩", + "codepoint": "U+50E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50E9", + "status": "exact_ids", + "ids": "⿰亻閒", + "canonical_ids": "⿰亻閒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "閒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僪", + "codepoint": "U+50EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50EA", + "status": "exact_ids", + "ids": "⿰亻矞", + "canonical_ids": "⿰亻矞", + "expanded_ids": "⿰亻⿱矛⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "冂", + "口", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僫", + "codepoint": "U+50EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50EB", + "status": "exact_ids", + "ids": "⿰亻惡", + "canonical_ids": "⿰亻惡", + "expanded_ids": "⿰亻⿱亞心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亞", + "亻", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僬", + "codepoint": "U+50EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50EC", + "status": "exact_ids", + "ids": "⿰亻焦", + "canonical_ids": "⿰亻焦", + "expanded_ids": "⿰亻⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "灬", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僭", + "codepoint": "U+50ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50ED", + "status": "exact_ids", + "ids": "⿰亻朁", + "canonical_ids": "⿰亻朁", + "expanded_ids": "⿰亻⿱⿰旡旡曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "旡", + "曰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僮", + "codepoint": "U+50EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50EE", + "status": "exact_ids", + "ids": "⿰亻童", + "canonical_ids": "⿰亻童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僯", + "codepoint": "U+50EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50EF", + "status": "exact_ids", + "ids": "⿰亻粦", + "canonical_ids": "⿰亻粦", + "expanded_ids": "⿰亻⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "亻", + "夕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僰", + "codepoint": "U+50F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50F0", + "status": "exact_ids", + "ids": "⿱⿰朿朿人", + "canonical_ids": "⿱⿰朿朿人", + "expanded_ids": "⿱⿰⿻木冂⿻木冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僱", + "codepoint": "U+50F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50F1", + "status": "exact_ids", + "ids": "⿰亻雇", + "canonical_ids": "⿰亻雇", + "expanded_ids": "⿰亻⿱⿻一尸隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "尸", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僲", + "codepoint": "U+50F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50F2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僳", + "codepoint": "U+50F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50F3", + "status": "exact_ids", + "ids": "⿰亻粟", + "canonical_ids": "⿰亻粟", + "expanded_ids": "⿰亻⿱覀⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亻", + "木", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僴", + "codepoint": "U+50F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50F4", + "status": "exact_ids", + "ids": "⿰亻間", + "canonical_ids": "⿰亻間", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "間" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僵", + "codepoint": "U+50F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50F5", + "status": "exact_ids", + "ids": "⿰亻畺", + "canonical_ids": "⿰亻畺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "田" + ], + "unresolved_leaves": [ + "三" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僶", + "codepoint": "U+50F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50F6", + "status": "exact_ids", + "ids": "⿰亻黽", + "canonical_ids": "⿰亻黽", + "expanded_ids": "⿰亻黽", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "黽" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僷", + "codepoint": "U+50F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50F7", + "status": "exact_ids", + "ids": "⿰亻葉", + "canonical_ids": "⿰亻葉", + "expanded_ids": "⿰亻⿱艹⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "亻", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僸", + "codepoint": "U+50F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50F8", + "status": "exact_ids", + "ids": "⿰亻禁", + "canonical_ids": "⿰亻禁", + "expanded_ids": "⿰亻⿱⿰木木⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "亻", + "小", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "價", + "codepoint": "U+50F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50F9", + "status": "exact_ids", + "ids": "⿰亻賈", + "canonical_ids": "⿰亻賈", + "expanded_ids": "⿰亻⿱覀⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "目", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僺", + "codepoint": "U+50FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50FA", + "status": "exact_ids", + "ids": "⿰亻喿", + "canonical_ids": "⿰亻喿", + "expanded_ids": "⿰亻⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僻", + "codepoint": "U+50FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50FB", + "status": "exact_ids", + "ids": "⿰亻辟", + "canonical_ids": "⿰亻辟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "十", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僼", + "codepoint": "U+50FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50FC", + "status": "exact_ids", + "ids": "⿰亻豊", + "canonical_ids": "⿰亻豊", + "expanded_ids": "⿰亻⿱曲豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "曲", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僽", + "codepoint": "U+50FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50FD", + "status": "exact_ids", + "ids": "⿰亻愁", + "canonical_ids": "⿰亻愁", + "expanded_ids": "⿰亻⿱⿰⿻丿木火心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "心", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僾", + "codepoint": "U+50FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50FE", + "status": "exact_ids", + "ids": "⿰亻愛", + "canonical_ids": "⿰亻愛", + "expanded_ids": "⿰亻⿳爫冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "冖", + "夊", + "心", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "僿", + "codepoint": "U+50FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-50FF", + "status": "exact_ids", + "ids": "⿰亻塞", + "canonical_ids": "⿰亻塞", + "expanded_ids": "⿰亻⿱宀⿱其土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "其", + "土", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儀", + "codepoint": "U+5100", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5100", + "status": "exact_ids", + "ids": "⿰亻義", + "canonical_ids": "⿰亻義", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "義" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儁", + "codepoint": "U+5101", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5101", + "status": "exact_ids", + "ids": "⿰亻雋", + "canonical_ids": "⿰亻雋", + "expanded_ids": "⿰亻⿱隹弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "弓", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儂", + "codepoint": "U+5102", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5102", + "status": "exact_ids", + "ids": "⿰亻農", + "canonical_ids": "⿰亻農", + "expanded_ids": "⿰亻⿱曲辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "曲", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儃", + "codepoint": "U+5103", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5103", + "status": "exact_ids", + "ids": "⿰亻亶", + "canonical_ids": "⿰亻亶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "亻", + "日" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "億", + "codepoint": "U+5104", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5104", + "status": "exact_ids", + "ids": "⿰亻意", + "canonical_ids": "⿰亻意", + "expanded_ids": "⿰亻⿱⿱立日心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "心", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儅", + "codepoint": "U+5105", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5105", + "status": "exact_ids", + "ids": "⿰亻當", + "canonical_ids": "⿰亻當", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "小", + "田" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儆", + "codepoint": "U+5106", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5106", + "status": "exact_ids", + "ids": "⿰亻敬", + "canonical_ids": "⿰亻敬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "攵", + "艹" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儇", + "codepoint": "U+5107", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5107", + "status": "exact_ids", + "ids": "⿰亻睘", + "canonical_ids": "⿰亻睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儈", + "codepoint": "U+5108", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5108", + "status": "exact_ids", + "ids": "⿰亻會", + "canonical_ids": "⿰亻會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "曰" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儉", + "codepoint": "U+5109", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5109", + "status": "exact_ids", + "ids": "⿰亻僉", + "canonical_ids": "⿰亻僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儊", + "codepoint": "U+510A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-510A", + "status": "exact_ids", + "ids": "⿰亻楚", + "canonical_ids": "⿰亻楚", + "expanded_ids": "⿰亻⿱⿰木木疋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "木", + "疋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儋", + "codepoint": "U+510B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-510B", + "status": "exact_ids", + "ids": "⿰亻詹", + "canonical_ids": "⿰亻詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儌", + "codepoint": "U+510C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-510C", + "status": "exact_ids", + "ids": "⿰亻敫", + "canonical_ids": "⿰亻敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儍", + "codepoint": "U+510D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-510D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儎", + "codepoint": "U+510E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-510E", + "status": "exact_ids", + "ids": "⿰亻載", + "canonical_ids": "⿰亻載", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "載" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儏", + "codepoint": "U+510F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-510F", + "status": "exact_ids", + "ids": "⿰亻粲", + "canonical_ids": "⿰亻粲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亻", + "木" + ], + "unresolved_leaves": [ + "𣦼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儐", + "codepoint": "U+5110", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5110", + "status": "exact_ids", + "ids": "⿰亻賓", + "canonical_ids": "⿰亻賓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儑", + "codepoint": "U+5111", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5111", + "status": "exact_ids", + "ids": "⿰亻㬎", + "canonical_ids": "⿰亻㬎", + "expanded_ids": "⿰亻⿱日⿱⿰幺幺灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "幺", + "日", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儒", + "codepoint": "U+5112", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5112", + "status": "exact_ids", + "ids": "⿰亻需", + "canonical_ids": "⿰亻需", + "expanded_ids": "⿰亻⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儓", + "codepoint": "U+5113", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5113", + "status": "exact_ids", + "ids": "⿰亻臺", + "canonical_ids": "⿰亻臺", + "expanded_ids": "⿰亻⿳⿱士口冖⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "冖", + "厶", + "口", + "土", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 251, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儔", + "codepoint": "U+5114", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5114", + "status": "exact_ids", + "ids": "⿰亻壽", + "canonical_ids": "⿰亻壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儕", + "codepoint": "U+5115", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5115", + "status": "exact_ids", + "ids": "⿰亻齊", + "canonical_ids": "⿰亻齊", + "expanded_ids": "⿰亻齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儖", + "codepoint": "U+5116", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5116", + "status": "exact_ids", + "ids": "⿰亻監", + "canonical_ids": "⿰亻監", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儗", + "codepoint": "U+5117", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5117", + "status": "exact_ids", + "ids": "⿰亻疑", + "canonical_ids": "⿰亻疑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "疑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儘", + "codepoint": "U+5118", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5118", + "status": "exact_ids", + "ids": "⿰亻盡", + "canonical_ids": "⿰亻盡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "盡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儙", + "codepoint": "U+5119", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5119", + "status": "exact_ids", + "ids": "⿰亻遣", + "canonical_ids": "⿰亻遣", + "expanded_ids": "⿰亻⿰辶⿱⿱⿻口丨一㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "一", + "丨", + "亻", + "口", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儚", + "codepoint": "U+511A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-511A", + "status": "exact_ids", + "ids": "⿰亻夢", + "canonical_ids": "⿰亻夢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "夢" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儛", + "codepoint": "U+511B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-511B", + "status": "exact_ids", + "ids": "⿰亻舞", + "canonical_ids": "⿰亻舞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "舞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儜", + "codepoint": "U+511C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-511C", + "status": "exact_ids", + "ids": "⿰亻寧", + "canonical_ids": "⿰亻寧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "亻" + ], + "unresolved_leaves": [ + "寍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儝", + "codepoint": "U+511D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-511D", + "status": "exact_ids", + "ids": "⿰亻榮", + "canonical_ids": "⿰亻榮", + "expanded_ids": "⿰亻⿳⿰火火冖木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "冖", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儞", + "codepoint": "U+511E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-511E", + "status": "exact_ids", + "ids": "⿰亻爾", + "canonical_ids": "⿰亻爾", + "expanded_ids": "⿰亻爾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "爾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "償", + "codepoint": "U+511F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-511F", + "status": "exact_ids", + "ids": "⿰亻賞", + "canonical_ids": "⿰亻賞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "小", + "目" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儠", + "codepoint": "U+5120", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5120", + "status": "exact_ids", + "ids": "⿰亻巤", + "canonical_ids": "⿰亻巤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "巤" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儡", + "codepoint": "U+5121", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5121", + "status": "exact_ids", + "ids": "⿰亻畾", + "canonical_ids": "⿰亻畾", + "expanded_ids": "⿰亻⿱田⿰田田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儢", + "codepoint": "U+5122", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5122", + "status": "exact_ids", + "ids": "⿰亻慮", + "canonical_ids": "⿰亻慮", + "expanded_ids": "⿰亻⿱虍⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "心", + "田", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儣", + "codepoint": "U+5123", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5123", + "status": "exact_ids", + "ids": "⿰亻廣", + "canonical_ids": "⿰亻廣", + "expanded_ids": "⿰亻⿱广黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "广", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儤", + "codepoint": "U+5124", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5124", + "status": "exact_ids", + "ids": "⿰亻暴", + "canonical_ids": "⿰亻暴", + "expanded_ids": "⿰亻⿱日⿱⿱廿廾氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "廾", + "廿", + "日", + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儥", + "codepoint": "U+5125", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5125", + "status": "exact_ids", + "ids": "⿰亻賣", + "canonical_ids": "⿰亻賣", + "expanded_ids": "⿰亻⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "士", + "目", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儦", + "codepoint": "U+5126", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5126", + "status": "exact_ids", + "ids": "⿰亻麃", + "canonical_ids": "⿰亻麃", + "expanded_ids": "⿰亻⿱鹿灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "灬", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儧", + "codepoint": "U+5127", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5127", + "status": "exact_ids", + "ids": "⿰亻賛", + "canonical_ids": "⿰亻賛", + "expanded_ids": "⿰亻⿱⿰⿻一大⿻一大⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亻", + "八", + "大", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儨", + "codepoint": "U+5128", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5128", + "status": "exact_ids", + "ids": "⿰亻質", + "canonical_ids": "⿰亻質", + "expanded_ids": "⿰亻⿱⿰斤斤⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "斤", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儩", + "codepoint": "U+5129", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5129", + "status": "exact_ids", + "ids": "⿰亻賜", + "canonical_ids": "⿰亻賜", + "expanded_ids": "⿰亻⿰⿱目八⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "勿", + "日", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "優", + "codepoint": "U+512A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-512A", + "status": "exact_ids", + "ids": "⿰亻憂", + "canonical_ids": "⿰亻憂", + "expanded_ids": "⿰亻⿳⿻一⿻日丶冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "亻", + "冖", + "夊", + "心", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 251, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儫", + "codepoint": "U+512B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-512B", + "status": "exact_ids", + "ids": "⿰亻豪", + "canonical_ids": "⿰亻豪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "豪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儬", + "codepoint": "U+512C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-512C", + "status": "exact_ids", + "ids": "⿰亻靚", + "canonical_ids": "⿰亻靚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "儿", + "月", + "目" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儭", + "codepoint": "U+512D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-512D", + "status": "exact_ids", + "ids": "⿰亻親", + "canonical_ids": "⿰亻親", + "expanded_ids": "⿰亻⿰⿱立朩⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "儿", + "朩", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儮", + "codepoint": "U+512E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-512E", + "status": "exact_ids", + "ids": "⿰亻歷", + "canonical_ids": "⿰亻歷", + "expanded_ids": "⿰亻⿱⿱厂⿰⿻丿木⿻丿木止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "厂", + "木", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儯", + "codepoint": "U+512F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-512F", + "status": "exact_ids", + "ids": "⿰亻駦", + "canonical_ids": "⿰亻駦", + "expanded_ids": "⿰亻⿱⿱丷⿻一大馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "亻", + "大", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儰", + "codepoint": "U+5130", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5130", + "status": "exact_ids", + "ids": "⿰亻蒍", + "canonical_ids": "⿰亻蒍", + "expanded_ids": "⿰亻⿱艹為", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "為", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儱", + "codepoint": "U+5131", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5131", + "status": "exact_ids", + "ids": "⿰亻龍", + "canonical_ids": "⿰亻龍", + "expanded_ids": "⿰亻龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儲", + "codepoint": "U+5132", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5132", + "status": "exact_ids", + "ids": "⿰亻諸", + "canonical_ids": "⿰亻諸", + "expanded_ids": "⿰亻⿰言⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "土", + "日", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儳", + "codepoint": "U+5133", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5133", + "status": "exact_ids", + "ids": "⿰亻毚", + "canonical_ids": "⿰亻毚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "毚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儴", + "codepoint": "U+5134", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5134", + "status": "exact_ids", + "ids": "⿰亻襄", + "canonical_ids": "⿰亻襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儵", + "codepoint": "U+5135", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5135", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儶", + "codepoint": "U+5136", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5136", + "status": "exact_ids", + "ids": "⿰亻巂", + "canonical_ids": "⿰亻巂", + "expanded_ids": "⿰亻⿱⿱山隹⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "冂", + "口", + "山", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儷", + "codepoint": "U+5137", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5137", + "status": "exact_ids", + "ids": "⿰亻麗", + "canonical_ids": "⿰亻麗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "鹿" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儸", + "codepoint": "U+5138", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5138", + "status": "exact_ids", + "ids": "⿰亻羅", + "canonical_ids": "⿰亻羅", + "expanded_ids": "⿰亻⿱罒⿰⿻幺小隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "小", + "幺", + "罒", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儹", + "codepoint": "U+5139", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5139", + "status": "exact_ids", + "ids": "⿰亻贊", + "canonical_ids": "⿰亻贊", + "expanded_ids": "⿰亻⿱⿰⿱牛儿⿱牛儿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "儿", + "八", + "牛", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儺", + "codepoint": "U+513A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-513A", + "status": "exact_ids", + "ids": "⿰亻難", + "canonical_ids": "⿰亻難", + "expanded_ids": "⿰亻⿰堇隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "堇", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儻", + "codepoint": "U+513B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-513B", + "status": "exact_ids", + "ids": "⿰亻黨", + "canonical_ids": "⿰亻黨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "小", + "黑" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儼", + "codepoint": "U+513C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-513C", + "status": "exact_ids", + "ids": "⿰亻嚴", + "canonical_ids": "⿰亻嚴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口" + ], + "unresolved_leaves": [ + "𠪚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儽", + "codepoint": "U+513D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-513D", + "status": "exact_ids", + "ids": "⿰亻纍", + "canonical_ids": "⿰亻纍", + "expanded_ids": "⿰亻⿱⿱田⿰田田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "小", + "幺", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儾", + "codepoint": "U+513E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-513E", + "status": "exact_ids", + "ids": "⿰亻囊", + "canonical_ids": "⿰亻囊", + "expanded_ids": "⿰亻囊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "囊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "儿", + "codepoint": "U+513F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-513F", + "status": "leaf_self_fallback", + "ids": "儿", + "canonical_ids": "儿", + "expanded_ids": "儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兀", + "codepoint": "U+5140", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5140", + "status": "exact_ids", + "ids": "⿱一儿", + "canonical_ids": "⿱一儿", + "expanded_ids": "⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "允", + "codepoint": "U+5141", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5141", + "status": "exact_ids", + "ids": "⿱厶儿", + "canonical_ids": "⿱厶儿", + "expanded_ids": "⿱厶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兂", + "codepoint": "U+5142", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5142", + "status": "leaf_self_fallback", + "ids": "兂", + "canonical_ids": "兂", + "expanded_ids": "兂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "元", + "codepoint": "U+5143", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5143", + "status": "exact_ids", + "ids": "⿱一兀", + "canonical_ids": "⿱一兀", + "expanded_ids": "⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兄", + "codepoint": "U+5144", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5144", + "status": "exact_ids", + "ids": "⿱口儿", + "canonical_ids": "⿱口儿", + "expanded_ids": "⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "充", + "codepoint": "U+5145", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5145", + "status": "exact_ids", + "ids": "⿱亠允", + "canonical_ids": "⿱亠允", + "expanded_ids": "⿱亠⿱厶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "儿", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兆", + "codepoint": "U+5146", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5146", + "status": "leaf_self_fallback", + "ids": "兆", + "canonical_ids": "兆", + "expanded_ids": "兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兇", + "codepoint": "U+5147", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5147", + "status": "exact_ids", + "ids": "⿱凶儿", + "canonical_ids": "⿱凶儿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "先", + "codepoint": "U+5148", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5148", + "status": "exact_ids", + "ids": "⿱牛儿", + "canonical_ids": "⿱牛儿", + "expanded_ids": "⿱牛儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "光", + "codepoint": "U+5149", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5149", + "status": "exact_ids", + "ids": "⿱⺌兀", + "canonical_ids": "⿱⺌兀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兊", + "codepoint": "U+514A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-514A", + "status": "exact_ids", + "ids": "⿱八允", + "canonical_ids": "⿱八允", + "expanded_ids": "⿱八⿱厶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "克", + "codepoint": "U+514B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-514B", + "status": "exact_ids", + "ids": "⿱古儿", + "canonical_ids": "⿱古儿", + "expanded_ids": "⿱⿻十口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兌", + "codepoint": "U+514C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-514C", + "status": "exact_ids", + "ids": "⿱八兄", + "canonical_ids": "⿱八兄", + "expanded_ids": "⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "免", + "codepoint": "U+514D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-514D", + "status": "leaf_self_fallback", + "ids": "免", + "canonical_ids": "免", + "expanded_ids": "免", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "免" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兎", + "codepoint": "U+514E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-514E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兏", + "codepoint": "U+514F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-514F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "児", + "codepoint": "U+5150", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5150", + "status": "exact_ids", + "ids": "⿱旧儿", + "canonical_ids": "⿱旧儿", + "expanded_ids": "⿱⿰丨日儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "儿", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兑", + "codepoint": "U+5151", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5151", + "status": "exact_ids", + "ids": "⿱丷兄", + "canonical_ids": "⿱丷兄", + "expanded_ids": "⿱丷⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "儿", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兒", + "codepoint": "U+5152", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5152", + "status": "exact_ids", + "ids": "⿱臼儿", + "canonical_ids": "⿱臼儿", + "expanded_ids": "⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兓", + "codepoint": "U+5153", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5153", + "status": "exact_ids", + "ids": "⿰旡旡", + "canonical_ids": "⿰旡旡", + "expanded_ids": "⿰旡旡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "旡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兔", + "codepoint": "U+5154", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5154", + "status": "exact_ids", + "ids": "⿻免丶", + "canonical_ids": "⿻免丶", + "expanded_ids": "⿻免丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "免" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兕", + "codepoint": "U+5155", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5155", + "status": "exact_ids", + "ids": "⿱凹儿", + "canonical_ids": "⿱凹儿", + "expanded_ids": "⿱凹儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "凹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兖", + "codepoint": "U+5156", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5156", + "status": "exact_ids", + "ids": "⿱六允", + "canonical_ids": "⿱六允", + "expanded_ids": "⿱⿱亠八⿱厶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "儿", + "八", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兗", + "codepoint": "U+5157", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5157", + "status": "exact_ids", + "ids": "⿱六兄", + "canonical_ids": "⿱六兄", + "expanded_ids": "⿱⿱亠八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "儿", + "八", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兘", + "codepoint": "U+5158", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5158", + "status": "exact_ids", + "ids": "⿰元台", + "canonical_ids": "⿰元台", + "expanded_ids": "⿰⿱一⿱一儿⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "厶", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兙", + "codepoint": "U+5159", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5159", + "status": "exact_ids", + "ids": "⿰克十", + "canonical_ids": "⿰克十", + "expanded_ids": "⿰⿱⿻十口儿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "党", + "codepoint": "U+515A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-515A", + "status": "exact_ids", + "ids": "⿳小冖兄", + "canonical_ids": "⿳小冖兄", + "expanded_ids": "⿳小冖⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "口", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兛", + "codepoint": "U+515B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-515B", + "status": "exact_ids", + "ids": "⿰克千", + "canonical_ids": "⿰克千", + "expanded_ids": "⿰⿱⿻十口儿⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兜", + "codepoint": "U+515C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-515C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兝", + "codepoint": "U+515D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-515D", + "status": "exact_ids", + "ids": "⿰克分", + "canonical_ids": "⿰克分", + "expanded_ids": "⿰⿱⿻十口儿⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "刀", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兞", + "codepoint": "U+515E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-515E", + "status": "exact_ids", + "ids": "⿰克毛", + "canonical_ids": "⿰克毛", + "expanded_ids": "⿰⿱⿻十口儿毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "十", + "口", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兟", + "codepoint": "U+515F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-515F", + "status": "exact_ids", + "ids": "⿰先先", + "canonical_ids": "⿰先先", + "expanded_ids": "⿰⿱牛儿⿱牛儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兠", + "codepoint": "U+5160", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5160", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兡", + "codepoint": "U+5161", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5161", + "status": "exact_ids", + "ids": "⿰克百", + "canonical_ids": "⿰克百", + "expanded_ids": "⿰⿱⿻十口儿⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "儿", + "十", + "口", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兢", + "codepoint": "U+5162", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5162", + "status": "exact_ids", + "ids": "⿰克克", + "canonical_ids": "⿰克克", + "expanded_ids": "⿰⿱⿻十口儿⿱⿻十口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兣", + "codepoint": "U+5163", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5163", + "status": "exact_ids", + "ids": "⿰克厘", + "canonical_ids": "⿰克厘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "十", + "厂", + "口" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兤", + "codepoint": "U+5164", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5164", + "status": "exact_ids", + "ids": "⿰光廣", + "canonical_ids": "⿰光廣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "广", + "黄" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "入", + "codepoint": "U+5165", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5165", + "status": "leaf_self_fallback", + "ids": "入", + "canonical_ids": "入", + "expanded_ids": "入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兦", + "codepoint": "U+5166", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5166", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "內", + "codepoint": "U+5167", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5167", + "status": "exact_ids", + "ids": "⿻冂入", + "canonical_ids": "⿻冂入", + "expanded_ids": "⿻冂入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "全", + "codepoint": "U+5168", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5168", + "status": "exact_ids", + "ids": "⿱入王", + "canonical_ids": "⿱入王", + "expanded_ids": "⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兩", + "codepoint": "U+5169", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5169", + "status": "exact_ids", + "ids": "⿻帀𠓜", + "canonical_ids": "⿻帀𠓜", + "expanded_ids": "⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兪", + "codepoint": "U+516A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-516A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "八", + "codepoint": "U+516B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-516B", + "status": "leaf_self_fallback", + "ids": "八", + "canonical_ids": "八", + "expanded_ids": "八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "公", + "codepoint": "U+516C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-516C", + "status": "exact_ids", + "ids": "⿱八厶", + "canonical_ids": "⿱八厶", + "expanded_ids": "⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "六", + "codepoint": "U+516D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-516D", + "status": "exact_ids", + "ids": "⿱亠八", + "canonical_ids": "⿱亠八", + "expanded_ids": "⿱亠八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兮", + "codepoint": "U+516E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-516E", + "status": "exact_ids", + "ids": "⿱八丂", + "canonical_ids": "⿱八丂", + "expanded_ids": "⿱八丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "八" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兯", + "codepoint": "U+516F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-516F", + "status": "exact_ids", + "ids": "⿱丷卩", + "canonical_ids": "⿱丷卩", + "expanded_ids": "⿱丷卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "卩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兰", + "codepoint": "U+5170", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5170", + "status": "exact_ids", + "ids": "⿱丷三", + "canonical_ids": "⿱丷三", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷" + ], + "unresolved_leaves": [ + "三" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "共", + "codepoint": "U+5171", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5171", + "status": "exact_ids", + "ids": "⿱廿廾", + "canonical_ids": "⿱廿廾", + "expanded_ids": "⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兲", + "codepoint": "U+5172", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5172", + "status": "exact_ids", + "ids": "⿱王八", + "canonical_ids": "⿱王八", + "expanded_ids": "⿱王八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "关", + "codepoint": "U+5173", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5173", + "status": "exact_ids", + "ids": "⿱丷天", + "canonical_ids": "⿱丷天", + "expanded_ids": "⿱丷⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兴", + "codepoint": "U+5174", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5174", + "status": "leaf_self_fallback", + "ids": "兴", + "canonical_ids": "兴", + "expanded_ids": "兴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兵", + "codepoint": "U+5175", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5175", + "status": "exact_ids", + "ids": "⿱丘八", + "canonical_ids": "⿱丘八", + "expanded_ids": "⿱丘八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "八" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "其", + "codepoint": "U+5176", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5176", + "status": "leaf_self_fallback", + "ids": "其", + "canonical_ids": "其", + "expanded_ids": "其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "具", + "codepoint": "U+5177", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5177", + "status": "exact_ids", + "ids": "⿻貝一", + "canonical_ids": "⿻貝一", + "expanded_ids": "⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "典", + "codepoint": "U+5178", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5178", + "status": "leaf_self_fallback", + "ids": "典", + "canonical_ids": "典", + "expanded_ids": "典", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "典" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兹", + "codepoint": "U+5179", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5179", + "status": "exact_ids", + "ids": "⿱䒑𢆶", + "canonical_ids": "⿱䒑𢆶", + "expanded_ids": "⿱䒑⿰幺幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兺", + "codepoint": "U+517A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-517A", + "status": "exact_ids", + "ids": "⿱分叱", + "canonical_ids": "⿱分叱", + "expanded_ids": "⿱⿱八刀⿰口七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "八", + "刀", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "养", + "codepoint": "U+517B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-517B", + "status": "exact_ids", + "ids": "⿻𦍌介", + "canonical_ids": "⿻𦍌介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "介", + "𦍌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兼", + "codepoint": "U+517C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-517C", + "status": "leaf_self_fallback", + "ids": "兼", + "canonical_ids": "兼", + "expanded_ids": "兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兽", + "codepoint": "U+517D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-517D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兾", + "codepoint": "U+517E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-517E", + "status": "exact_ids", + "ids": "⿱丷異", + "canonical_ids": "⿱丷異", + "expanded_ids": "⿱丷⿱田⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "廾", + "廿", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "兿", + "codepoint": "U+517F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-517F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冀", + "codepoint": "U+5180", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5180", + "status": "exact_ids", + "ids": "⿱北異", + "canonical_ids": "⿱北異", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "田" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冁", + "codepoint": "U+5181", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5181", + "status": "exact_ids", + "ids": "⿰单展", + "canonical_ids": "⿰单展", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "单", + "展" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冂", + "codepoint": "U+5182", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5182", + "status": "leaf_self_fallback", + "ids": "冂", + "canonical_ids": "冂", + "expanded_ids": "冂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冃", + "codepoint": "U+5183", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5183", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冄", + "codepoint": "U+5184", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5184", + "status": "exact_ids", + "ids": "⿻冂二", + "canonical_ids": "⿻冂二", + "expanded_ids": "⿻冂二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "内", + "codepoint": "U+5185", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5185", + "status": "exact_ids", + "ids": "⿻冂人", + "canonical_ids": "⿻冂人", + "expanded_ids": "⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "贝" + ] + }, + { + "character": "円", + "codepoint": "U+5186", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5186", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冇", + "codepoint": "U+5187", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5187", + "status": "exact_ids", + "ids": "⿱𠂇冂", + "canonical_ids": "⿱𠂇冂", + "expanded_ids": "⿱⿻丿一冂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冈", + "codepoint": "U+5188", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5188", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冉", + "codepoint": "U+5189", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5189", + "status": "exact_ids", + "ids": "⿻冂土", + "canonical_ids": "⿻冂土", + "expanded_ids": "⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冊", + "codepoint": "U+518A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-518A", + "status": "exact_ids", + "ids": "⿻冂廾", + "canonical_ids": "⿻冂廾", + "expanded_ids": "⿻冂廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冋", + "codepoint": "U+518B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-518B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "册", + "codepoint": "U+518C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-518C", + "status": "leaf_self_fallback", + "ids": "册", + "canonical_ids": "册", + "expanded_ids": "册", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "册" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "再", + "codepoint": "U+518D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-518D", + "status": "exact_ids", + "ids": "⿱一冉", + "canonical_ids": "⿱一冉", + "expanded_ids": "⿱一⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冂", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冎", + "codepoint": "U+518E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-518E", + "status": "leaf_self_fallback", + "ids": "冎", + "canonical_ids": "冎", + "expanded_ids": "冎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冏", + "codepoint": "U+518F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-518F", + "status": "exact_ids", + "ids": "⿱冂㕣", + "canonical_ids": "⿱冂㕣", + "expanded_ids": "⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冐", + "codepoint": "U+5190", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5190", + "status": "exact_ids", + "ids": "⿱冃月", + "canonical_ids": "⿱冃月", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冑", + "codepoint": "U+5191", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5191", + "status": "exact_ids", + "ids": "⿱由冃", + "canonical_ids": "⿱由冃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "冃", + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冒", + "codepoint": "U+5192", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5192", + "status": "exact_ids", + "ids": "⿱冃目", + "canonical_ids": "⿱冃目", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冓", + "codepoint": "U+5193", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5193", + "status": "exact_ids", + "ids": "⿱井再", + "canonical_ids": "⿱井再", + "expanded_ids": "⿱井⿱一⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "井", + "冂", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冔", + "codepoint": "U+5194", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5194", + "status": "exact_ids", + "ids": "⿱冃吁", + "canonical_ids": "⿱冃吁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "口" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冕", + "codepoint": "U+5195", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5195", + "status": "exact_ids", + "ids": "⿱冃免", + "canonical_ids": "⿱冃免", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "免" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冖", + "codepoint": "U+5196", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5196", + "status": "leaf_self_fallback", + "ids": "冖", + "canonical_ids": "冖", + "expanded_ids": "冖", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冗", + "codepoint": "U+5197", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5197", + "status": "exact_ids", + "ids": "⿱冖几", + "canonical_ids": "⿱冖几", + "expanded_ids": "⿱冖几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "几" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冘", + "codepoint": "U+5198", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5198", + "status": "exact_ids", + "ids": "⿻冖儿", + "canonical_ids": "⿻冖儿", + "expanded_ids": "⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "写", + "codepoint": "U+5199", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5199", + "status": "exact_ids", + "ids": "⿱冖与", + "canonical_ids": "⿱冖与", + "expanded_ids": "⿱冖与", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "与", + "冖" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冚", + "codepoint": "U+519A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-519A", + "status": "exact_ids", + "ids": "⿱冖山", + "canonical_ids": "⿱冖山", + "expanded_ids": "⿱冖山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "军", + "codepoint": "U+519B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-519B", + "status": "exact_ids", + "ids": "⿱冖车", + "canonical_ids": "⿱冖车", + "expanded_ids": "⿱冖车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "农", + "codepoint": "U+519C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-519C", + "status": "leaf_self_fallback", + "ids": "农", + "canonical_ids": "农", + "expanded_ids": "农", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "农" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冝", + "codepoint": "U+519D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-519D", + "status": "exact_ids", + "ids": "⿱冖且", + "canonical_ids": "⿱冖且", + "expanded_ids": "⿱冖且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "冖" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冞", + "codepoint": "U+519E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-519E", + "status": "exact_ids", + "ids": "⿱冖米", + "canonical_ids": "⿱冖米", + "expanded_ids": "⿱冖⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "冖", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冟", + "codepoint": "U+519F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-519F", + "status": "exact_ids", + "ids": "⿱冖皀", + "canonical_ids": "⿱冖皀", + "expanded_ids": "⿱冖⿱⿻日丶匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "冖", + "匕", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冠", + "codepoint": "U+51A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51A0", + "status": "exact_ids", + "ids": "⿱冖㝴", + "canonical_ids": "⿱冖㝴", + "expanded_ids": "⿱冖⿰⿱一⿱一儿寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "冖", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冡", + "codepoint": "U+51A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51A1", + "status": "exact_ids", + "ids": "⿱冃𧰨", + "canonical_ids": "⿱冃𧰨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冢", + "codepoint": "U+51A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51A2", + "status": "exact_ids", + "ids": "⿱冖豖", + "canonical_ids": "⿱冖豖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖" + ], + "unresolved_leaves": [ + "豖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冣", + "codepoint": "U+51A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51A3", + "status": "exact_ids", + "ids": "⿱冖取", + "canonical_ids": "⿱冖取", + "expanded_ids": "⿱冖⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "又", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冤", + "codepoint": "U+51A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51A4", + "status": "exact_ids", + "ids": "⿱冖兔", + "canonical_ids": "⿱冖兔", + "expanded_ids": "⿱冖⿻免丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "免", + "冖" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冥", + "codepoint": "U+51A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51A5", + "status": "exact_ids", + "ids": "⿱冖昗", + "canonical_ids": "⿱冖昗", + "expanded_ids": "⿱冖⿱日⿱亠八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冦", + "codepoint": "U+51A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51A6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冧", + "codepoint": "U+51A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51A7", + "status": "exact_ids", + "ids": "⿱冖林", + "canonical_ids": "⿱冖林", + "expanded_ids": "⿱冖⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冨", + "codepoint": "U+51A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51A8", + "status": "exact_ids", + "ids": "⿱冖畐", + "canonical_ids": "⿱冖畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冩", + "codepoint": "U+51A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51A9", + "status": "exact_ids", + "ids": "⿱冖舄", + "canonical_ids": "⿱冖舄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "臼" + ], + "unresolved_leaves": [ + "灳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冪", + "codepoint": "U+51AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51AA", + "status": "exact_ids", + "ids": "⿱冖幕", + "canonical_ids": "⿱冖幕", + "expanded_ids": "⿱冖⿱⿱艹⿱日大⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "大", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冫", + "codepoint": "U+51AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51AB", + "status": "leaf_self_fallback", + "ids": "冫", + "canonical_ids": "冫", + "expanded_ids": "冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冬", + "codepoint": "U+51AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51AC", + "status": "exact_ids", + "ids": "⿱夂冫", + "canonical_ids": "⿱夂冫", + "expanded_ids": "⿱夂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冭", + "codepoint": "U+51AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51AD", + "status": "exact_ids", + "ids": "⿱大冫", + "canonical_ids": "⿱大冫", + "expanded_ids": "⿱大冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冮", + "codepoint": "U+51AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51AE", + "status": "exact_ids", + "ids": "⿰冫工", + "canonical_ids": "⿰冫工", + "expanded_ids": "⿰冫工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冯", + "codepoint": "U+51AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51AF", + "status": "exact_ids", + "ids": "⿰冫马", + "canonical_ids": "⿰冫马", + "expanded_ids": "⿰冫马", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冰", + "codepoint": "U+51B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51B0", + "status": "exact_ids", + "ids": "⿰冫水", + "canonical_ids": "⿰冫水", + "expanded_ids": "⿰冫水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冱", + "codepoint": "U+51B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51B1", + "status": "exact_ids", + "ids": "⿰冫互", + "canonical_ids": "⿰冫互", + "expanded_ids": "⿰冫⿱一彑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冫", + "彑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冲", + "codepoint": "U+51B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51B2", + "status": "exact_ids", + "ids": "⿰冫中", + "canonical_ids": "⿰冫中", + "expanded_ids": "⿰冫⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冫", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "决", + "codepoint": "U+51B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51B3", + "status": "exact_ids", + "ids": "⿰冫夬", + "canonical_ids": "⿰冫夬", + "expanded_ids": "⿰冫⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "冫", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冴", + "codepoint": "U+51B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51B4", + "status": "exact_ids", + "ids": "⿰冫牙", + "canonical_ids": "⿰冫牙", + "expanded_ids": "⿰冫牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "牙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "况", + "codepoint": "U+51B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51B5", + "status": "exact_ids", + "ids": "⿰冫兄", + "canonical_ids": "⿰冫兄", + "expanded_ids": "⿰冫⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冫", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冶", + "codepoint": "U+51B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51B6", + "status": "exact_ids", + "ids": "⿰冫台", + "canonical_ids": "⿰冫台", + "expanded_ids": "⿰冫⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "厶", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冷", + "codepoint": "U+51B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51B7", + "status": "exact_ids", + "ids": "⿰冫令", + "canonical_ids": "⿰冫令", + "expanded_ids": "⿰冫⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冫", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冸", + "codepoint": "U+51B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51B8", + "status": "exact_ids", + "ids": "⿰冫半", + "canonical_ids": "⿰冫半", + "expanded_ids": "⿰冫半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "半" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冹", + "codepoint": "U+51B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51B9", + "status": "exact_ids", + "ids": "⿰冫犮", + "canonical_ids": "⿰冫犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冺", + "codepoint": "U+51BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51BA", + "status": "exact_ids", + "ids": "⿰冫民", + "canonical_ids": "⿰冫民", + "expanded_ids": "⿰冫民", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "民" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冻", + "codepoint": "U+51BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51BB", + "status": "exact_ids", + "ids": "⿰冫东", + "canonical_ids": "⿰冫东", + "expanded_ids": "⿰冫东", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "东", + "冫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冼", + "codepoint": "U+51BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51BC", + "status": "exact_ids", + "ids": "⿰冫先", + "canonical_ids": "⿰冫先", + "expanded_ids": "⿰冫⿱牛儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冫", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冽", + "codepoint": "U+51BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51BD", + "status": "exact_ids", + "ids": "⿰冫列", + "canonical_ids": "⿰冫列", + "expanded_ids": "⿰冫⿰⿻夕一刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冫", + "刂", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冾", + "codepoint": "U+51BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51BE", + "status": "exact_ids", + "ids": "⿰冫合", + "canonical_ids": "⿰冫合", + "expanded_ids": "⿰冫⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冫", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "冿", + "codepoint": "U+51BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51BF", + "status": "exact_ids", + "ids": "⿰冫聿", + "canonical_ids": "⿰冫聿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "净", + "codepoint": "U+51C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51C0", + "status": "exact_ids", + "ids": "⿰冫争", + "canonical_ids": "⿰冫争", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫" + ], + "unresolved_leaves": [ + "争" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凁", + "codepoint": "U+51C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51C1", + "status": "exact_ids", + "ids": "⿰冫束", + "canonical_ids": "⿰冫束", + "expanded_ids": "⿰冫⿻木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凂", + "codepoint": "U+51C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51C2", + "status": "exact_ids", + "ids": "⿰冫免", + "canonical_ids": "⿰冫免", + "expanded_ids": "⿰冫免", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "免", + "冫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凃", + "codepoint": "U+51C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51C3", + "status": "exact_ids", + "ids": "⿰冫余", + "canonical_ids": "⿰冫余", + "expanded_ids": "⿰冫⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冫", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凄", + "codepoint": "U+51C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51C4", + "status": "exact_ids", + "ids": "⿰冫妻", + "canonical_ids": "⿰冫妻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫" + ], + "unresolved_leaves": [ + "妻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凅", + "codepoint": "U+51C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51C5", + "status": "exact_ids", + "ids": "⿰冫固", + "canonical_ids": "⿰冫固", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫" + ], + "unresolved_leaves": [ + "固" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "准", + "codepoint": "U+51C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51C6", + "status": "exact_ids", + "ids": "⿰冫隹", + "canonical_ids": "⿰冫隹", + "expanded_ids": "⿰冫隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凇", + "codepoint": "U+51C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51C7", + "status": "exact_ids", + "ids": "⿰冫松", + "canonical_ids": "⿰冫松", + "expanded_ids": "⿰冫⿰木⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冫", + "厶", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凈", + "codepoint": "U+51C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51C8", + "status": "exact_ids", + "ids": "⿰冫爭", + "canonical_ids": "⿰冫爭", + "expanded_ids": "⿰冫⿱爫肀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "爫", + "肀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凉", + "codepoint": "U+51C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51C9", + "status": "exact_ids", + "ids": "⿰冫京", + "canonical_ids": "⿰冫京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凊", + "codepoint": "U+51CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51CA", + "status": "exact_ids", + "ids": "⿰冫青", + "canonical_ids": "⿰冫青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "月" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凋", + "codepoint": "U+51CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51CB", + "status": "exact_ids", + "ids": "⿰冫周", + "canonical_ids": "⿰冫周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凌", + "codepoint": "U+51CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51CC", + "status": "exact_ids", + "ids": "⿰冫夌", + "canonical_ids": "⿰冫夌", + "expanded_ids": "⿰冫⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冫", + "土", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凍", + "codepoint": "U+51CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51CD", + "status": "exact_ids", + "ids": "⿰冫東", + "canonical_ids": "⿰冫東", + "expanded_ids": "⿰冫⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凎", + "codepoint": "U+51CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51CE", + "status": "exact_ids", + "ids": "⿰冫金", + "canonical_ids": "⿰冫金", + "expanded_ids": "⿰冫金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "减", + "codepoint": "U+51CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51CF", + "status": "exact_ids", + "ids": "⿰冫咸", + "canonical_ids": "⿰冫咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凐", + "codepoint": "U+51D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51D0", + "status": "exact_ids", + "ids": "⿰冫垔", + "canonical_ids": "⿰冫垔", + "expanded_ids": "⿰冫⿱覀土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "土", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凑", + "codepoint": "U+51D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51D1", + "status": "exact_ids", + "ids": "⿰冫奏", + "canonical_ids": "⿰冫奏", + "expanded_ids": "⿰冫⿱𡗗⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冫", + "大", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凒", + "codepoint": "U+51D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51D2", + "status": "exact_ids", + "ids": "⿰冫豈", + "canonical_ids": "⿰冫豈", + "expanded_ids": "⿰冫⿱山豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "山", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凓", + "codepoint": "U+51D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51D3", + "status": "exact_ids", + "ids": "⿰冫栗", + "canonical_ids": "⿰冫栗", + "expanded_ids": "⿰冫⿱覀木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "木", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凔", + "codepoint": "U+51D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51D4", + "status": "exact_ids", + "ids": "⿰冫倉", + "canonical_ids": "⿰冫倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凕", + "codepoint": "U+51D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51D5", + "status": "exact_ids", + "ids": "⿰冫冥", + "canonical_ids": "⿰冫冥", + "expanded_ids": "⿰冫⿱冖⿱日⿱亠八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "冫", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凖", + "codepoint": "U+51D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51D6", + "status": "exact_ids", + "ids": "⿰准十", + "canonical_ids": "⿰准十", + "expanded_ids": "⿰⿰冫隹十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "十", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凗", + "codepoint": "U+51D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51D7", + "status": "exact_ids", + "ids": "⿰冫崔", + "canonical_ids": "⿰冫崔", + "expanded_ids": "⿰冫⿱山隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "山", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凘", + "codepoint": "U+51D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51D8", + "status": "exact_ids", + "ids": "⿰冫斯", + "canonical_ids": "⿰冫斯", + "expanded_ids": "⿰冫⿰其斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "冫", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凙", + "codepoint": "U+51D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51D9", + "status": "exact_ids", + "ids": "⿰冫睪", + "canonical_ids": "⿰冫睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "土", + "罒" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凚", + "codepoint": "U+51DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51DA", + "status": "exact_ids", + "ids": "⿰冫禁", + "canonical_ids": "⿰冫禁", + "expanded_ids": "⿰冫⿱⿰木木⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "冫", + "小", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凛", + "codepoint": "U+51DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51DB", + "status": "exact_ids", + "ids": "⿰冫禀", + "canonical_ids": "⿰冫禀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫" + ], + "unresolved_leaves": [ + "禀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凜", + "codepoint": "U+51DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51DC", + "status": "exact_ids", + "ids": "⿰冫稟", + "canonical_ids": "⿰冫稟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亠", + "冫", + "木" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凝", + "codepoint": "U+51DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51DD", + "status": "exact_ids", + "ids": "⿰冫疑", + "canonical_ids": "⿰冫疑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫" + ], + "unresolved_leaves": [ + "疑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凞", + "codepoint": "U+51DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51DE", + "status": "exact_ids", + "ids": "⿰冫熈", + "canonical_ids": "⿰冫熈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫" + ], + "unresolved_leaves": [ + "熈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凟", + "codepoint": "U+51DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51DF", + "status": "exact_ids", + "ids": "⿰冫賣", + "canonical_ids": "⿰冫賣", + "expanded_ids": "⿰冫⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冫", + "士", + "目", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "几", + "codepoint": "U+51E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51E0", + "status": "leaf_self_fallback", + "ids": "几", + "canonical_ids": "几", + "expanded_ids": "几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凡", + "codepoint": "U+51E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51E1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凢", + "codepoint": "U+51E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51E2", + "status": "exact_ids", + "ids": "⿱丿几", + "canonical_ids": "⿱丿几", + "expanded_ids": "⿱丿几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "几" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凣", + "codepoint": "U+51E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51E3", + "status": "exact_ids", + "ids": "⿻几丶", + "canonical_ids": "⿻几丶", + "expanded_ids": "⿻几丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "几" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凤", + "codepoint": "U+51E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51E4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凥", + "codepoint": "U+51E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51E5", + "status": "exact_ids", + "ids": "⿱尸几", + "canonical_ids": "⿱尸几", + "expanded_ids": "⿱尸几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "処", + "codepoint": "U+51E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51E6", + "status": "exact_ids", + "ids": "⿰夂几", + "canonical_ids": "⿰夂几", + "expanded_ids": "⿰夂几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凧", + "codepoint": "U+51E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51E7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凨", + "codepoint": "U+51E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51E8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凩", + "codepoint": "U+51E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51E9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凪", + "codepoint": "U+51EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51EA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凫", + "codepoint": "U+51EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51EB", + "status": "exact_ids", + "ids": "⿱乌几", + "canonical_ids": "⿱乌几", + "expanded_ids": "⿱乌几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乌", + "几" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凬", + "codepoint": "U+51EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51EC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凭", + "codepoint": "U+51ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51ED", + "status": "exact_ids", + "ids": "⿱任几", + "canonical_ids": "⿱任几", + "expanded_ids": "⿱⿰亻⿱丿士几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "几", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凮", + "codepoint": "U+51EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51EE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凯", + "codepoint": "U+51EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51EF", + "status": "exact_ids", + "ids": "⿰岂几", + "canonical_ids": "⿰岂几", + "expanded_ids": "⿰⿱山己几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "山", + "己" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凰", + "codepoint": "U+51F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51F0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凱", + "codepoint": "U+51F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51F1", + "status": "exact_ids", + "ids": "⿰豈几", + "canonical_ids": "⿰豈几", + "expanded_ids": "⿰⿱山豆几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "山", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凲", + "codepoint": "U+51F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51F2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凳", + "codepoint": "U+51F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51F3", + "status": "exact_ids", + "ids": "⿱登几", + "canonical_ids": "⿱登几", + "expanded_ids": "⿱⿱癶豆几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "癶", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凴", + "codepoint": "U+51F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51F4", + "status": "exact_ids", + "ids": "⿱馮几", + "canonical_ids": "⿱馮几", + "expanded_ids": "⿱⿰冫馬几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "几", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凵", + "codepoint": "U+51F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51F5", + "status": "leaf_self_fallback", + "ids": "凵", + "canonical_ids": "凵", + "expanded_ids": "凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凶", + "codepoint": "U+51F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51F6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凷", + "codepoint": "U+51F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51F7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凸", + "codepoint": "U+51F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51F8", + "status": "leaf_self_fallback", + "ids": "凸", + "canonical_ids": "凸", + "expanded_ids": "凸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凹", + "codepoint": "U+51F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51F9", + "status": "leaf_self_fallback", + "ids": "凹", + "canonical_ids": "凹", + "expanded_ids": "凹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "出", + "codepoint": "U+51FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51FA", + "status": "exact_ids", + "ids": "⿻屮凵", + "canonical_ids": "⿻屮凵", + "expanded_ids": "⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "击", + "codepoint": "U+51FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51FB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凼", + "codepoint": "U+51FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51FC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "函", + "codepoint": "U+51FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51FD", + "status": "leaf_self_fallback", + "ids": "函", + "canonical_ids": "函", + "expanded_ids": "函", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "函" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凾", + "codepoint": "U+51FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51FE", + "status": "leaf_self_fallback", + "ids": "凾", + "canonical_ids": "凾", + "expanded_ids": "凾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "凿", + "codepoint": "U+51FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-51FF", + "status": "exact_ids", + "ids": "⿱丵凵", + "canonical_ids": "⿱丵凵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "凵" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刀", + "codepoint": "U+5200", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5200", + "status": "leaf_self_fallback", + "ids": "刀", + "canonical_ids": "刀", + "expanded_ids": "刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刁", + "codepoint": "U+5201", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5201", + "status": "exact_ids", + "ids": "⿻𠃌丿", + "canonical_ids": "⿻𠃌丿", + "expanded_ids": "⿻𠃌丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "𠃌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 76, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刂", + "codepoint": "U+5202", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5202", + "status": "leaf_self_fallback", + "ids": "刂", + "canonical_ids": "刂", + "expanded_ids": "刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刃", + "codepoint": "U+5203", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5203", + "status": "exact_ids", + "ids": "⿻刀丶", + "canonical_ids": "⿻刀丶", + "expanded_ids": "⿻刀丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刄", + "codepoint": "U+5204", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5204", + "status": "exact_ids", + "ids": "⿻刀乀", + "canonical_ids": "⿻刀乀", + "expanded_ids": "⿻刀乀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乀", + "刀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刅", + "codepoint": "U+5205", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5205", + "status": "exact_ids", + "ids": "⿻刀丷", + "canonical_ids": "⿻刀丷", + "expanded_ids": "⿻刀丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "刀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "分", + "codepoint": "U+5206", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5206", + "status": "exact_ids", + "ids": "⿱八刀", + "canonical_ids": "⿱八刀", + "expanded_ids": "⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "切", + "codepoint": "U+5207", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5207", + "status": "exact_ids", + "ids": "⿰七刀", + "canonical_ids": "⿰七刀", + "expanded_ids": "⿰七刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "刀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刈", + "codepoint": "U+5208", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5208", + "status": "exact_ids", + "ids": "⿰乂刂", + "canonical_ids": "⿰乂刂", + "expanded_ids": "⿰乂刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "刂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刉", + "codepoint": "U+5209", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5209", + "status": "exact_ids", + "ids": "⿰乞刂", + "canonical_ids": "⿰乞刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刊", + "codepoint": "U+520A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-520A", + "status": "exact_ids", + "ids": "⿰干刂", + "canonical_ids": "⿰干刂", + "expanded_ids": "⿰⿱一十刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刋", + "codepoint": "U+520B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-520B", + "status": "exact_ids", + "ids": "⿰千刂", + "canonical_ids": "⿰千刂", + "expanded_ids": "⿰⿱丿十刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刌", + "codepoint": "U+520C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-520C", + "status": "exact_ids", + "ids": "⿰寸刂", + "canonical_ids": "⿰寸刂", + "expanded_ids": "⿰寸刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刍", + "codepoint": "U+520D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-520D", + "status": "exact_ids", + "ids": "⿱⺈彐", + "canonical_ids": "⿱⺈彐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刎", + "codepoint": "U+520E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-520E", + "status": "exact_ids", + "ids": "⿰勿刂", + "canonical_ids": "⿰勿刂", + "expanded_ids": "⿰勿刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "勿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刏", + "codepoint": "U+520F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-520F", + "status": "exact_ids", + "ids": "⿰气刂", + "canonical_ids": "⿰气刂", + "expanded_ids": "⿰气刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刐", + "codepoint": "U+5210", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5210", + "status": "exact_ids", + "ids": "⿰丹刂", + "canonical_ids": "⿰丹刂", + "expanded_ids": "⿰丹刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丹", + "刂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刑", + "codepoint": "U+5211", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5211", + "status": "exact_ids", + "ids": "⿰开刂", + "canonical_ids": "⿰开刂", + "expanded_ids": "⿰⿱一廾刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "划", + "codepoint": "U+5212", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5212", + "status": "exact_ids", + "ids": "⿰戈刂", + "canonical_ids": "⿰戈刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刓", + "codepoint": "U+5213", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5213", + "status": "exact_ids", + "ids": "⿰元刂", + "canonical_ids": "⿰元刂", + "expanded_ids": "⿰⿱一⿱一儿刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "刂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刔", + "codepoint": "U+5214", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5214", + "status": "exact_ids", + "ids": "⿰夬刂", + "canonical_ids": "⿰夬刂", + "expanded_ids": "⿰⿻大乛刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "刂", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刕", + "codepoint": "U+5215", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5215", + "status": "exact_ids", + "ids": "⿱刀⿰刀刀", + "canonical_ids": "⿱刀⿰刀刀", + "expanded_ids": "⿱刀⿰刀刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刖", + "codepoint": "U+5216", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5216", + "status": "exact_ids", + "ids": "⿰月刂", + "canonical_ids": "⿰月刂", + "expanded_ids": "⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "列", + "codepoint": "U+5217", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5217", + "status": "exact_ids", + "ids": "⿰歹刂", + "canonical_ids": "⿰歹刂", + "expanded_ids": "⿰⿻夕一刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刘", + "codepoint": "U+5218", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5218", + "status": "exact_ids", + "ids": "⿰文刂", + "canonical_ids": "⿰文刂", + "expanded_ids": "⿰文刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "文" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "则", + "codepoint": "U+5219", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5219", + "status": "exact_ids", + "ids": "⿰贝刂", + "canonical_ids": "⿰贝刂", + "expanded_ids": "⿰⿻冂人刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "刂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刚", + "codepoint": "U+521A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-521A", + "status": "exact_ids", + "ids": "⿰冈刂", + "canonical_ids": "⿰冈刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "冈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "创", + "codepoint": "U+521B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-521B", + "status": "exact_ids", + "ids": "⿰仓刂", + "canonical_ids": "⿰仓刂", + "expanded_ids": "⿰⿱人㔾刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "人", + "刂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刜", + "codepoint": "U+521C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-521C", + "status": "exact_ids", + "ids": "⿰弗刂", + "canonical_ids": "⿰弗刂", + "expanded_ids": "⿰⿻弓刂刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "初", + "codepoint": "U+521D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-521D", + "status": "exact_ids", + "ids": "⿰衤刀", + "canonical_ids": "⿰衤刀", + "expanded_ids": "⿰衤刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刞", + "codepoint": "U+521E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-521E", + "status": "exact_ids", + "ids": "⿰且刂", + "canonical_ids": "⿰且刂", + "expanded_ids": "⿰且刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "刂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刟", + "codepoint": "U+521F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-521F", + "status": "exact_ids", + "ids": "⿰召刂", + "canonical_ids": "⿰召刂", + "expanded_ids": "⿰⿱刀口刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "刂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "删", + "codepoint": "U+5220", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5220", + "status": "exact_ids", + "ids": "⿰册刂", + "canonical_ids": "⿰册刂", + "expanded_ids": "⿰册刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "册", + "刂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刡", + "codepoint": "U+5221", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5221", + "status": "exact_ids", + "ids": "⿰民刂", + "canonical_ids": "⿰民刂", + "expanded_ids": "⿰民刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "民" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刢", + "codepoint": "U+5222", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5222", + "status": "exact_ids", + "ids": "⿰令刂", + "canonical_ids": "⿰令刂", + "expanded_ids": "⿰⿱⿱人一龴刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刣", + "codepoint": "U+5223", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5223", + "status": "exact_ids", + "ids": "⿰台刂", + "canonical_ids": "⿰台刂", + "expanded_ids": "⿰⿱厶口刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "厶", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "判", + "codepoint": "U+5224", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5224", + "status": "exact_ids", + "ids": "⿰半刂", + "canonical_ids": "⿰半刂", + "expanded_ids": "⿰半刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "半" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "別", + "codepoint": "U+5225", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5225", + "status": "exact_ids", + "ids": "⿰𠮠刂", + "canonical_ids": "⿰𠮠刂", + "expanded_ids": "⿰⿱口𠂊刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "口", + "𠂊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刦", + "codepoint": "U+5226", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5226", + "status": "exact_ids", + "ids": "⿰去刂", + "canonical_ids": "⿰去刂", + "expanded_ids": "⿰⿱土厶刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "厶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刧", + "codepoint": "U+5227", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5227", + "status": "exact_ids", + "ids": "⿰去刀", + "canonical_ids": "⿰去刀", + "expanded_ids": "⿰⿱土厶刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "厶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刨", + "codepoint": "U+5228", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5228", + "status": "exact_ids", + "ids": "⿰包刂", + "canonical_ids": "⿰包刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "利", + "codepoint": "U+5229", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5229", + "status": "exact_ids", + "ids": "⿰禾刂", + "canonical_ids": "⿰禾刂", + "expanded_ids": "⿰⿻丿木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刪", + "codepoint": "U+522A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-522A", + "status": "exact_ids", + "ids": "⿰冊刂", + "canonical_ids": "⿰冊刂", + "expanded_ids": "⿰⿻冂廾刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "刂", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "别", + "codepoint": "U+522B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-522B", + "status": "exact_ids", + "ids": "⿰另刂", + "canonical_ids": "⿰另刂", + "expanded_ids": "⿰⿱口力刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "力", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刬", + "codepoint": "U+522C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-522C", + "status": "exact_ids", + "ids": "⿰戋刂", + "canonical_ids": "⿰戋刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刭", + "codepoint": "U+522D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-522D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刮", + "codepoint": "U+522E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-522E", + "status": "exact_ids", + "ids": "⿰舌刂", + "canonical_ids": "⿰舌刂", + "expanded_ids": "⿰⿱⿱丿十口刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刯", + "codepoint": "U+522F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-522F", + "status": "exact_ids", + "ids": "⿰亘刂", + "canonical_ids": "⿰亘刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "到", + "codepoint": "U+5230", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5230", + "status": "exact_ids", + "ids": "⿰至刂", + "canonical_ids": "⿰至刂", + "expanded_ids": "⿰⿱⿱一厶土刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "厶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刱", + "codepoint": "U+5231", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5231", + "status": "exact_ids", + "ids": "⿰井刅", + "canonical_ids": "⿰井刅", + "expanded_ids": "⿰井⿻刀丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "井", + "刀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刲", + "codepoint": "U+5232", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5232", + "status": "exact_ids", + "ids": "⿰圭刂", + "canonical_ids": "⿰圭刂", + "expanded_ids": "⿰⿱土土刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刳", + "codepoint": "U+5233", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5233", + "status": "exact_ids", + "ids": "⿰夸刂", + "canonical_ids": "⿰夸刂", + "expanded_ids": "⿰⿱大⿱一丂刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "刂", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刴", + "codepoint": "U+5234", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5234", + "status": "exact_ids", + "ids": "⿰朶刂", + "canonical_ids": "⿰朶刂", + "expanded_ids": "⿰⿱乃木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "刂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刵", + "codepoint": "U+5235", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5235", + "status": "exact_ids", + "ids": "⿰耳刂", + "canonical_ids": "⿰耳刂", + "expanded_ids": "⿰耳刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "制", + "codepoint": "U+5236", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5236", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刷", + "codepoint": "U+5237", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5237", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "券", + "codepoint": "U+5238", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5238", + "status": "exact_ids", + "ids": "⿱龹刀", + "canonical_ids": "⿱龹刀", + "expanded_ids": "⿱龹刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刹", + "codepoint": "U+5239", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5239", + "status": "exact_ids", + "ids": "⿰杀刂", + "canonical_ids": "⿰杀刂", + "expanded_ids": "⿰⿱乂朩刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "刂", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刺", + "codepoint": "U+523A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-523A", + "status": "exact_ids", + "ids": "⿰朿刂", + "canonical_ids": "⿰朿刂", + "expanded_ids": "⿰⿻木冂刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "刂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刻", + "codepoint": "U+523B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-523B", + "status": "exact_ids", + "ids": "⿰亥刂", + "canonical_ids": "⿰亥刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刼", + "codepoint": "U+523C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-523C", + "status": "exact_ids", + "ids": "⿰去刃", + "canonical_ids": "⿰去刃", + "expanded_ids": "⿰⿱土厶⿻刀丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "厶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刽", + "codepoint": "U+523D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-523D", + "status": "exact_ids", + "ids": "⿰会刂", + "canonical_ids": "⿰会刂", + "expanded_ids": "⿰⿱⿱人一⿱一厶刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刾", + "codepoint": "U+523E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-523E", + "status": "exact_ids", + "ids": "⿰夹刂", + "canonical_ids": "⿰夹刂", + "expanded_ids": "⿰⿻⿻一大丷刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "刂", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "刿", + "codepoint": "U+523F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-523F", + "status": "exact_ids", + "ids": "⿰岁刂", + "canonical_ids": "⿰岁刂", + "expanded_ids": "⿰⿱山夕刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "夕", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剀", + "codepoint": "U+5240", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5240", + "status": "exact_ids", + "ids": "⿰岂刂", + "canonical_ids": "⿰岂刂", + "expanded_ids": "⿰⿱山己刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "山", + "己" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剁", + "codepoint": "U+5241", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5241", + "status": "exact_ids", + "ids": "⿰朵刂", + "canonical_ids": "⿰朵刂", + "expanded_ids": "⿰⿱几木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "刂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剂", + "codepoint": "U+5242", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5242", + "status": "exact_ids", + "ids": "⿰齐刂", + "canonical_ids": "⿰齐刂", + "expanded_ids": "⿰齐刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "齐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剃", + "codepoint": "U+5243", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5243", + "status": "exact_ids", + "ids": "⿰弟刂", + "canonical_ids": "⿰弟刂", + "expanded_ids": "⿰⿱丷⿻⿻弓丨丿刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "刂", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剄", + "codepoint": "U+5244", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5244", + "status": "exact_ids", + "ids": "⿰巠刂", + "canonical_ids": "⿰巠刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剅", + "codepoint": "U+5245", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5245", + "status": "exact_ids", + "ids": "⿰豆刂", + "canonical_ids": "⿰豆刂", + "expanded_ids": "⿰豆刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剆", + "codepoint": "U+5246", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5246", + "status": "exact_ids", + "ids": "⿰良刂", + "canonical_ids": "⿰良刂", + "expanded_ids": "⿰⿻丶艮刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刂", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "則", + "codepoint": "U+5247", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5247", + "status": "exact_ids", + "ids": "⿰貝刂", + "canonical_ids": "⿰貝刂", + "expanded_ids": "⿰⿱目八刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刂", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剈", + "codepoint": "U+5248", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5248", + "status": "exact_ids", + "ids": "⿰肙刂", + "canonical_ids": "⿰肙刂", + "expanded_ids": "⿰⿱口月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剉", + "codepoint": "U+5249", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5249", + "status": "exact_ids", + "ids": "⿰坐刂", + "canonical_ids": "⿰坐刂", + "expanded_ids": "⿰⿱⿰人人土刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "刂", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "削", + "codepoint": "U+524A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-524A", + "status": "exact_ids", + "ids": "⿰肖刂", + "canonical_ids": "⿰肖刂", + "expanded_ids": "⿰⿱小月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "小", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剋", + "codepoint": "U+524B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-524B", + "status": "exact_ids", + "ids": "⿰克刂", + "canonical_ids": "⿰克刂", + "expanded_ids": "⿰⿱⿻十口儿刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "刂", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剌", + "codepoint": "U+524C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-524C", + "status": "exact_ids", + "ids": "⿰束刂", + "canonical_ids": "⿰束刂", + "expanded_ids": "⿰⿻木口刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "前", + "codepoint": "U+524D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-524D", + "status": "exact_ids", + "ids": "⿱止刖", + "canonical_ids": "⿱止刖", + "expanded_ids": "⿱止⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "月", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剎", + "codepoint": "U+524E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-524E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剏", + "codepoint": "U+524F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-524F", + "status": "exact_ids", + "ids": "⿰并刄", + "canonical_ids": "⿰并刄", + "expanded_ids": "⿰⿱丷⿱一廾⿻刀乀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "乀", + "刀", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剐", + "codepoint": "U+5250", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5250", + "status": "exact_ids", + "ids": "⿰呙刂", + "canonical_ids": "⿰呙刂", + "expanded_ids": "⿰⿱口⿻冂人刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "刂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剑", + "codepoint": "U+5251", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5251", + "status": "exact_ids", + "ids": "⿰佥刂", + "canonical_ids": "⿰佥刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "佥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剒", + "codepoint": "U+5252", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5252", + "status": "exact_ids", + "ids": "⿰昔刂", + "canonical_ids": "⿰昔刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "日" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剓", + "codepoint": "U+5253", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5253", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剔", + "codepoint": "U+5254", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5254", + "status": "exact_ids", + "ids": "⿰易刂", + "canonical_ids": "⿰易刂", + "expanded_ids": "⿰⿱日勿刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "勿", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剕", + "codepoint": "U+5255", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5255", + "status": "exact_ids", + "ids": "⿰非刂", + "canonical_ids": "⿰非刂", + "expanded_ids": "⿰非刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剖", + "codepoint": "U+5256", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5256", + "status": "exact_ids", + "ids": "⿰咅刂", + "canonical_ids": "⿰咅刂", + "expanded_ids": "⿰⿱立口刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "口", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剗", + "codepoint": "U+5257", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5257", + "status": "exact_ids", + "ids": "⿰戔刂", + "canonical_ids": "⿰戔刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剘", + "codepoint": "U+5258", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5258", + "status": "exact_ids", + "ids": "⿰其刂", + "canonical_ids": "⿰其刂", + "expanded_ids": "⿰其刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "刂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剙", + "codepoint": "U+5259", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5259", + "status": "exact_ids", + "ids": "⿰并刅", + "canonical_ids": "⿰并刅", + "expanded_ids": "⿰⿱丷⿱一廾⿻刀丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "刀", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剚", + "codepoint": "U+525A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-525A", + "status": "exact_ids", + "ids": "⿰事刂", + "canonical_ids": "⿰事刂", + "expanded_ids": "⿰事刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "事", + "刂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剛", + "codepoint": "U+525B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-525B", + "status": "exact_ids", + "ids": "⿰岡刂", + "canonical_ids": "⿰岡刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "岡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剜", + "codepoint": "U+525C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-525C", + "status": "exact_ids", + "ids": "⿰宛刂", + "canonical_ids": "⿰宛刂", + "expanded_ids": "⿰⿱宀⿰夕㔾刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "刂", + "夕", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剝", + "codepoint": "U+525D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-525D", + "status": "exact_ids", + "ids": "⿰彔刂", + "canonical_ids": "⿰彔刂", + "expanded_ids": "⿰⿱彑氺刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "彑", + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剞", + "codepoint": "U+525E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-525E", + "status": "exact_ids", + "ids": "⿰奇刂", + "canonical_ids": "⿰奇刂", + "expanded_ids": "⿰⿱大⿰口⿱一亅刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "刂", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剟", + "codepoint": "U+525F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-525F", + "status": "exact_ids", + "ids": "⿰叕刂", + "canonical_ids": "⿰叕刂", + "expanded_ids": "⿰⿱⿰又又⿰又又刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剠", + "codepoint": "U+5260", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5260", + "status": "exact_ids", + "ids": "⿰京刂", + "canonical_ids": "⿰京刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剡", + "codepoint": "U+5261", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5261", + "status": "exact_ids", + "ids": "⿰炎刂", + "canonical_ids": "⿰炎刂", + "expanded_ids": "⿰⿱火火刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剢", + "codepoint": "U+5262", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5262", + "status": "exact_ids", + "ids": "⿰豖刂", + "canonical_ids": "⿰豖刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "豖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剣", + "codepoint": "U+5263", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5263", + "status": "exact_ids", + "ids": "⿰㑒刂", + "canonical_ids": "⿰㑒刂", + "expanded_ids": "⿰⿻⿱⿱人一口人刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剤", + "codepoint": "U+5264", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5264", + "status": "exact_ids", + "ids": "⿰斉刂", + "canonical_ids": "⿰斉刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "斉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剥", + "codepoint": "U+5265", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5265", + "status": "exact_ids", + "ids": "⿰录刂", + "canonical_ids": "⿰录刂", + "expanded_ids": "⿰⿱彐氺刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "彐", + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剦", + "codepoint": "U+5266", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5266", + "status": "exact_ids", + "ids": "⿰奄刂", + "canonical_ids": "⿰奄刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "大" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剧", + "codepoint": "U+5267", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5267", + "status": "exact_ids", + "ids": "⿰居刂", + "canonical_ids": "⿰居刂", + "expanded_ids": "⿰⿱尸⿻十口刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "十", + "口", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剨", + "codepoint": "U+5268", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5268", + "status": "exact_ids", + "ids": "⿰砉刂", + "canonical_ids": "⿰砉刂", + "expanded_ids": "⿰⿱丰石刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刂", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剩", + "codepoint": "U+5269", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5269", + "status": "exact_ids", + "ids": "⿰乘刂", + "canonical_ids": "⿰乘刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "木" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剪", + "codepoint": "U+526A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-526A", + "status": "exact_ids", + "ids": "⿱前刀", + "canonical_ids": "⿱前刀", + "expanded_ids": "⿱⿱止⿰月刂刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "刂", + "月", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剫", + "codepoint": "U+526B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-526B", + "status": "exact_ids", + "ids": "⿰度刂", + "canonical_ids": "⿰度刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "度" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剬", + "codepoint": "U+526C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-526C", + "status": "exact_ids", + "ids": "⿰耑刂", + "canonical_ids": "⿰耑刂", + "expanded_ids": "⿰⿱山而刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "山", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剭", + "codepoint": "U+526D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-526D", + "status": "exact_ids", + "ids": "⿰屋刂", + "canonical_ids": "⿰屋刂", + "expanded_ids": "⿰⿱尸⿱⿱一厶土刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "厶", + "土", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剮", + "codepoint": "U+526E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-526E", + "status": "exact_ids", + "ids": "⿰咼刂", + "canonical_ids": "⿰咼刂", + "expanded_ids": "⿰⿱冎口刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "刂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "副", + "codepoint": "U+526F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-526F", + "status": "exact_ids", + "ids": "⿰畐刂", + "canonical_ids": "⿰畐刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剰", + "codepoint": "U+5270", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5270", + "status": "exact_ids", + "ids": "⿰乗刂", + "canonical_ids": "⿰乗刂", + "expanded_ids": "⿰⿻⿻丿木廿刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "廿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剱", + "codepoint": "U+5271", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5271", + "status": "exact_ids", + "ids": "⿰㑒刄", + "canonical_ids": "⿰㑒刄", + "expanded_ids": "⿰⿻⿱⿱人一口人⿻刀乀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乀", + "人", + "刀", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "割", + "codepoint": "U+5272", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5272", + "status": "exact_ids", + "ids": "⿰害刂", + "canonical_ids": "⿰害刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "害" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剳", + "codepoint": "U+5273", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5273", + "status": "exact_ids", + "ids": "⿰荅刂", + "canonical_ids": "⿰荅刂", + "expanded_ids": "⿰⿱艹⿱⿱人一口刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剴", + "codepoint": "U+5274", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5274", + "status": "exact_ids", + "ids": "⿰豈刂", + "canonical_ids": "⿰豈刂", + "expanded_ids": "⿰⿱山豆刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "山", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "創", + "codepoint": "U+5275", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5275", + "status": "exact_ids", + "ids": "⿰倉刂", + "canonical_ids": "⿰倉刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剶", + "codepoint": "U+5276", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5276", + "status": "exact_ids", + "ids": "⿰彖刂", + "canonical_ids": "⿰彖刂", + "expanded_ids": "⿰⿱彑𧰨刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "彑", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剷", + "codepoint": "U+5277", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5277", + "status": "exact_ids", + "ids": "⿰産刂", + "canonical_ids": "⿰産刂", + "expanded_ids": "⿰⿱⿱⿱亠八厂⿱牛一刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "八", + "刂", + "厂", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剸", + "codepoint": "U+5278", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5278", + "status": "exact_ids", + "ids": "⿰專刂", + "canonical_ids": "⿰專刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "厶", + "寸" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剹", + "codepoint": "U+5279", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5279", + "status": "exact_ids", + "ids": "⿰翏刂", + "canonical_ids": "⿰翏刂", + "expanded_ids": "⿰⿱⿰习习⿱人彡刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "刂", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剺", + "codepoint": "U+527A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-527A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剻", + "codepoint": "U+527B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-527B", + "status": "exact_ids", + "ids": "⿰崩刂", + "canonical_ids": "⿰崩刂", + "expanded_ids": "⿰⿱山⿰月月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "山", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剼", + "codepoint": "U+527C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-527C", + "status": "exact_ids", + "ids": "⿰參刂", + "canonical_ids": "⿰參刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剽", + "codepoint": "U+527D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-527D", + "status": "exact_ids", + "ids": "⿰票刂", + "canonical_ids": "⿰票刂", + "expanded_ids": "⿰⿱覀⿱二小刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "刂", + "小", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剾", + "codepoint": "U+527E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-527E", + "status": "exact_ids", + "ids": "⿰區刂", + "canonical_ids": "⿰區刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "剿", + "codepoint": "U+527F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-527F", + "status": "exact_ids", + "ids": "⿰巢刂", + "canonical_ids": "⿰巢刂", + "expanded_ids": "⿰⿱巛⿻田木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "巛", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劀", + "codepoint": "U+5280", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5280", + "status": "exact_ids", + "ids": "⿰矞刂", + "canonical_ids": "⿰矞刂", + "expanded_ids": "⿰⿱矛⿱冂⿱八口刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "刂", + "口", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劁", + "codepoint": "U+5281", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5281", + "status": "exact_ids", + "ids": "⿰焦刂", + "canonical_ids": "⿰焦刂", + "expanded_ids": "⿰⿱隹灬刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "灬", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劂", + "codepoint": "U+5282", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5282", + "status": "exact_ids", + "ids": "⿰厥刂", + "canonical_ids": "⿰厥刂", + "expanded_ids": "⿰⿱厂⿰⿱䒑屮欠刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "刂", + "厂", + "屮", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劃", + "codepoint": "U+5283", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5283", + "status": "exact_ids", + "ids": "⿰畫刂", + "canonical_ids": "⿰畫刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "畫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劄", + "codepoint": "U+5284", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5284", + "status": "exact_ids", + "ids": "⿰答刂", + "canonical_ids": "⿰答刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "口" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劅", + "codepoint": "U+5285", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5285", + "status": "exact_ids", + "ids": "⿰蜀刂", + "canonical_ids": "⿰蜀刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "罒" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劆", + "codepoint": "U+5286", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5286", + "status": "exact_ids", + "ids": "⿰廉刂", + "canonical_ids": "⿰廉刂", + "expanded_ids": "⿰⿱广兼刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "刂", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劇", + "codepoint": "U+5287", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5287", + "status": "exact_ids", + "ids": "⿰豦刂", + "canonical_ids": "⿰豦刂", + "expanded_ids": "⿰⿱虍豕刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "虍", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劈", + "codepoint": "U+5288", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5288", + "status": "exact_ids", + "ids": "⿱辟刀", + "canonical_ids": "⿱辟刀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "十", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劉", + "codepoint": "U+5289", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5289", + "status": "exact_ids", + "ids": "⿰𨥫刂", + "canonical_ids": "⿰𨥫刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "𨥫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劊", + "codepoint": "U+528A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-528A", + "status": "exact_ids", + "ids": "⿰會刂", + "canonical_ids": "⿰會刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "曰" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劋", + "codepoint": "U+528B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-528B", + "status": "exact_ids", + "ids": "⿰喿刂", + "canonical_ids": "⿰喿刂", + "expanded_ids": "⿰⿱⿱口⿰口口木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劌", + "codepoint": "U+528C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-528C", + "status": "exact_ids", + "ids": "⿰歲刂", + "canonical_ids": "⿰歲刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "歲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劍", + "codepoint": "U+528D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-528D", + "status": "exact_ids", + "ids": "⿰僉刂", + "canonical_ids": "⿰僉刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劎", + "codepoint": "U+528E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-528E", + "status": "exact_ids", + "ids": "⿰僉刀", + "canonical_ids": "⿰僉刀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劏", + "codepoint": "U+528F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-528F", + "status": "exact_ids", + "ids": "⿰當刂", + "canonical_ids": "⿰當刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "小", + "田" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劐", + "codepoint": "U+5290", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5290", + "status": "exact_ids", + "ids": "⿰蒦刂", + "canonical_ids": "⿰蒦刂", + "expanded_ids": "⿰⿱艹⿱隹又刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "又", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劑", + "codepoint": "U+5291", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5291", + "status": "exact_ids", + "ids": "⿰齊刂", + "canonical_ids": "⿰齊刂", + "expanded_ids": "⿰齊刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劒", + "codepoint": "U+5292", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5292", + "status": "exact_ids", + "ids": "⿰僉刃", + "canonical_ids": "⿰僉刃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劓", + "codepoint": "U+5293", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5293", + "status": "exact_ids", + "ids": "⿰鼻刂", + "canonical_ids": "⿰鼻刂", + "expanded_ids": "⿰⿱⿻目丶⿱田丌刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "丶", + "刂", + "田", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劔", + "codepoint": "U+5294", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5294", + "status": "exact_ids", + "ids": "⿰僉刄", + "canonical_ids": "⿰僉刄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乀", + "刀" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劕", + "codepoint": "U+5295", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5295", + "status": "exact_ids", + "ids": "⿰質刂", + "canonical_ids": "⿰質刂", + "expanded_ids": "⿰⿱⿰斤斤⿱目八刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刂", + "斤", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劖", + "codepoint": "U+5296", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5296", + "status": "exact_ids", + "ids": "⿰毚刂", + "canonical_ids": "⿰毚刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "毚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劗", + "codepoint": "U+5297", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5297", + "status": "exact_ids", + "ids": "⿰贊刂", + "canonical_ids": "⿰贊刂", + "expanded_ids": "⿰⿱⿰⿱牛儿⿱牛儿⿱目八刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "刂", + "牛", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劘", + "codepoint": "U+5298", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5298", + "status": "exact_ids", + "ids": "⿰靡刂", + "canonical_ids": "⿰靡刂", + "expanded_ids": "⿰⿱⿱广⿰木木非刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "广", + "木", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劙", + "codepoint": "U+5299", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5299", + "status": "exact_ids", + "ids": "⿰蠡刂", + "canonical_ids": "⿰蠡刂", + "expanded_ids": "⿰⿱⿱彑𧰨⿰虫虫刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "彑", + "虫", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 194, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劚", + "codepoint": "U+529A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-529A", + "status": "exact_ids", + "ids": "⿰屬刂", + "canonical_ids": "⿰屬刂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "屬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "力", + "codepoint": "U+529B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-529B", + "status": "leaf_self_fallback", + "ids": "力", + "canonical_ids": "力", + "expanded_ids": "力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劜", + "codepoint": "U+529C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-529C", + "status": "exact_ids", + "ids": "⿰力乚", + "canonical_ids": "⿰力乚", + "expanded_ids": "⿰力乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "力" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劝", + "codepoint": "U+529D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-529D", + "status": "exact_ids", + "ids": "⿰又力", + "canonical_ids": "⿰又力", + "expanded_ids": "⿰又力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "办", + "codepoint": "U+529E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-529E", + "status": "exact_ids", + "ids": "⿻力丷", + "canonical_ids": "⿻力丷", + "expanded_ids": "⿻力丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "力" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "为" + ] + }, + { + "character": "功", + "codepoint": "U+529F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-529F", + "status": "exact_ids", + "ids": "⿰工力", + "canonical_ids": "⿰工力", + "expanded_ids": "⿰工力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "加", + "codepoint": "U+52A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52A0", + "status": "exact_ids", + "ids": "⿰力口", + "canonical_ids": "⿰力口", + "expanded_ids": "⿰力口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "务", + "codepoint": "U+52A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52A1", + "status": "exact_ids", + "ids": "⿱夂力", + "canonical_ids": "⿱夂力", + "expanded_ids": "⿱夂力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劢", + "codepoint": "U+52A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52A2", + "status": "exact_ids", + "ids": "⿰万力", + "canonical_ids": "⿰万力", + "expanded_ids": "⿰万力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "万", + "力" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劣", + "codepoint": "U+52A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52A3", + "status": "exact_ids", + "ids": "⿱少力", + "canonical_ids": "⿱少力", + "expanded_ids": "⿱⿱小丿力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "力", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劤", + "codepoint": "U+52A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52A4", + "status": "exact_ids", + "ids": "⿰斤力", + "canonical_ids": "⿰斤力", + "expanded_ids": "⿰斤力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劥", + "codepoint": "U+52A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52A5", + "status": "exact_ids", + "ids": "⿰亢力", + "canonical_ids": "⿰亢力", + "expanded_ids": "⿰⿱亠几力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "力" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劦", + "codepoint": "U+52A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52A6", + "status": "exact_ids", + "ids": "⿱力⿰力力", + "canonical_ids": "⿱力⿰力力", + "expanded_ids": "⿱力⿰力力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劧", + "codepoint": "U+52A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52A7", + "status": "exact_ids", + "ids": "⿰手力", + "canonical_ids": "⿰手力", + "expanded_ids": "⿰手力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "手" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "动", + "codepoint": "U+52A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52A8", + "status": "exact_ids", + "ids": "⿰云力", + "canonical_ids": "⿰云力", + "expanded_ids": "⿰⿱二厶力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "力", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "助", + "codepoint": "U+52A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52A9", + "status": "exact_ids", + "ids": "⿰且力", + "canonical_ids": "⿰且力", + "expanded_ids": "⿰且力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "力" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "努", + "codepoint": "U+52AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52AA", + "status": "exact_ids", + "ids": "⿱奴力", + "canonical_ids": "⿱奴力", + "expanded_ids": "⿱⿰女又力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "又", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劫", + "codepoint": "U+52AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52AB", + "status": "exact_ids", + "ids": "⿰去力", + "canonical_ids": "⿰去力", + "expanded_ids": "⿰⿱土厶力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "厶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劬", + "codepoint": "U+52AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52AC", + "status": "exact_ids", + "ids": "⿰句力", + "canonical_ids": "⿰句力", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劭", + "codepoint": "U+52AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52AD", + "status": "exact_ids", + "ids": "⿰召力", + "canonical_ids": "⿰召力", + "expanded_ids": "⿰⿱刀口力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "力", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劮", + "codepoint": "U+52AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52AE", + "status": "exact_ids", + "ids": "⿰失力", + "canonical_ids": "⿰失力", + "expanded_ids": "⿰⿻丿⿻一大力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "力", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劯", + "codepoint": "U+52AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52AF", + "status": "exact_ids", + "ids": "⿰石力", + "canonical_ids": "⿰石力", + "expanded_ids": "⿰石力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劰", + "codepoint": "U+52B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52B0", + "status": "exact_ids", + "ids": "⿰白力", + "canonical_ids": "⿰白力", + "expanded_ids": "⿰⿻日丶力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "力", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "励", + "codepoint": "U+52B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52B1", + "status": "exact_ids", + "ids": "⿰厉力", + "canonical_ids": "⿰厉力", + "expanded_ids": "⿰⿱厂万力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "万", + "力", + "厂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劲", + "codepoint": "U+52B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52B2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劳", + "codepoint": "U+52B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52B3", + "status": "exact_ids", + "ids": "⿳艹冖力", + "canonical_ids": "⿳艹冖力", + "expanded_ids": "⿳艹冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 101, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "労", + "codepoint": "U+52B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52B4", + "status": "exact_ids", + "ids": "⿳小冖力", + "canonical_ids": "⿳小冖力", + "expanded_ids": "⿳小冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劵", + "codepoint": "U+52B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52B5", + "status": "exact_ids", + "ids": "⿱龹力", + "canonical_ids": "⿱龹力", + "expanded_ids": "⿱龹力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劶", + "codepoint": "U+52B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52B6", + "status": "exact_ids", + "ids": "⿰后力", + "canonical_ids": "⿰后力", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力" + ], + "unresolved_leaves": [ + "后" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劷", + "codepoint": "U+52B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52B7", + "status": "exact_ids", + "ids": "⿰羊力", + "canonical_ids": "⿰羊力", + "expanded_ids": "⿰羊力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劸", + "codepoint": "U+52B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52B8", + "status": "exact_ids", + "ids": "⿰圭力", + "canonical_ids": "⿰圭力", + "expanded_ids": "⿰⿱土土力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "効", + "codepoint": "U+52B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52B9", + "status": "exact_ids", + "ids": "⿰交力", + "canonical_ids": "⿰交力", + "expanded_ids": "⿰⿱亠父力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "力", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劺", + "codepoint": "U+52BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52BA", + "status": "exact_ids", + "ids": "⿰牟力", + "canonical_ids": "⿰牟力", + "expanded_ids": "⿰⿱厶牛力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "厶", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劻", + "codepoint": "U+52BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52BB", + "status": "exact_ids", + "ids": "⿰匡力", + "canonical_ids": "⿰匡力", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力" + ], + "unresolved_leaves": [ + "匡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劼", + "codepoint": "U+52BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52BC", + "status": "exact_ids", + "ids": "⿰吉力", + "canonical_ids": "⿰吉力", + "expanded_ids": "⿰⿱士口力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劽", + "codepoint": "U+52BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52BD", + "status": "exact_ids", + "ids": "⿱列力", + "canonical_ids": "⿱列力", + "expanded_ids": "⿱⿰⿻夕一刂力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "力", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "劾", + "codepoint": "U+52BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52BE", + "status": "exact_ids", + "ids": "⿰亥力", + "canonical_ids": "⿰亥力", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "势", + "codepoint": "U+52BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52BF", + "status": "exact_ids", + "ids": "⿱执力", + "canonical_ids": "⿱执力", + "expanded_ids": "⿱⿰扌⿻九丶力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "力", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勀", + "codepoint": "U+52C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52C0", + "status": "exact_ids", + "ids": "⿰克力", + "canonical_ids": "⿰克力", + "expanded_ids": "⿰⿱⿻十口儿力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "力", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "勊" + ] + }, + { + "character": "勁", + "codepoint": "U+52C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52C1", + "status": "exact_ids", + "ids": "⿰巠力", + "canonical_ids": "⿰巠力", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勂", + "codepoint": "U+52C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52C2", + "status": "exact_ids", + "ids": "⿰告力", + "canonical_ids": "⿰告力", + "expanded_ids": "⿰⿱牛口力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勃", + "codepoint": "U+52C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52C3", + "status": "exact_ids", + "ids": "⿰孛力", + "canonical_ids": "⿰孛力", + "expanded_ids": "⿰⿳十冖子力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "十", + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勄", + "codepoint": "U+52C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52C4", + "status": "exact_ids", + "ids": "⿰每力", + "canonical_ids": "⿰每力", + "expanded_ids": "⿰⿱⿻丿一母力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "力", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勅", + "codepoint": "U+52C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52C5", + "status": "exact_ids", + "ids": "⿰束力", + "canonical_ids": "⿰束力", + "expanded_ids": "⿰⿻木口力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勆", + "codepoint": "U+52C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52C6", + "status": "exact_ids", + "ids": "⿰良力", + "canonical_ids": "⿰良力", + "expanded_ids": "⿰⿻丶艮力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "力", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勇", + "codepoint": "U+52C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52C7", + "status": "exact_ids", + "ids": "⿱甬力", + "canonical_ids": "⿱甬力", + "expanded_ids": "⿱⿱龴⿻月丨力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "力", + "月", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勈", + "codepoint": "U+52C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52C8", + "status": "exact_ids", + "ids": "⿰甬力", + "canonical_ids": "⿰甬力", + "expanded_ids": "⿰⿱龴⿻月丨力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "力", + "月", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勉", + "codepoint": "U+52C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52C9", + "status": "exact_ids", + "ids": "⿰免力", + "canonical_ids": "⿰免力", + "expanded_ids": "⿰免力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "免", + "力" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勊", + "codepoint": "U+52CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52CA", + "status": "exact_ids", + "ids": "⿰克力", + "canonical_ids": "⿰克力", + "expanded_ids": "⿰⿱⿻十口儿力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "力", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "勀" + ] + }, + { + "character": "勋", + "codepoint": "U+52CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52CB", + "status": "exact_ids", + "ids": "⿰员力", + "canonical_ids": "⿰员力", + "expanded_ids": "⿰⿱口⿻冂人力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "力", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勌", + "codepoint": "U+52CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52CC", + "status": "exact_ids", + "ids": "⿰卷力", + "canonical_ids": "⿰卷力", + "expanded_ids": "⿰⿱龹卩力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "卩", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勍", + "codepoint": "U+52CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52CD", + "status": "exact_ids", + "ids": "⿰京力", + "canonical_ids": "⿰京力", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勎", + "codepoint": "U+52CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52CE", + "status": "exact_ids", + "ids": "⿰坴力", + "canonical_ids": "⿰坴力", + "expanded_ids": "⿰⿱⿱土儿土力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "力", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勏", + "codepoint": "U+52CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52CF", + "status": "exact_ids", + "ids": "⿰咅力", + "canonical_ids": "⿰咅力", + "expanded_ids": "⿰⿱立口力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勐", + "codepoint": "U+52D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52D0", + "status": "exact_ids", + "ids": "⿰孟力", + "canonical_ids": "⿰孟力", + "expanded_ids": "⿰⿱子皿力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "子", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勑", + "codepoint": "U+52D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52D1", + "status": "exact_ids", + "ids": "⿰來力", + "canonical_ids": "⿰來力", + "expanded_ids": "⿰⿻木⿰人人力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "力", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勒", + "codepoint": "U+52D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52D2", + "status": "exact_ids", + "ids": "⿰革力", + "canonical_ids": "⿰革力", + "expanded_ids": "⿰革力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勓", + "codepoint": "U+52D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52D3", + "status": "exact_ids", + "ids": "⿰皆力", + "canonical_ids": "⿰皆力", + "expanded_ids": "⿰⿱⿰匕匕⿻日丶力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "力", + "匕", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勔", + "codepoint": "U+52D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52D4", + "status": "exact_ids", + "ids": "⿰面力", + "canonical_ids": "⿰面力", + "expanded_ids": "⿰面力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "面" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "動", + "codepoint": "U+52D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52D5", + "status": "exact_ids", + "ids": "⿰重力", + "canonical_ids": "⿰重力", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "力", + "十" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勖", + "codepoint": "U+52D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52D6", + "status": "exact_ids", + "ids": "⿰冒力", + "canonical_ids": "⿰冒力", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "目" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勗", + "codepoint": "U+52D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52D7", + "status": "exact_ids", + "ids": "⿱曰助", + "canonical_ids": "⿱曰助", + "expanded_ids": "⿱曰⿰且力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "力", + "曰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勘", + "codepoint": "U+52D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52D8", + "status": "exact_ids", + "ids": "⿰甚力", + "canonical_ids": "⿰甚力", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "甘" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "務", + "codepoint": "U+52D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52D9", + "status": "exact_ids", + "ids": "⿰矛务", + "canonical_ids": "⿰矛务", + "expanded_ids": "⿰矛⿱夂力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "夂", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勚", + "codepoint": "U+52DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52DA", + "status": "exact_ids", + "ids": "⿰贳力", + "canonical_ids": "⿰贳力", + "expanded_ids": "⿰⿱世⿻冂人力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "人", + "冂", + "力" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勛", + "codepoint": "U+52DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52DB", + "status": "exact_ids", + "ids": "⿰員力", + "canonical_ids": "⿰員力", + "expanded_ids": "⿰⿱口⿱目八力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "力", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勜", + "codepoint": "U+52DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52DC", + "status": "exact_ids", + "ids": "⿰翁力", + "canonical_ids": "⿰翁力", + "expanded_ids": "⿰⿱⿱八厶⿰习习力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "八", + "力", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勝", + "codepoint": "U+52DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52DD", + "status": "exact_ids", + "ids": "⿰月劵", + "canonical_ids": "⿰月劵", + "expanded_ids": "⿰月⿱龹力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "月", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勞", + "codepoint": "U+52DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52DE", + "status": "exact_ids", + "ids": "⿳炏冖力", + "canonical_ids": "⿳炏冖力", + "expanded_ids": "⿳⿰火火冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "募", + "codepoint": "U+52DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52DF", + "status": "exact_ids", + "ids": "⿱莫力", + "canonical_ids": "⿱莫力", + "expanded_ids": "⿱⿱艹⿱日大力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "大", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勠", + "codepoint": "U+52E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52E0", + "status": "exact_ids", + "ids": "⿰翏力", + "canonical_ids": "⿰翏力", + "expanded_ids": "⿰⿱⿰习习⿱人彡力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "力", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勡", + "codepoint": "U+52E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52E1", + "status": "exact_ids", + "ids": "⿰票力", + "canonical_ids": "⿰票力", + "expanded_ids": "⿰⿱覀⿱二小力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "力", + "小", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勢", + "codepoint": "U+52E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52E2", + "status": "exact_ids", + "ids": "⿱埶力", + "canonical_ids": "⿱埶力", + "expanded_ids": "⿱⿰⿱⿱土儿土⿻九丶力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "儿", + "力", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勣", + "codepoint": "U+52E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52E3", + "status": "exact_ids", + "ids": "⿰責力", + "canonical_ids": "⿰責力", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "力", + "目" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勤", + "codepoint": "U+52E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52E4", + "status": "exact_ids", + "ids": "⿰堇力", + "canonical_ids": "⿰堇力", + "expanded_ids": "⿰堇力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "堇" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勥", + "codepoint": "U+52E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52E5", + "status": "exact_ids", + "ids": "⿱强力", + "canonical_ids": "⿱强力", + "expanded_ids": "⿱⿰弓⿱口虫力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "弓", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勦", + "codepoint": "U+52E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52E6", + "status": "exact_ids", + "ids": "⿰巢力", + "canonical_ids": "⿰巢力", + "expanded_ids": "⿰⿱巛⿻田木力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "巛", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勧", + "codepoint": "U+52E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52E7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勨", + "codepoint": "U+52E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52E8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勩", + "codepoint": "U+52E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52E9", + "status": "exact_ids", + "ids": "⿰貰力", + "canonical_ids": "⿰貰力", + "expanded_ids": "⿰⿱世⿱目八力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "八", + "力", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勪", + "codepoint": "U+52EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52EA", + "status": "exact_ids", + "ids": "⿰喬力", + "canonical_ids": "⿰喬力", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "力", + "口", + "大" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勫", + "codepoint": "U+52EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52EB", + "status": "exact_ids", + "ids": "⿰番力", + "canonical_ids": "⿰番力", + "expanded_ids": "⿰⿱⿱丿⿻木丷田力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "力", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勬", + "codepoint": "U+52EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52EC", + "status": "exact_ids", + "ids": "⿰絭力", + "canonical_ids": "⿰絭力", + "expanded_ids": "⿰⿱龹⿱幺小力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "小", + "幺", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勭", + "codepoint": "U+52ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52ED", + "status": "exact_ids", + "ids": "⿰童力", + "canonical_ids": "⿰童力", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勮", + "codepoint": "U+52EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52EE", + "status": "exact_ids", + "ids": "⿰豦力", + "canonical_ids": "⿰豦力", + "expanded_ids": "⿰⿱虍豕力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "虍", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勯", + "codepoint": "U+52EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52EF", + "status": "exact_ids", + "ids": "⿰亶力", + "canonical_ids": "⿰亶力", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "力", + "日" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勰", + "codepoint": "U+52F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52F0", + "status": "exact_ids", + "ids": "⿰劦思", + "canonical_ids": "⿰劦思", + "expanded_ids": "⿰⿱力⿰力力⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "心", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勱", + "codepoint": "U+52F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52F1", + "status": "exact_ids", + "ids": "⿰萬力", + "canonical_ids": "⿰萬力", + "expanded_ids": "⿰⿱艹⿻田禸力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "田", + "禸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勲", + "codepoint": "U+52F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52F2", + "status": "exact_ids", + "ids": "⿱動灬", + "canonical_ids": "⿱動灬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "力", + "十", + "灬" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勳", + "codepoint": "U+52F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52F3", + "status": "exact_ids", + "ids": "⿰熏力", + "canonical_ids": "⿰熏力", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力" + ], + "unresolved_leaves": [ + "熏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勴", + "codepoint": "U+52F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52F4", + "status": "exact_ids", + "ids": "⿰慮力", + "canonical_ids": "⿰慮力", + "expanded_ids": "⿰⿱虍⿱田心力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "心", + "田", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勵", + "codepoint": "U+52F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52F5", + "status": "exact_ids", + "ids": "⿰厲力", + "canonical_ids": "⿰厲力", + "expanded_ids": "⿰⿱厂⿱艹⿻田禸力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "厂", + "田", + "禸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勶", + "codepoint": "U+52F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52F6", + "status": "exact_ids", + "ids": "⿱徹力", + "canonical_ids": "⿱徹力", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力" + ], + "unresolved_leaves": [ + "徹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勷", + "codepoint": "U+52F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52F7", + "status": "exact_ids", + "ids": "⿰襄力", + "canonical_ids": "⿰襄力", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勸", + "codepoint": "U+52F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52F8", + "status": "exact_ids", + "ids": "⿰雚力", + "canonical_ids": "⿰雚力", + "expanded_ids": "⿰⿱艹⿱⿰口口隹力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勹", + "codepoint": "U+52F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52F9", + "status": "leaf_self_fallback", + "ids": "勹", + "canonical_ids": "勹", + "expanded_ids": "勹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勺", + "codepoint": "U+52FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52FA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勻", + "codepoint": "U+52FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52FB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勼", + "codepoint": "U+52FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52FC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勽", + "codepoint": "U+52FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52FD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勾", + "codepoint": "U+52FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52FE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "勿", + "codepoint": "U+52FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-52FF", + "status": "leaf_self_fallback", + "ids": "勿", + "canonical_ids": "勿", + "expanded_ids": "勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匀", + "codepoint": "U+5300", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5300", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匁", + "codepoint": "U+5301", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5301", + "status": "exact_ids", + "ids": "⿻勹乂", + "canonical_ids": "⿻勹乂", + "expanded_ids": "⿻勹乂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "勹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匂", + "codepoint": "U+5302", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5302", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匃", + "codepoint": "U+5303", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5303", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匄", + "codepoint": "U+5304", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5304", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "包", + "codepoint": "U+5305", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5305", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匆", + "codepoint": "U+5306", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5306", + "status": "exact_ids", + "ids": "⿻勿丶", + "canonical_ids": "⿻勿丶", + "expanded_ids": "⿻勿丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "勿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匇", + "codepoint": "U+5307", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5307", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匈", + "codepoint": "U+5308", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5308", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匉", + "codepoint": "U+5309", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5309", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匊", + "codepoint": "U+530A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-530A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匋", + "codepoint": "U+530B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-530B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匌", + "codepoint": "U+530C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-530C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匍", + "codepoint": "U+530D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-530D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匎", + "codepoint": "U+530E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-530E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匏", + "codepoint": "U+530F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-530F", + "status": "exact_ids", + "ids": "⿰夸包", + "canonical_ids": "⿰夸包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匐", + "codepoint": "U+5310", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5310", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匑", + "codepoint": "U+5311", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5311", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匒", + "codepoint": "U+5312", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5312", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匓", + "codepoint": "U+5313", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5313", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匔", + "codepoint": "U+5314", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5314", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匕", + "codepoint": "U+5315", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5315", + "status": "leaf_self_fallback", + "ids": "匕", + "canonical_ids": "匕", + "expanded_ids": "匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "化", + "codepoint": "U+5316", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5316", + "status": "exact_ids", + "ids": "⿰亻匕", + "canonical_ids": "⿰亻匕", + "expanded_ids": "⿰亻匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "北", + "codepoint": "U+5317", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5317", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匘", + "codepoint": "U+5318", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5318", + "status": "exact_ids", + "ids": "⿰匕𡿺", + "canonical_ids": "⿰匕𡿺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "巛" + ], + "unresolved_leaves": [ + "囟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匙", + "codepoint": "U+5319", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5319", + "status": "exact_ids", + "ids": "⿰是匕", + "canonical_ids": "⿰是匕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匚", + "codepoint": "U+531A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-531A", + "status": "leaf_self_fallback", + "ids": "匚", + "canonical_ids": "匚", + "expanded_ids": "匚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匛", + "codepoint": "U+531B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-531B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匜", + "codepoint": "U+531C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-531C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匝", + "codepoint": "U+531D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-531D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匞", + "codepoint": "U+531E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-531E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匟", + "codepoint": "U+531F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-531F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匠", + "codepoint": "U+5320", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5320", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匡", + "codepoint": "U+5321", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5321", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匢", + "codepoint": "U+5322", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5322", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匣", + "codepoint": "U+5323", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5323", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匤", + "codepoint": "U+5324", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5324", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匥", + "codepoint": "U+5325", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5325", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匦", + "codepoint": "U+5326", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5326", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匧", + "codepoint": "U+5327", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5327", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匨", + "codepoint": "U+5328", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5328", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匩", + "codepoint": "U+5329", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5329", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匪", + "codepoint": "U+532A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-532A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匫", + "codepoint": "U+532B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-532B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匬", + "codepoint": "U+532C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-532C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匭", + "codepoint": "U+532D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-532D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匮", + "codepoint": "U+532E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-532E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匯", + "codepoint": "U+532F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-532F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匰", + "codepoint": "U+5330", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5330", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匱", + "codepoint": "U+5331", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5331", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匲", + "codepoint": "U+5332", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5332", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匳", + "codepoint": "U+5333", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5333", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匴", + "codepoint": "U+5334", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5334", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匵", + "codepoint": "U+5335", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5335", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匶", + "codepoint": "U+5336", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5336", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匷", + "codepoint": "U+5337", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5337", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匸", + "codepoint": "U+5338", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5338", + "status": "leaf_self_fallback", + "ids": "匸", + "canonical_ids": "匸", + "expanded_ids": "匸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匹", + "codepoint": "U+5339", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5339", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "区", + "codepoint": "U+533A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-533A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "医", + "codepoint": "U+533B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-533B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匼", + "codepoint": "U+533C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-533C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匽", + "codepoint": "U+533D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-533D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匾", + "codepoint": "U+533E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-533E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "匿", + "codepoint": "U+533F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-533F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "區", + "codepoint": "U+5340", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5340", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "十", + "codepoint": "U+5341", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5341", + "status": "leaf_self_fallback", + "ids": "十", + "canonical_ids": "十", + "expanded_ids": "十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卂", + "codepoint": "U+5342", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5342", + "status": "exact_ids", + "ids": "⿱乁十", + "canonical_ids": "⿱乁十", + "expanded_ids": "⿱乁十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乁", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "千", + "codepoint": "U+5343", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5343", + "status": "exact_ids", + "ids": "⿱丿十", + "canonical_ids": "⿱丿十", + "expanded_ids": "⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卄", + "codepoint": "U+5344", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5344", + "status": "leaf_self_fallback", + "ids": "卄", + "canonical_ids": "卄", + "expanded_ids": "卄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卅", + "codepoint": "U+5345", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5345", + "status": "exact_ids", + "ids": "⿻川一", + "canonical_ids": "⿻川一", + "expanded_ids": "⿻川一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "川" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卆", + "codepoint": "U+5346", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5346", + "status": "exact_ids", + "ids": "⿱九十", + "canonical_ids": "⿱九十", + "expanded_ids": "⿱九十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "升", + "codepoint": "U+5347", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5347", + "status": "leaf_self_fallback", + "ids": "升", + "canonical_ids": "升", + "expanded_ids": "升", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "升" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "午", + "codepoint": "U+5348", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5348", + "status": "exact_ids", + "ids": "⿱𠂉十", + "canonical_ids": "⿱𠂉十", + "expanded_ids": "⿱⿻丿一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卉", + "codepoint": "U+5349", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5349", + "status": "exact_ids", + "ids": "⿱十廾", + "canonical_ids": "⿱十廾", + "expanded_ids": "⿱十廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "半", + "codepoint": "U+534A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-534A", + "status": "leaf_self_fallback", + "ids": "半", + "canonical_ids": "半", + "expanded_ids": "半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卋", + "codepoint": "U+534B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-534B", + "status": "exact_ids", + "ids": "⿱十廿", + "canonical_ids": "⿱十廿", + "expanded_ids": "⿱十廿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "廿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卌", + "codepoint": "U+534C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-534C", + "status": "leaf_self_fallback", + "ids": "卌", + "canonical_ids": "卌", + "expanded_ids": "卌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卍", + "codepoint": "U+534D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-534D", + "status": "leaf_self_fallback", + "ids": "卍", + "canonical_ids": "卍", + "expanded_ids": "卍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "华", + "codepoint": "U+534E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-534E", + "status": "exact_ids", + "ids": "⿱化十", + "canonical_ids": "⿱化十", + "expanded_ids": "⿱⿰亻匕十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "协", + "codepoint": "U+534F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-534F", + "status": "exact_ids", + "ids": "⿰十办", + "canonical_ids": "⿰十办", + "expanded_ids": "⿰十⿻力丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "力", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卐", + "codepoint": "U+5350", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5350", + "status": "leaf_self_fallback", + "ids": "卐", + "canonical_ids": "卐", + "expanded_ids": "卐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卑", + "codepoint": "U+5351", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5351", + "status": "leaf_self_fallback", + "ids": "卑", + "canonical_ids": "卑", + "expanded_ids": "卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卒", + "codepoint": "U+5352", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5352", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卓", + "codepoint": "U+5353", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5353", + "status": "exact_ids", + "ids": "⿱卜早", + "canonical_ids": "⿱卜早", + "expanded_ids": "⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "協", + "codepoint": "U+5354", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5354", + "status": "exact_ids", + "ids": "⿰十劦", + "canonical_ids": "⿰十劦", + "expanded_ids": "⿰十⿱力⿰力力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "单", + "codepoint": "U+5355", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5355", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卖", + "codepoint": "U+5356", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5356", + "status": "exact_ids", + "ids": "⿱十买", + "canonical_ids": "⿱十买", + "expanded_ids": "⿱十⿱乛⿻大冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "冫", + "十", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "南", + "codepoint": "U+5357", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5357", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "単", + "codepoint": "U+5358", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5358", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卙", + "codepoint": "U+5359", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5359", + "status": "exact_ids", + "ids": "⿰甚十", + "canonical_ids": "⿰甚十", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "甘" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "博", + "codepoint": "U+535A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-535A", + "status": "exact_ids", + "ids": "⿰十尃", + "canonical_ids": "⿰十尃", + "expanded_ids": "⿰十⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "寸", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卛", + "codepoint": "U+535B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-535B", + "status": "exact_ids", + "ids": "⿱䜌十", + "canonical_ids": "⿱䜌十", + "expanded_ids": "⿱⿲⿱幺小言⿱幺小十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "小", + "幺", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卜", + "codepoint": "U+535C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-535C", + "status": "leaf_self_fallback", + "ids": "卜", + "canonical_ids": "卜", + "expanded_ids": "卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卝", + "codepoint": "U+535D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-535D", + "status": "leaf_self_fallback", + "ids": "卝", + "canonical_ids": "卝", + "expanded_ids": "卝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卞", + "codepoint": "U+535E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-535E", + "status": "exact_ids", + "ids": "⿱亠卜", + "canonical_ids": "⿱亠卜", + "expanded_ids": "⿱亠卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "卜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卟", + "codepoint": "U+535F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-535F", + "status": "exact_ids", + "ids": "⿰口卜", + "canonical_ids": "⿰口卜", + "expanded_ids": "⿰口卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "占", + "codepoint": "U+5360", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5360", + "status": "exact_ids", + "ids": "⿱卜口", + "canonical_ids": "⿱卜口", + "expanded_ids": "⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卡", + "codepoint": "U+5361", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5361", + "status": "exact_ids", + "ids": "⿱上卜", + "canonical_ids": "⿱上卜", + "expanded_ids": "⿱上卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "卜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卢", + "codepoint": "U+5362", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5362", + "status": "exact_ids", + "ids": "⿱卜尸", + "canonical_ids": "⿱卜尸", + "expanded_ids": "⿱卜尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卣", + "codepoint": "U+5363", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5363", + "status": "exact_ids", + "ids": "⿱卜囙", + "canonical_ids": "⿱卜囙", + "expanded_ids": "⿱卜囙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "囙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卤", + "codepoint": "U+5364", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5364", + "status": "exact_ids", + "ids": "⿱卜龱", + "canonical_ids": "⿱卜龱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜" + ], + "unresolved_leaves": [ + "龱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卥", + "codepoint": "U+5365", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5365", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卦", + "codepoint": "U+5366", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5366", + "status": "exact_ids", + "ids": "⿰圭卜", + "canonical_ids": "⿰圭卜", + "expanded_ids": "⿰⿱土土卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卧", + "codepoint": "U+5367", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5367", + "status": "exact_ids", + "ids": "⿰臣卜", + "canonical_ids": "⿰臣卜", + "expanded_ids": "⿰臣卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卨", + "codepoint": "U+5368", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5368", + "status": "exact_ids", + "ids": "⿱卜咼", + "canonical_ids": "⿱卜咼", + "expanded_ids": "⿱卜⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "卜", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卩", + "codepoint": "U+5369", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5369", + "status": "leaf_self_fallback", + "ids": "卩", + "canonical_ids": "卩", + "expanded_ids": "卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卪", + "codepoint": "U+536A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-536A", + "status": "exact_ids", + "ids": "⿻卩丶", + "canonical_ids": "⿻卩丶", + "expanded_ids": "⿻卩丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "卩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卫", + "codepoint": "U+536B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-536B", + "status": "leaf_self_fallback", + "ids": "卫", + "canonical_ids": "卫", + "expanded_ids": "卫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卬", + "codepoint": "U+536C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-536C", + "status": "exact_ids", + "ids": "⿰匚卩", + "canonical_ids": "⿰匚卩", + "expanded_ids": "⿰匚卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匚", + "卩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卭", + "codepoint": "U+536D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-536D", + "status": "exact_ids", + "ids": "⿰工卩", + "canonical_ids": "⿰工卩", + "expanded_ids": "⿰工卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卮", + "codepoint": "U+536E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-536E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卯", + "codepoint": "U+536F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-536F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "印", + "codepoint": "U+5370", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5370", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "危", + "codepoint": "U+5371", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5371", + "status": "exact_ids", + "ids": "⿱⺈厄", + "canonical_ids": "⿱⺈厄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卲", + "codepoint": "U+5372", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5372", + "status": "exact_ids", + "ids": "⿰召卩", + "canonical_ids": "⿰召卩", + "expanded_ids": "⿰⿱刀口卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "卩", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "即", + "codepoint": "U+5373", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5373", + "status": "exact_ids", + "ids": "⿰艮卩", + "canonical_ids": "⿰艮卩", + "expanded_ids": "⿰艮卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "却", + "codepoint": "U+5374", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5374", + "status": "exact_ids", + "ids": "⿰去卩", + "canonical_ids": "⿰去卩", + "expanded_ids": "⿰⿱土厶卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "厶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卵", + "codepoint": "U+5375", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5375", + "status": "exact_ids", + "ids": "⿰𠂑卪", + "canonical_ids": "⿰𠂑卪", + "expanded_ids": "⿰⿻𠂎丶⿻卩丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "卩", + "𠂎" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卶", + "codepoint": "U+5376", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5376", + "status": "exact_ids", + "ids": "⿰多卩", + "canonical_ids": "⿰多卩", + "expanded_ids": "⿰⿱夕夕卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卷", + "codepoint": "U+5377", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5377", + "status": "exact_ids", + "ids": "⿱龹卩", + "canonical_ids": "⿱龹卩", + "expanded_ids": "⿱龹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卸", + "codepoint": "U+5378", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5378", + "status": "exact_ids", + "ids": "⿰𦈢卩", + "canonical_ids": "⿰𦈢卩", + "expanded_ids": "⿰𦈢卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "𦈢" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 76, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卹", + "codepoint": "U+5379", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5379", + "status": "exact_ids", + "ids": "⿰血卩", + "canonical_ids": "⿰血卩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩" + ], + "unresolved_leaves": [ + "血" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卺", + "codepoint": "U+537A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-537A", + "status": "exact_ids", + "ids": "⿱丞㔾", + "canonical_ids": "⿱丞㔾", + "expanded_ids": "⿱⿱⿱乛水一㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "一", + "乛", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卻", + "codepoint": "U+537B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-537B", + "status": "exact_ids", + "ids": "⿰谷卩", + "canonical_ids": "⿰谷卩", + "expanded_ids": "⿰⿱八⿱八口卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "卩", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卼", + "codepoint": "U+537C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-537C", + "status": "exact_ids", + "ids": "⿰兀危", + "canonical_ids": "⿰兀危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "一", + "儿", + "厂" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卽", + "codepoint": "U+537D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-537D", + "status": "exact_ids", + "ids": "⿰皀卩", + "canonical_ids": "⿰皀卩", + "expanded_ids": "⿰⿱⿻日丶匕卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "卩", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卾", + "codepoint": "U+537E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-537E", + "status": "exact_ids", + "ids": "⿰咢卩", + "canonical_ids": "⿰咢卩", + "expanded_ids": "⿰⿱⿰口口⿱一丂卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "卩", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "卿", + "codepoint": "U+537F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-537F", + "status": "exact_ids", + "ids": "⿰𠂎即", + "canonical_ids": "⿰𠂎即", + "expanded_ids": "⿰𠂎⿰艮卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "艮", + "𠂎" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厀", + "codepoint": "U+5380", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5380", + "status": "exact_ids", + "ids": "⿰桼卩", + "canonical_ids": "⿰桼卩", + "expanded_ids": "⿰⿱木⿱入水卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "卩", + "木", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厁", + "codepoint": "U+5381", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5381", + "status": "exact_ids", + "ids": "⿱斜卩", + "canonical_ids": "⿱斜卩", + "expanded_ids": "⿱⿰⿱⿱人一朩斗卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "卩", + "斗", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厂", + "codepoint": "U+5382", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5382", + "status": "leaf_self_fallback", + "ids": "厂", + "canonical_ids": "厂", + "expanded_ids": "厂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厃", + "codepoint": "U+5383", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5383", + "status": "exact_ids", + "ids": "⿱⺈厂", + "canonical_ids": "⿱⺈厂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厄", + "codepoint": "U+5384", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5384", + "status": "exact_ids", + "ids": "⿱厂㔾", + "canonical_ids": "⿱厂㔾", + "expanded_ids": "⿱厂㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 68, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厅", + "codepoint": "U+5385", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5385", + "status": "exact_ids", + "ids": "⿱厂丁", + "canonical_ids": "⿱厂丁", + "expanded_ids": "⿱厂⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "厂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "历", + "codepoint": "U+5386", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5386", + "status": "exact_ids", + "ids": "⿱厂力", + "canonical_ids": "⿱厂力", + "expanded_ids": "⿱厂力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "厂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厇", + "codepoint": "U+5387", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5387", + "status": "exact_ids", + "ids": "⿱厂乇", + "canonical_ids": "⿱厂乇", + "expanded_ids": "⿱厂⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "厂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厈", + "codepoint": "U+5388", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5388", + "status": "exact_ids", + "ids": "⿱厂干", + "canonical_ids": "⿱厂干", + "expanded_ids": "⿱厂⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "厂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厉", + "codepoint": "U+5389", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5389", + "status": "exact_ids", + "ids": "⿱厂万", + "canonical_ids": "⿱厂万", + "expanded_ids": "⿱厂万", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "万", + "厂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厊", + "codepoint": "U+538A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-538A", + "status": "exact_ids", + "ids": "⿱厂牙", + "canonical_ids": "⿱厂牙", + "expanded_ids": "⿱厂牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "牙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "压", + "codepoint": "U+538B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-538B", + "status": "exact_ids", + "ids": "⿱厂圡", + "canonical_ids": "⿱厂圡", + "expanded_ids": "⿱厂⿻土丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厌", + "codepoint": "U+538C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-538C", + "status": "exact_ids", + "ids": "⿱厂犬", + "canonical_ids": "⿱厂犬", + "expanded_ids": "⿱厂⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厍", + "codepoint": "U+538D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-538D", + "status": "exact_ids", + "ids": "⿱厂车", + "canonical_ids": "⿱厂车", + "expanded_ids": "⿱厂车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厎", + "codepoint": "U+538E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-538E", + "status": "exact_ids", + "ids": "⿱厂氐", + "canonical_ids": "⿱厂氐", + "expanded_ids": "⿱厂⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厏", + "codepoint": "U+538F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-538F", + "status": "exact_ids", + "ids": "⿱厂乍", + "canonical_ids": "⿱厂乍", + "expanded_ids": "⿱厂乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "厂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厐", + "codepoint": "U+5390", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5390", + "status": "exact_ids", + "ids": "⿱厂龙", + "canonical_ids": "⿱厂龙", + "expanded_ids": "⿱厂龙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厑", + "codepoint": "U+5391", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5391", + "status": "exact_ids", + "ids": "⿱厂叱", + "canonical_ids": "⿱厂叱", + "expanded_ids": "⿱厂⿰口七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "厂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厒", + "codepoint": "U+5392", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5392", + "status": "exact_ids", + "ids": "⿱厂缶", + "canonical_ids": "⿱厂缶", + "expanded_ids": "⿱厂缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厓", + "codepoint": "U+5393", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5393", + "status": "exact_ids", + "ids": "⿱厂圭", + "canonical_ids": "⿱厂圭", + "expanded_ids": "⿱厂⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厔", + "codepoint": "U+5394", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5394", + "status": "exact_ids", + "ids": "⿱厂至", + "canonical_ids": "⿱厂至", + "expanded_ids": "⿱厂⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厂", + "厶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厕", + "codepoint": "U+5395", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5395", + "status": "exact_ids", + "ids": "⿱厂则", + "canonical_ids": "⿱厂则", + "expanded_ids": "⿱厂⿰⿻冂人刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "刂", + "厂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厖", + "codepoint": "U+5396", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5396", + "status": "exact_ids", + "ids": "⿱厂尨", + "canonical_ids": "⿱厂尨", + "expanded_ids": "⿱厂⿰尤彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "尤", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厗", + "codepoint": "U+5397", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5397", + "status": "exact_ids", + "ids": "⿱厂辛", + "canonical_ids": "⿱厂辛", + "expanded_ids": "⿱厂⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "厂", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厘", + "codepoint": "U+5398", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5398", + "status": "exact_ids", + "ids": "⿱厂里", + "canonical_ids": "⿱厂里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厙", + "codepoint": "U+5399", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5399", + "status": "exact_ids", + "ids": "⿱厂車", + "canonical_ids": "⿱厂車", + "expanded_ids": "⿱厂車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厚", + "codepoint": "U+539A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-539A", + "status": "exact_ids", + "ids": "⿱厂㫗", + "canonical_ids": "⿱厂㫗", + "expanded_ids": "⿱厂⿱日子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "子", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厛", + "codepoint": "U+539B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-539B", + "status": "exact_ids", + "ids": "⿱厂听", + "canonical_ids": "⿱厂听", + "expanded_ids": "⿱厂⿰口斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "口", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厜", + "codepoint": "U+539C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-539C", + "status": "exact_ids", + "ids": "⿱厂垂", + "canonical_ids": "⿱厂垂", + "expanded_ids": "⿱厂垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "垂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厝", + "codepoint": "U+539D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-539D", + "status": "exact_ids", + "ids": "⿱厂昔", + "canonical_ids": "⿱厂昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "日" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厞", + "codepoint": "U+539E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-539E", + "status": "exact_ids", + "ids": "⿱厂非", + "canonical_ids": "⿱厂非", + "expanded_ids": "⿱厂非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "原", + "codepoint": "U+539F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-539F", + "status": "exact_ids", + "ids": "⿱厂𤽄", + "canonical_ids": "⿱厂𤽄", + "expanded_ids": "⿱厂⿱⿻日丶小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "小", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厠", + "codepoint": "U+53A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53A0", + "status": "exact_ids", + "ids": "⿱厂則", + "canonical_ids": "⿱厂則", + "expanded_ids": "⿱厂⿰⿱目八刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刂", + "厂", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厡", + "codepoint": "U+53A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53A1", + "status": "exact_ids", + "ids": "⿱厂泉", + "canonical_ids": "⿱厂泉", + "expanded_ids": "⿱厂⿱⿻日丶水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "日", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厢", + "codepoint": "U+53A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53A2", + "status": "exact_ids", + "ids": "⿱厂相", + "canonical_ids": "⿱厂相", + "expanded_ids": "⿱厂⿰木目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厣", + "codepoint": "U+53A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53A3", + "status": "exact_ids", + "ids": "⿱厌甲", + "canonical_ids": "⿱厌甲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "大" + ], + "unresolved_leaves": [ + "甲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厤", + "codepoint": "U+53A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53A4", + "status": "exact_ids", + "ids": "⿱厂秝", + "canonical_ids": "⿱厂秝", + "expanded_ids": "⿱厂⿰⿻丿木⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厥", + "codepoint": "U+53A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53A5", + "status": "exact_ids", + "ids": "⿱厂欮", + "canonical_ids": "⿱厂欮", + "expanded_ids": "⿱厂⿰⿱䒑屮欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "厂", + "屮", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厦", + "codepoint": "U+53A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53A6", + "status": "exact_ids", + "ids": "⿱厂夏", + "canonical_ids": "⿱厂夏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂" + ], + "unresolved_leaves": [ + "夏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厧", + "codepoint": "U+53A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53A7", + "status": "exact_ids", + "ids": "⿱厂真", + "canonical_ids": "⿱厂真", + "expanded_ids": "⿱厂⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "厂", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厨", + "codepoint": "U+53A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53A8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厩", + "codepoint": "U+53A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53A9", + "status": "exact_ids", + "ids": "⿱厂既", + "canonical_ids": "⿱厂既", + "expanded_ids": "⿱厂⿰艮旡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "旡", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厪", + "codepoint": "U+53AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53AA", + "status": "exact_ids", + "ids": "⿱厂堇", + "canonical_ids": "⿱厂堇", + "expanded_ids": "⿱厂堇", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "堇" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厫", + "codepoint": "U+53AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53AB", + "status": "exact_ids", + "ids": "⿱厂敖", + "canonical_ids": "⿱厂敖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厬", + "codepoint": "U+53AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53AC", + "status": "exact_ids", + "ids": "⿱厂晷", + "canonical_ids": "⿱厂晷", + "expanded_ids": "⿱厂⿱日⿱⿰夂卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "厂", + "口", + "夂", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厭", + "codepoint": "U+53AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53AD", + "status": "exact_ids", + "ids": "⿱厂猒", + "canonical_ids": "⿱厂猒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "大", + "月" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厮", + "codepoint": "U+53AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53AE", + "status": "exact_ids", + "ids": "⿱厂斯", + "canonical_ids": "⿱厂斯", + "expanded_ids": "⿱厂⿰其斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "厂", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厯", + "codepoint": "U+53AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53AF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厰", + "codepoint": "U+53B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53B0", + "status": "exact_ids", + "ids": "⿱厂敞", + "canonical_ids": "⿱厂敞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "小", + "攵" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厱", + "codepoint": "U+53B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53B1", + "status": "exact_ids", + "ids": "⿱厂僉", + "canonical_ids": "⿱厂僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厲", + "codepoint": "U+53B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53B2", + "status": "exact_ids", + "ids": "⿱厂萬", + "canonical_ids": "⿱厂萬", + "expanded_ids": "⿱厂⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "田", + "禸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厳", + "codepoint": "U+53B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53B3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厴", + "codepoint": "U+53B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53B4", + "status": "exact_ids", + "ids": "⿱厭甲", + "canonical_ids": "⿱厭甲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "大", + "月" + ], + "unresolved_leaves": [ + "冃", + "甲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厵", + "codepoint": "U+53B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53B5", + "status": "exact_ids", + "ids": "⿱原⿰原原", + "canonical_ids": "⿱原⿰原原", + "expanded_ids": "⿱⿱厂⿱⿻日丶小⿰⿱厂⿱⿻日丶小⿱厂⿱⿻日丶小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "小", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 450, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厶", + "codepoint": "U+53B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53B6", + "status": "leaf_self_fallback", + "ids": "厶", + "canonical_ids": "厶", + "expanded_ids": "厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厷", + "codepoint": "U+53B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53B7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厸", + "codepoint": "U+53B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53B8", + "status": "exact_ids", + "ids": "⿰厶厶", + "canonical_ids": "⿰厶厶", + "expanded_ids": "⿰厶厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厹", + "codepoint": "U+53B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53B9", + "status": "exact_ids", + "ids": "⿱九厶", + "canonical_ids": "⿱九厶", + "expanded_ids": "⿱九厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厺", + "codepoint": "U+53BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53BA", + "status": "exact_ids", + "ids": "⿱大厶", + "canonical_ids": "⿱大厶", + "expanded_ids": "⿱大厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "去", + "codepoint": "U+53BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53BB", + "status": "exact_ids", + "ids": "⿱土厶", + "canonical_ids": "⿱土厶", + "expanded_ids": "⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厼", + "codepoint": "U+53BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53BC", + "status": "exact_ids", + "ids": "⿱厶小", + "canonical_ids": "⿱厶小", + "expanded_ids": "⿱厶小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厽", + "codepoint": "U+53BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53BD", + "status": "exact_ids", + "ids": "⿱厶⿰厶厶", + "canonical_ids": "⿱厶⿰厶厶", + "expanded_ids": "⿱厶⿰厶厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "厾", + "codepoint": "U+53BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53BE", + "status": "exact_ids", + "ids": "⿱乁去", + "canonical_ids": "⿱乁去", + "expanded_ids": "⿱乁⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乁", + "厶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "县", + "codepoint": "U+53BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53BF", + "status": "exact_ids", + "ids": "⿱且厶", + "canonical_ids": "⿱且厶", + "expanded_ids": "⿱且厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叀", + "codepoint": "U+53C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53C0", + "status": "exact_ids", + "ids": "⿱𤰔厶", + "canonical_ids": "⿱𤰔厶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叁", + "codepoint": "U+53C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53C1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "参", + "codepoint": "U+53C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53C2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "參", + "codepoint": "U+53C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53C3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叄", + "codepoint": "U+53C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53C4", + "status": "exact_ids", + "ids": "⿱𠫯三", + "canonical_ids": "⿱𠫯三", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "厶" + ], + "unresolved_leaves": [ + "三" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叅", + "codepoint": "U+53C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53C5", + "status": "exact_ids", + "ids": "⿱𠫯㣺", + "canonical_ids": "⿱𠫯㣺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "厶" + ], + "unresolved_leaves": [ + "㣺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叆", + "codepoint": "U+53C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53C6", + "status": "exact_ids", + "ids": "⿰云爱", + "canonical_ids": "⿰云爱", + "expanded_ids": "⿰⿱二厶⿳爫冖⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "二", + "冖", + "厶", + "又", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 251, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叇", + "codepoint": "U+53C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53C7", + "status": "exact_ids", + "ids": "⿰云逮", + "canonical_ids": "⿰云逮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "辶" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "又", + "codepoint": "U+53C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53C8", + "status": "leaf_self_fallback", + "ids": "又", + "canonical_ids": "又", + "expanded_ids": "又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叉", + "codepoint": "U+53C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53C9", + "status": "exact_ids", + "ids": "⿻又丶", + "canonical_ids": "⿻又丶", + "expanded_ids": "⿻又丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "及", + "codepoint": "U+53CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53CA", + "status": "exact_ids", + "ids": "⿻乃㇏", + "canonical_ids": "⿻乃㇏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "友", + "codepoint": "U+53CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53CB", + "status": "exact_ids", + "ids": "⿱𠂇又", + "canonical_ids": "⿱𠂇又", + "expanded_ids": "⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "双", + "codepoint": "U+53CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53CC", + "status": "exact_ids", + "ids": "⿰又又", + "canonical_ids": "⿰又又", + "expanded_ids": "⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "反", + "codepoint": "U+53CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53CD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "収", + "codepoint": "U+53CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53CE", + "status": "exact_ids", + "ids": "⿰丩又", + "canonical_ids": "⿰丩又", + "expanded_ids": "⿰⿰丨丨又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叏", + "codepoint": "U+53CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53CF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叐", + "codepoint": "U+53D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53D0", + "status": "exact_ids", + "ids": "⿱丿友", + "canonical_ids": "⿱丿友", + "expanded_ids": "⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "发", + "codepoint": "U+53D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53D1", + "status": "leaf_self_fallback", + "ids": "发", + "canonical_ids": "发", + "expanded_ids": "发", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "发" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叒", + "codepoint": "U+53D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53D2", + "status": "exact_ids", + "ids": "⿱又⿰又又", + "canonical_ids": "⿱又⿰又又", + "expanded_ids": "⿱又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叓", + "codepoint": "U+53D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53D3", + "status": "exact_ids", + "ids": "⿻支口", + "canonical_ids": "⿻支口", + "expanded_ids": "⿻⿱十又口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叔", + "codepoint": "U+53D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53D4", + "status": "exact_ids", + "ids": "⿰尗又", + "canonical_ids": "⿰尗又", + "expanded_ids": "⿰⿱上小又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "又", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叕", + "codepoint": "U+53D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53D5", + "status": "exact_ids", + "ids": "⿱⿰又又⿰又又", + "canonical_ids": "⿱⿰又又⿰又又", + "expanded_ids": "⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "取", + "codepoint": "U+53D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53D6", + "status": "exact_ids", + "ids": "⿰耳又", + "canonical_ids": "⿰耳又", + "expanded_ids": "⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "受", + "codepoint": "U+53D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53D7", + "status": "exact_ids", + "ids": "⿳爫冖又", + "canonical_ids": "⿳爫冖又", + "expanded_ids": "⿳爫冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "又", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "变", + "codepoint": "U+53D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53D8", + "status": "exact_ids", + "ids": "⿱亦又", + "canonical_ids": "⿱亦又", + "expanded_ids": "⿱亦又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叙", + "codepoint": "U+53D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53D9", + "status": "exact_ids", + "ids": "⿰余又", + "canonical_ids": "⿰余又", + "expanded_ids": "⿰⿱⿱人一朩又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "又", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叚", + "codepoint": "U+53DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53DA", + "status": "leaf_self_fallback", + "ids": "叚", + "canonical_ids": "叚", + "expanded_ids": "叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叛", + "codepoint": "U+53DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53DB", + "status": "exact_ids", + "ids": "⿰半反", + "canonical_ids": "⿰半反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叜", + "codepoint": "U+53DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53DC", + "status": "exact_ids", + "ids": "⿱灾又", + "canonical_ids": "⿱灾又", + "expanded_ids": "⿱⿱宀火又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "宀", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叝", + "codepoint": "U+53DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53DD", + "status": "exact_ids", + "ids": "⿰去𠬝", + "canonical_ids": "⿰去𠬝", + "expanded_ids": "⿰⿱土厶⿻卩又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "厶", + "又", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叞", + "codepoint": "U+53DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53DE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叟", + "codepoint": "U+53DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53DF", + "status": "exact_ids", + "ids": "⿻𦥔又", + "canonical_ids": "⿻𦥔又", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叠", + "codepoint": "U+53E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53E0", + "status": "exact_ids", + "ids": "⿳叒冖且", + "canonical_ids": "⿳叒冖且", + "expanded_ids": "⿳⿱又⿰又又冖且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "冖", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叡", + "codepoint": "U+53E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53E1", + "status": "exact_ids", + "ids": "⿰睿又", + "canonical_ids": "⿰睿又", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "卜", + "又" + ], + "unresolved_leaves": [ + "眘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叢", + "codepoint": "U+53E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53E2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "口", + "codepoint": "U+53E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53E3", + "status": "leaf_self_fallback", + "ids": "口", + "canonical_ids": "口", + "expanded_ids": "口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "古", + "codepoint": "U+53E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53E4", + "status": "exact_ids", + "ids": "⿻十口", + "canonical_ids": "⿻十口", + "expanded_ids": "⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "句", + "codepoint": "U+53E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53E5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "另", + "codepoint": "U+53E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53E6", + "status": "exact_ids", + "ids": "⿱口力", + "canonical_ids": "⿱口力", + "expanded_ids": "⿱口力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叧", + "codepoint": "U+53E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53E7", + "status": "exact_ids", + "ids": "⿱口刀", + "canonical_ids": "⿱口刀", + "expanded_ids": "⿱口刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叨", + "codepoint": "U+53E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53E8", + "status": "exact_ids", + "ids": "⿰口刀", + "canonical_ids": "⿰口刀", + "expanded_ids": "⿰口刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叩", + "codepoint": "U+53E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53E9", + "status": "exact_ids", + "ids": "⿰口卩", + "canonical_ids": "⿰口卩", + "expanded_ids": "⿰口卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "只", + "codepoint": "U+53EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53EA", + "status": "exact_ids", + "ids": "⿱口八", + "canonical_ids": "⿱口八", + "expanded_ids": "⿱口八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叫", + "codepoint": "U+53EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53EB", + "status": "exact_ids", + "ids": "⿰口丩", + "canonical_ids": "⿰口丩", + "expanded_ids": "⿰口⿰丨丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "召", + "codepoint": "U+53EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53EC", + "status": "exact_ids", + "ids": "⿱刀口", + "canonical_ids": "⿱刀口", + "expanded_ids": "⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叭", + "codepoint": "U+53ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53ED", + "status": "exact_ids", + "ids": "⿰口八", + "canonical_ids": "⿰口八", + "expanded_ids": "⿰口八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叮", + "codepoint": "U+53EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53EE", + "status": "exact_ids", + "ids": "⿰口丁", + "canonical_ids": "⿰口丁", + "expanded_ids": "⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "可" + ] + }, + { + "character": "可", + "codepoint": "U+53EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53EF", + "status": "exact_ids", + "ids": "⿰口丁", + "canonical_ids": "⿰口丁", + "expanded_ids": "⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "叮" + ] + }, + { + "character": "台", + "codepoint": "U+53F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53F0", + "status": "exact_ids", + "ids": "⿱厶口", + "canonical_ids": "⿱厶口", + "expanded_ids": "⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叱", + "codepoint": "U+53F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53F1", + "status": "exact_ids", + "ids": "⿰口七", + "canonical_ids": "⿰口七", + "expanded_ids": "⿰口七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "史", + "codepoint": "U+53F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53F2", + "status": "exact_ids", + "ids": "⿻口乂", + "canonical_ids": "⿻口乂", + "expanded_ids": "⿻口乂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "右", + "codepoint": "U+53F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53F3", + "status": "exact_ids", + "ids": "⿱𠂇口", + "canonical_ids": "⿱𠂇口", + "expanded_ids": "⿱⿻丿一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叴", + "codepoint": "U+53F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53F4", + "status": "exact_ids", + "ids": "⿱九口", + "canonical_ids": "⿱九口", + "expanded_ids": "⿱九口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叵", + "codepoint": "U+53F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53F5", + "status": "exact_ids", + "ids": "⿰匚口", + "canonical_ids": "⿰匚口", + "expanded_ids": "⿰匚口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匚", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叶", + "codepoint": "U+53F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53F6", + "status": "exact_ids", + "ids": "⿰口十", + "canonical_ids": "⿰口十", + "expanded_ids": "⿰口十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "号", + "codepoint": "U+53F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53F7", + "status": "exact_ids", + "ids": "⿱口丂", + "canonical_ids": "⿱口丂", + "expanded_ids": "⿱口丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "司", + "codepoint": "U+53F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53F8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叹", + "codepoint": "U+53F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53F9", + "status": "exact_ids", + "ids": "⿰口又", + "canonical_ids": "⿰口又", + "expanded_ids": "⿰口又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叺", + "codepoint": "U+53FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53FA", + "status": "exact_ids", + "ids": "⿰口入", + "canonical_ids": "⿰口入", + "expanded_ids": "⿰口入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叻", + "codepoint": "U+53FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53FB", + "status": "exact_ids", + "ids": "⿰口力", + "canonical_ids": "⿰口力", + "expanded_ids": "⿰口力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叼", + "codepoint": "U+53FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53FC", + "status": "exact_ids", + "ids": "⿰口刁", + "canonical_ids": "⿰口刁", + "expanded_ids": "⿰口⿻𠃌丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "𠃌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叽", + "codepoint": "U+53FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53FD", + "status": "exact_ids", + "ids": "⿰口几", + "canonical_ids": "⿰口几", + "expanded_ids": "⿰口几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叾", + "codepoint": "U+53FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53FE", + "status": "exact_ids", + "ids": "⿱了口", + "canonical_ids": "⿱了口", + "expanded_ids": "⿱了口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "了", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "叿", + "codepoint": "U+53FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-53FF", + "status": "exact_ids", + "ids": "⿰口工", + "canonical_ids": "⿰口工", + "expanded_ids": "⿰口工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吀", + "codepoint": "U+5400", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5400", + "status": "exact_ids", + "ids": "⿰口千", + "canonical_ids": "⿰口千", + "expanded_ids": "⿰口⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吁", + "codepoint": "U+5401", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5401", + "status": "exact_ids", + "ids": "⿰口于", + "canonical_ids": "⿰口于", + "expanded_ids": "⿰口⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吂", + "codepoint": "U+5402", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5402", + "status": "exact_ids", + "ids": "⿱亡口", + "canonical_ids": "⿱亡口", + "expanded_ids": "⿱⿻亠乚口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吃", + "codepoint": "U+5403", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5403", + "status": "exact_ids", + "ids": "⿰口乞", + "canonical_ids": "⿰口乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "各", + "codepoint": "U+5404", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5404", + "status": "exact_ids", + "ids": "⿱夂口", + "canonical_ids": "⿱夂口", + "expanded_ids": "⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吅", + "codepoint": "U+5405", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5405", + "status": "exact_ids", + "ids": "⿰口口", + "canonical_ids": "⿰口口", + "expanded_ids": "⿰口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吆", + "codepoint": "U+5406", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5406", + "status": "exact_ids", + "ids": "⿰口幺", + "canonical_ids": "⿰口幺", + "expanded_ids": "⿰口幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吇", + "codepoint": "U+5407", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5407", + "status": "exact_ids", + "ids": "⿰口子", + "canonical_ids": "⿰口子", + "expanded_ids": "⿰口子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "合", + "codepoint": "U+5408", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5408", + "status": "exact_ids", + "ids": "⿱亼口", + "canonical_ids": "⿱亼口", + "expanded_ids": "⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吉", + "codepoint": "U+5409", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5409", + "status": "exact_ids", + "ids": "⿱士口", + "canonical_ids": "⿱士口", + "expanded_ids": "⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吊", + "codepoint": "U+540A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-540A", + "status": "exact_ids", + "ids": "⿱口巾", + "canonical_ids": "⿱口巾", + "expanded_ids": "⿱口⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吋", + "codepoint": "U+540B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-540B", + "status": "exact_ids", + "ids": "⿰口寸", + "canonical_ids": "⿰口寸", + "expanded_ids": "⿰口寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "同", + "codepoint": "U+540C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-540C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "名", + "codepoint": "U+540D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-540D", + "status": "exact_ids", + "ids": "⿱夕口", + "canonical_ids": "⿱夕口", + "expanded_ids": "⿱夕口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "后", + "codepoint": "U+540E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-540E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吏", + "codepoint": "U+540F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-540F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吐", + "codepoint": "U+5410", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5410", + "status": "exact_ids", + "ids": "⿰口土", + "canonical_ids": "⿰口土", + "expanded_ids": "⿰口土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "向", + "codepoint": "U+5411", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5411", + "status": "exact_ids", + "ids": "⿱丶冋", + "canonical_ids": "⿱丶冋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吒", + "codepoint": "U+5412", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5412", + "status": "exact_ids", + "ids": "⿰口乇", + "canonical_ids": "⿰口乇", + "expanded_ids": "⿰口⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吓", + "codepoint": "U+5413", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5413", + "status": "exact_ids", + "ids": "⿰口下", + "canonical_ids": "⿰口下", + "expanded_ids": "⿰口⿱一卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "卜", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吔", + "codepoint": "U+5414", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5414", + "status": "exact_ids", + "ids": "⿰口也", + "canonical_ids": "⿰口也", + "expanded_ids": "⿰口⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吕", + "codepoint": "U+5415", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5415", + "status": "exact_ids", + "ids": "⿱口口", + "canonical_ids": "⿱口口", + "expanded_ids": "⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吖", + "codepoint": "U+5416", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5416", + "status": "exact_ids", + "ids": "⿰口丫", + "canonical_ids": "⿰口丫", + "expanded_ids": "⿰口丫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丫", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吗", + "codepoint": "U+5417", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5417", + "status": "exact_ids", + "ids": "⿰口马", + "canonical_ids": "⿰口马", + "expanded_ids": "⿰口马", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吘", + "codepoint": "U+5418", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5418", + "status": "exact_ids", + "ids": "⿰口午", + "canonical_ids": "⿰口午", + "expanded_ids": "⿰口⿱⿻丿一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吙", + "codepoint": "U+5419", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5419", + "status": "exact_ids", + "ids": "⿰口火", + "canonical_ids": "⿰口火", + "expanded_ids": "⿰口火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吚", + "codepoint": "U+541A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-541A", + "status": "exact_ids", + "ids": "⿰口尹", + "canonical_ids": "⿰口尹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "君", + "codepoint": "U+541B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-541B", + "status": "exact_ids", + "ids": "⿱尹口", + "canonical_ids": "⿱尹口", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吜", + "codepoint": "U+541C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-541C", + "status": "exact_ids", + "ids": "⿰口丑", + "canonical_ids": "⿰口丑", + "expanded_ids": "⿰口丑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吝", + "codepoint": "U+541D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-541D", + "status": "exact_ids", + "ids": "⿱文口", + "canonical_ids": "⿱文口", + "expanded_ids": "⿱文口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "文" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吞", + "codepoint": "U+541E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-541E", + "status": "exact_ids", + "ids": "⿱天口", + "canonical_ids": "⿱天口", + "expanded_ids": "⿱⿻一大口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吟", + "codepoint": "U+541F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-541F", + "status": "exact_ids", + "ids": "⿰口今", + "canonical_ids": "⿰口今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吠", + "codepoint": "U+5420", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5420", + "status": "exact_ids", + "ids": "⿰口犬", + "canonical_ids": "⿰口犬", + "expanded_ids": "⿰口⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "呔" + ] + }, + { + "character": "吡", + "codepoint": "U+5421", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5421", + "status": "exact_ids", + "ids": "⿰口比", + "canonical_ids": "⿰口比", + "expanded_ids": "⿰口⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吢", + "codepoint": "U+5422", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5422", + "status": "exact_ids", + "ids": "⿱心口", + "canonical_ids": "⿱心口", + "expanded_ids": "⿱心口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吣", + "codepoint": "U+5423", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5423", + "status": "exact_ids", + "ids": "⿰口心", + "canonical_ids": "⿰口心", + "expanded_ids": "⿰口心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吤", + "codepoint": "U+5424", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5424", + "status": "exact_ids", + "ids": "⿰口介", + "canonical_ids": "⿰口介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吥", + "codepoint": "U+5425", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5425", + "status": "exact_ids", + "ids": "⿰口不", + "canonical_ids": "⿰口不", + "expanded_ids": "⿰口不", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "否", + "codepoint": "U+5426", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5426", + "status": "exact_ids", + "ids": "⿱不口", + "canonical_ids": "⿱不口", + "expanded_ids": "⿱不口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吧", + "codepoint": "U+5427", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5427", + "status": "exact_ids", + "ids": "⿰口巴", + "canonical_ids": "⿰口巴", + "expanded_ids": "⿰口巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "巴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吨", + "codepoint": "U+5428", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5428", + "status": "exact_ids", + "ids": "⿰口屯", + "canonical_ids": "⿰口屯", + "expanded_ids": "⿰口屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "屯" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吩", + "codepoint": "U+5429", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5429", + "status": "exact_ids", + "ids": "⿰口分", + "canonical_ids": "⿰口分", + "expanded_ids": "⿰口⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吪", + "codepoint": "U+542A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-542A", + "status": "exact_ids", + "ids": "⿰口化", + "canonical_ids": "⿰口化", + "expanded_ids": "⿰口⿰亻匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "含", + "codepoint": "U+542B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-542B", + "status": "exact_ids", + "ids": "⿱今口", + "canonical_ids": "⿱今口", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "听", + "codepoint": "U+542C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-542C", + "status": "exact_ids", + "ids": "⿰口斤", + "canonical_ids": "⿰口斤", + "expanded_ids": "⿰口斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吭", + "codepoint": "U+542D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-542D", + "status": "exact_ids", + "ids": "⿰口亢", + "canonical_ids": "⿰口亢", + "expanded_ids": "⿰口⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吮", + "codepoint": "U+542E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-542E", + "status": "exact_ids", + "ids": "⿰口允", + "canonical_ids": "⿰口允", + "expanded_ids": "⿰口⿱厶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "启", + "codepoint": "U+542F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-542F", + "status": "exact_ids", + "ids": "⿱户口", + "canonical_ids": "⿱户口", + "expanded_ids": "⿱⿻丶尸口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吰", + "codepoint": "U+5430", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5430", + "status": "exact_ids", + "ids": "⿰口厷", + "canonical_ids": "⿰口厷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "厷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吱", + "codepoint": "U+5431", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5431", + "status": "exact_ids", + "ids": "⿰口支", + "canonical_ids": "⿰口支", + "expanded_ids": "⿰口⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吲", + "codepoint": "U+5432", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5432", + "status": "exact_ids", + "ids": "⿰口引", + "canonical_ids": "⿰口引", + "expanded_ids": "⿰口⿰弓丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吳", + "codepoint": "U+5433", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5433", + "status": "exact_ids", + "ids": "⿱口夬", + "canonical_ids": "⿱口夬", + "expanded_ids": "⿱口⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吴", + "codepoint": "U+5434", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5434", + "status": "exact_ids", + "ids": "⿱口天", + "canonical_ids": "⿱口天", + "expanded_ids": "⿱口⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吵", + "codepoint": "U+5435", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5435", + "status": "exact_ids", + "ids": "⿰口少", + "canonical_ids": "⿰口少", + "expanded_ids": "⿰口⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吶", + "codepoint": "U+5436", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5436", + "status": "exact_ids", + "ids": "⿰口內", + "canonical_ids": "⿰口內", + "expanded_ids": "⿰口⿻冂入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "冂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吷", + "codepoint": "U+5437", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5437", + "status": "exact_ids", + "ids": "⿰口夬", + "canonical_ids": "⿰口夬", + "expanded_ids": "⿰口⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吸", + "codepoint": "U+5438", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5438", + "status": "exact_ids", + "ids": "⿰口及", + "canonical_ids": "⿰口及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "口" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吹", + "codepoint": "U+5439", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5439", + "status": "exact_ids", + "ids": "⿰口欠", + "canonical_ids": "⿰口欠", + "expanded_ids": "⿰口欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吺", + "codepoint": "U+543A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-543A", + "status": "exact_ids", + "ids": "⿰口殳", + "canonical_ids": "⿰口殳", + "expanded_ids": "⿰口⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吻", + "codepoint": "U+543B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-543B", + "status": "exact_ids", + "ids": "⿰口勿", + "canonical_ids": "⿰口勿", + "expanded_ids": "⿰口勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吼", + "codepoint": "U+543C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-543C", + "status": "exact_ids", + "ids": "⿰口孔", + "canonical_ids": "⿰口孔", + "expanded_ids": "⿰口⿰子乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "口", + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吽", + "codepoint": "U+543D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-543D", + "status": "exact_ids", + "ids": "⿰口牛", + "canonical_ids": "⿰口牛", + "expanded_ids": "⿰口牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吾", + "codepoint": "U+543E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-543E", + "status": "exact_ids", + "ids": "⿱五口", + "canonical_ids": "⿱五口", + "expanded_ids": "⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "吿", + "codepoint": "U+543F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-543F", + "status": "exact_ids", + "ids": "⿱牛口", + "canonical_ids": "⿱牛口", + "expanded_ids": "⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "告" + ] + }, + { + "character": "呀", + "codepoint": "U+5440", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5440", + "status": "exact_ids", + "ids": "⿰口牙", + "canonical_ids": "⿰口牙", + "expanded_ids": "⿰口牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呁", + "codepoint": "U+5441", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5441", + "status": "exact_ids", + "ids": "⿰口匀", + "canonical_ids": "⿰口匀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "匀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呂", + "codepoint": "U+5442", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5442", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呃", + "codepoint": "U+5443", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5443", + "status": "exact_ids", + "ids": "⿰口厄", + "canonical_ids": "⿰口厄", + "expanded_ids": "⿰口⿱厂㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呄", + "codepoint": "U+5444", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5444", + "status": "exact_ids", + "ids": "⿱乃古", + "canonical_ids": "⿱乃古", + "expanded_ids": "⿱乃⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呅", + "codepoint": "U+5445", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5445", + "status": "exact_ids", + "ids": "⿰口文", + "canonical_ids": "⿰口文", + "expanded_ids": "⿰口文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "文" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呆", + "codepoint": "U+5446", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5446", + "status": "exact_ids", + "ids": "⿱口木", + "canonical_ids": "⿱口木", + "expanded_ids": "⿱口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呇", + "codepoint": "U+5447", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5447", + "status": "exact_ids", + "ids": "⿱水口", + "canonical_ids": "⿱水口", + "expanded_ids": "⿱水口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呈", + "codepoint": "U+5448", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5448", + "status": "exact_ids", + "ids": "⿱口王", + "canonical_ids": "⿱口王", + "expanded_ids": "⿱口王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呉", + "codepoint": "U+5449", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5449", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "告", + "codepoint": "U+544A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-544A", + "status": "exact_ids", + "ids": "⿱牛口", + "canonical_ids": "⿱牛口", + "expanded_ids": "⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "吿" + ] + }, + { + "character": "呋", + "codepoint": "U+544B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-544B", + "status": "exact_ids", + "ids": "⿰口夫", + "canonical_ids": "⿰口夫", + "expanded_ids": "⿰口⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呌", + "codepoint": "U+544C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-544C", + "status": "exact_ids", + "ids": "⿰口斗", + "canonical_ids": "⿰口斗", + "expanded_ids": "⿰口斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "斗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呍", + "codepoint": "U+544D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-544D", + "status": "exact_ids", + "ids": "⿰口云", + "canonical_ids": "⿰口云", + "expanded_ids": "⿰口⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呎", + "codepoint": "U+544E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-544E", + "status": "exact_ids", + "ids": "⿰口尺", + "canonical_ids": "⿰口尺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "尸" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呏", + "codepoint": "U+544F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-544F", + "status": "exact_ids", + "ids": "⿰口升", + "canonical_ids": "⿰口升", + "expanded_ids": "⿰口升", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "升", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呐", + "codepoint": "U+5450", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5450", + "status": "exact_ids", + "ids": "⿰口内", + "canonical_ids": "⿰口内", + "expanded_ids": "⿰口⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "呗" + ] + }, + { + "character": "呑", + "codepoint": "U+5451", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5451", + "status": "exact_ids", + "ids": "⿱夭口", + "canonical_ids": "⿱夭口", + "expanded_ids": "⿱⿱丿大口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呒", + "codepoint": "U+5452", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5452", + "status": "exact_ids", + "ids": "⿰口无", + "canonical_ids": "⿰口无", + "expanded_ids": "⿰口无", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "无" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呓", + "codepoint": "U+5453", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5453", + "status": "exact_ids", + "ids": "⿰口艺", + "canonical_ids": "⿰口艺", + "expanded_ids": "⿰口⿱艹乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呔", + "codepoint": "U+5454", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5454", + "status": "exact_ids", + "ids": "⿰口太", + "canonical_ids": "⿰口太", + "expanded_ids": "⿰口⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "吠" + ] + }, + { + "character": "呕", + "codepoint": "U+5455", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5455", + "status": "exact_ids", + "ids": "⿰口区", + "canonical_ids": "⿰口区", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "区" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呖", + "codepoint": "U+5456", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5456", + "status": "exact_ids", + "ids": "⿰口历", + "canonical_ids": "⿰口历", + "expanded_ids": "⿰口⿱厂力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "厂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呗", + "codepoint": "U+5457", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5457", + "status": "exact_ids", + "ids": "⿰口贝", + "canonical_ids": "⿰口贝", + "expanded_ids": "⿰口⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "呐" + ] + }, + { + "character": "员", + "codepoint": "U+5458", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5458", + "status": "exact_ids", + "ids": "⿱口贝", + "canonical_ids": "⿱口贝", + "expanded_ids": "⿱口⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "呙" + ] + }, + { + "character": "呙", + "codepoint": "U+5459", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5459", + "status": "exact_ids", + "ids": "⿱口内", + "canonical_ids": "⿱口内", + "expanded_ids": "⿱口⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "员" + ] + }, + { + "character": "呚", + "codepoint": "U+545A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-545A", + "status": "exact_ids", + "ids": "⿰口攵", + "canonical_ids": "⿰口攵", + "expanded_ids": "⿰口攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呛", + "codepoint": "U+545B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-545B", + "status": "exact_ids", + "ids": "⿰口仓", + "canonical_ids": "⿰口仓", + "expanded_ids": "⿰口⿱人㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "人", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呜", + "codepoint": "U+545C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-545C", + "status": "exact_ids", + "ids": "⿰口乌", + "canonical_ids": "⿰口乌", + "expanded_ids": "⿰口乌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乌", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呝", + "codepoint": "U+545D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-545D", + "status": "exact_ids", + "ids": "⿰口戹", + "canonical_ids": "⿰口戹", + "expanded_ids": "⿰口⿱⿻丶尸乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乙", + "口", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呞", + "codepoint": "U+545E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-545E", + "status": "exact_ids", + "ids": "⿰口司", + "canonical_ids": "⿰口司", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "司" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呟", + "codepoint": "U+545F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-545F", + "status": "exact_ids", + "ids": "⿰口玄", + "canonical_ids": "⿰口玄", + "expanded_ids": "⿰口⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "口", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呠", + "codepoint": "U+5460", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5460", + "status": "exact_ids", + "ids": "⿰口本", + "canonical_ids": "⿰口本", + "expanded_ids": "⿰口⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "味" + ] + }, + { + "character": "呡", + "codepoint": "U+5461", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5461", + "status": "exact_ids", + "ids": "⿰口民", + "canonical_ids": "⿰口民", + "expanded_ids": "⿰口民", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "民" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呢", + "codepoint": "U+5462", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5462", + "status": "exact_ids", + "ids": "⿰口尼", + "canonical_ids": "⿰口尼", + "expanded_ids": "⿰口⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "口", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呣", + "codepoint": "U+5463", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5463", + "status": "exact_ids", + "ids": "⿰口母", + "canonical_ids": "⿰口母", + "expanded_ids": "⿰口母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呤", + "codepoint": "U+5464", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5464", + "status": "exact_ids", + "ids": "⿰口令", + "canonical_ids": "⿰口令", + "expanded_ids": "⿰口⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呥", + "codepoint": "U+5465", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5465", + "status": "exact_ids", + "ids": "⿰口冉", + "canonical_ids": "⿰口冉", + "expanded_ids": "⿰口⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呦", + "codepoint": "U+5466", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5466", + "status": "exact_ids", + "ids": "⿰口幼", + "canonical_ids": "⿰口幼", + "expanded_ids": "⿰口⿰幺力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呧", + "codepoint": "U+5467", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5467", + "status": "exact_ids", + "ids": "⿰口氐", + "canonical_ids": "⿰口氐", + "expanded_ids": "⿰口⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "周", + "codepoint": "U+5468", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5468", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呩", + "codepoint": "U+5469", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5469", + "status": "exact_ids", + "ids": "⿰口示", + "canonical_ids": "⿰口示", + "expanded_ids": "⿰口⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "口", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呪", + "codepoint": "U+546A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-546A", + "status": "exact_ids", + "ids": "⿰口兄", + "canonical_ids": "⿰口兄", + "expanded_ids": "⿰口⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呫", + "codepoint": "U+546B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-546B", + "status": "exact_ids", + "ids": "⿰口占", + "canonical_ids": "⿰口占", + "expanded_ids": "⿰口⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呬", + "codepoint": "U+546C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-546C", + "status": "exact_ids", + "ids": "⿰口四", + "canonical_ids": "⿰口四", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "四" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呭", + "codepoint": "U+546D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-546D", + "status": "exact_ids", + "ids": "⿰口世", + "canonical_ids": "⿰口世", + "expanded_ids": "⿰口世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呮", + "codepoint": "U+546E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-546E", + "status": "exact_ids", + "ids": "⿰口只", + "canonical_ids": "⿰口只", + "expanded_ids": "⿰口⿱口八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呯", + "codepoint": "U+546F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-546F", + "status": "exact_ids", + "ids": "⿰口平", + "canonical_ids": "⿰口平", + "expanded_ids": "⿰口⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呰", + "codepoint": "U+5470", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5470", + "status": "exact_ids", + "ids": "⿱此口", + "canonical_ids": "⿱此口", + "expanded_ids": "⿱⿰止匕口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "口", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呱", + "codepoint": "U+5471", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5471", + "status": "exact_ids", + "ids": "⿰口瓜", + "canonical_ids": "⿰口瓜", + "expanded_ids": "⿰口瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "瓜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呲", + "codepoint": "U+5472", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5472", + "status": "exact_ids", + "ids": "⿰口此", + "canonical_ids": "⿰口此", + "expanded_ids": "⿰口⿰止匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "口", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "味", + "codepoint": "U+5473", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5473", + "status": "exact_ids", + "ids": "⿰口未", + "canonical_ids": "⿰口未", + "expanded_ids": "⿰口⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "呠" + ] + }, + { + "character": "呴", + "codepoint": "U+5474", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5474", + "status": "exact_ids", + "ids": "⿰口句", + "canonical_ids": "⿰口句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呵", + "codepoint": "U+5475", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5475", + "status": "exact_ids", + "ids": "⿰口可", + "canonical_ids": "⿰口可", + "expanded_ids": "⿰口⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呶", + "codepoint": "U+5476", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5476", + "status": "exact_ids", + "ids": "⿰口奴", + "canonical_ids": "⿰口奴", + "expanded_ids": "⿰口⿰女又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "口", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呷", + "codepoint": "U+5477", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5477", + "status": "exact_ids", + "ids": "⿰口甲", + "canonical_ids": "⿰口甲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "甲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呸", + "codepoint": "U+5478", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5478", + "status": "exact_ids", + "ids": "⿰口丕", + "canonical_ids": "⿰口丕", + "expanded_ids": "⿰口⿱不一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呹", + "codepoint": "U+5479", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5479", + "status": "exact_ids", + "ids": "⿰口失", + "canonical_ids": "⿰口失", + "expanded_ids": "⿰口⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呺", + "codepoint": "U+547A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-547A", + "status": "exact_ids", + "ids": "⿰口号", + "canonical_ids": "⿰口号", + "expanded_ids": "⿰口⿱口丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呻", + "codepoint": "U+547B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-547B", + "status": "exact_ids", + "ids": "⿰口申", + "canonical_ids": "⿰口申", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呼", + "codepoint": "U+547C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-547C", + "status": "exact_ids", + "ids": "⿰口乎", + "canonical_ids": "⿰口乎", + "expanded_ids": "⿰口乎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乎", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "命", + "codepoint": "U+547D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-547D", + "status": "exact_ids", + "ids": "⿱亼叩", + "canonical_ids": "⿱亼叩", + "expanded_ids": "⿱⿱人一⿰口卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "卩", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呾", + "codepoint": "U+547E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-547E", + "status": "exact_ids", + "ids": "⿰口旦", + "canonical_ids": "⿰口旦", + "expanded_ids": "⿰口⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "呿", + "codepoint": "U+547F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-547F", + "status": "exact_ids", + "ids": "⿰口去", + "canonical_ids": "⿰口去", + "expanded_ids": "⿰口⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咀", + "codepoint": "U+5480", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5480", + "status": "exact_ids", + "ids": "⿰口且", + "canonical_ids": "⿰口且", + "expanded_ids": "⿰口且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咁", + "codepoint": "U+5481", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5481", + "status": "exact_ids", + "ids": "⿰口甘", + "canonical_ids": "⿰口甘", + "expanded_ids": "⿰口甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咂", + "codepoint": "U+5482", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5482", + "status": "exact_ids", + "ids": "⿰口匝", + "canonical_ids": "⿰口匝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "匝" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咃", + "codepoint": "U+5483", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5483", + "status": "exact_ids", + "ids": "⿰口他", + "canonical_ids": "⿰口他", + "expanded_ids": "⿰口⿰亻⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "亻", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咄", + "codepoint": "U+5484", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5484", + "status": "exact_ids", + "ids": "⿰口出", + "canonical_ids": "⿰口出", + "expanded_ids": "⿰口⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "口", + "屮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咅", + "codepoint": "U+5485", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5485", + "status": "exact_ids", + "ids": "⿱立口", + "canonical_ids": "⿱立口", + "expanded_ids": "⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咆", + "codepoint": "U+5486", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5486", + "status": "exact_ids", + "ids": "⿰口包", + "canonical_ids": "⿰口包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咇", + "codepoint": "U+5487", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5487", + "status": "exact_ids", + "ids": "⿰口必", + "canonical_ids": "⿰口必", + "expanded_ids": "⿰口⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咈", + "codepoint": "U+5488", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5488", + "status": "exact_ids", + "ids": "⿰口弗", + "canonical_ids": "⿰口弗", + "expanded_ids": "⿰口⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "口", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咉", + "codepoint": "U+5489", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5489", + "status": "exact_ids", + "ids": "⿰口央", + "canonical_ids": "⿰口央", + "expanded_ids": "⿰口⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咊", + "codepoint": "U+548A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-548A", + "status": "exact_ids", + "ids": "⿰口禾", + "canonical_ids": "⿰口禾", + "expanded_ids": "⿰口⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咋", + "codepoint": "U+548B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-548B", + "status": "exact_ids", + "ids": "⿰口乍", + "canonical_ids": "⿰口乍", + "expanded_ids": "⿰口乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "和", + "codepoint": "U+548C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-548C", + "status": "exact_ids", + "ids": "⿰禾口", + "canonical_ids": "⿰禾口", + "expanded_ids": "⿰⿻丿木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咍", + "codepoint": "U+548D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-548D", + "status": "exact_ids", + "ids": "⿰口台", + "canonical_ids": "⿰口台", + "expanded_ids": "⿰口⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咎", + "codepoint": "U+548E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-548E", + "status": "exact_ids", + "ids": "⿱处口", + "canonical_ids": "⿱处口", + "expanded_ids": "⿱⿰夂卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咏", + "codepoint": "U+548F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-548F", + "status": "exact_ids", + "ids": "⿰口永", + "canonical_ids": "⿰口永", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "永" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咐", + "codepoint": "U+5490", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5490", + "status": "exact_ids", + "ids": "⿰口付", + "canonical_ids": "⿰口付", + "expanded_ids": "⿰口⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咑", + "codepoint": "U+5491", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5491", + "status": "exact_ids", + "ids": "⿰口打", + "canonical_ids": "⿰口打", + "expanded_ids": "⿰口⿰扌⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咒", + "codepoint": "U+5492", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5492", + "status": "exact_ids", + "ids": "⿱⿰口口几", + "canonical_ids": "⿱⿰口口几", + "expanded_ids": "⿱⿰口口几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咓", + "codepoint": "U+5493", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5493", + "status": "exact_ids", + "ids": "⿰口瓦", + "canonical_ids": "⿰口瓦", + "expanded_ids": "⿰口瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咔", + "codepoint": "U+5494", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5494", + "status": "exact_ids", + "ids": "⿰口卡", + "canonical_ids": "⿰口卡", + "expanded_ids": "⿰口⿱上卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "卜", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咕", + "codepoint": "U+5495", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5495", + "status": "exact_ids", + "ids": "⿰口古", + "canonical_ids": "⿰口古", + "expanded_ids": "⿰口⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咖", + "codepoint": "U+5496", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5496", + "status": "exact_ids", + "ids": "⿰口加", + "canonical_ids": "⿰口加", + "expanded_ids": "⿰口⿰力口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咗", + "codepoint": "U+5497", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5497", + "status": "exact_ids", + "ids": "⿰口左", + "canonical_ids": "⿰口左", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "左" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咘", + "codepoint": "U+5498", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5498", + "status": "exact_ids", + "ids": "⿰口布", + "canonical_ids": "⿰口布", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咙", + "codepoint": "U+5499", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5499", + "status": "exact_ids", + "ids": "⿰口龙", + "canonical_ids": "⿰口龙", + "expanded_ids": "⿰口龙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咚", + "codepoint": "U+549A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-549A", + "status": "exact_ids", + "ids": "⿰口冬", + "canonical_ids": "⿰口冬", + "expanded_ids": "⿰口⿱夂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "口", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咛", + "codepoint": "U+549B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-549B", + "status": "exact_ids", + "ids": "⿰口宁", + "canonical_ids": "⿰口宁", + "expanded_ids": "⿰口⿱宀⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咜", + "codepoint": "U+549C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-549C", + "status": "exact_ids", + "ids": "⿰口它", + "canonical_ids": "⿰口它", + "expanded_ids": "⿰口⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "口", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咝", + "codepoint": "U+549D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-549D", + "status": "exact_ids", + "ids": "⿰口丝", + "canonical_ids": "⿰口丝", + "expanded_ids": "⿰口丝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丝", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咞", + "codepoint": "U+549E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-549E", + "status": "exact_ids", + "ids": "⿰口开", + "canonical_ids": "⿰口开", + "expanded_ids": "⿰口⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咟", + "codepoint": "U+549F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-549F", + "status": "exact_ids", + "ids": "⿰口百", + "canonical_ids": "⿰口百", + "expanded_ids": "⿰口⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "口", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咠", + "codepoint": "U+54A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54A0", + "status": "exact_ids", + "ids": "⿱口耳", + "canonical_ids": "⿱口耳", + "expanded_ids": "⿱口耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咡", + "codepoint": "U+54A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54A1", + "status": "exact_ids", + "ids": "⿰口耳", + "canonical_ids": "⿰口耳", + "expanded_ids": "⿰口耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咢", + "codepoint": "U+54A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54A2", + "status": "exact_ids", + "ids": "⿱⿰口口亏", + "canonical_ids": "⿱⿰口口亏", + "expanded_ids": "⿱⿰口口⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咣", + "codepoint": "U+54A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54A3", + "status": "exact_ids", + "ids": "⿰口光", + "canonical_ids": "⿰口光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咤", + "codepoint": "U+54A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54A4", + "status": "exact_ids", + "ids": "⿰口宅", + "canonical_ids": "⿰口宅", + "expanded_ids": "⿰口⿱宀⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "口", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咥", + "codepoint": "U+54A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54A5", + "status": "exact_ids", + "ids": "⿰口至", + "canonical_ids": "⿰口至", + "expanded_ids": "⿰口⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咦", + "codepoint": "U+54A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54A6", + "status": "exact_ids", + "ids": "⿰口夷", + "canonical_ids": "⿰口夷", + "expanded_ids": "⿰口⿻大弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "大", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咧", + "codepoint": "U+54A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54A7", + "status": "exact_ids", + "ids": "⿰口列", + "canonical_ids": "⿰口列", + "expanded_ids": "⿰口⿰⿻夕一刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "口", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咨", + "codepoint": "U+54A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54A8", + "status": "exact_ids", + "ids": "⿱次口", + "canonical_ids": "⿱次口", + "expanded_ids": "⿱⿰冫欠口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "口", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咩", + "codepoint": "U+54A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54A9", + "status": "exact_ids", + "ids": "⿰口羊", + "canonical_ids": "⿰口羊", + "expanded_ids": "⿰口羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咪", + "codepoint": "U+54AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54AA", + "status": "exact_ids", + "ids": "⿰口米", + "canonical_ids": "⿰口米", + "expanded_ids": "⿰口⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咫", + "codepoint": "U+54AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54AB", + "status": "exact_ids", + "ids": "⿰尺只", + "canonical_ids": "⿰尺只", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "尸" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咬", + "codepoint": "U+54AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54AC", + "status": "exact_ids", + "ids": "⿰口交", + "canonical_ids": "⿰口交", + "expanded_ids": "⿰口⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "口", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咭", + "codepoint": "U+54AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54AD", + "status": "exact_ids", + "ids": "⿰口吉", + "canonical_ids": "⿰口吉", + "expanded_ids": "⿰口⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咮", + "codepoint": "U+54AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54AE", + "status": "exact_ids", + "ids": "⿰口朱", + "canonical_ids": "⿰口朱", + "expanded_ids": "⿰口⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咯", + "codepoint": "U+54AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54AF", + "status": "exact_ids", + "ids": "⿰口各", + "canonical_ids": "⿰口各", + "expanded_ids": "⿰口⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咰", + "codepoint": "U+54B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54B0", + "status": "exact_ids", + "ids": "⿰口旬", + "canonical_ids": "⿰口旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咱", + "codepoint": "U+54B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54B1", + "status": "exact_ids", + "ids": "⿰口自", + "canonical_ids": "⿰口自", + "expanded_ids": "⿰口⿻目丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咲", + "codepoint": "U+54B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54B2", + "status": "exact_ids", + "ids": "⿰口关", + "canonical_ids": "⿰口关", + "expanded_ids": "⿰口⿱丷⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咳", + "codepoint": "U+54B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54B3", + "status": "exact_ids", + "ids": "⿰口亥", + "canonical_ids": "⿰口亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咴", + "codepoint": "U+54B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54B4", + "status": "exact_ids", + "ids": "⿰口灰", + "canonical_ids": "⿰口灰", + "expanded_ids": "⿰口⿱厂火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咵", + "codepoint": "U+54B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54B5", + "status": "exact_ids", + "ids": "⿰口夸", + "canonical_ids": "⿰口夸", + "expanded_ids": "⿰口⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咶", + "codepoint": "U+54B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54B6", + "status": "exact_ids", + "ids": "⿰口舌", + "canonical_ids": "⿰口舌", + "expanded_ids": "⿰口⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咷", + "codepoint": "U+54B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54B7", + "status": "exact_ids", + "ids": "⿰口兆", + "canonical_ids": "⿰口兆", + "expanded_ids": "⿰口兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咸", + "codepoint": "U+54B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54B8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咹", + "codepoint": "U+54B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54B9", + "status": "exact_ids", + "ids": "⿰口安", + "canonical_ids": "⿰口安", + "expanded_ids": "⿰口⿱宀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咺", + "codepoint": "U+54BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54BA", + "status": "exact_ids", + "ids": "⿰口亘", + "canonical_ids": "⿰口亘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咻", + "codepoint": "U+54BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54BB", + "status": "exact_ids", + "ids": "⿰口休", + "canonical_ids": "⿰口休", + "expanded_ids": "⿰口⿰亻木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咼", + "codepoint": "U+54BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54BC", + "status": "exact_ids", + "ids": "⿱冎口", + "canonical_ids": "⿱冎口", + "expanded_ids": "⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咽", + "codepoint": "U+54BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54BD", + "status": "exact_ids", + "ids": "⿰口因", + "canonical_ids": "⿰口因", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咾", + "codepoint": "U+54BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54BE", + "status": "exact_ids", + "ids": "⿰口老", + "canonical_ids": "⿰口老", + "expanded_ids": "⿰口⿱⿻土丿匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "咿", + "codepoint": "U+54BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54BF", + "status": "exact_ids", + "ids": "⿰口伊", + "canonical_ids": "⿰口伊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哀", + "codepoint": "U+54C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54C0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "品", + "codepoint": "U+54C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54C1", + "status": "exact_ids", + "ids": "⿱口⿰口口", + "canonical_ids": "⿱口⿰口口", + "expanded_ids": "⿱口⿰口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哂", + "codepoint": "U+54C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54C2", + "status": "exact_ids", + "ids": "⿰口西", + "canonical_ids": "⿰口西", + "expanded_ids": "⿰口⿻⿱一儿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哃", + "codepoint": "U+54C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54C3", + "status": "exact_ids", + "ids": "⿰口同", + "canonical_ids": "⿰口同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哄", + "codepoint": "U+54C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54C4", + "status": "exact_ids", + "ids": "⿰口共", + "canonical_ids": "⿰口共", + "expanded_ids": "⿰口⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "廾", + "廿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哅", + "codepoint": "U+54C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54C5", + "status": "exact_ids", + "ids": "⿰口匈", + "canonical_ids": "⿰口匈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "匈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哆", + "codepoint": "U+54C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54C6", + "status": "exact_ids", + "ids": "⿰口多", + "canonical_ids": "⿰口多", + "expanded_ids": "⿰口⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哇", + "codepoint": "U+54C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54C7", + "status": "exact_ids", + "ids": "⿰口圭", + "canonical_ids": "⿰口圭", + "expanded_ids": "⿰口⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哈", + "codepoint": "U+54C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54C8", + "status": "exact_ids", + "ids": "⿰口合", + "canonical_ids": "⿰口合", + "expanded_ids": "⿰口⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哉", + "codepoint": "U+54C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54C9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哊", + "codepoint": "U+54CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54CA", + "status": "exact_ids", + "ids": "⿰口有", + "canonical_ids": "⿰口有", + "expanded_ids": "⿰口⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哋", + "codepoint": "U+54CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54CB", + "status": "exact_ids", + "ids": "⿰口地", + "canonical_ids": "⿰口地", + "expanded_ids": "⿰口⿰土⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哌", + "codepoint": "U+54CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54CC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "响", + "codepoint": "U+54CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54CD", + "status": "exact_ids", + "ids": "⿰口向", + "canonical_ids": "⿰口向", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哎", + "codepoint": "U+54CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54CE", + "status": "exact_ids", + "ids": "⿰口艾", + "canonical_ids": "⿰口艾", + "expanded_ids": "⿰口⿱艹乂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哏", + "codepoint": "U+54CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54CF", + "status": "exact_ids", + "ids": "⿰口艮", + "canonical_ids": "⿰口艮", + "expanded_ids": "⿰口艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哐", + "codepoint": "U+54D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54D0", + "status": "exact_ids", + "ids": "⿰口匡", + "canonical_ids": "⿰口匡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "匡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哑", + "codepoint": "U+54D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54D1", + "status": "exact_ids", + "ids": "⿰口亚", + "canonical_ids": "⿰口亚", + "expanded_ids": "⿰口亚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亚", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哒", + "codepoint": "U+54D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54D2", + "status": "exact_ids", + "ids": "⿰口达", + "canonical_ids": "⿰口达", + "expanded_ids": "⿰口⿰辶大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "大", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哓", + "codepoint": "U+54D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54D3", + "status": "exact_ids", + "ids": "⿰口尧", + "canonical_ids": "⿰口尧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "尧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哔", + "codepoint": "U+54D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54D4", + "status": "exact_ids", + "ids": "⿰口毕", + "canonical_ids": "⿰口毕", + "expanded_ids": "⿰口⿱⿰匕匕十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哕", + "codepoint": "U+54D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54D5", + "status": "exact_ids", + "ids": "⿰口岁", + "canonical_ids": "⿰口岁", + "expanded_ids": "⿰口⿱山夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夕", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哖", + "codepoint": "U+54D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54D6", + "status": "exact_ids", + "ids": "⿰口年", + "canonical_ids": "⿰口年", + "expanded_ids": "⿰口年", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "年" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哗", + "codepoint": "U+54D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54D7", + "status": "exact_ids", + "ids": "⿰口华", + "canonical_ids": "⿰口华", + "expanded_ids": "⿰口⿱⿰亻匕十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哘", + "codepoint": "U+54D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54D8", + "status": "exact_ids", + "ids": "⿰口行", + "canonical_ids": "⿰口行", + "expanded_ids": "⿰口⿰彳彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哙", + "codepoint": "U+54D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54D9", + "status": "exact_ids", + "ids": "⿰口会", + "canonical_ids": "⿰口会", + "expanded_ids": "⿰口⿱⿱人一⿱一厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "厶", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哚", + "codepoint": "U+54DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54DA", + "status": "exact_ids", + "ids": "⿰口朵", + "canonical_ids": "⿰口朵", + "expanded_ids": "⿰口⿱几木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哛", + "codepoint": "U+54DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54DB", + "status": "exact_ids", + "ids": "⿱叱分", + "canonical_ids": "⿱叱分", + "expanded_ids": "⿱⿰口七⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "八", + "刀", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哜", + "codepoint": "U+54DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54DC", + "status": "exact_ids", + "ids": "⿰口齐", + "canonical_ids": "⿰口齐", + "expanded_ids": "⿰口齐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "齐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哝", + "codepoint": "U+54DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54DD", + "status": "exact_ids", + "ids": "⿰口农", + "canonical_ids": "⿰口农", + "expanded_ids": "⿰口农", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "农", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哞", + "codepoint": "U+54DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54DE", + "status": "exact_ids", + "ids": "⿰口牟", + "canonical_ids": "⿰口牟", + "expanded_ids": "⿰口⿱厶牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哟", + "codepoint": "U+54DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54DF", + "status": "exact_ids", + "ids": "⿰口约", + "canonical_ids": "⿰口约", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "纟" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哠", + "codepoint": "U+54E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54E0", + "status": "exact_ids", + "ids": "⿰口告", + "canonical_ids": "⿰口告", + "expanded_ids": "⿰口⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "員", + "codepoint": "U+54E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54E1", + "status": "exact_ids", + "ids": "⿱口貝", + "canonical_ids": "⿱口貝", + "expanded_ids": "⿱口⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哢", + "codepoint": "U+54E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54E2", + "status": "exact_ids", + "ids": "⿰口弄", + "canonical_ids": "⿰口弄", + "expanded_ids": "⿰口⿱王廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "廾", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哣", + "codepoint": "U+54E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54E3", + "status": "exact_ids", + "ids": "⿰口豆", + "canonical_ids": "⿰口豆", + "expanded_ids": "⿰口豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哤", + "codepoint": "U+54E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54E4", + "status": "exact_ids", + "ids": "⿰口尨", + "canonical_ids": "⿰口尨", + "expanded_ids": "⿰口⿰尤彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "尤", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哥", + "codepoint": "U+54E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54E5", + "status": "exact_ids", + "ids": "⿱可可", + "canonical_ids": "⿱可可", + "expanded_ids": "⿱⿰口⿱一亅⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哦", + "codepoint": "U+54E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54E6", + "status": "exact_ids", + "ids": "⿰口我", + "canonical_ids": "⿰口我", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哧", + "codepoint": "U+54E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54E7", + "status": "exact_ids", + "ids": "⿰口赤", + "canonical_ids": "⿰口赤", + "expanded_ids": "⿰口赤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "赤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哨", + "codepoint": "U+54E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54E8", + "status": "exact_ids", + "ids": "⿰口肖", + "canonical_ids": "⿰口肖", + "expanded_ids": "⿰口⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "小", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哩", + "codepoint": "U+54E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54E9", + "status": "exact_ids", + "ids": "⿰口里", + "canonical_ids": "⿰口里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哪", + "codepoint": "U+54EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54EA", + "status": "exact_ids", + "ids": "⿰口那", + "canonical_ids": "⿰口那", + "expanded_ids": "⿰口⿰⿻冂二阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "冂", + "口", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哫", + "codepoint": "U+54EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54EB", + "status": "exact_ids", + "ids": "⿰口足", + "canonical_ids": "⿰口足", + "expanded_ids": "⿰口⿱口龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哬", + "codepoint": "U+54EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54EC", + "status": "exact_ids", + "ids": "⿰口何", + "canonical_ids": "⿰口何", + "expanded_ids": "⿰口⿰亻⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "亻", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哭", + "codepoint": "U+54ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54ED", + "status": "exact_ids", + "ids": "⿱⿰口口犬", + "canonical_ids": "⿱⿰口口犬", + "expanded_ids": "⿱⿰口口⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哮", + "codepoint": "U+54EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54EE", + "status": "exact_ids", + "ids": "⿰口孝", + "canonical_ids": "⿰口孝", + "expanded_ids": "⿰口⿱⿻土丿子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "土", + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哯", + "codepoint": "U+54EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54EF", + "status": "exact_ids", + "ids": "⿰口見", + "canonical_ids": "⿰口見", + "expanded_ids": "⿰口⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哰", + "codepoint": "U+54F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54F0", + "status": "exact_ids", + "ids": "⿰口牢", + "canonical_ids": "⿰口牢", + "expanded_ids": "⿰口⿱宀牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "宀", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哱", + "codepoint": "U+54F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54F1", + "status": "exact_ids", + "ids": "⿰口孛", + "canonical_ids": "⿰口孛", + "expanded_ids": "⿰口⿳十冖子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "口", + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哲", + "codepoint": "U+54F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54F2", + "status": "exact_ids", + "ids": "⿱折口", + "canonical_ids": "⿱折口", + "expanded_ids": "⿱⿰扌斤口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "扌", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哳", + "codepoint": "U+54F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54F3", + "status": "exact_ids", + "ids": "⿰口折", + "canonical_ids": "⿰口折", + "expanded_ids": "⿰口⿰扌斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "扌", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哴", + "codepoint": "U+54F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54F4", + "status": "exact_ids", + "ids": "⿰口良", + "canonical_ids": "⿰口良", + "expanded_ids": "⿰口⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哵", + "codepoint": "U+54F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54F5", + "status": "exact_ids", + "ids": "⿰口别", + "canonical_ids": "⿰口别", + "expanded_ids": "⿰口⿰⿱口力刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "力", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哶", + "codepoint": "U+54F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54F6", + "status": "exact_ids", + "ids": "⿰口芈", + "canonical_ids": "⿰口芈", + "expanded_ids": "⿰口⿻卝⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "卝", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哷", + "codepoint": "U+54F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54F7", + "status": "exact_ids", + "ids": "⿰口寽", + "canonical_ids": "⿰口寽", + "expanded_ids": "⿰口⿱爫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "寸", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哸", + "codepoint": "U+54F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54F8", + "status": "exact_ids", + "ids": "⿰口妥", + "canonical_ids": "⿰口妥", + "expanded_ids": "⿰口⿱爫女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哹", + "codepoint": "U+54F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54F9", + "status": "exact_ids", + "ids": "⿰口孚", + "canonical_ids": "⿰口孚", + "expanded_ids": "⿰口⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "子", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哺", + "codepoint": "U+54FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54FA", + "status": "exact_ids", + "ids": "⿰口甫", + "canonical_ids": "⿰口甫", + "expanded_ids": "⿰口甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哻", + "codepoint": "U+54FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54FB", + "status": "exact_ids", + "ids": "⿰口旱", + "canonical_ids": "⿰口旱", + "expanded_ids": "⿰口⿱日⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "口", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哼", + "codepoint": "U+54FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54FC", + "status": "exact_ids", + "ids": "⿰口亨", + "canonical_ids": "⿰口亨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "亨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哽", + "codepoint": "U+54FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54FD", + "status": "exact_ids", + "ids": "⿰口更", + "canonical_ids": "⿰口更", + "expanded_ids": "⿰口更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "更" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哾", + "codepoint": "U+54FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54FE", + "status": "exact_ids", + "ids": "⿰口兌", + "canonical_ids": "⿰口兌", + "expanded_ids": "⿰口⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "哿", + "codepoint": "U+54FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-54FF", + "status": "exact_ids", + "ids": "⿱加可", + "canonical_ids": "⿱加可", + "expanded_ids": "⿱⿰力口⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "力", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唀", + "codepoint": "U+5500", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5500", + "status": "exact_ids", + "ids": "⿰口秀", + "canonical_ids": "⿰口秀", + "expanded_ids": "⿰口⿱⿻丿木乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乃", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唁", + "codepoint": "U+5501", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5501", + "status": "exact_ids", + "ids": "⿰口言", + "canonical_ids": "⿰口言", + "expanded_ids": "⿰口言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唂", + "codepoint": "U+5502", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5502", + "status": "exact_ids", + "ids": "⿰口谷", + "canonical_ids": "⿰口谷", + "expanded_ids": "⿰口⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唃", + "codepoint": "U+5503", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5503", + "status": "exact_ids", + "ids": "⿰口角", + "canonical_ids": "⿰口角", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "月" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唄", + "codepoint": "U+5504", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5504", + "status": "exact_ids", + "ids": "⿰口貝", + "canonical_ids": "⿰口貝", + "expanded_ids": "⿰口⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唅", + "codepoint": "U+5505", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5505", + "status": "exact_ids", + "ids": "⿰口含", + "canonical_ids": "⿰口含", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唆", + "codepoint": "U+5506", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5506", + "status": "exact_ids", + "ids": "⿰口夋", + "canonical_ids": "⿰口夋", + "expanded_ids": "⿰口⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "口", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唇", + "codepoint": "U+5507", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5507", + "status": "exact_ids", + "ids": "⿱辰口", + "canonical_ids": "⿱辰口", + "expanded_ids": "⿱辰口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唈", + "codepoint": "U+5508", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5508", + "status": "exact_ids", + "ids": "⿰口邑", + "canonical_ids": "⿰口邑", + "expanded_ids": "⿰口⿱口巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "巴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唉", + "codepoint": "U+5509", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5509", + "status": "exact_ids", + "ids": "⿰口矣", + "canonical_ids": "⿰口矣", + "expanded_ids": "⿰口⿱厶⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "厶", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唊", + "codepoint": "U+550A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-550A", + "status": "exact_ids", + "ids": "⿰口夾", + "canonical_ids": "⿰口夾", + "expanded_ids": "⿰口⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唋", + "codepoint": "U+550B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-550B", + "status": "exact_ids", + "ids": "⿰口余", + "canonical_ids": "⿰口余", + "expanded_ids": "⿰口⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唌", + "codepoint": "U+550C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-550C", + "status": "exact_ids", + "ids": "⿰口延", + "canonical_ids": "⿰口延", + "expanded_ids": "⿰口⿰廴⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "廴", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唍", + "codepoint": "U+550D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-550D", + "status": "exact_ids", + "ids": "⿰口完", + "canonical_ids": "⿰口完", + "expanded_ids": "⿰口⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唎", + "codepoint": "U+550E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-550E", + "status": "exact_ids", + "ids": "⿰口利", + "canonical_ids": "⿰口利", + "expanded_ids": "⿰口⿰⿻丿木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唏", + "codepoint": "U+550F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-550F", + "status": "exact_ids", + "ids": "⿰口希", + "canonical_ids": "⿰口希", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "口" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唐", + "codepoint": "U+5510", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5510", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唑", + "codepoint": "U+5511", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5511", + "status": "exact_ids", + "ids": "⿰口坐", + "canonical_ids": "⿰口坐", + "expanded_ids": "⿰口⿱⿰人人土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唒", + "codepoint": "U+5512", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5512", + "status": "exact_ids", + "ids": "⿰口酉", + "canonical_ids": "⿰口酉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唓", + "codepoint": "U+5513", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5513", + "status": "exact_ids", + "ids": "⿰口車", + "canonical_ids": "⿰口車", + "expanded_ids": "⿰口車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唔", + "codepoint": "U+5514", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5514", + "status": "exact_ids", + "ids": "⿰口吾", + "canonical_ids": "⿰口吾", + "expanded_ids": "⿰口⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唕", + "codepoint": "U+5515", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5515", + "status": "exact_ids", + "ids": "⿰口皁", + "canonical_ids": "⿰口皁", + "expanded_ids": "⿰口⿱⿻日丶十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "十", + "口", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唖", + "codepoint": "U+5516", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5516", + "status": "exact_ids", + "ids": "⿰口亜", + "canonical_ids": "⿰口亜", + "expanded_ids": "⿰口亜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亜", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唗", + "codepoint": "U+5517", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5517", + "status": "exact_ids", + "ids": "⿰口走", + "canonical_ids": "⿰口走", + "expanded_ids": "⿰口⿱土龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唘", + "codepoint": "U+5518", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5518", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唙", + "codepoint": "U+5519", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5519", + "status": "exact_ids", + "ids": "⿰口狄", + "canonical_ids": "⿰口狄", + "expanded_ids": "⿰口⿰犭火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "火", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唚", + "codepoint": "U+551A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-551A", + "status": "exact_ids", + "ids": "⿰口𠬶", + "canonical_ids": "⿰口𠬶", + "expanded_ids": "⿰口⿳彐冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "又", + "口", + "彐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唛", + "codepoint": "U+551B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-551B", + "status": "exact_ids", + "ids": "⿰口麦", + "canonical_ids": "⿰口麦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唜", + "codepoint": "U+551C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-551C", + "status": "exact_ids", + "ids": "⿱末叱", + "canonical_ids": "⿱末叱", + "expanded_ids": "⿱⿻木一⿰口七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "七", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唝", + "codepoint": "U+551D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-551D", + "status": "exact_ids", + "ids": "⿰口贡", + "canonical_ids": "⿰口贡", + "expanded_ids": "⿰口⿱工⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唞", + "codepoint": "U+551E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-551E", + "status": "exact_ids", + "ids": "⿰口抖", + "canonical_ids": "⿰口抖", + "expanded_ids": "⿰口⿰扌斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "扌", + "斗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唟", + "codepoint": "U+551F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-551F", + "status": "exact_ids", + "ids": "⿱去叱", + "canonical_ids": "⿱去叱", + "expanded_ids": "⿱⿱土厶⿰口七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "厶", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唠", + "codepoint": "U+5520", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5520", + "status": "exact_ids", + "ids": "⿰口劳", + "canonical_ids": "⿰口劳", + "expanded_ids": "⿰口⿳艹冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唡", + "codepoint": "U+5521", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5521", + "status": "exact_ids", + "ids": "⿰口两", + "canonical_ids": "⿰口两", + "expanded_ids": "⿰口两", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "两", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唢", + "codepoint": "U+5522", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5522", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唣", + "codepoint": "U+5523", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5523", + "status": "exact_ids", + "ids": "⿰口皂", + "canonical_ids": "⿰口皂", + "expanded_ids": "⿰口⿱⿻日丶七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丶", + "口", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唤", + "codepoint": "U+5524", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5524", + "status": "exact_ids", + "ids": "⿰口奂", + "canonical_ids": "⿰口奂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "口", + "大" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唥", + "codepoint": "U+5525", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5525", + "status": "exact_ids", + "ids": "⿰口冷", + "canonical_ids": "⿰口冷", + "expanded_ids": "⿰口⿰冫⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冫", + "口", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唦", + "codepoint": "U+5526", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5526", + "status": "exact_ids", + "ids": "⿰口沙", + "canonical_ids": "⿰口沙", + "expanded_ids": "⿰口⿰氵⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "小", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唧", + "codepoint": "U+5527", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5527", + "status": "exact_ids", + "ids": "⿰口即", + "canonical_ids": "⿰口即", + "expanded_ids": "⿰口⿰艮卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "口", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唨", + "codepoint": "U+5528", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5528", + "status": "exact_ids", + "ids": "⿰口阻", + "canonical_ids": "⿰口阻", + "expanded_ids": "⿰口⿰阝且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "口", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唩", + "codepoint": "U+5529", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5529", + "status": "exact_ids", + "ids": "⿰口委", + "canonical_ids": "⿰口委", + "expanded_ids": "⿰口⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唪", + "codepoint": "U+552A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-552A", + "status": "exact_ids", + "ids": "⿰口奉", + "canonical_ids": "⿰口奉", + "expanded_ids": "⿰口⿱𡗗⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "口", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唫", + "codepoint": "U+552B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-552B", + "status": "exact_ids", + "ids": "⿰口金", + "canonical_ids": "⿰口金", + "expanded_ids": "⿰口金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唬", + "codepoint": "U+552C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-552C", + "status": "exact_ids", + "ids": "⿰口虎", + "canonical_ids": "⿰口虎", + "expanded_ids": "⿰口⿱虍儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唭", + "codepoint": "U+552D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-552D", + "status": "exact_ids", + "ids": "⿰口其", + "canonical_ids": "⿰口其", + "expanded_ids": "⿰口其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "售", + "codepoint": "U+552E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-552E", + "status": "exact_ids", + "ids": "⿱隹口", + "canonical_ids": "⿱隹口", + "expanded_ids": "⿱隹口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唯", + "codepoint": "U+552F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-552F", + "status": "exact_ids", + "ids": "⿰口隹", + "canonical_ids": "⿰口隹", + "expanded_ids": "⿰口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唰", + "codepoint": "U+5530", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5530", + "status": "exact_ids", + "ids": "⿰口刷", + "canonical_ids": "⿰口刷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "刷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唱", + "codepoint": "U+5531", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5531", + "status": "exact_ids", + "ids": "⿰口昌", + "canonical_ids": "⿰口昌", + "expanded_ids": "⿰口⿱日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唲", + "codepoint": "U+5532", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5532", + "status": "exact_ids", + "ids": "⿰口兒", + "canonical_ids": "⿰口兒", + "expanded_ids": "⿰口⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唳", + "codepoint": "U+5533", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5533", + "status": "exact_ids", + "ids": "⿰口戾", + "canonical_ids": "⿰口戾", + "expanded_ids": "⿰口⿱⿻丿尸⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "口", + "大", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唴", + "codepoint": "U+5534", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5534", + "status": "exact_ids", + "ids": "⿰口羌", + "canonical_ids": "⿰口羌", + "expanded_ids": "⿰口⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唵", + "codepoint": "U+5535", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5535", + "status": "exact_ids", + "ids": "⿰口奄", + "canonical_ids": "⿰口奄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "大" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唶", + "codepoint": "U+5536", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5536", + "status": "exact_ids", + "ids": "⿰口昔", + "canonical_ids": "⿰口昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "日" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唷", + "codepoint": "U+5537", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5537", + "status": "exact_ids", + "ids": "⿰口育", + "canonical_ids": "⿰口育", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "育" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唸", + "codepoint": "U+5538", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5538", + "status": "exact_ids", + "ids": "⿰口念", + "canonical_ids": "⿰口念", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "心" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唹", + "codepoint": "U+5539", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5539", + "status": "exact_ids", + "ids": "⿰口於", + "canonical_ids": "⿰口於", + "expanded_ids": "⿰口⿰方⿱人冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冫", + "口", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唺", + "codepoint": "U+553A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-553A", + "status": "exact_ids", + "ids": "⿰口典", + "canonical_ids": "⿰口典", + "expanded_ids": "⿰口典", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "典", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唻", + "codepoint": "U+553B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-553B", + "status": "exact_ids", + "ids": "⿰口來", + "canonical_ids": "⿰口來", + "expanded_ids": "⿰口⿻木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唼", + "codepoint": "U+553C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-553C", + "status": "exact_ids", + "ids": "⿰口妾", + "canonical_ids": "⿰口妾", + "expanded_ids": "⿰口⿱立女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唽", + "codepoint": "U+553D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-553D", + "status": "exact_ids", + "ids": "⿰口析", + "canonical_ids": "⿰口析", + "expanded_ids": "⿰口⿰木斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "斤", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唾", + "codepoint": "U+553E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-553E", + "status": "exact_ids", + "ids": "⿰口垂", + "canonical_ids": "⿰口垂", + "expanded_ids": "⿰口垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "垂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "唿", + "codepoint": "U+553F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-553F", + "status": "exact_ids", + "ids": "⿰口忽", + "canonical_ids": "⿰口忽", + "expanded_ids": "⿰口⿱勿心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "口", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啀", + "codepoint": "U+5540", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5540", + "status": "exact_ids", + "ids": "⿰口厓", + "canonical_ids": "⿰口厓", + "expanded_ids": "⿰口⿱厂⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啁", + "codepoint": "U+5541", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5541", + "status": "exact_ids", + "ids": "⿰口周", + "canonical_ids": "⿰口周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啂", + "codepoint": "U+5542", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5542", + "status": "exact_ids", + "ids": "⿰口乳", + "canonical_ids": "⿰口乳", + "expanded_ids": "⿰口⿰⿱爫子乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "口", + "子", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啃", + "codepoint": "U+5543", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5543", + "status": "exact_ids", + "ids": "⿰口肯", + "canonical_ids": "⿰口肯", + "expanded_ids": "⿰口⿱止月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啄", + "codepoint": "U+5544", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5544", + "status": "exact_ids", + "ids": "⿰口豕", + "canonical_ids": "⿰口豕", + "expanded_ids": "⿰口豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啅", + "codepoint": "U+5545", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5545", + "status": "exact_ids", + "ids": "⿰口卓", + "canonical_ids": "⿰口卓", + "expanded_ids": "⿰口⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "口", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "商", + "codepoint": "U+5546", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5546", + "status": "exact_ids", + "ids": "⿱六冏", + "canonical_ids": "⿱六冏", + "expanded_ids": "⿱⿱亠八⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啇", + "codepoint": "U+5547", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5547", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啈", + "codepoint": "U+5548", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5548", + "status": "exact_ids", + "ids": "⿰口幸", + "canonical_ids": "⿰口幸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啉", + "codepoint": "U+5549", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5549", + "status": "exact_ids", + "ids": "⿰口林", + "canonical_ids": "⿰口林", + "expanded_ids": "⿰口⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啊", + "codepoint": "U+554A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-554A", + "status": "exact_ids", + "ids": "⿰口阿", + "canonical_ids": "⿰口阿", + "expanded_ids": "⿰口⿰阝⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啋", + "codepoint": "U+554B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-554B", + "status": "exact_ids", + "ids": "⿰口采", + "canonical_ids": "⿰口采", + "expanded_ids": "⿰口⿱爫木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啌", + "codepoint": "U+554C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-554C", + "status": "exact_ids", + "ids": "⿰口空", + "canonical_ids": "⿰口空", + "expanded_ids": "⿰口⿱⿱宀八工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啍", + "codepoint": "U+554D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-554D", + "status": "exact_ids", + "ids": "⿰口享", + "canonical_ids": "⿰口享", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啎", + "codepoint": "U+554E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-554E", + "status": "exact_ids", + "ids": "⿰午吾", + "canonical_ids": "⿰午吾", + "expanded_ids": "⿰⿱⿻丿一十⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "五", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "問", + "codepoint": "U+554F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-554F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啐", + "codepoint": "U+5550", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5550", + "status": "exact_ids", + "ids": "⿰口卒", + "canonical_ids": "⿰口卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啑", + "codepoint": "U+5551", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5551", + "status": "exact_ids", + "ids": "⿰口疌", + "canonical_ids": "⿰口疌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "疌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啒", + "codepoint": "U+5552", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5552", + "status": "exact_ids", + "ids": "⿰口屈", + "canonical_ids": "⿰口屈", + "expanded_ids": "⿰口⿱尸⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "口", + "尸", + "屮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啓", + "codepoint": "U+5553", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5553", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啔", + "codepoint": "U+5554", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5554", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啕", + "codepoint": "U+5555", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5555", + "status": "exact_ids", + "ids": "⿰口匋", + "canonical_ids": "⿰口匋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "匋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啖", + "codepoint": "U+5556", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5556", + "status": "exact_ids", + "ids": "⿰口炎", + "canonical_ids": "⿰口炎", + "expanded_ids": "⿰口⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啗", + "codepoint": "U+5557", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5557", + "status": "exact_ids", + "ids": "⿰口臽", + "canonical_ids": "⿰口臽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "臼" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啘", + "codepoint": "U+5558", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5558", + "status": "exact_ids", + "ids": "⿰口宛", + "canonical_ids": "⿰口宛", + "expanded_ids": "⿰口⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "口", + "夕", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啙", + "codepoint": "U+5559", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5559", + "status": "exact_ids", + "ids": "⿱此吅", + "canonical_ids": "⿱此吅", + "expanded_ids": "⿱⿰止匕⿰口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "口", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啚", + "codepoint": "U+555A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-555A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啛", + "codepoint": "U+555B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-555B", + "status": "exact_ids", + "ids": "⿰口妻", + "canonical_ids": "⿰口妻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "妻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啜", + "codepoint": "U+555C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-555C", + "status": "exact_ids", + "ids": "⿰口叕", + "canonical_ids": "⿰口叕", + "expanded_ids": "⿰口⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啝", + "codepoint": "U+555D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-555D", + "status": "exact_ids", + "ids": "⿰口和", + "canonical_ids": "⿰口和", + "expanded_ids": "⿰口⿰⿻丿木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啞", + "codepoint": "U+555E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-555E", + "status": "exact_ids", + "ids": "⿰口亞", + "canonical_ids": "⿰口亞", + "expanded_ids": "⿰口亞", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亞", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啟", + "codepoint": "U+555F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-555F", + "status": "exact_ids", + "ids": "⿰启攵", + "canonical_ids": "⿰启攵", + "expanded_ids": "⿰⿱⿻丶尸口攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "尸", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啠", + "codepoint": "U+5560", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5560", + "status": "exact_ids", + "ids": "⿱斦口", + "canonical_ids": "⿱斦口", + "expanded_ids": "⿱⿰斤斤口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啡", + "codepoint": "U+5561", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5561", + "status": "exact_ids", + "ids": "⿰口非", + "canonical_ids": "⿰口非", + "expanded_ids": "⿰口非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啢", + "codepoint": "U+5562", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5562", + "status": "exact_ids", + "ids": "⿰口兩", + "canonical_ids": "⿰口兩", + "expanded_ids": "⿰口⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啣", + "codepoint": "U+5563", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5563", + "status": "exact_ids", + "ids": "⿰口卸", + "canonical_ids": "⿰口卸", + "expanded_ids": "⿰口⿰𦈢卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "口", + "𦈢" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啤", + "codepoint": "U+5564", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5564", + "status": "exact_ids", + "ids": "⿰口卑", + "canonical_ids": "⿰口卑", + "expanded_ids": "⿰口卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啥", + "codepoint": "U+5565", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5565", + "status": "exact_ids", + "ids": "⿰口舍", + "canonical_ids": "⿰口舍", + "expanded_ids": "⿰口⿱⿱人一⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啦", + "codepoint": "U+5566", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5566", + "status": "exact_ids", + "ids": "⿰口拉", + "canonical_ids": "⿰口拉", + "expanded_ids": "⿰口⿰扌立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "扌", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啧", + "codepoint": "U+5567", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5567", + "status": "exact_ids", + "ids": "⿰口责", + "canonical_ids": "⿰口责", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啨", + "codepoint": "U+5568", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5568", + "status": "exact_ids", + "ids": "⿰口青", + "canonical_ids": "⿰口青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啩", + "codepoint": "U+5569", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5569", + "status": "exact_ids", + "ids": "⿰口卦", + "canonical_ids": "⿰口卦", + "expanded_ids": "⿰口⿰⿱土土卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啪", + "codepoint": "U+556A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-556A", + "status": "exact_ids", + "ids": "⿰口拍", + "canonical_ids": "⿰口拍", + "expanded_ids": "⿰口⿰扌⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "扌", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啫", + "codepoint": "U+556B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-556B", + "status": "exact_ids", + "ids": "⿰口者", + "canonical_ids": "⿰口者", + "expanded_ids": "⿰口⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啬", + "codepoint": "U+556C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-556C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啭", + "codepoint": "U+556D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-556D", + "status": "exact_ids", + "ids": "⿰口转", + "canonical_ids": "⿰口转", + "expanded_ids": "⿰口⿰车专", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "专", + "口", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啮", + "codepoint": "U+556E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-556E", + "status": "exact_ids", + "ids": "⿰口齿", + "canonical_ids": "⿰口齿", + "expanded_ids": "⿰口齿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "齿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啯", + "codepoint": "U+556F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-556F", + "status": "exact_ids", + "ids": "⿰口国", + "canonical_ids": "⿰口国", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "国" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啰", + "codepoint": "U+5570", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5570", + "status": "exact_ids", + "ids": "⿰口罗", + "canonical_ids": "⿰口罗", + "expanded_ids": "⿰口⿱罒夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夕", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啱", + "codepoint": "U+5571", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5571", + "status": "exact_ids", + "ids": "⿰口岩", + "canonical_ids": "⿰口岩", + "expanded_ids": "⿰口⿱山石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "山", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啲", + "codepoint": "U+5572", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5572", + "status": "exact_ids", + "ids": "⿰口的", + "canonical_ids": "⿰口的", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "日" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啳", + "codepoint": "U+5573", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5573", + "status": "exact_ids", + "ids": "⿰口卷", + "canonical_ids": "⿰口卷", + "expanded_ids": "⿰口⿱龹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "口", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啴", + "codepoint": "U+5574", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5574", + "status": "exact_ids", + "ids": "⿰口单", + "canonical_ids": "⿰口单", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "单" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啵", + "codepoint": "U+5575", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5575", + "status": "exact_ids", + "ids": "⿰口波", + "canonical_ids": "⿰口波", + "expanded_ids": "⿰口⿰氵皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "氵", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啶", + "codepoint": "U+5576", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5576", + "status": "exact_ids", + "ids": "⿰口定", + "canonical_ids": "⿰口定", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "宀" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啷", + "codepoint": "U+5577", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5577", + "status": "exact_ids", + "ids": "⿰口郎", + "canonical_ids": "⿰口郎", + "expanded_ids": "⿰口⿰⿻丶艮阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "艮", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啸", + "codepoint": "U+5578", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5578", + "status": "exact_ids", + "ids": "⿰口肃", + "canonical_ids": "⿰口肃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "肃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啹", + "codepoint": "U+5579", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5579", + "status": "exact_ids", + "ids": "⿰口居", + "canonical_ids": "⿰口居", + "expanded_ids": "⿰口⿱尸⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啺", + "codepoint": "U+557A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-557A", + "status": "exact_ids", + "ids": "⿰口昜", + "canonical_ids": "⿰口昜", + "expanded_ids": "⿰口⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "口", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啻", + "codepoint": "U+557B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-557B", + "status": "exact_ids", + "ids": "⿱帝口", + "canonical_ids": "⿱帝口", + "expanded_ids": "⿱⿳⿱亠八冖⿻冂丨口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啼", + "codepoint": "U+557C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-557C", + "status": "exact_ids", + "ids": "⿰口帝", + "canonical_ids": "⿰口帝", + "expanded_ids": "⿰口⿳⿱亠八冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啽", + "codepoint": "U+557D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-557D", + "status": "exact_ids", + "ids": "⿰口弇", + "canonical_ids": "⿰口弇", + "expanded_ids": "⿰口⿱⿱⿱人一口廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啾", + "codepoint": "U+557E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-557E", + "status": "exact_ids", + "ids": "⿰口秋", + "canonical_ids": "⿰口秋", + "expanded_ids": "⿰口⿰⿻丿木火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "啿", + "codepoint": "U+557F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-557F", + "status": "exact_ids", + "ids": "⿰口甚", + "canonical_ids": "⿰口甚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "甘" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喀", + "codepoint": "U+5580", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5580", + "status": "exact_ids", + "ids": "⿰口客", + "canonical_ids": "⿰口客", + "expanded_ids": "⿰口⿱宀⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喁", + "codepoint": "U+5581", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5581", + "status": "exact_ids", + "ids": "⿰口禺", + "canonical_ids": "⿰口禺", + "expanded_ids": "⿰口⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "田", + "禸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喂", + "codepoint": "U+5582", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5582", + "status": "exact_ids", + "ids": "⿰口畏", + "canonical_ids": "⿰口畏", + "expanded_ids": "⿰口⿱田氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "氏", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喃", + "codepoint": "U+5583", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5583", + "status": "exact_ids", + "ids": "⿰口南", + "canonical_ids": "⿰口南", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "南" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "善", + "codepoint": "U+5584", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5584", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喅", + "codepoint": "U+5585", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5585", + "status": "exact_ids", + "ids": "⿰口昱", + "canonical_ids": "⿰口昱", + "expanded_ids": "⿰口⿱日立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喆", + "codepoint": "U+5586", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5586", + "status": "exact_ids", + "ids": "⿰吉吉", + "canonical_ids": "⿰吉吉", + "expanded_ids": "⿰⿱士口⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喇", + "codepoint": "U+5587", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5587", + "status": "exact_ids", + "ids": "⿰口剌", + "canonical_ids": "⿰口剌", + "expanded_ids": "⿰口⿰⿻木口刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喈", + "codepoint": "U+5588", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5588", + "status": "exact_ids", + "ids": "⿰口皆", + "canonical_ids": "⿰口皆", + "expanded_ids": "⿰口⿱⿰匕匕⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "口", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喉", + "codepoint": "U+5589", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5589", + "status": "exact_ids", + "ids": "⿰口侯", + "canonical_ids": "⿰口侯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "侯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喊", + "codepoint": "U+558A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-558A", + "status": "exact_ids", + "ids": "⿰口咸", + "canonical_ids": "⿰口咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喋", + "codepoint": "U+558B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-558B", + "status": "exact_ids", + "ids": "⿰口枼", + "canonical_ids": "⿰口枼", + "expanded_ids": "⿰口⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喌", + "codepoint": "U+558C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-558C", + "status": "exact_ids", + "ids": "⿱⿰口口州", + "canonical_ids": "⿱⿰口口州", + "expanded_ids": "⿱⿰口口州", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "州" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喍", + "codepoint": "U+558D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-558D", + "status": "exact_ids", + "ids": "⿰口柴", + "canonical_ids": "⿰口柴", + "expanded_ids": "⿰口⿱⿰止匕木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "口", + "木", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喎", + "codepoint": "U+558E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-558E", + "status": "exact_ids", + "ids": "⿰口咼", + "canonical_ids": "⿰口咼", + "expanded_ids": "⿰口⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喏", + "codepoint": "U+558F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-558F", + "status": "exact_ids", + "ids": "⿰口若", + "canonical_ids": "⿰口若", + "expanded_ids": "⿰口⿱艹⿱⿻丿一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喐", + "codepoint": "U+5590", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5590", + "status": "exact_ids", + "ids": "⿰口郁", + "canonical_ids": "⿰口郁", + "expanded_ids": "⿰口⿰⿱⿻丿一月阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "月", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喑", + "codepoint": "U+5591", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5591", + "status": "exact_ids", + "ids": "⿰口音", + "canonical_ids": "⿰口音", + "expanded_ids": "⿰口⿱立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喒", + "codepoint": "U+5592", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5592", + "status": "exact_ids", + "ids": "⿰口昝", + "canonical_ids": "⿰口昝", + "expanded_ids": "⿰口⿱⿰夂卜日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "夂", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喓", + "codepoint": "U+5593", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5593", + "status": "exact_ids", + "ids": "⿰口要", + "canonical_ids": "⿰口要", + "expanded_ids": "⿰口⿱覀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喔", + "codepoint": "U+5594", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5594", + "status": "exact_ids", + "ids": "⿰口屋", + "canonical_ids": "⿰口屋", + "expanded_ids": "⿰口⿱尸⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "口", + "土", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喕", + "codepoint": "U+5595", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5595", + "status": "exact_ids", + "ids": "⿰口面", + "canonical_ids": "⿰口面", + "expanded_ids": "⿰口面", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "面" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喖", + "codepoint": "U+5596", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5596", + "status": "exact_ids", + "ids": "⿰口枯", + "canonical_ids": "⿰口枯", + "expanded_ids": "⿰口⿰木⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喗", + "codepoint": "U+5597", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5597", + "status": "exact_ids", + "ids": "⿰口軍", + "canonical_ids": "⿰口軍", + "expanded_ids": "⿰口⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "口", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喘", + "codepoint": "U+5598", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5598", + "status": "exact_ids", + "ids": "⿰口耑", + "canonical_ids": "⿰口耑", + "expanded_ids": "⿰口⿱山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "山", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喙", + "codepoint": "U+5599", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5599", + "status": "exact_ids", + "ids": "⿰口彖", + "canonical_ids": "⿰口彖", + "expanded_ids": "⿰口⿱彑𧰨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "彑", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喚", + "codepoint": "U+559A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-559A", + "status": "exact_ids", + "ids": "⿰口奐", + "canonical_ids": "⿰口奐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "奐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喛", + "codepoint": "U+559B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-559B", + "status": "exact_ids", + "ids": "⿰口爰", + "canonical_ids": "⿰口爰", + "expanded_ids": "⿰口⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "口", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喜", + "codepoint": "U+559C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-559C", + "status": "exact_ids", + "ids": "⿱壴口", + "canonical_ids": "⿱壴口", + "expanded_ids": "⿱⿱十豆口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喝", + "codepoint": "U+559D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-559D", + "status": "exact_ids", + "ids": "⿰口曷", + "canonical_ids": "⿰口曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "曰" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喞", + "codepoint": "U+559E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-559E", + "status": "exact_ids", + "ids": "⿰口卽", + "canonical_ids": "⿰口卽", + "expanded_ids": "⿰口⿰⿱⿻日丶匕卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "卩", + "口", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喟", + "codepoint": "U+559F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-559F", + "status": "exact_ids", + "ids": "⿰口胃", + "canonical_ids": "⿰口胃", + "expanded_ids": "⿰口⿱田月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喠", + "codepoint": "U+55A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55A0", + "status": "exact_ids", + "ids": "⿰口重", + "canonical_ids": "⿰口重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喡", + "codepoint": "U+55A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55A1", + "status": "exact_ids", + "ids": "⿰口韋", + "canonical_ids": "⿰口韋", + "expanded_ids": "⿰口韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喢", + "codepoint": "U+55A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55A2", + "status": "exact_ids", + "ids": "⿰口臿", + "canonical_ids": "⿰口臿", + "expanded_ids": "⿰口⿱⿱丿十臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喣", + "codepoint": "U+55A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55A3", + "status": "exact_ids", + "ids": "⿱呴灬", + "canonical_ids": "⿱呴灬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "灬" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喤", + "codepoint": "U+55A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55A4", + "status": "exact_ids", + "ids": "⿰口皇", + "canonical_ids": "⿰口皇", + "expanded_ids": "⿰口⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喥", + "codepoint": "U+55A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55A5", + "status": "exact_ids", + "ids": "⿰口度", + "canonical_ids": "⿰口度", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "度" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喦", + "codepoint": "U+55A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55A6", + "status": "exact_ids", + "ids": "⿱品山", + "canonical_ids": "⿱品山", + "expanded_ids": "⿱⿱口⿰口口山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "嵒" + ] + }, + { + "character": "喧", + "codepoint": "U+55A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55A7", + "status": "exact_ids", + "ids": "⿰口宣", + "canonical_ids": "⿰口宣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "宀" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喨", + "codepoint": "U+55A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55A8", + "status": "exact_ids", + "ids": "⿰口亮", + "canonical_ids": "⿰口亮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "亮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喩", + "codepoint": "U+55A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55A9", + "status": "exact_ids", + "ids": "⿰口兪", + "canonical_ids": "⿰口兪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "兪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喪", + "codepoint": "U+55AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55AA", + "status": "leaf_self_fallback", + "ids": "喪", + "canonical_ids": "喪", + "expanded_ids": "喪", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "喪" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喫", + "codepoint": "U+55AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55AB", + "status": "exact_ids", + "ids": "⿰口契", + "canonical_ids": "⿰口契", + "expanded_ids": "⿰口⿱⿰丰刀大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喬", + "codepoint": "U+55AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55AC", + "status": "exact_ids", + "ids": "⿱呑冋", + "canonical_ids": "⿱呑冋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喭", + "codepoint": "U+55AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55AD", + "status": "exact_ids", + "ids": "⿰口彦", + "canonical_ids": "⿰口彦", + "expanded_ids": "⿰口⿱⿱⿱亠八厂彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "厂", + "口", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "單", + "codepoint": "U+55AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55AE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喯", + "codepoint": "U+55AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55AF", + "status": "exact_ids", + "ids": "⿰口奔", + "canonical_ids": "⿰口奔", + "expanded_ids": "⿰口⿱大⿱十廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "大", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喰", + "codepoint": "U+55B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55B0", + "status": "exact_ids", + "ids": "⿰口食", + "canonical_ids": "⿰口食", + "expanded_ids": "⿰口⿱人⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "口", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喱", + "codepoint": "U+55B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55B1", + "status": "exact_ids", + "ids": "⿰口厘", + "canonical_ids": "⿰口厘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "口" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喲", + "codepoint": "U+55B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55B2", + "status": "exact_ids", + "ids": "⿰口約", + "canonical_ids": "⿰口約", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "小", + "幺" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喳", + "codepoint": "U+55B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55B3", + "status": "exact_ids", + "ids": "⿰口查", + "canonical_ids": "⿰口查", + "expanded_ids": "⿰口⿱木⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喴", + "codepoint": "U+55B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55B4", + "status": "exact_ids", + "ids": "⿰口威", + "canonical_ids": "⿰口威", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "威" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喵", + "codepoint": "U+55B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55B5", + "status": "exact_ids", + "ids": "⿰口苗", + "canonical_ids": "⿰口苗", + "expanded_ids": "⿰口⿱艹田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "営", + "codepoint": "U+55B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55B6", + "status": "exact_ids", + "ids": "⿳小冖呂", + "canonical_ids": "⿳小冖呂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "小" + ], + "unresolved_leaves": [ + "呂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喷", + "codepoint": "U+55B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55B7", + "status": "exact_ids", + "ids": "⿰口贲", + "canonical_ids": "⿰口贲", + "expanded_ids": "⿰口⿱⿱十廾⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "十", + "口", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喸", + "codepoint": "U+55B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55B8", + "status": "exact_ids", + "ids": "⿱甫叱", + "canonical_ids": "⿱甫叱", + "expanded_ids": "⿱甫⿰口七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "口", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喹", + "codepoint": "U+55B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55B9", + "status": "exact_ids", + "ids": "⿰口奎", + "canonical_ids": "⿰口奎", + "expanded_ids": "⿰口⿱大⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喺", + "codepoint": "U+55BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55BA", + "status": "exact_ids", + "ids": "⿰口係", + "canonical_ids": "⿰口係", + "expanded_ids": "⿰口⿰亻⿱丿⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "口", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喻", + "codepoint": "U+55BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55BB", + "status": "exact_ids", + "ids": "⿰口俞", + "canonical_ids": "⿰口俞", + "expanded_ids": "⿰口⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喼", + "codepoint": "U+55BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55BC", + "status": "exact_ids", + "ids": "⿰口急", + "canonical_ids": "⿰口急", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "彐", + "心" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喽", + "codepoint": "U+55BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55BD", + "status": "exact_ids", + "ids": "⿰口娄", + "canonical_ids": "⿰口娄", + "expanded_ids": "⿰口⿱⿻木丷女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "口", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喾", + "codepoint": "U+55BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55BE", + "status": "exact_ids", + "ids": "⿳小冖告", + "canonical_ids": "⿳小冖告", + "expanded_ids": "⿳小冖⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "口", + "小", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "喿", + "codepoint": "U+55BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55BF", + "status": "exact_ids", + "ids": "⿱品木", + "canonical_ids": "⿱品木", + "expanded_ids": "⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗀", + "codepoint": "U+55C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55C0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗁", + "codepoint": "U+55C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55C1", + "status": "exact_ids", + "ids": "⿰口虒", + "canonical_ids": "⿰口虒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "虒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗂", + "codepoint": "U+55C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55C2", + "status": "exact_ids", + "ids": "⿰口䍃", + "canonical_ids": "⿰口䍃", + "expanded_ids": "⿰口⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "爪", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗃", + "codepoint": "U+55C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55C3", + "status": "exact_ids", + "ids": "⿰口高", + "canonical_ids": "⿰口高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗄", + "codepoint": "U+55C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55C4", + "status": "exact_ids", + "ids": "⿰口夏", + "canonical_ids": "⿰口夏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "夏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗅", + "codepoint": "U+55C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55C5", + "status": "exact_ids", + "ids": "⿰口臭", + "canonical_ids": "⿰口臭", + "expanded_ids": "⿰口⿱⿻目丶⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "大", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗆", + "codepoint": "U+55C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55C6", + "status": "exact_ids", + "ids": "⿰口倉", + "canonical_ids": "⿰口倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗇", + "codepoint": "U+55C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55C7", + "status": "exact_ids", + "ids": "⿱夾回", + "canonical_ids": "⿱夾回", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗈", + "codepoint": "U+55C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55C8", + "status": "exact_ids", + "ids": "⿰口邕", + "canonical_ids": "⿰口邕", + "expanded_ids": "⿰口⿱巛⿱口巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "巛", + "巴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗉", + "codepoint": "U+55C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55C9", + "status": "exact_ids", + "ids": "⿰口素", + "canonical_ids": "⿰口素", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "小", + "幺" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗊", + "codepoint": "U+55CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55CA", + "status": "exact_ids", + "ids": "⿰口貢", + "canonical_ids": "⿰口貢", + "expanded_ids": "⿰口⿱工⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "工", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗋", + "codepoint": "U+55CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55CB", + "status": "exact_ids", + "ids": "⿰口脅", + "canonical_ids": "⿰口脅", + "expanded_ids": "⿰口⿱⿱力⿰力力月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗌", + "codepoint": "U+55CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55CC", + "status": "exact_ids", + "ids": "⿰口益", + "canonical_ids": "⿰口益", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗍", + "codepoint": "U+55CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55CD", + "status": "exact_ids", + "ids": "⿰口朔", + "canonical_ids": "⿰口朔", + "expanded_ids": "⿰口⿰⿱䒑屮月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "口", + "屮", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗎", + "codepoint": "U+55CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55CE", + "status": "exact_ids", + "ids": "⿰口馬", + "canonical_ids": "⿰口馬", + "expanded_ids": "⿰口馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗏", + "codepoint": "U+55CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55CF", + "status": "exact_ids", + "ids": "⿰口茶", + "canonical_ids": "⿰口茶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "茶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗐", + "codepoint": "U+55D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55D0", + "status": "exact_ids", + "ids": "⿰口害", + "canonical_ids": "⿰口害", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "害" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗑", + "codepoint": "U+55D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55D1", + "status": "exact_ids", + "ids": "⿰口盍", + "canonical_ids": "⿰口盍", + "expanded_ids": "⿰口⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "土", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗒", + "codepoint": "U+55D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55D2", + "status": "exact_ids", + "ids": "⿰口荅", + "canonical_ids": "⿰口荅", + "expanded_ids": "⿰口⿱艹⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗓", + "codepoint": "U+55D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55D3", + "status": "exact_ids", + "ids": "⿰口桑", + "canonical_ids": "⿰口桑", + "expanded_ids": "⿰口⿱⿱又⿰又又木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗔", + "codepoint": "U+55D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55D4", + "status": "exact_ids", + "ids": "⿰口眞", + "canonical_ids": "⿰口眞", + "expanded_ids": "⿰口⿻匕⿱⿱一儿目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "匕", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗕", + "codepoint": "U+55D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55D5", + "status": "exact_ids", + "ids": "⿰口辱", + "canonical_ids": "⿰口辱", + "expanded_ids": "⿰口⿱辰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "寸", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗖", + "codepoint": "U+55D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55D6", + "status": "exact_ids", + "ids": "⿰口叟", + "canonical_ids": "⿰口叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "口" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗗", + "codepoint": "U+55D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55D7", + "status": "exact_ids", + "ids": "⿰口骨", + "canonical_ids": "⿰口骨", + "expanded_ids": "⿰口⿱冎月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗘", + "codepoint": "U+55D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55D8", + "status": "exact_ids", + "ids": "⿰口奚", + "canonical_ids": "⿰口奚", + "expanded_ids": "⿰口⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "大", + "幺", + "爪" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗙", + "codepoint": "U+55D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55D9", + "status": "exact_ids", + "ids": "⿰口旁", + "canonical_ids": "⿰口旁", + "expanded_ids": "⿰口⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "口", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗚", + "codepoint": "U+55DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55DA", + "status": "exact_ids", + "ids": "⿰口烏", + "canonical_ids": "⿰口烏", + "expanded_ids": "⿰口烏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "烏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗛", + "codepoint": "U+55DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55DB", + "status": "exact_ids", + "ids": "⿰口兼", + "canonical_ids": "⿰口兼", + "expanded_ids": "⿰口兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗜", + "codepoint": "U+55DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55DC", + "status": "exact_ids", + "ids": "⿰口耆", + "canonical_ids": "⿰口耆", + "expanded_ids": "⿰口⿱⿱⿻土丿匕日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "口", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗝", + "codepoint": "U+55DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55DD", + "status": "exact_ids", + "ids": "⿰口鬲", + "canonical_ids": "⿰口鬲", + "expanded_ids": "⿰口鬲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗞", + "codepoint": "U+55DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55DE", + "status": "exact_ids", + "ids": "⿰口兹", + "canonical_ids": "⿰口兹", + "expanded_ids": "⿰口⿱䒑⿰幺幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "口", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗟", + "codepoint": "U+55DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55DF", + "status": "exact_ids", + "ids": "⿰口差", + "canonical_ids": "⿰口差", + "expanded_ids": "⿰口⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "工", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗠", + "codepoint": "U+55E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55E0", + "status": "exact_ids", + "ids": "⿰孚各", + "canonical_ids": "⿰孚各", + "expanded_ids": "⿰⿱爫子⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "子", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗡", + "codepoint": "U+55E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55E1", + "status": "exact_ids", + "ids": "⿰口翁", + "canonical_ids": "⿰口翁", + "expanded_ids": "⿰口⿱⿱八厶⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "八", + "厶", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗢", + "codepoint": "U+55E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55E2", + "status": "exact_ids", + "ids": "⿰口𥁕", + "canonical_ids": "⿰口𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "皿" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗣", + "codepoint": "U+55E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55E3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗤", + "codepoint": "U+55E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55E4", + "status": "exact_ids", + "ids": "⿰口蚩", + "canonical_ids": "⿰口蚩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "蚩" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗥", + "codepoint": "U+55E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55E5", + "status": "exact_ids", + "ids": "⿰口皋", + "canonical_ids": "⿰口皋", + "expanded_ids": "⿰口⿱⿻日丶⿱大十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "十", + "口", + "大", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗦", + "codepoint": "U+55E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55E6", + "status": "exact_ids", + "ids": "⿰口索", + "canonical_ids": "⿰口索", + "expanded_ids": "⿰口⿳十冖⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "口", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗧", + "codepoint": "U+55E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55E7", + "status": "exact_ids", + "ids": "⿱加侖", + "canonical_ids": "⿱加侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "力", + "口" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗨", + "codepoint": "U+55E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55E8", + "status": "exact_ids", + "ids": "⿰口海", + "canonical_ids": "⿰口海", + "expanded_ids": "⿰口⿰氵⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "母", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗩", + "codepoint": "U+55E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55E9", + "status": "exact_ids", + "ids": "⿰口𧴪", + "canonical_ids": "⿰口𧴪", + "expanded_ids": "⿰口⿱小⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "小", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗪", + "codepoint": "U+55EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55EA", + "status": "exact_ids", + "ids": "⿰口秦", + "canonical_ids": "⿰口秦", + "expanded_ids": "⿰口⿱𡗗⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "木", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗫", + "codepoint": "U+55EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55EB", + "status": "exact_ids", + "ids": "⿰口聂", + "canonical_ids": "⿰口聂", + "expanded_ids": "⿰口⿱耳⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "口", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗬", + "codepoint": "U+55EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55EC", + "status": "exact_ids", + "ids": "⿰口荷", + "canonical_ids": "⿰口荷", + "expanded_ids": "⿰口⿱艹⿰亻⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "亻", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗭", + "codepoint": "U+55ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55ED", + "status": "exact_ids", + "ids": "⿱直叱", + "canonical_ids": "⿱直叱", + "expanded_ids": "⿱⿱⿱十目乚⿰口七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "乚", + "十", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗮", + "codepoint": "U+55EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55EE", + "status": "exact_ids", + "ids": "⿰口晒", + "canonical_ids": "⿰口晒", + "expanded_ids": "⿰口⿰日⿻⿱一儿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗯", + "codepoint": "U+55EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55EF", + "status": "exact_ids", + "ids": "⿰口恩", + "canonical_ids": "⿰口恩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "心" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗰", + "codepoint": "U+55F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55F0", + "status": "exact_ids", + "ids": "⿰口個", + "canonical_ids": "⿰口個", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口" + ], + "unresolved_leaves": [ + "固" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗱", + "codepoint": "U+55F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55F1", + "status": "exact_ids", + "ids": "⿰口拿", + "canonical_ids": "⿰口拿", + "expanded_ids": "⿰口⿱⿱⿱人一口手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "手" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗲", + "codepoint": "U+55F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55F2", + "status": "exact_ids", + "ids": "⿰口爹", + "canonical_ids": "⿰口爹", + "expanded_ids": "⿰口⿱父⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夕", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗳", + "codepoint": "U+55F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55F3", + "status": "exact_ids", + "ids": "⿰口爱", + "canonical_ids": "⿰口爱", + "expanded_ids": "⿰口⿳爫冖⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "冖", + "又", + "口", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗴", + "codepoint": "U+55F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55F4", + "status": "exact_ids", + "ids": "⿰口羗", + "canonical_ids": "⿰口羗", + "expanded_ids": "⿰口⿻⿱羊儿厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "口", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗵", + "codepoint": "U+55F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55F5", + "status": "exact_ids", + "ids": "⿰口通", + "canonical_ids": "⿰口通", + "expanded_ids": "⿰口⿰辶⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "月", + "辶", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗶", + "codepoint": "U+55F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55F6", + "status": "exact_ids", + "ids": "⿰口畢", + "canonical_ids": "⿰口畢", + "expanded_ids": "⿰口畢", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "畢" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗷", + "codepoint": "U+55F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55F7", + "status": "exact_ids", + "ids": "⿰口敖", + "canonical_ids": "⿰口敖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗸", + "codepoint": "U+55F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55F8", + "status": "exact_ids", + "ids": "⿱敖口", + "canonical_ids": "⿱敖口", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗹", + "codepoint": "U+55F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55F9", + "status": "exact_ids", + "ids": "⿰口連", + "canonical_ids": "⿰口連", + "expanded_ids": "⿰口⿰辶車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "車", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗺", + "codepoint": "U+55FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55FA", + "status": "exact_ids", + "ids": "⿰口崔", + "canonical_ids": "⿰口崔", + "expanded_ids": "⿰口⿱山隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "山", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗻", + "codepoint": "U+55FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55FB", + "status": "exact_ids", + "ids": "⿰口庶", + "canonical_ids": "⿰口庶", + "expanded_ids": "⿰口⿱广⿱廿火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "广", + "廿", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗼", + "codepoint": "U+55FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55FC", + "status": "exact_ids", + "ids": "⿰口莫", + "canonical_ids": "⿰口莫", + "expanded_ids": "⿰口⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "大", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗽", + "codepoint": "U+55FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55FD", + "status": "exact_ids", + "ids": "⿰口欶", + "canonical_ids": "⿰口欶", + "expanded_ids": "⿰口⿰⿻木口欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗾", + "codepoint": "U+55FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55FE", + "status": "exact_ids", + "ids": "⿰口族", + "canonical_ids": "⿰口族", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "族" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嗿", + "codepoint": "U+55FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-55FF", + "status": "exact_ids", + "ids": "⿰口貪", + "canonical_ids": "⿰口貪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "八", + "口", + "目" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘀", + "codepoint": "U+5600", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5600", + "status": "exact_ids", + "ids": "⿰口啇", + "canonical_ids": "⿰口啇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘁", + "codepoint": "U+5601", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5601", + "status": "exact_ids", + "ids": "⿰口戚", + "canonical_ids": "⿰口戚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "戚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘂", + "codepoint": "U+5602", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5602", + "status": "exact_ids", + "ids": "⿲吕丩吕", + "canonical_ids": "⿲吕丩吕", + "expanded_ids": "⿲⿱口口⿰丨丨⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘃", + "codepoint": "U+5603", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5603", + "status": "exact_ids", + "ids": "⿰口庸", + "canonical_ids": "⿰口庸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "庸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘄", + "codepoint": "U+5604", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5604", + "status": "exact_ids", + "ids": "⿰口梟", + "canonical_ids": "⿰口梟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "梟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘅", + "codepoint": "U+5605", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5605", + "status": "exact_ids", + "ids": "⿰口既", + "canonical_ids": "⿰口既", + "expanded_ids": "⿰口⿰艮旡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "旡", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘆", + "codepoint": "U+5606", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5606", + "status": "exact_ids", + "ids": "⿰口𦰩", + "canonical_ids": "⿰口𦰩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "𦰩" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘇", + "codepoint": "U+5607", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5607", + "status": "exact_ids", + "ids": "⿰口參", + "canonical_ids": "⿰口參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘈", + "codepoint": "U+5608", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5608", + "status": "exact_ids", + "ids": "⿰口曹", + "canonical_ids": "⿰口曹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "曹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘉", + "codepoint": "U+5609", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5609", + "status": "exact_ids", + "ids": "⿱壴加", + "canonical_ids": "⿱壴加", + "expanded_ids": "⿱⿱十豆⿰力口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "十", + "口", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘊", + "codepoint": "U+560A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-560A", + "status": "exact_ids", + "ids": "⿰口崖", + "canonical_ids": "⿰口崖", + "expanded_ids": "⿰口⿱山⿱厂⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "口", + "土", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘋", + "codepoint": "U+560B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-560B", + "status": "exact_ids", + "ids": "⿰口教", + "canonical_ids": "⿰口教", + "expanded_ids": "⿰口⿰⿱⿻土丿子攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "土", + "子", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘌", + "codepoint": "U+560C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-560C", + "status": "exact_ids", + "ids": "⿰口票", + "canonical_ids": "⿰口票", + "expanded_ids": "⿰口⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "口", + "小", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘍", + "codepoint": "U+560D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-560D", + "status": "exact_ids", + "ids": "⿰口婁", + "canonical_ids": "⿰口婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘎", + "codepoint": "U+560E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-560E", + "status": "exact_ids", + "ids": "⿰口戛", + "canonical_ids": "⿰口戛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "口", + "目" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘏", + "codepoint": "U+560F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-560F", + "status": "exact_ids", + "ids": "⿰古叚", + "canonical_ids": "⿰古叚", + "expanded_ids": "⿰⿻十口叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "叚", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘐", + "codepoint": "U+5610", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5610", + "status": "exact_ids", + "ids": "⿰口翏", + "canonical_ids": "⿰口翏", + "expanded_ids": "⿰口⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "口", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘑", + "codepoint": "U+5611", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5611", + "status": "exact_ids", + "ids": "⿰口虖", + "canonical_ids": "⿰口虖", + "expanded_ids": "⿰口⿱虍乎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乎", + "口", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘒", + "codepoint": "U+5612", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5612", + "status": "exact_ids", + "ids": "⿰口彗", + "canonical_ids": "⿰口彗", + "expanded_ids": "⿰口⿱⿰丰丰彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "口", + "彐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘓", + "codepoint": "U+5613", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5613", + "status": "exact_ids", + "ids": "⿰口國", + "canonical_ids": "⿰口國", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "國" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘔", + "codepoint": "U+5614", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5614", + "status": "exact_ids", + "ids": "⿰口區", + "canonical_ids": "⿰口區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘕", + "codepoint": "U+5615", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5615", + "status": "exact_ids", + "ids": "⿰口焉", + "canonical_ids": "⿰口焉", + "expanded_ids": "⿰口⿱⿱一止⿱⿱卜乙灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乙", + "卜", + "口", + "止", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘖", + "codepoint": "U+5616", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5616", + "status": "exact_ids", + "ids": "⿰口責", + "canonical_ids": "⿰口責", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "目" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘗", + "codepoint": "U+5617", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5617", + "status": "exact_ids", + "ids": "⿱尚旨", + "canonical_ids": "⿱尚旨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "小", + "日" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘘", + "codepoint": "U+5618", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5618", + "status": "exact_ids", + "ids": "⿰口虚", + "canonical_ids": "⿰口虚", + "expanded_ids": "⿰口⿱虍业", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "口", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘙", + "codepoint": "U+5619", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5619", + "status": "exact_ids", + "ids": "⿰口婆", + "canonical_ids": "⿰口婆", + "expanded_ids": "⿰口⿱⿰氵皮女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "氵", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘚", + "codepoint": "U+561A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-561A", + "status": "exact_ids", + "ids": "⿰口得", + "canonical_ids": "⿰口得", + "expanded_ids": "⿰口⿰彳⿱日寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "寸", + "彳", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘛", + "codepoint": "U+561B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-561B", + "status": "exact_ids", + "ids": "⿰口麻", + "canonical_ids": "⿰口麻", + "expanded_ids": "⿰口⿱广⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘜", + "codepoint": "U+561C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-561C", + "status": "exact_ids", + "ids": "⿰口麥", + "canonical_ids": "⿰口麥", + "expanded_ids": "⿰口⿱⿻大⿰人人夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "口", + "夂", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘝", + "codepoint": "U+561D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-561D", + "status": "exact_ids", + "ids": "⿰口斛", + "canonical_ids": "⿰口斛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "斗", + "月" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘞", + "codepoint": "U+561E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-561E", + "status": "exact_ids", + "ids": "⿰口勒", + "canonical_ids": "⿰口勒", + "expanded_ids": "⿰口⿰革力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘟", + "codepoint": "U+561F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-561F", + "status": "exact_ids", + "ids": "⿰口都", + "canonical_ids": "⿰口都", + "expanded_ids": "⿰口⿰⿱⿻土丿日阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "土", + "日", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘠", + "codepoint": "U+5620", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5620", + "status": "exact_ids", + "ids": "⿰口戞", + "canonical_ids": "⿰口戞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "冖", + "口", + "日" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘡", + "codepoint": "U+5621", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5621", + "status": "exact_ids", + "ids": "⿰口堂", + "canonical_ids": "⿰口堂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "小" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘢", + "codepoint": "U+5622", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5622", + "status": "exact_ids", + "ids": "⿰口野", + "canonical_ids": "⿰口野", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "龴" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘣", + "codepoint": "U+5623", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5623", + "status": "exact_ids", + "ids": "⿰口崩", + "canonical_ids": "⿰口崩", + "expanded_ids": "⿰口⿱山⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "山", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘤", + "codepoint": "U+5624", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5624", + "status": "exact_ids", + "ids": "⿰口婴", + "canonical_ids": "⿰口婴", + "expanded_ids": "⿰口⿱⿰⿻冂人⿻冂人女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘥", + "codepoint": "U+5625", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5625", + "status": "exact_ids", + "ids": "⿰口徙", + "canonical_ids": "⿰口徙", + "expanded_ids": "⿰口⿰彳⿱止止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "彳", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘦", + "codepoint": "U+5626", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5626", + "status": "exact_ids", + "ids": "⿱只要", + "canonical_ids": "⿱只要", + "expanded_ids": "⿱⿱口八⿱覀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "女", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘧", + "codepoint": "U+5627", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5627", + "status": "exact_ids", + "ids": "⿰口密", + "canonical_ids": "⿰口密", + "expanded_ids": "⿰口⿱⿱宀⿻心丿山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "宀", + "山", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘨", + "codepoint": "U+5628", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5628", + "status": "exact_ids", + "ids": "⿰口粛", + "canonical_ids": "⿰口粛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "粛" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘩", + "codepoint": "U+5629", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5629", + "status": "exact_ids", + "ids": "⿰口華", + "canonical_ids": "⿰口華", + "expanded_ids": "⿰口⿱艹𠦒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艹", + "𠦒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘪", + "codepoint": "U+562A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-562A", + "status": "exact_ids", + "ids": "⿰口買", + "canonical_ids": "⿰口買", + "expanded_ids": "⿰口⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "目", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘫", + "codepoint": "U+562B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-562B", + "status": "exact_ids", + "ids": "⿰口然", + "canonical_ids": "⿰口然", + "expanded_ids": "⿰口⿱⿰月⿻大丶灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "大", + "月", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘬", + "codepoint": "U+562C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-562C", + "status": "exact_ids", + "ids": "⿰口最", + "canonical_ids": "⿰口最", + "expanded_ids": "⿰口⿱曰⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "口", + "曰", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘭", + "codepoint": "U+562D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-562D", + "status": "exact_ids", + "ids": "⿰口彭", + "canonical_ids": "⿰口彭", + "expanded_ids": "⿰口⿰⿱十豆彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "彡", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘮", + "codepoint": "U+562E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-562E", + "status": "exact_ids", + "ids": "⿰口勞", + "canonical_ids": "⿰口勞", + "expanded_ids": "⿰口⿳⿰火火冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘯", + "codepoint": "U+562F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-562F", + "status": "exact_ids", + "ids": "⿰口肅", + "canonical_ids": "⿰口肅", + "expanded_ids": "⿰口⿻肀𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "肀", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘰", + "codepoint": "U+5630", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5630", + "status": "exact_ids", + "ids": "⿰口幾", + "canonical_ids": "⿰口幾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "幺" + ], + "unresolved_leaves": [ + "戍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘱", + "codepoint": "U+5631", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5631", + "status": "exact_ids", + "ids": "⿰口属", + "canonical_ids": "⿰口属", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "尸" + ], + "unresolved_leaves": [ + "禹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘲", + "codepoint": "U+5632", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5632", + "status": "exact_ids", + "ids": "⿰口朝", + "canonical_ids": "⿰口朝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "朝" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘳", + "codepoint": "U+5633", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5633", + "status": "exact_ids", + "ids": "⿰口貴", + "canonical_ids": "⿰口貴", + "expanded_ids": "⿰口⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘴", + "codepoint": "U+5634", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5634", + "status": "exact_ids", + "ids": "⿰口觜", + "canonical_ids": "⿰口觜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "匕", + "口", + "月", + "止" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘵", + "codepoint": "U+5635", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5635", + "status": "exact_ids", + "ids": "⿰口堯", + "canonical_ids": "⿰口堯", + "expanded_ids": "⿰口⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘶", + "codepoint": "U+5636", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5636", + "status": "exact_ids", + "ids": "⿰口斯", + "canonical_ids": "⿰口斯", + "expanded_ids": "⿰口⿰其斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "口", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘷", + "codepoint": "U+5637", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5637", + "status": "exact_ids", + "ids": "⿰口臯", + "canonical_ids": "⿰口臯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "臯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘸", + "codepoint": "U+5638", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5638", + "status": "exact_ids", + "ids": "⿰口無", + "canonical_ids": "⿰口無", + "expanded_ids": "⿰口無", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "無" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘹", + "codepoint": "U+5639", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5639", + "status": "exact_ids", + "ids": "⿰口尞", + "canonical_ids": "⿰口尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "小" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘺", + "codepoint": "U+563A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-563A", + "status": "exact_ids", + "ids": "⿰口喬", + "canonical_ids": "⿰口喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘻", + "codepoint": "U+563B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-563B", + "status": "exact_ids", + "ids": "⿰口喜", + "canonical_ids": "⿰口喜", + "expanded_ids": "⿰口⿱⿱十豆口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘼", + "codepoint": "U+563C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-563C", + "status": "exact_ids", + "ids": "⿱㽞𠮛", + "canonical_ids": "⿱㽞𠮛", + "expanded_ids": "⿱⿱⿰口口田⿱一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘽", + "codepoint": "U+563D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-563D", + "status": "exact_ids", + "ids": "⿰口單", + "canonical_ids": "⿰口單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘾", + "codepoint": "U+563E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-563E", + "status": "exact_ids", + "ids": "⿰口覃", + "canonical_ids": "⿰口覃", + "expanded_ids": "⿰口⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "日", + "襾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嘿", + "codepoint": "U+563F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-563F", + "status": "exact_ids", + "ids": "⿰口黑", + "canonical_ids": "⿰口黑", + "expanded_ids": "⿰口黑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噀", + "codepoint": "U+5640", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5640", + "status": "exact_ids", + "ids": "⿰口巽", + "canonical_ids": "⿰口巽", + "expanded_ids": "⿰口⿱⿰己己⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "己", + "廾", + "廿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噁", + "codepoint": "U+5641", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5641", + "status": "exact_ids", + "ids": "⿰口惡", + "canonical_ids": "⿰口惡", + "expanded_ids": "⿰口⿱亞心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亞", + "口", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噂", + "codepoint": "U+5642", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5642", + "status": "exact_ids", + "ids": "⿰口尊", + "canonical_ids": "⿰口尊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "口", + "寸" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噃", + "codepoint": "U+5643", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5643", + "status": "exact_ids", + "ids": "⿰口番", + "canonical_ids": "⿰口番", + "expanded_ids": "⿰口⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "口", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噄", + "codepoint": "U+5644", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5644", + "status": "exact_ids", + "ids": "⿰口絜", + "canonical_ids": "⿰口絜", + "expanded_ids": "⿰口⿱⿰丰刀⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "口", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噅", + "codepoint": "U+5645", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5645", + "status": "exact_ids", + "ids": "⿰口為", + "canonical_ids": "⿰口為", + "expanded_ids": "⿰口為", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "為" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噆", + "codepoint": "U+5646", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5646", + "status": "exact_ids", + "ids": "⿰口朁", + "canonical_ids": "⿰口朁", + "expanded_ids": "⿰口⿱⿰旡旡曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "旡", + "曰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噇", + "codepoint": "U+5647", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5647", + "status": "exact_ids", + "ids": "⿰口童", + "canonical_ids": "⿰口童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噈", + "codepoint": "U+5648", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5648", + "status": "exact_ids", + "ids": "⿰口就", + "canonical_ids": "⿰口就", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "尤" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噉", + "codepoint": "U+5649", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5649", + "status": "exact_ids", + "ids": "⿰口敢", + "canonical_ids": "⿰口敢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "敢" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噊", + "codepoint": "U+564A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-564A", + "status": "exact_ids", + "ids": "⿰口矞", + "canonical_ids": "⿰口矞", + "expanded_ids": "⿰口⿱矛⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噋", + "codepoint": "U+564B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-564B", + "status": "exact_ids", + "ids": "⿰口敦", + "canonical_ids": "⿰口敦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "攵" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噌", + "codepoint": "U+564C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-564C", + "status": "exact_ids", + "ids": "⿰口曽", + "canonical_ids": "⿰口曽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "曽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噍", + "codepoint": "U+564D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-564D", + "status": "exact_ids", + "ids": "⿰口焦", + "canonical_ids": "⿰口焦", + "expanded_ids": "⿰口⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "灬", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噎", + "codepoint": "U+564E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-564E", + "status": "exact_ids", + "ids": "⿰口壹", + "canonical_ids": "⿰口壹", + "expanded_ids": "⿰口⿳土冖豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "口", + "土", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噏", + "codepoint": "U+564F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-564F", + "status": "exact_ids", + "ids": "⿰口翕", + "canonical_ids": "⿰口翕", + "expanded_ids": "⿰口⿱⿱⿱人一口⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "人", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噐", + "codepoint": "U+5650", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5650", + "status": "exact_ids", + "ids": "⿲吕工吕", + "canonical_ids": "⿲吕工吕", + "expanded_ids": "⿲⿱口口工⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噑", + "codepoint": "U+5651", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5651", + "status": "exact_ids", + "ids": "⿰口皐", + "canonical_ids": "⿰口皐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "皐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噒", + "codepoint": "U+5652", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5652", + "status": "exact_ids", + "ids": "⿰口粦", + "canonical_ids": "⿰口粦", + "expanded_ids": "⿰口⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "口", + "夕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噓", + "codepoint": "U+5653", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5653", + "status": "exact_ids", + "ids": "⿰口虛", + "canonical_ids": "⿰口虛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "虛" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噔", + "codepoint": "U+5654", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5654", + "status": "exact_ids", + "ids": "⿰口登", + "canonical_ids": "⿰口登", + "expanded_ids": "⿰口⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "癶", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噕", + "codepoint": "U+5655", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5655", + "status": "exact_ids", + "ids": "⿱爲口", + "canonical_ids": "⿱爲口", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "爲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噖", + "codepoint": "U+5656", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5656", + "status": "exact_ids", + "ids": "⿰口琴", + "canonical_ids": "⿰口琴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "王" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噗", + "codepoint": "U+5657", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5657", + "status": "exact_ids", + "ids": "⿰口菐", + "canonical_ids": "⿰口菐", + "expanded_ids": "⿰口⿱业⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "儿", + "口", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噘", + "codepoint": "U+5658", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5658", + "status": "exact_ids", + "ids": "⿰口厥", + "canonical_ids": "⿰口厥", + "expanded_ids": "⿰口⿱厂⿰⿱䒑屮欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "厂", + "口", + "屮", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噙", + "codepoint": "U+5659", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5659", + "status": "exact_ids", + "ids": "⿰口禽", + "canonical_ids": "⿰口禽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "人", + "口", + "禸" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噚", + "codepoint": "U+565A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-565A", + "status": "exact_ids", + "ids": "⿰口尋", + "canonical_ids": "⿰口尋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "尋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噛", + "codepoint": "U+565B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-565B", + "status": "exact_ids", + "ids": "⿰口歯", + "canonical_ids": "⿰口歯", + "expanded_ids": "⿰口歯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "歯" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噜", + "codepoint": "U+565C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-565C", + "status": "exact_ids", + "ids": "⿰口鲁", + "canonical_ids": "⿰口鲁", + "expanded_ids": "⿰口⿱鱼日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "日", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噝", + "codepoint": "U+565D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-565D", + "status": "exact_ids", + "ids": "⿰口絲", + "canonical_ids": "⿰口絲", + "expanded_ids": "⿰口⿰⿻幺小⿻幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噞", + "codepoint": "U+565E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-565E", + "status": "exact_ids", + "ids": "⿰口僉", + "canonical_ids": "⿰口僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噟", + "codepoint": "U+565F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-565F", + "status": "exact_ids", + "ids": "⿱䧹口", + "canonical_ids": "⿱䧹口", + "expanded_ids": "⿱⿱广⿰亻隹口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "广", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噠", + "codepoint": "U+5660", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5660", + "status": "exact_ids", + "ids": "⿰口達", + "canonical_ids": "⿰口達", + "expanded_ids": "⿰口⿰辶⿱土羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "羊", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噡", + "codepoint": "U+5661", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5661", + "status": "exact_ids", + "ids": "⿰口詹", + "canonical_ids": "⿰口詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噢", + "codepoint": "U+5662", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5662", + "status": "exact_ids", + "ids": "⿰口奧", + "canonical_ids": "⿰口奧", + "expanded_ids": "⿰口⿱⿱宀⿱丿⿻木丷大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "口", + "大", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噣", + "codepoint": "U+5663", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5663", + "status": "exact_ids", + "ids": "⿰口蜀", + "canonical_ids": "⿰口蜀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "罒" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噤", + "codepoint": "U+5664", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5664", + "status": "exact_ids", + "ids": "⿰口禁", + "canonical_ids": "⿰口禁", + "expanded_ids": "⿰口⿱⿰木木⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "口", + "小", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噥", + "codepoint": "U+5665", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5665", + "status": "exact_ids", + "ids": "⿰口農", + "canonical_ids": "⿰口農", + "expanded_ids": "⿰口⿱曲辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "曲", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噦", + "codepoint": "U+5666", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5666", + "status": "exact_ids", + "ids": "⿰口歲", + "canonical_ids": "⿰口歲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "歲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噧", + "codepoint": "U+5667", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5667", + "status": "exact_ids", + "ids": "⿰口萬", + "canonical_ids": "⿰口萬", + "expanded_ids": "⿰口⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "田", + "禸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "器", + "codepoint": "U+5668", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5668", + "status": "exact_ids", + "ids": "⿲吕大吕", + "canonical_ids": "⿲吕大吕", + "expanded_ids": "⿲⿱口口大⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噩", + "codepoint": "U+5669", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5669", + "status": "exact_ids", + "ids": "⿻王㗊", + "canonical_ids": "⿻王㗊", + "expanded_ids": "⿻王⿰⿱口口⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噪", + "codepoint": "U+566A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-566A", + "status": "exact_ids", + "ids": "⿰口喿", + "canonical_ids": "⿰口喿", + "expanded_ids": "⿰口⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噫", + "codepoint": "U+566B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-566B", + "status": "exact_ids", + "ids": "⿰口意", + "canonical_ids": "⿰口意", + "expanded_ids": "⿰口⿱⿱立日心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "心", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噬", + "codepoint": "U+566C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-566C", + "status": "exact_ids", + "ids": "⿰口筮", + "canonical_ids": "⿰口筮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "口", + "工" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噭", + "codepoint": "U+566D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-566D", + "status": "exact_ids", + "ids": "⿰口敫", + "canonical_ids": "⿰口敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噮", + "codepoint": "U+566E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-566E", + "status": "exact_ids", + "ids": "⿰口睘", + "canonical_ids": "⿰口睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噯", + "codepoint": "U+566F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-566F", + "status": "exact_ids", + "ids": "⿰口愛", + "canonical_ids": "⿰口愛", + "expanded_ids": "⿰口⿳爫冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "口", + "夊", + "心", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噰", + "codepoint": "U+5670", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5670", + "status": "exact_ids", + "ids": "⿰口雍", + "canonical_ids": "⿰口雍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "雍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噱", + "codepoint": "U+5671", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5671", + "status": "exact_ids", + "ids": "⿰口豦", + "canonical_ids": "⿰口豦", + "expanded_ids": "⿰口⿱虍豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "虍", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噲", + "codepoint": "U+5672", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5672", + "status": "exact_ids", + "ids": "⿰口會", + "canonical_ids": "⿰口會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "曰" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噳", + "codepoint": "U+5673", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5673", + "status": "exact_ids", + "ids": "⿰口虞", + "canonical_ids": "⿰口虞", + "expanded_ids": "⿰口⿱虍⿱口⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "口", + "大", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噴", + "codepoint": "U+5674", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5674", + "status": "exact_ids", + "ids": "⿰口賁", + "canonical_ids": "⿰口賁", + "expanded_ids": "⿰口⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "口", + "廾", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噵", + "codepoint": "U+5675", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5675", + "status": "exact_ids", + "ids": "⿱道口", + "canonical_ids": "⿱道口", + "expanded_ids": "⿱⿰辶⿱䒑⿻目丶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "丶", + "口", + "目", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噶", + "codepoint": "U+5676", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5676", + "status": "exact_ids", + "ids": "⿰口葛", + "canonical_ids": "⿰口葛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "曰", + "艹" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噷", + "codepoint": "U+5677", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5677", + "status": "exact_ids", + "ids": "⿰口歆", + "canonical_ids": "⿰口歆", + "expanded_ids": "⿰口⿰⿱立日欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "日", + "欠", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噸", + "codepoint": "U+5678", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5678", + "status": "exact_ids", + "ids": "⿰口頓", + "canonical_ids": "⿰口頓", + "expanded_ids": "⿰口⿰屯⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "口", + "屯", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噹", + "codepoint": "U+5679", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5679", + "status": "exact_ids", + "ids": "⿰口當", + "canonical_ids": "⿰口當", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "小", + "田" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噺", + "codepoint": "U+567A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-567A", + "status": "exact_ids", + "ids": "⿰口新", + "canonical_ids": "⿰口新", + "expanded_ids": "⿰口⿰⿱立朩斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "斤", + "朩", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噻", + "codepoint": "U+567B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-567B", + "status": "exact_ids", + "ids": "⿰口塞", + "canonical_ids": "⿰口塞", + "expanded_ids": "⿰口⿱宀⿱其土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "口", + "土", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噼", + "codepoint": "U+567C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-567C", + "status": "exact_ids", + "ids": "⿰口辟", + "canonical_ids": "⿰口辟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噽", + "codepoint": "U+567D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-567D", + "status": "exact_ids", + "ids": "⿰喜丕", + "canonical_ids": "⿰喜丕", + "expanded_ids": "⿰⿱⿱十豆口⿱不一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不", + "十", + "口", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噾", + "codepoint": "U+567E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-567E", + "status": "exact_ids", + "ids": "⿰口窨", + "canonical_ids": "⿰口窨", + "expanded_ids": "⿰口⿱⿱宀八⿱立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "噿", + "codepoint": "U+567F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-567F", + "status": "exact_ids", + "ids": "⿰口翠", + "canonical_ids": "⿰口翠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "口" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚀", + "codepoint": "U+5680", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5680", + "status": "exact_ids", + "ids": "⿰口寧", + "canonical_ids": "⿰口寧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口" + ], + "unresolved_leaves": [ + "寍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚁", + "codepoint": "U+5681", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5681", + "status": "exact_ids", + "ids": "⿰口翟", + "canonical_ids": "⿰口翟", + "expanded_ids": "⿰口⿱⿰习习隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "口", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚂", + "codepoint": "U+5682", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5682", + "status": "exact_ids", + "ids": "⿰口監", + "canonical_ids": "⿰口監", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚃", + "codepoint": "U+5683", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5683", + "status": "exact_ids", + "ids": "⿰口遝", + "canonical_ids": "⿰口遝", + "expanded_ids": "⿰口⿰辶⿱罒氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "氺", + "罒", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚄", + "codepoint": "U+5684", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5684", + "status": "exact_ids", + "ids": "⿰口蒦", + "canonical_ids": "⿰口蒦", + "expanded_ids": "⿰口⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "口", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚅", + "codepoint": "U+5685", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5685", + "status": "exact_ids", + "ids": "⿰口需", + "canonical_ids": "⿰口需", + "expanded_ids": "⿰口⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚆", + "codepoint": "U+5686", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5686", + "status": "exact_ids", + "ids": "⿰口蒿", + "canonical_ids": "⿰口蒿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艹" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚇", + "codepoint": "U+5687", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5687", + "status": "exact_ids", + "ids": "⿰口赫", + "canonical_ids": "⿰口赫", + "expanded_ids": "⿰口⿰赤赤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "赤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚈", + "codepoint": "U+5688", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5688", + "status": "exact_ids", + "ids": "⿰口厭", + "canonical_ids": "⿰口厭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "口", + "大", + "月" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚉", + "codepoint": "U+5689", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5689", + "status": "exact_ids", + "ids": "⿰口對", + "canonical_ids": "⿰口對", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "口", + "寸" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚊", + "codepoint": "U+568A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-568A", + "status": "exact_ids", + "ids": "⿰口鼻", + "canonical_ids": "⿰口鼻", + "expanded_ids": "⿰口⿱⿻目丶⿱田丌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "丶", + "口", + "田", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚋", + "codepoint": "U+568B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-568B", + "status": "exact_ids", + "ids": "⿰口壽", + "canonical_ids": "⿰口壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚌", + "codepoint": "U+568C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-568C", + "status": "exact_ids", + "ids": "⿰口齊", + "canonical_ids": "⿰口齊", + "expanded_ids": "⿰口齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚍", + "codepoint": "U+568D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-568D", + "status": "exact_ids", + "ids": "⿰口盡", + "canonical_ids": "⿰口盡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "盡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚎", + "codepoint": "U+568E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-568E", + "status": "exact_ids", + "ids": "⿰口豪", + "canonical_ids": "⿰口豪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "豪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚏", + "codepoint": "U+568F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-568F", + "status": "exact_ids", + "ids": "⿰口疐", + "canonical_ids": "⿰口疐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "疐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚐", + "codepoint": "U+5690", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5690", + "status": "exact_ids", + "ids": "⿰口嘗", + "canonical_ids": "⿰口嘗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "口", + "小", + "日" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚑", + "codepoint": "U+5691", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5691", + "status": "exact_ids", + "ids": "⿰口熏", + "canonical_ids": "⿰口熏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "熏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚒", + "codepoint": "U+5692", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5692", + "status": "exact_ids", + "ids": "⿰口麼", + "canonical_ids": "⿰口麼", + "expanded_ids": "⿰口⿱⿱广⿰木木幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "幺", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚓", + "codepoint": "U+5693", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5693", + "status": "exact_ids", + "ids": "⿰口察", + "canonical_ids": "⿰口察", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "宀" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚔", + "codepoint": "U+5694", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5694", + "status": "exact_ids", + "ids": "⿰口𤴡", + "canonical_ids": "⿰口𤴡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "口" + ], + "unresolved_leaves": [ + "𤴛" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚕", + "codepoint": "U+5695", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5695", + "status": "exact_ids", + "ids": "⿰口魯", + "canonical_ids": "⿰口魯", + "expanded_ids": "⿰口⿱魚日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "日", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚖", + "codepoint": "U+5696", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5696", + "status": "exact_ids", + "ids": "⿰口慧", + "canonical_ids": "⿰口慧", + "expanded_ids": "⿰口⿱⿱⿰丰丰彐心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "口", + "彐", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚗", + "codepoint": "U+5697", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5697", + "status": "exact_ids", + "ids": "⿰口暴", + "canonical_ids": "⿰口暴", + "expanded_ids": "⿰口⿱日⿱⿱廿廾氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "廾", + "廿", + "日", + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚘", + "codepoint": "U+5698", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5698", + "status": "exact_ids", + "ids": "⿰口憂", + "canonical_ids": "⿰口憂", + "expanded_ids": "⿰口⿳⿻一⿻日丶冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "冖", + "口", + "夊", + "心", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 251, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚙", + "codepoint": "U+5699", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5699", + "status": "exact_ids", + "ids": "⿰口齒", + "canonical_ids": "⿰口齒", + "expanded_ids": "⿰口齒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚚", + "codepoint": "U+569A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-569A", + "status": "exact_ids", + "ids": "⿲吕臣吕", + "canonical_ids": "⿲吕臣吕", + "expanded_ids": "⿲⿱口口臣⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚛", + "codepoint": "U+569B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-569B", + "status": "exact_ids", + "ids": "⿰口樂", + "canonical_ids": "⿰口樂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "樂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚜", + "codepoint": "U+569C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-569C", + "status": "exact_ids", + "ids": "⿰口墨", + "canonical_ids": "⿰口墨", + "expanded_ids": "⿰口⿱黑土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚝", + "codepoint": "U+569D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-569D", + "status": "exact_ids", + "ids": "⿰口廣", + "canonical_ids": "⿰口廣", + "expanded_ids": "⿰口⿱广黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "广", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚞", + "codepoint": "U+569E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-569E", + "status": "exact_ids", + "ids": "⿱吉⿰吉吉", + "canonical_ids": "⿱吉⿰吉吉", + "expanded_ids": "⿱⿱士口⿰⿱士口⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚟", + "codepoint": "U+569F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-569F", + "status": "exact_ids", + "ids": "⿰口黎", + "canonical_ids": "⿰口黎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "黎" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚠", + "codepoint": "U+56A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56A0", + "status": "exact_ids", + "ids": "⿰口劉", + "canonical_ids": "⿰口劉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "口" + ], + "unresolved_leaves": [ + "𨥫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚡", + "codepoint": "U+56A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56A1", + "status": "exact_ids", + "ids": "⿰口鞋", + "canonical_ids": "⿰口鞋", + "expanded_ids": "⿰口⿰革⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚢", + "codepoint": "U+56A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56A2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚣", + "codepoint": "U+56A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56A3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚤", + "codepoint": "U+56A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56A4", + "status": "exact_ids", + "ids": "⿰口摩", + "canonical_ids": "⿰口摩", + "expanded_ids": "⿰口⿱⿱广⿰木木手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "广", + "手", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚥", + "codepoint": "U+56A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56A5", + "status": "exact_ids", + "ids": "⿰口燕", + "canonical_ids": "⿰口燕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "燕" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚦", + "codepoint": "U+56A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56A6", + "status": "exact_ids", + "ids": "⿰口歷", + "canonical_ids": "⿰口歷", + "expanded_ids": "⿰口⿱⿱厂⿰⿻丿木⿻丿木止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厂", + "口", + "木", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚧", + "codepoint": "U+56A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56A7", + "status": "exact_ids", + "ids": "⿰口盧", + "canonical_ids": "⿰口盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "皿" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚨", + "codepoint": "U+56A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56A8", + "status": "exact_ids", + "ids": "⿰口龍", + "canonical_ids": "⿰口龍", + "expanded_ids": "⿰口龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚩", + "codepoint": "U+56A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56A9", + "status": "exact_ids", + "ids": "⿰口縛", + "canonical_ids": "⿰口縛", + "expanded_ids": "⿰口⿰⿻幺小⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "寸", + "小", + "幺", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚪", + "codepoint": "U+56AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56AA", + "status": "exact_ids", + "ids": "⿰口閻", + "canonical_ids": "⿰口閻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "閻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚫", + "codepoint": "U+56AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56AB", + "status": "exact_ids", + "ids": "⿰口親", + "canonical_ids": "⿰口親", + "expanded_ids": "⿰口⿰⿱立朩⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "朩", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚬", + "codepoint": "U+56AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56AC", + "status": "exact_ids", + "ids": "⿰口頻", + "canonical_ids": "⿰口頻", + "expanded_ids": "⿰口⿰⿱止𣥂⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "口", + "止", + "目", + "𣥂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 266, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚭", + "codepoint": "U+56AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56AD", + "status": "exact_ids", + "ids": "⿰喜否", + "canonical_ids": "⿰喜否", + "expanded_ids": "⿰⿱⿱十豆口⿱不口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "十", + "口", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚮", + "codepoint": "U+56AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56AE", + "status": "exact_ids", + "ids": "⿱鄉向", + "canonical_ids": "⿱鄉向", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乡", + "艮", + "阝" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚯", + "codepoint": "U+56AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56AF", + "status": "exact_ids", + "ids": "⿰口霍", + "canonical_ids": "⿰口霍", + "expanded_ids": "⿰口⿱雨隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "隹", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚰", + "codepoint": "U+56B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56B0", + "status": "exact_ids", + "ids": "⿰口磨", + "canonical_ids": "⿰口磨", + "expanded_ids": "⿰口⿱⿱广⿰木木石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "广", + "木", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚱", + "codepoint": "U+56B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56B1", + "status": "exact_ids", + "ids": "⿰口戲", + "canonical_ids": "⿰口戲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "䖒", + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚲", + "codepoint": "U+56B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56B2", + "status": "exact_ids", + "ids": "⿰享單", + "canonical_ids": "⿰享單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "享", + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚳", + "codepoint": "U+56B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56B3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚴", + "codepoint": "U+56B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56B4", + "status": "exact_ids", + "ids": "⿱⿰口口𠪚", + "canonical_ids": "⿱⿰口口𠪚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "𠪚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚵", + "codepoint": "U+56B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56B5", + "status": "exact_ids", + "ids": "⿰口毚", + "canonical_ids": "⿰口毚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "毚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚶", + "codepoint": "U+56B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56B6", + "status": "exact_ids", + "ids": "⿰口嬰", + "canonical_ids": "⿰口嬰", + "expanded_ids": "⿰口⿱⿰⿱目八⿱目八女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "女", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚷", + "codepoint": "U+56B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56B7", + "status": "exact_ids", + "ids": "⿰口襄", + "canonical_ids": "⿰口襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚸", + "codepoint": "U+56B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56B8", + "status": "exact_ids", + "ids": "⿰口點", + "canonical_ids": "⿰口點", + "expanded_ids": "⿰口⿰黑⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚹", + "codepoint": "U+56B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56B9", + "status": "exact_ids", + "ids": "⿰口罅", + "canonical_ids": "⿰口罅", + "expanded_ids": "⿰口⿰缶⿱虍乎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乎", + "口", + "缶", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚺", + "codepoint": "U+56BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56BA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚻", + "codepoint": "U+56BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56BB", + "status": "exact_ids", + "ids": "⿲吕頁吕", + "canonical_ids": "⿲吕頁吕", + "expanded_ids": "⿲⿱口口⿱⿱一丿⿱目八⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 289, + "binary_error": null, + "reverse_collision_with": [ + "囂" + ] + }, + { + "character": "嚼", + "codepoint": "U+56BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56BC", + "status": "exact_ids", + "ids": "⿰口爵", + "canonical_ids": "⿰口爵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "爵" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚽", + "codepoint": "U+56BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56BD", + "status": "exact_ids", + "ids": "⿰口贅", + "canonical_ids": "⿰口贅", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "目" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚾", + "codepoint": "U+56BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56BE", + "status": "exact_ids", + "ids": "⿰口雚", + "canonical_ids": "⿰口雚", + "expanded_ids": "⿰口⿱艹⿱⿰口口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嚿", + "codepoint": "U+56BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56BF", + "status": "exact_ids", + "ids": "⿰口舊", + "canonical_ids": "⿰口舊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "舊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囀", + "codepoint": "U+56C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56C0", + "status": "exact_ids", + "ids": "⿰口轉", + "canonical_ids": "⿰口轉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "寸", + "車" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囁", + "codepoint": "U+56C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56C1", + "status": "exact_ids", + "ids": "⿰口聶", + "canonical_ids": "⿰口聶", + "expanded_ids": "⿰口⿱耳⿰耳耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囂", + "codepoint": "U+56C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56C2", + "status": "exact_ids", + "ids": "⿲吕頁吕", + "canonical_ids": "⿲吕頁吕", + "expanded_ids": "⿲⿱口口⿱⿱一丿⿱目八⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 289, + "binary_error": null, + "reverse_collision_with": [ + "嚻" + ] + }, + { + "character": "囃", + "codepoint": "U+56C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56C3", + "status": "exact_ids", + "ids": "⿰口雜", + "canonical_ids": "⿰口雜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "雜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囄", + "codepoint": "U+56C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56C4", + "status": "exact_ids", + "ids": "⿰口離", + "canonical_ids": "⿰口離", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "口", + "禸", + "隹" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囅", + "codepoint": "U+56C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56C5", + "status": "exact_ids", + "ids": "⿰單展", + "canonical_ids": "⿰單展", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "單", + "展" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囆", + "codepoint": "U+56C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56C6", + "status": "exact_ids", + "ids": "⿰口蠆", + "canonical_ids": "⿰口蠆", + "expanded_ids": "⿰口⿱⿱艹⿻田禸虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "田", + "禸", + "艹", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囇", + "codepoint": "U+56C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56C7", + "status": "exact_ids", + "ids": "⿰口麗", + "canonical_ids": "⿰口麗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "鹿" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囈", + "codepoint": "U+56C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56C8", + "status": "exact_ids", + "ids": "⿰口藝", + "canonical_ids": "⿰口藝", + "expanded_ids": "⿰口⿱⿱艹⿰⿱⿱土儿土⿻九丶⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "二", + "儿", + "厶", + "口", + "土", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 338, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囉", + "codepoint": "U+56C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56C9", + "status": "exact_ids", + "ids": "⿰口羅", + "canonical_ids": "⿰口羅", + "expanded_ids": "⿰口⿱罒⿰⿻幺小隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "小", + "幺", + "罒", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囊", + "codepoint": "U+56CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56CA", + "status": "leaf_self_fallback", + "ids": "囊", + "canonical_ids": "囊", + "expanded_ids": "囊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "囊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囋", + "codepoint": "U+56CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56CB", + "status": "exact_ids", + "ids": "⿰口贊", + "canonical_ids": "⿰口贊", + "expanded_ids": "⿰口⿱⿰⿱牛儿⿱牛儿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "牛", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囌", + "codepoint": "U+56CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56CC", + "status": "exact_ids", + "ids": "⿰口蘇", + "canonical_ids": "⿰口蘇", + "expanded_ids": "⿰口⿱艹⿰魚⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "木", + "艹", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囍", + "codepoint": "U+56CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56CD", + "status": "exact_ids", + "ids": "⿰喜喜", + "canonical_ids": "⿰喜喜", + "expanded_ids": "⿰⿱⿱十豆口⿱⿱十豆口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囎", + "codepoint": "U+56CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56CE", + "status": "exact_ids", + "ids": "⿰口贈", + "canonical_ids": "⿰口贈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "目" + ], + "unresolved_leaves": [ + "曽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囏", + "codepoint": "U+56CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56CF", + "status": "exact_ids", + "ids": "⿰堇喜", + "canonical_ids": "⿰堇喜", + "expanded_ids": "⿰堇⿱⿱十豆口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "堇", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囐", + "codepoint": "U+56D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56D0", + "status": "exact_ids", + "ids": "⿰口獻", + "canonical_ids": "⿰口獻", + "expanded_ids": "⿰口⿰⿱虍鬲⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "大", + "虍", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囑", + "codepoint": "U+56D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56D1", + "status": "exact_ids", + "ids": "⿰口屬", + "canonical_ids": "⿰口屬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "屬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囒", + "codepoint": "U+56D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56D2", + "status": "exact_ids", + "ids": "⿰口蘭", + "canonical_ids": "⿰口蘭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艹" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囓", + "codepoint": "U+56D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56D3", + "status": "exact_ids", + "ids": "⿰口齧", + "canonical_ids": "⿰口齧", + "expanded_ids": "⿰口⿱⿰丰刀齒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "口", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囔", + "codepoint": "U+56D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56D4", + "status": "exact_ids", + "ids": "⿰口囊", + "canonical_ids": "⿰口囊", + "expanded_ids": "⿰口囊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "囊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囕", + "codepoint": "U+56D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56D5", + "status": "exact_ids", + "ids": "⿰口覽", + "canonical_ids": "⿰口覽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "覽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囖", + "codepoint": "U+56D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56D6", + "status": "exact_ids", + "ids": "⿰口籮", + "canonical_ids": "⿰口籮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "小", + "幺", + "罒", + "隹" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囗", + "codepoint": "U+56D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56D7", + "status": "leaf_self_fallback", + "ids": "囗", + "canonical_ids": "囗", + "expanded_ids": "囗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "囗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囘", + "codepoint": "U+56D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56D8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囙", + "codepoint": "U+56D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56D9", + "status": "leaf_self_fallback", + "ids": "囙", + "canonical_ids": "囙", + "expanded_ids": "囙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "囙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囚", + "codepoint": "U+56DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56DA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "四", + "codepoint": "U+56DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56DB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囜", + "codepoint": "U+56DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56DC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囝", + "codepoint": "U+56DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56DD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "回", + "codepoint": "U+56DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56DE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囟", + "codepoint": "U+56DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56DF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "因", + "codepoint": "U+56E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56E0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囡", + "codepoint": "U+56E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56E1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "团", + "codepoint": "U+56E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56E2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "団", + "codepoint": "U+56E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56E3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囤", + "codepoint": "U+56E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56E4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囥", + "codepoint": "U+56E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56E5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囦", + "codepoint": "U+56E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56E6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囧", + "codepoint": "U+56E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56E7", + "status": "leaf_self_fallback", + "ids": "囧", + "canonical_ids": "囧", + "expanded_ids": "囧", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "囧" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囨", + "codepoint": "U+56E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56E8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囩", + "codepoint": "U+56E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56E9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囪", + "codepoint": "U+56EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56EA", + "status": "leaf_self_fallback", + "ids": "囪", + "canonical_ids": "囪", + "expanded_ids": "囪", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "囪" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囫", + "codepoint": "U+56EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56EB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囬", + "codepoint": "U+56EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56EC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "园", + "codepoint": "U+56ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56ED", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囮", + "codepoint": "U+56EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56EE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囯", + "codepoint": "U+56EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56EF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "困", + "codepoint": "U+56F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56F0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囱", + "codepoint": "U+56F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56F1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囲", + "codepoint": "U+56F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56F2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "図", + "codepoint": "U+56F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56F3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "围", + "codepoint": "U+56F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56F4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囵", + "codepoint": "U+56F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56F5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囶", + "codepoint": "U+56F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56F6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囷", + "codepoint": "U+56F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56F7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囸", + "codepoint": "U+56F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56F8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囹", + "codepoint": "U+56F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56F9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "固", + "codepoint": "U+56FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56FA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囻", + "codepoint": "U+56FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56FB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囼", + "codepoint": "U+56FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56FC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "国", + "codepoint": "U+56FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56FD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "图", + "codepoint": "U+56FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56FE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "囿", + "codepoint": "U+56FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-56FF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圀", + "codepoint": "U+5700", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5700", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圁", + "codepoint": "U+5701", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5701", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圂", + "codepoint": "U+5702", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5702", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圃", + "codepoint": "U+5703", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5703", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圄", + "codepoint": "U+5704", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5704", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圅", + "codepoint": "U+5705", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5705", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圆", + "codepoint": "U+5706", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5706", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圇", + "codepoint": "U+5707", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5707", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圈", + "codepoint": "U+5708", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5708", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圉", + "codepoint": "U+5709", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5709", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圊", + "codepoint": "U+570A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-570A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "國", + "codepoint": "U+570B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-570B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圌", + "codepoint": "U+570C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-570C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圍", + "codepoint": "U+570D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-570D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圎", + "codepoint": "U+570E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-570E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圏", + "codepoint": "U+570F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-570F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圐", + "codepoint": "U+5710", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5710", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圑", + "codepoint": "U+5711", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5711", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "園", + "codepoint": "U+5712", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5712", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圓", + "codepoint": "U+5713", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5713", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圔", + "codepoint": "U+5714", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5714", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圕", + "codepoint": "U+5715", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5715", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圖", + "codepoint": "U+5716", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5716", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圗", + "codepoint": "U+5717", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5717", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "團", + "codepoint": "U+5718", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5718", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圙", + "codepoint": "U+5719", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5719", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圚", + "codepoint": "U+571A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-571A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圛", + "codepoint": "U+571B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-571B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圜", + "codepoint": "U+571C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-571C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圝", + "codepoint": "U+571D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-571D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圞", + "codepoint": "U+571E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-571E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "土", + "codepoint": "U+571F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-571F", + "status": "leaf_self_fallback", + "ids": "土", + "canonical_ids": "土", + "expanded_ids": "土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圠", + "codepoint": "U+5720", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5720", + "status": "exact_ids", + "ids": "⿰土乚", + "canonical_ids": "⿰土乚", + "expanded_ids": "⿰土乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圡", + "codepoint": "U+5721", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5721", + "status": "exact_ids", + "ids": "⿻土丶", + "canonical_ids": "⿻土丶", + "expanded_ids": "⿻土丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圢", + "codepoint": "U+5722", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5722", + "status": "exact_ids", + "ids": "⿰土丁", + "canonical_ids": "⿰土丁", + "expanded_ids": "⿰土⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圣", + "codepoint": "U+5723", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5723", + "status": "exact_ids", + "ids": "⿱又土", + "canonical_ids": "⿱又土", + "expanded_ids": "⿱又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圤", + "codepoint": "U+5724", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5724", + "status": "exact_ids", + "ids": "⿰土卜", + "canonical_ids": "⿰土卜", + "expanded_ids": "⿰土卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圥", + "codepoint": "U+5725", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5725", + "status": "exact_ids", + "ids": "⿱土儿", + "canonical_ids": "⿱土儿", + "expanded_ids": "⿱土儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圦", + "codepoint": "U+5726", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5726", + "status": "exact_ids", + "ids": "⿰土入", + "canonical_ids": "⿰土入", + "expanded_ids": "⿰土入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圧", + "codepoint": "U+5727", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5727", + "status": "exact_ids", + "ids": "⿱厂土", + "canonical_ids": "⿱厂土", + "expanded_ids": "⿱厂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "在", + "codepoint": "U+5728", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5728", + "status": "exact_ids", + "ids": "⿱才土", + "canonical_ids": "⿱才土", + "expanded_ids": "⿱才土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "才" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圩", + "codepoint": "U+5729", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5729", + "status": "exact_ids", + "ids": "⿰土于", + "canonical_ids": "⿰土于", + "expanded_ids": "⿰土⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圪", + "codepoint": "U+572A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-572A", + "status": "exact_ids", + "ids": "⿰土乞", + "canonical_ids": "⿰土乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圫", + "codepoint": "U+572B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-572B", + "status": "exact_ids", + "ids": "⿰土乇", + "canonical_ids": "⿰土乇", + "expanded_ids": "⿰土⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圬", + "codepoint": "U+572C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-572C", + "status": "exact_ids", + "ids": "⿰土亏", + "canonical_ids": "⿰土亏", + "expanded_ids": "⿰土⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圭", + "codepoint": "U+572D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-572D", + "status": "exact_ids", + "ids": "⿱土土", + "canonical_ids": "⿱土土", + "expanded_ids": "⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圮", + "codepoint": "U+572E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-572E", + "status": "exact_ids", + "ids": "⿰土己", + "canonical_ids": "⿰土己", + "expanded_ids": "⿰土己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "己" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圯", + "codepoint": "U+572F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-572F", + "status": "exact_ids", + "ids": "⿰土巳", + "canonical_ids": "⿰土巳", + "expanded_ids": "⿰土巳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "巳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "地", + "codepoint": "U+5730", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5730", + "status": "exact_ids", + "ids": "⿰土也", + "canonical_ids": "⿰土也", + "expanded_ids": "⿰土⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圱", + "codepoint": "U+5731", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5731", + "status": "exact_ids", + "ids": "⿰干土", + "canonical_ids": "⿰干土", + "expanded_ids": "⿰⿱一十土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圲", + "codepoint": "U+5732", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5732", + "status": "exact_ids", + "ids": "⿰土千", + "canonical_ids": "⿰土千", + "expanded_ids": "⿰土⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圳", + "codepoint": "U+5733", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5733", + "status": "exact_ids", + "ids": "⿰土川", + "canonical_ids": "⿰土川", + "expanded_ids": "⿰土川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "川" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圴", + "codepoint": "U+5734", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5734", + "status": "exact_ids", + "ids": "⿰土勺", + "canonical_ids": "⿰土勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圵", + "codepoint": "U+5735", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5735", + "status": "exact_ids", + "ids": "⿰土上", + "canonical_ids": "⿰土上", + "expanded_ids": "⿰土上", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圶", + "codepoint": "U+5736", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5736", + "status": "exact_ids", + "ids": "⿱大土", + "canonical_ids": "⿱大土", + "expanded_ids": "⿱大土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圷", + "codepoint": "U+5737", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5737", + "status": "exact_ids", + "ids": "⿰土下", + "canonical_ids": "⿰土下", + "expanded_ids": "⿰土⿱一卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "卜", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圸", + "codepoint": "U+5738", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5738", + "status": "exact_ids", + "ids": "⿰土山", + "canonical_ids": "⿰土山", + "expanded_ids": "⿰土山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圹", + "codepoint": "U+5739", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5739", + "status": "exact_ids", + "ids": "⿰土广", + "canonical_ids": "⿰土广", + "expanded_ids": "⿰土广", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "场", + "codepoint": "U+573A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-573A", + "status": "exact_ids", + "ids": "⿰土𠃓", + "canonical_ids": "⿰土𠃓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "𠃓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圻", + "codepoint": "U+573B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-573B", + "status": "exact_ids", + "ids": "⿰土斤", + "canonical_ids": "⿰土斤", + "expanded_ids": "⿰土斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圼", + "codepoint": "U+573C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-573C", + "status": "exact_ids", + "ids": "⿱日土", + "canonical_ids": "⿱日土", + "expanded_ids": "⿱日土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圽", + "codepoint": "U+573D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-573D", + "status": "exact_ids", + "ids": "⿰土勿", + "canonical_ids": "⿰土勿", + "expanded_ids": "⿰土勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圾", + "codepoint": "U+573E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-573E", + "status": "exact_ids", + "ids": "⿰土及", + "canonical_ids": "⿰土及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "土" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "圿", + "codepoint": "U+573F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-573F", + "status": "exact_ids", + "ids": "⿰土介", + "canonical_ids": "⿰土介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "址", + "codepoint": "U+5740", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5740", + "status": "exact_ids", + "ids": "⿰土止", + "canonical_ids": "⿰土止", + "expanded_ids": "⿰土止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坁", + "codepoint": "U+5741", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5741", + "status": "exact_ids", + "ids": "⿰土氏", + "canonical_ids": "⿰土氏", + "expanded_ids": "⿰土氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坂", + "codepoint": "U+5742", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5742", + "status": "exact_ids", + "ids": "⿰土反", + "canonical_ids": "⿰土反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坃", + "codepoint": "U+5743", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5743", + "status": "exact_ids", + "ids": "⿰土元", + "canonical_ids": "⿰土元", + "expanded_ids": "⿰土⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坄", + "codepoint": "U+5744", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5744", + "status": "exact_ids", + "ids": "⿰土殳", + "canonical_ids": "⿰土殳", + "expanded_ids": "⿰土⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坅", + "codepoint": "U+5745", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5745", + "status": "exact_ids", + "ids": "⿰土今", + "canonical_ids": "⿰土今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "土" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坆", + "codepoint": "U+5746", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5746", + "status": "exact_ids", + "ids": "⿰土攵", + "canonical_ids": "⿰土攵", + "expanded_ids": "⿰土攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "均", + "codepoint": "U+5747", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5747", + "status": "exact_ids", + "ids": "⿰土匀", + "canonical_ids": "⿰土匀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "匀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坈", + "codepoint": "U+5748", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5748", + "status": "exact_ids", + "ids": "⿰土冗", + "canonical_ids": "⿰土冗", + "expanded_ids": "⿰土⿱冖几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "几", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坉", + "codepoint": "U+5749", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5749", + "status": "exact_ids", + "ids": "⿰土屯", + "canonical_ids": "⿰土屯", + "expanded_ids": "⿰土屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "屯" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坊", + "codepoint": "U+574A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-574A", + "status": "exact_ids", + "ids": "⿰土方", + "canonical_ids": "⿰土方", + "expanded_ids": "⿰土方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坋", + "codepoint": "U+574B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-574B", + "status": "exact_ids", + "ids": "⿰土分", + "canonical_ids": "⿰土分", + "expanded_ids": "⿰土⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坌", + "codepoint": "U+574C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-574C", + "status": "exact_ids", + "ids": "⿱分土", + "canonical_ids": "⿱分土", + "expanded_ids": "⿱⿱八刀土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坍", + "codepoint": "U+574D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-574D", + "status": "exact_ids", + "ids": "⿰土丹", + "canonical_ids": "⿰土丹", + "expanded_ids": "⿰土丹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丹", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坎", + "codepoint": "U+574E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-574E", + "status": "exact_ids", + "ids": "⿰土欠", + "canonical_ids": "⿰土欠", + "expanded_ids": "⿰土欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坏", + "codepoint": "U+574F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-574F", + "status": "exact_ids", + "ids": "⿰土不", + "canonical_ids": "⿰土不", + "expanded_ids": "⿰土不", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坐", + "codepoint": "U+5750", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5750", + "status": "exact_ids", + "ids": "⿱⿰人人土", + "canonical_ids": "⿱⿰人人土", + "expanded_ids": "⿱⿰人人土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坑", + "codepoint": "U+5751", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5751", + "status": "exact_ids", + "ids": "⿰土亢", + "canonical_ids": "⿰土亢", + "expanded_ids": "⿰土⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坒", + "codepoint": "U+5752", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5752", + "status": "exact_ids", + "ids": "⿱比土", + "canonical_ids": "⿱比土", + "expanded_ids": "⿱⿰匕匕土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坓", + "codepoint": "U+5753", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5753", + "status": "exact_ids", + "ids": "⿱井土", + "canonical_ids": "⿱井土", + "expanded_ids": "⿱井土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "井", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坔", + "codepoint": "U+5754", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5754", + "status": "exact_ids", + "ids": "⿱水土", + "canonical_ids": "⿱水土", + "expanded_ids": "⿱水土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坕", + "codepoint": "U+5755", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5755", + "status": "exact_ids", + "ids": "⿱爪土", + "canonical_ids": "⿱爪土", + "expanded_ids": "⿱爪土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "爪" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坖", + "codepoint": "U+5756", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5756", + "status": "exact_ids", + "ids": "⿱元土", + "canonical_ids": "⿱元土", + "expanded_ids": "⿱⿱一⿱一儿土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "块", + "codepoint": "U+5757", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5757", + "status": "exact_ids", + "ids": "⿰土夬", + "canonical_ids": "⿰土夬", + "expanded_ids": "⿰土⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "土", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坘", + "codepoint": "U+5758", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5758", + "status": "exact_ids", + "ids": "⿰土互", + "canonical_ids": "⿰土互", + "expanded_ids": "⿰土⿱一彑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "土", + "彑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坙", + "codepoint": "U+5759", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5759", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坚", + "codepoint": "U+575A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-575A", + "status": "exact_ids", + "ids": "⿱収土", + "canonical_ids": "⿱収土", + "expanded_ids": "⿱⿰⿰丨丨又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "又", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坛", + "codepoint": "U+575B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-575B", + "status": "exact_ids", + "ids": "⿰土云", + "canonical_ids": "⿰土云", + "expanded_ids": "⿰土⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坜", + "codepoint": "U+575C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-575C", + "status": "exact_ids", + "ids": "⿰土历", + "canonical_ids": "⿰土历", + "expanded_ids": "⿰土⿱厂力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "厂", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坝", + "codepoint": "U+575D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-575D", + "status": "exact_ids", + "ids": "⿰土贝", + "canonical_ids": "⿰土贝", + "expanded_ids": "⿰土⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坞", + "codepoint": "U+575E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-575E", + "status": "exact_ids", + "ids": "⿰土乌", + "canonical_ids": "⿰土乌", + "expanded_ids": "⿰土乌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乌", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坟", + "codepoint": "U+575F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-575F", + "status": "exact_ids", + "ids": "⿰土文", + "canonical_ids": "⿰土文", + "expanded_ids": "⿰土文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "文" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坠", + "codepoint": "U+5760", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5760", + "status": "exact_ids", + "ids": "⿱队土", + "canonical_ids": "⿱队土", + "expanded_ids": "⿱⿰阝人土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "土", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坡", + "codepoint": "U+5761", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5761", + "status": "exact_ids", + "ids": "⿰土皮", + "canonical_ids": "⿰土皮", + "expanded_ids": "⿰土皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坢", + "codepoint": "U+5762", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5762", + "status": "exact_ids", + "ids": "⿰土半", + "canonical_ids": "⿰土半", + "expanded_ids": "⿰土半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坣", + "codepoint": "U+5763", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5763", + "status": "exact_ids", + "ids": "⿳小冖土", + "canonical_ids": "⿳小冖土", + "expanded_ids": "⿳小冖土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "土", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坤", + "codepoint": "U+5764", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5764", + "status": "exact_ids", + "ids": "⿰土申", + "canonical_ids": "⿰土申", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坥", + "codepoint": "U+5765", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5765", + "status": "exact_ids", + "ids": "⿰土且", + "canonical_ids": "⿰土且", + "expanded_ids": "⿰土且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坦", + "codepoint": "U+5766", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5766", + "status": "exact_ids", + "ids": "⿰土旦", + "canonical_ids": "⿰土旦", + "expanded_ids": "⿰土⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坧", + "codepoint": "U+5767", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5767", + "status": "exact_ids", + "ids": "⿰土石", + "canonical_ids": "⿰土石", + "expanded_ids": "⿰土石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坨", + "codepoint": "U+5768", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5768", + "status": "exact_ids", + "ids": "⿰土它", + "canonical_ids": "⿰土它", + "expanded_ids": "⿰土⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "土", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坩", + "codepoint": "U+5769", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5769", + "status": "exact_ids", + "ids": "⿰土甘", + "canonical_ids": "⿰土甘", + "expanded_ids": "⿰土甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坪", + "codepoint": "U+576A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-576A", + "status": "exact_ids", + "ids": "⿰土平", + "canonical_ids": "⿰土平", + "expanded_ids": "⿰土⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "十", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坫", + "codepoint": "U+576B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-576B", + "status": "exact_ids", + "ids": "⿰土占", + "canonical_ids": "⿰土占", + "expanded_ids": "⿰土⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坬", + "codepoint": "U+576C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-576C", + "status": "exact_ids", + "ids": "⿰土瓜", + "canonical_ids": "⿰土瓜", + "expanded_ids": "⿰土瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "瓜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坭", + "codepoint": "U+576D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-576D", + "status": "exact_ids", + "ids": "⿰土尼", + "canonical_ids": "⿰土尼", + "expanded_ids": "⿰土⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "土", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坮", + "codepoint": "U+576E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-576E", + "status": "exact_ids", + "ids": "⿰土台", + "canonical_ids": "⿰土台", + "expanded_ids": "⿰土⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坯", + "codepoint": "U+576F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-576F", + "status": "exact_ids", + "ids": "⿰土丕", + "canonical_ids": "⿰土丕", + "expanded_ids": "⿰土⿱不一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坰", + "codepoint": "U+5770", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5770", + "status": "exact_ids", + "ids": "⿰土冋", + "canonical_ids": "⿰土冋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坱", + "codepoint": "U+5771", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5771", + "status": "exact_ids", + "ids": "⿰土央", + "canonical_ids": "⿰土央", + "expanded_ids": "⿰土⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "土", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坲", + "codepoint": "U+5772", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5772", + "status": "exact_ids", + "ids": "⿰土弗", + "canonical_ids": "⿰土弗", + "expanded_ids": "⿰土⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "土", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坳", + "codepoint": "U+5773", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5773", + "status": "exact_ids", + "ids": "⿰土幼", + "canonical_ids": "⿰土幼", + "expanded_ids": "⿰土⿰幺力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "土", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坴", + "codepoint": "U+5774", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5774", + "status": "exact_ids", + "ids": "⿱圥土", + "canonical_ids": "⿱圥土", + "expanded_ids": "⿱⿱土儿土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坵", + "codepoint": "U+5775", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5775", + "status": "exact_ids", + "ids": "⿰土丘", + "canonical_ids": "⿰土丘", + "expanded_ids": "⿰土丘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坶", + "codepoint": "U+5776", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5776", + "status": "exact_ids", + "ids": "⿰土母", + "canonical_ids": "⿰土母", + "expanded_ids": "⿰土母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坷", + "codepoint": "U+5777", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5777", + "status": "exact_ids", + "ids": "⿰土可", + "canonical_ids": "⿰土可", + "expanded_ids": "⿰土⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坸", + "codepoint": "U+5778", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5778", + "status": "exact_ids", + "ids": "⿰土句", + "canonical_ids": "⿰土句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坹", + "codepoint": "U+5779", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5779", + "status": "exact_ids", + "ids": "⿰土穴", + "canonical_ids": "⿰土穴", + "expanded_ids": "⿰土⿱宀八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "土", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坺", + "codepoint": "U+577A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-577A", + "status": "exact_ids", + "ids": "⿰土犮", + "canonical_ids": "⿰土犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坻", + "codepoint": "U+577B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-577B", + "status": "exact_ids", + "ids": "⿰土氐", + "canonical_ids": "⿰土氐", + "expanded_ids": "⿰土⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "土", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坼", + "codepoint": "U+577C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-577C", + "status": "exact_ids", + "ids": "⿰土斥", + "canonical_ids": "⿰土斥", + "expanded_ids": "⿰土⿻斤丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "土", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坽", + "codepoint": "U+577D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-577D", + "status": "exact_ids", + "ids": "⿰土令", + "canonical_ids": "⿰土令", + "expanded_ids": "⿰土⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "土", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坾", + "codepoint": "U+577E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-577E", + "status": "exact_ids", + "ids": "⿰土宁", + "canonical_ids": "⿰土宁", + "expanded_ids": "⿰土⿱宀⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "土", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "坿", + "codepoint": "U+577F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-577F", + "status": "exact_ids", + "ids": "⿰土付", + "canonical_ids": "⿰土付", + "expanded_ids": "⿰土⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "土", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垀", + "codepoint": "U+5780", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5780", + "status": "exact_ids", + "ids": "⿰土乎", + "canonical_ids": "⿰土乎", + "expanded_ids": "⿰土乎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乎", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垁", + "codepoint": "U+5781", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5781", + "status": "exact_ids", + "ids": "⿰土矢", + "canonical_ids": "⿰土矢", + "expanded_ids": "⿰土⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "土", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垂", + "codepoint": "U+5782", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5782", + "status": "leaf_self_fallback", + "ids": "垂", + "canonical_ids": "垂", + "expanded_ids": "垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "垂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垃", + "codepoint": "U+5783", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5783", + "status": "exact_ids", + "ids": "⿰土立", + "canonical_ids": "⿰土立", + "expanded_ids": "⿰土立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垄", + "codepoint": "U+5784", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5784", + "status": "exact_ids", + "ids": "⿱龙土", + "canonical_ids": "⿱龙土", + "expanded_ids": "⿱龙土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垅", + "codepoint": "U+5785", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5785", + "status": "exact_ids", + "ids": "⿰土龙", + "canonical_ids": "⿰土龙", + "expanded_ids": "⿰土龙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垆", + "codepoint": "U+5786", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5786", + "status": "exact_ids", + "ids": "⿰土卢", + "canonical_ids": "⿰土卢", + "expanded_ids": "⿰土⿱卜尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "土", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垇", + "codepoint": "U+5787", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5787", + "status": "exact_ids", + "ids": "⿰土凹", + "canonical_ids": "⿰土凹", + "expanded_ids": "⿰土凹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凹", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垈", + "codepoint": "U+5788", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5788", + "status": "exact_ids", + "ids": "⿱代土", + "canonical_ids": "⿱代土", + "expanded_ids": "⿱⿰亻弋土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "土", + "弋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垉", + "codepoint": "U+5789", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5789", + "status": "exact_ids", + "ids": "⿰土包", + "canonical_ids": "⿰土包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垊", + "codepoint": "U+578A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-578A", + "status": "exact_ids", + "ids": "⿰土民", + "canonical_ids": "⿰土民", + "expanded_ids": "⿰土民", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "民" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "型", + "codepoint": "U+578B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-578B", + "status": "exact_ids", + "ids": "⿱刑土", + "canonical_ids": "⿱刑土", + "expanded_ids": "⿱⿰⿱一廾刂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "土", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垌", + "codepoint": "U+578C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-578C", + "status": "exact_ids", + "ids": "⿰土同", + "canonical_ids": "⿰土同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垍", + "codepoint": "U+578D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-578D", + "status": "exact_ids", + "ids": "⿰土自", + "canonical_ids": "⿰土自", + "expanded_ids": "⿰土⿻目丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "土", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垎", + "codepoint": "U+578E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-578E", + "status": "exact_ids", + "ids": "⿰土各", + "canonical_ids": "⿰土各", + "expanded_ids": "⿰土⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垏", + "codepoint": "U+578F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-578F", + "status": "exact_ids", + "ids": "⿰土聿", + "canonical_ids": "⿰土聿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垐", + "codepoint": "U+5790", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5790", + "status": "exact_ids", + "ids": "⿱次土", + "canonical_ids": "⿱次土", + "expanded_ids": "⿱⿰冫欠土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "土", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垑", + "codepoint": "U+5791", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5791", + "status": "exact_ids", + "ids": "⿰土多", + "canonical_ids": "⿰土多", + "expanded_ids": "⿰土⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垒", + "codepoint": "U+5792", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5792", + "status": "exact_ids", + "ids": "⿱厽土", + "canonical_ids": "⿱厽土", + "expanded_ids": "⿱⿱厶⿰厶厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垓", + "codepoint": "U+5793", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5793", + "status": "exact_ids", + "ids": "⿰土亥", + "canonical_ids": "⿰土亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垔", + "codepoint": "U+5794", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5794", + "status": "exact_ids", + "ids": "⿱覀土", + "canonical_ids": "⿱覀土", + "expanded_ids": "⿱覀土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垕", + "codepoint": "U+5795", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5795", + "status": "exact_ids", + "ids": "⿱后土", + "canonical_ids": "⿱后土", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "后" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垖", + "codepoint": "U+5796", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5796", + "status": "exact_ids", + "ids": "⿰土𠂤", + "canonical_ids": "⿰土𠂤", + "expanded_ids": "⿰土⿱丿㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "丿", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垗", + "codepoint": "U+5797", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5797", + "status": "exact_ids", + "ids": "⿰土兆", + "canonical_ids": "⿰土兆", + "expanded_ids": "⿰土兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垘", + "codepoint": "U+5798", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5798", + "status": "exact_ids", + "ids": "⿰土伏", + "canonical_ids": "⿰土伏", + "expanded_ids": "⿰土⿰亻⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亻", + "土", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垙", + "codepoint": "U+5799", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5799", + "status": "exact_ids", + "ids": "⿰土光", + "canonical_ids": "⿰土光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垚", + "codepoint": "U+579A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-579A", + "status": "exact_ids", + "ids": "⿱土⿰土土", + "canonical_ids": "⿱土⿰土土", + "expanded_ids": "⿱土⿰土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垛", + "codepoint": "U+579B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-579B", + "status": "exact_ids", + "ids": "⿰土朵", + "canonical_ids": "⿰土朵", + "expanded_ids": "⿰土⿱几木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垜", + "codepoint": "U+579C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-579C", + "status": "exact_ids", + "ids": "⿰土朶", + "canonical_ids": "⿰土朶", + "expanded_ids": "⿰土⿱乃木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垝", + "codepoint": "U+579D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-579D", + "status": "exact_ids", + "ids": "⿰土危", + "canonical_ids": "⿰土危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "土" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垞", + "codepoint": "U+579E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-579E", + "status": "exact_ids", + "ids": "⿰土宅", + "canonical_ids": "⿰土宅", + "expanded_ids": "⿰土⿱宀⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "土", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垟", + "codepoint": "U+579F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-579F", + "status": "exact_ids", + "ids": "⿰土羊", + "canonical_ids": "⿰土羊", + "expanded_ids": "⿰土羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垠", + "codepoint": "U+57A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57A0", + "status": "exact_ids", + "ids": "⿰土艮", + "canonical_ids": "⿰土艮", + "expanded_ids": "⿰土艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垡", + "codepoint": "U+57A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57A1", + "status": "exact_ids", + "ids": "⿱伐土", + "canonical_ids": "⿱伐土", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "土" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垢", + "codepoint": "U+57A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57A2", + "status": "exact_ids", + "ids": "⿰土后", + "canonical_ids": "⿰土后", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "后" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垣", + "codepoint": "U+57A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57A3", + "status": "exact_ids", + "ids": "⿰土亘", + "canonical_ids": "⿰土亘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垤", + "codepoint": "U+57A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57A4", + "status": "exact_ids", + "ids": "⿰土至", + "canonical_ids": "⿰土至", + "expanded_ids": "⿰土⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垥", + "codepoint": "U+57A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57A5", + "status": "exact_ids", + "ids": "⿰土合", + "canonical_ids": "⿰土合", + "expanded_ids": "⿰土⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垦", + "codepoint": "U+57A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57A6", + "status": "exact_ids", + "ids": "⿱艮土", + "canonical_ids": "⿱艮土", + "expanded_ids": "⿱艮土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垧", + "codepoint": "U+57A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57A7", + "status": "exact_ids", + "ids": "⿰土向", + "canonical_ids": "⿰土向", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "土" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垨", + "codepoint": "U+57A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57A8", + "status": "exact_ids", + "ids": "⿰土守", + "canonical_ids": "⿰土守", + "expanded_ids": "⿰土⿱宀寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "宀", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垩", + "codepoint": "U+57A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57A9", + "status": "exact_ids", + "ids": "⿱亚土", + "canonical_ids": "⿱亚土", + "expanded_ids": "⿱亚土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亚", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垪", + "codepoint": "U+57AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57AA", + "status": "exact_ids", + "ids": "⿰土并", + "canonical_ids": "⿰土并", + "expanded_ids": "⿰土⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "土", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垫", + "codepoint": "U+57AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57AB", + "status": "exact_ids", + "ids": "⿱执土", + "canonical_ids": "⿱执土", + "expanded_ids": "⿱⿰扌⿻九丶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "土", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垬", + "codepoint": "U+57AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57AC", + "status": "exact_ids", + "ids": "⿰土共", + "canonical_ids": "⿰土共", + "expanded_ids": "⿰土⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "廾", + "廿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垭", + "codepoint": "U+57AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57AD", + "status": "exact_ids", + "ids": "⿰土亚", + "canonical_ids": "⿰土亚", + "expanded_ids": "⿰土亚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亚", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垮", + "codepoint": "U+57AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57AE", + "status": "exact_ids", + "ids": "⿰土夸", + "canonical_ids": "⿰土夸", + "expanded_ids": "⿰土⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "土", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垯", + "codepoint": "U+57AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57AF", + "status": "exact_ids", + "ids": "⿰土达", + "canonical_ids": "⿰土达", + "expanded_ids": "⿰土⿰辶大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "大", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垰", + "codepoint": "U+57B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57B0", + "status": "exact_ids", + "ids": "⿰土𠧗", + "canonical_ids": "⿰土𠧗", + "expanded_ids": "⿰土⿱上⿱一卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "上", + "卜", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垱", + "codepoint": "U+57B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57B1", + "status": "exact_ids", + "ids": "⿰土当", + "canonical_ids": "⿰土当", + "expanded_ids": "⿰土⿱小彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "彐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垲", + "codepoint": "U+57B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57B2", + "status": "exact_ids", + "ids": "⿰土岂", + "canonical_ids": "⿰土岂", + "expanded_ids": "⿰土⿱山己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "山", + "己" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垳", + "codepoint": "U+57B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57B3", + "status": "exact_ids", + "ids": "⿰土行", + "canonical_ids": "⿰土行", + "expanded_ids": "⿰土⿰彳彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垴", + "codepoint": "U+57B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57B4", + "status": "exact_ids", + "ids": "⿰土㐫", + "canonical_ids": "⿰土㐫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "土" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垵", + "codepoint": "U+57B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57B5", + "status": "exact_ids", + "ids": "⿰土安", + "canonical_ids": "⿰土安", + "expanded_ids": "⿰土⿱宀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "女", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垶", + "codepoint": "U+57B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57B6", + "status": "exact_ids", + "ids": "⿰土辛", + "canonical_ids": "⿰土辛", + "expanded_ids": "⿰土⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "土", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垷", + "codepoint": "U+57B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57B7", + "status": "exact_ids", + "ids": "⿰土見", + "canonical_ids": "⿰土見", + "expanded_ids": "⿰土⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垸", + "codepoint": "U+57B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57B8", + "status": "exact_ids", + "ids": "⿰土完", + "canonical_ids": "⿰土完", + "expanded_ids": "⿰土⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垹", + "codepoint": "U+57B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57B9", + "status": "exact_ids", + "ids": "⿰土邦", + "canonical_ids": "⿰土邦", + "expanded_ids": "⿰土⿰丰阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "土", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垺", + "codepoint": "U+57BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57BA", + "status": "exact_ids", + "ids": "⿰土孚", + "canonical_ids": "⿰土孚", + "expanded_ids": "⿰土⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "子", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垻", + "codepoint": "U+57BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57BB", + "status": "exact_ids", + "ids": "⿰土貝", + "canonical_ids": "⿰土貝", + "expanded_ids": "⿰土⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "土", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垼", + "codepoint": "U+57BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57BC", + "status": "exact_ids", + "ids": "⿱役土", + "canonical_ids": "⿱役土", + "expanded_ids": "⿱⿰彳⿱几又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "土", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垽", + "codepoint": "U+57BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57BD", + "status": "exact_ids", + "ids": "⿱沂土", + "canonical_ids": "⿱沂土", + "expanded_ids": "⿱⿰氵斤土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "斤", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垾", + "codepoint": "U+57BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57BE", + "status": "exact_ids", + "ids": "⿰土旱", + "canonical_ids": "⿰土旱", + "expanded_ids": "⿰土⿱日⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "垿", + "codepoint": "U+57BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57BF", + "status": "exact_ids", + "ids": "⿰土序", + "canonical_ids": "⿰土序", + "expanded_ids": "⿰土⿱广⿱龴⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "土", + "广", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埀", + "codepoint": "U+57C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57C0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埁", + "codepoint": "U+57C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57C1", + "status": "exact_ids", + "ids": "⿰土岑", + "canonical_ids": "⿰土岑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "土", + "山" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埂", + "codepoint": "U+57C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57C2", + "status": "exact_ids", + "ids": "⿰土更", + "canonical_ids": "⿰土更", + "expanded_ids": "⿰土更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "更" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埃", + "codepoint": "U+57C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57C3", + "status": "exact_ids", + "ids": "⿰土矣", + "canonical_ids": "⿰土矣", + "expanded_ids": "⿰土⿱厶⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "厶", + "土", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埄", + "codepoint": "U+57C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57C4", + "status": "exact_ids", + "ids": "⿰土夆", + "canonical_ids": "⿰土夆", + "expanded_ids": "⿰土⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "土", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埅", + "codepoint": "U+57C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57C5", + "status": "exact_ids", + "ids": "⿱防土", + "canonical_ids": "⿱防土", + "expanded_ids": "⿱⿰阝方土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "方", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埆", + "codepoint": "U+57C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57C6", + "status": "exact_ids", + "ids": "⿰土角", + "canonical_ids": "⿰土角", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "土", + "月" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埇", + "codepoint": "U+57C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57C7", + "status": "exact_ids", + "ids": "⿰土甬", + "canonical_ids": "⿰土甬", + "expanded_ids": "⿰土⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "土", + "月", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埈", + "codepoint": "U+57C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57C8", + "status": "exact_ids", + "ids": "⿰土夋", + "canonical_ids": "⿰土夋", + "expanded_ids": "⿰土⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "土", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埉", + "codepoint": "U+57C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57C9", + "status": "exact_ids", + "ids": "⿰土夾", + "canonical_ids": "⿰土夾", + "expanded_ids": "⿰土⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "土", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埊", + "codepoint": "U+57CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57CA", + "status": "exact_ids", + "ids": "⿱汖土", + "canonical_ids": "⿱汖土", + "expanded_ids": "⿱⿱山水土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "山", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埋", + "codepoint": "U+57CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57CB", + "status": "exact_ids", + "ids": "⿰土里", + "canonical_ids": "⿰土里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埌", + "codepoint": "U+57CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57CC", + "status": "exact_ids", + "ids": "⿰土良", + "canonical_ids": "⿰土良", + "expanded_ids": "⿰土⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "土", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埍", + "codepoint": "U+57CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57CD", + "status": "exact_ids", + "ids": "⿰土肙", + "canonical_ids": "⿰土肙", + "expanded_ids": "⿰土⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "城", + "codepoint": "U+57CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57CE", + "status": "exact_ids", + "ids": "⿰土成", + "canonical_ids": "⿰土成", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "成" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埏", + "codepoint": "U+57CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57CF", + "status": "exact_ids", + "ids": "⿰土延", + "canonical_ids": "⿰土延", + "expanded_ids": "⿰土⿰廴⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "土", + "廴", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埐", + "codepoint": "U+57D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57D0", + "status": "exact_ids", + "ids": "⿰土𠬶", + "canonical_ids": "⿰土𠬶", + "expanded_ids": "⿰土⿳彐冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "又", + "土", + "彐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埑", + "codepoint": "U+57D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57D1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埒", + "codepoint": "U+57D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57D2", + "status": "exact_ids", + "ids": "⿰土寽", + "canonical_ids": "⿰土寽", + "expanded_ids": "⿰土⿱爫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "埓" + ] + }, + { + "character": "埓", + "codepoint": "U+57D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57D3", + "status": "exact_ids", + "ids": "⿰土寽", + "canonical_ids": "⿰土寽", + "expanded_ids": "⿰土⿱爫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "埒" + ] + }, + { + "character": "埔", + "codepoint": "U+57D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57D4", + "status": "exact_ids", + "ids": "⿰土甫", + "canonical_ids": "⿰土甫", + "expanded_ids": "⿰土甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埕", + "codepoint": "U+57D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57D5", + "status": "exact_ids", + "ids": "⿰土呈", + "canonical_ids": "⿰土呈", + "expanded_ids": "⿰土⿱口王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埖", + "codepoint": "U+57D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57D6", + "status": "exact_ids", + "ids": "⿰土花", + "canonical_ids": "⿰土花", + "expanded_ids": "⿰土⿱艹⿰亻匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "土", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埗", + "codepoint": "U+57D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57D7", + "status": "exact_ids", + "ids": "⿰土步", + "canonical_ids": "⿰土步", + "expanded_ids": "⿰土⿱止𣥂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "止", + "𣥂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埘", + "codepoint": "U+57D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57D8", + "status": "exact_ids", + "ids": "⿰土时", + "canonical_ids": "⿰土时", + "expanded_ids": "⿰土⿰日寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埙", + "codepoint": "U+57D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57D9", + "status": "exact_ids", + "ids": "⿰土员", + "canonical_ids": "⿰土员", + "expanded_ids": "⿰土⿱口⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "埚" + ] + }, + { + "character": "埚", + "codepoint": "U+57DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57DA", + "status": "exact_ids", + "ids": "⿰土呙", + "canonical_ids": "⿰土呙", + "expanded_ids": "⿰土⿱口⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "埙" + ] + }, + { + "character": "埛", + "codepoint": "U+57DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57DB", + "status": "exact_ids", + "ids": "⿰土冏", + "canonical_ids": "⿰土冏", + "expanded_ids": "⿰土⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埜", + "codepoint": "U+57DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57DC", + "status": "exact_ids", + "ids": "⿱⿰木木土", + "canonical_ids": "⿱⿰木木土", + "expanded_ids": "⿱⿰木木土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埝", + "codepoint": "U+57DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57DD", + "status": "exact_ids", + "ids": "⿰土念", + "canonical_ids": "⿰土念", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "土", + "心" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埞", + "codepoint": "U+57DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57DE", + "status": "exact_ids", + "ids": "⿰土定", + "canonical_ids": "⿰土定", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "宀" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "域", + "codepoint": "U+57DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57DF", + "status": "exact_ids", + "ids": "⿰土或", + "canonical_ids": "⿰土或", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "或" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埠", + "codepoint": "U+57E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57E0", + "status": "exact_ids", + "ids": "⿰土阜", + "canonical_ids": "⿰土阜", + "expanded_ids": "⿰土阜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "阜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埡", + "codepoint": "U+57E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57E1", + "status": "exact_ids", + "ids": "⿰土亞", + "canonical_ids": "⿰土亞", + "expanded_ids": "⿰土亞", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亞", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埢", + "codepoint": "U+57E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57E2", + "status": "exact_ids", + "ids": "⿰土卷", + "canonical_ids": "⿰土卷", + "expanded_ids": "⿰土⿱龹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "土", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埣", + "codepoint": "U+57E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57E3", + "status": "exact_ids", + "ids": "⿰土卒", + "canonical_ids": "⿰土卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埤", + "codepoint": "U+57E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57E4", + "status": "exact_ids", + "ids": "⿰土卑", + "canonical_ids": "⿰土卑", + "expanded_ids": "⿰土卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埥", + "codepoint": "U+57E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57E5", + "status": "exact_ids", + "ids": "⿰土青", + "canonical_ids": "⿰土青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "月" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埦", + "codepoint": "U+57E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57E6", + "status": "exact_ids", + "ids": "⿰土宛", + "canonical_ids": "⿰土宛", + "expanded_ids": "⿰土⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "土", + "夕", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埧", + "codepoint": "U+57E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57E7", + "status": "exact_ids", + "ids": "⿰土具", + "canonical_ids": "⿰土具", + "expanded_ids": "⿰土⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "土", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埨", + "codepoint": "U+57E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57E8", + "status": "exact_ids", + "ids": "⿰土侖", + "canonical_ids": "⿰土侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "土" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埩", + "codepoint": "U+57E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57E9", + "status": "exact_ids", + "ids": "⿰土爭", + "canonical_ids": "⿰土爭", + "expanded_ids": "⿰土⿱爫肀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "爫", + "肀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埪", + "codepoint": "U+57EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57EA", + "status": "exact_ids", + "ids": "⿰土空", + "canonical_ids": "⿰土空", + "expanded_ids": "⿰土⿱⿱宀八工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "土", + "宀", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埫", + "codepoint": "U+57EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57EB", + "status": "exact_ids", + "ids": "⿰土尚", + "canonical_ids": "⿰土尚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埬", + "codepoint": "U+57EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57EC", + "status": "exact_ids", + "ids": "⿰土東", + "canonical_ids": "⿰土東", + "expanded_ids": "⿰土⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埭", + "codepoint": "U+57ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57ED", + "status": "exact_ids", + "ids": "⿰土隶", + "canonical_ids": "⿰土隶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埮", + "codepoint": "U+57EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57EE", + "status": "exact_ids", + "ids": "⿰土炎", + "canonical_ids": "⿰土炎", + "expanded_ids": "⿰土⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埯", + "codepoint": "U+57EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57EF", + "status": "exact_ids", + "ids": "⿰土奄", + "canonical_ids": "⿰土奄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "大" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埰", + "codepoint": "U+57F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57F0", + "status": "exact_ids", + "ids": "⿰土采", + "canonical_ids": "⿰土采", + "expanded_ids": "⿰土⿱爫木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "木", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埱", + "codepoint": "U+57F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57F1", + "status": "exact_ids", + "ids": "⿰土叔", + "canonical_ids": "⿰土叔", + "expanded_ids": "⿰土⿰⿱上小又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "又", + "土", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埲", + "codepoint": "U+57F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57F2", + "status": "exact_ids", + "ids": "⿰土奉", + "canonical_ids": "⿰土奉", + "expanded_ids": "⿰土⿱𡗗⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "土", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埳", + "codepoint": "U+57F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57F3", + "status": "exact_ids", + "ids": "⿰土臽", + "canonical_ids": "⿰土臽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "臼" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埴", + "codepoint": "U+57F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57F4", + "status": "exact_ids", + "ids": "⿰土直", + "canonical_ids": "⿰土直", + "expanded_ids": "⿰土⿱⿱十目乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "十", + "土", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埵", + "codepoint": "U+57F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57F5", + "status": "exact_ids", + "ids": "⿰土垂", + "canonical_ids": "⿰土垂", + "expanded_ids": "⿰土垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "垂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埶", + "codepoint": "U+57F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57F6", + "status": "exact_ids", + "ids": "⿰坴丸", + "canonical_ids": "⿰坴丸", + "expanded_ids": "⿰⿱⿱土儿土⿻九丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "儿", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "執", + "codepoint": "U+57F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57F7", + "status": "exact_ids", + "ids": "⿰幸丸", + "canonical_ids": "⿰幸丸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "土" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埸", + "codepoint": "U+57F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57F8", + "status": "exact_ids", + "ids": "⿰土易", + "canonical_ids": "⿰土易", + "expanded_ids": "⿰土⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "培", + "codepoint": "U+57F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57F9", + "status": "exact_ids", + "ids": "⿰土咅", + "canonical_ids": "⿰土咅", + "expanded_ids": "⿰土⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "基", + "codepoint": "U+57FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57FA", + "status": "exact_ids", + "ids": "⿱其土", + "canonical_ids": "⿱其土", + "expanded_ids": "⿱其土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埻", + "codepoint": "U+57FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57FB", + "status": "exact_ids", + "ids": "⿰土享", + "canonical_ids": "⿰土享", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埼", + "codepoint": "U+57FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57FC", + "status": "exact_ids", + "ids": "⿰土奇", + "canonical_ids": "⿰土奇", + "expanded_ids": "⿰土⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "土", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埽", + "codepoint": "U+57FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57FD", + "status": "exact_ids", + "ids": "⿰土帚", + "canonical_ids": "⿰土帚", + "expanded_ids": "⿰土⿳彐冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "土", + "彐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埾", + "codepoint": "U+57FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57FE", + "status": "exact_ids", + "ids": "⿱取土", + "canonical_ids": "⿱取土", + "expanded_ids": "⿱⿰耳又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "土", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "埿", + "codepoint": "U+57FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-57FF", + "status": "exact_ids", + "ids": "⿱泥土", + "canonical_ids": "⿱泥土", + "expanded_ids": "⿱⿰氵⿱尸匕土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "土", + "尸", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堀", + "codepoint": "U+5800", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5800", + "status": "exact_ids", + "ids": "⿰土屈", + "canonical_ids": "⿰土屈", + "expanded_ids": "⿰土⿱尸⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "土", + "尸", + "屮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堁", + "codepoint": "U+5801", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5801", + "status": "exact_ids", + "ids": "⿰土果", + "canonical_ids": "⿰土果", + "expanded_ids": "⿰土⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堂", + "codepoint": "U+5802", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5802", + "status": "exact_ids", + "ids": "⿱尚土", + "canonical_ids": "⿱尚土", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堃", + "codepoint": "U+5803", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5803", + "status": "exact_ids", + "ids": "⿱⿰方方土", + "canonical_ids": "⿱⿰方方土", + "expanded_ids": "⿱⿰方方土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堄", + "codepoint": "U+5804", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5804", + "status": "exact_ids", + "ids": "⿰土兒", + "canonical_ids": "⿰土兒", + "expanded_ids": "⿰土⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堅", + "codepoint": "U+5805", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5805", + "status": "exact_ids", + "ids": "⿱臤土", + "canonical_ids": "⿱臤土", + "expanded_ids": "⿱⿰臣又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "土", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堆", + "codepoint": "U+5806", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5806", + "status": "exact_ids", + "ids": "⿰土隹", + "canonical_ids": "⿰土隹", + "expanded_ids": "⿰土隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堇", + "codepoint": "U+5807", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5807", + "status": "leaf_self_fallback", + "ids": "堇", + "canonical_ids": "堇", + "expanded_ids": "堇", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堈", + "codepoint": "U+5808", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5808", + "status": "exact_ids", + "ids": "⿰土岡", + "canonical_ids": "⿰土岡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "岡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堉", + "codepoint": "U+5809", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5809", + "status": "exact_ids", + "ids": "⿰土育", + "canonical_ids": "⿰土育", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "育" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堊", + "codepoint": "U+580A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-580A", + "status": "exact_ids", + "ids": "⿱亞土", + "canonical_ids": "⿱亞土", + "expanded_ids": "⿱亞土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亞", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堋", + "codepoint": "U+580B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-580B", + "status": "exact_ids", + "ids": "⿰土朋", + "canonical_ids": "⿰土朋", + "expanded_ids": "⿰土⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堌", + "codepoint": "U+580C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-580C", + "status": "exact_ids", + "ids": "⿰土固", + "canonical_ids": "⿰土固", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "固" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堍", + "codepoint": "U+580D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-580D", + "status": "exact_ids", + "ids": "⿰土兔", + "canonical_ids": "⿰土兔", + "expanded_ids": "⿰土⿻免丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "免", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堎", + "codepoint": "U+580E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-580E", + "status": "exact_ids", + "ids": "⿰土夌", + "canonical_ids": "⿰土夌", + "expanded_ids": "⿰土⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堏", + "codepoint": "U+580F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-580F", + "status": "exact_ids", + "ids": "⿱枋土", + "canonical_ids": "⿱枋土", + "expanded_ids": "⿱⿰木方土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "方", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堐", + "codepoint": "U+5810", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5810", + "status": "exact_ids", + "ids": "⿰土厓", + "canonical_ids": "⿰土厓", + "expanded_ids": "⿰土⿱厂⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堑", + "codepoint": "U+5811", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5811", + "status": "exact_ids", + "ids": "⿱斩土", + "canonical_ids": "⿱斩土", + "expanded_ids": "⿱⿰车斤土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "斤", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堒", + "codepoint": "U+5812", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5812", + "status": "exact_ids", + "ids": "⿰土昆", + "canonical_ids": "⿰土昆", + "expanded_ids": "⿰土⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堓", + "codepoint": "U+5813", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5813", + "status": "exact_ids", + "ids": "⿰土岸", + "canonical_ids": "⿰土岸", + "expanded_ids": "⿰土⿱山⿱厂⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "厂", + "土", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堔", + "codepoint": "U+5814", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5814", + "status": "exact_ids", + "ids": "⿰土罙", + "canonical_ids": "⿰土罙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "木" + ], + "unresolved_leaves": [ + "⺳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堕", + "codepoint": "U+5815", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5815", + "status": "exact_ids", + "ids": "⿱陏土", + "canonical_ids": "⿱陏土", + "expanded_ids": "⿱⿰阝⿱⿻丿一月土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "土", + "月", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堖", + "codepoint": "U+5816", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5816", + "status": "exact_ids", + "ids": "⿰土𡿺", + "canonical_ids": "⿰土𡿺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "巛" + ], + "unresolved_leaves": [ + "囟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堗", + "codepoint": "U+5817", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5817", + "status": "exact_ids", + "ids": "⿰土突", + "canonical_ids": "⿰土突", + "expanded_ids": "⿰土⿱⿱宀八⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "八", + "土", + "大", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堘", + "codepoint": "U+5818", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5818", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堙", + "codepoint": "U+5819", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5819", + "status": "exact_ids", + "ids": "⿰土垔", + "canonical_ids": "⿰土垔", + "expanded_ids": "⿰土⿱覀土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堚", + "codepoint": "U+581A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-581A", + "status": "exact_ids", + "ids": "⿰土軍", + "canonical_ids": "⿰土軍", + "expanded_ids": "⿰土⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "土", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堛", + "codepoint": "U+581B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-581B", + "status": "exact_ids", + "ids": "⿰土畐", + "canonical_ids": "⿰土畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堜", + "codepoint": "U+581C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-581C", + "status": "exact_ids", + "ids": "⿰土柬", + "canonical_ids": "⿰土柬", + "expanded_ids": "⿰土柬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "柬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堝", + "codepoint": "U+581D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-581D", + "status": "exact_ids", + "ids": "⿰土咼", + "canonical_ids": "⿰土咼", + "expanded_ids": "⿰土⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堞", + "codepoint": "U+581E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-581E", + "status": "exact_ids", + "ids": "⿰土枼", + "canonical_ids": "⿰土枼", + "expanded_ids": "⿰土⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堟", + "codepoint": "U+581F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-581F", + "status": "exact_ids", + "ids": "⿰土彖", + "canonical_ids": "⿰土彖", + "expanded_ids": "⿰土⿱彑𧰨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "彑", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堠", + "codepoint": "U+5820", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5820", + "status": "exact_ids", + "ids": "⿰土侯", + "canonical_ids": "⿰土侯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "侯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堡", + "codepoint": "U+5821", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5821", + "status": "exact_ids", + "ids": "⿱保土", + "canonical_ids": "⿱保土", + "expanded_ids": "⿱⿰亻⿱口木土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堢", + "codepoint": "U+5822", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5822", + "status": "exact_ids", + "ids": "⿰土保", + "canonical_ids": "⿰土保", + "expanded_ids": "⿰土⿰亻⿱口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堣", + "codepoint": "U+5823", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5823", + "status": "exact_ids", + "ids": "⿰土禺", + "canonical_ids": "⿰土禺", + "expanded_ids": "⿰土⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "田", + "禸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堤", + "codepoint": "U+5824", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5824", + "status": "exact_ids", + "ids": "⿰土是", + "canonical_ids": "⿰土是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "日" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堥", + "codepoint": "U+5825", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5825", + "status": "exact_ids", + "ids": "⿱敄土", + "canonical_ids": "⿱敄土", + "expanded_ids": "⿱⿰矛攵土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "攵", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堦", + "codepoint": "U+5826", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5826", + "status": "exact_ids", + "ids": "⿰土皆", + "canonical_ids": "⿰土皆", + "expanded_ids": "⿰土⿱⿰匕匕⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堧", + "codepoint": "U+5827", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5827", + "status": "exact_ids", + "ids": "⿰土耎", + "canonical_ids": "⿰土耎", + "expanded_ids": "⿰土⿱而大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "大", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堨", + "codepoint": "U+5828", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5828", + "status": "exact_ids", + "ids": "⿰土曷", + "canonical_ids": "⿰土曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "曰" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堩", + "codepoint": "U+5829", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5829", + "status": "exact_ids", + "ids": "⿰土恆", + "canonical_ids": "⿰土恆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "忄" + ], + "unresolved_leaves": [ + "亙" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堪", + "codepoint": "U+582A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-582A", + "status": "exact_ids", + "ids": "⿰土甚", + "canonical_ids": "⿰土甚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "甘" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堫", + "codepoint": "U+582B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-582B", + "status": "exact_ids", + "ids": "⿰土㚇", + "canonical_ids": "⿰土㚇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夊" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堬", + "codepoint": "U+582C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-582C", + "status": "exact_ids", + "ids": "⿰土俞", + "canonical_ids": "⿰土俞", + "expanded_ids": "⿰土⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "土", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堭", + "codepoint": "U+582D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-582D", + "status": "exact_ids", + "ids": "⿰土皇", + "canonical_ids": "⿰土皇", + "expanded_ids": "⿰土⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "土", + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堮", + "codepoint": "U+582E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-582E", + "status": "exact_ids", + "ids": "⿰土咢", + "canonical_ids": "⿰土咢", + "expanded_ids": "⿰土⿱⿰口口⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堯", + "codepoint": "U+582F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-582F", + "status": "exact_ids", + "ids": "⿱垚兀", + "canonical_ids": "⿱垚兀", + "expanded_ids": "⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堰", + "codepoint": "U+5830", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5830", + "status": "exact_ids", + "ids": "⿰土匽", + "canonical_ids": "⿰土匽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "匽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "報", + "codepoint": "U+5831", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5831", + "status": "exact_ids", + "ids": "⿰幸𠬝", + "canonical_ids": "⿰幸𠬝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "又", + "土" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堲", + "codepoint": "U+5832", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5832", + "status": "exact_ids", + "ids": "⿱即土", + "canonical_ids": "⿱即土", + "expanded_ids": "⿱⿰艮卩土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "土", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堳", + "codepoint": "U+5833", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5833", + "status": "exact_ids", + "ids": "⿰土眉", + "canonical_ids": "⿰土眉", + "expanded_ids": "⿰土⿱⿻尸丨目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "土", + "尸", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "場", + "codepoint": "U+5834", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5834", + "status": "exact_ids", + "ids": "⿰土昜", + "canonical_ids": "⿰土昜", + "expanded_ids": "⿰土⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堵", + "codepoint": "U+5835", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5835", + "status": "exact_ids", + "ids": "⿰土者", + "canonical_ids": "⿰土者", + "expanded_ids": "⿰土⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堶", + "codepoint": "U+5836", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5836", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堷", + "codepoint": "U+5837", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5837", + "status": "exact_ids", + "ids": "⿰土音", + "canonical_ids": "⿰土音", + "expanded_ids": "⿰土⿱立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堸", + "codepoint": "U+5838", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5838", + "status": "exact_ids", + "ids": "⿰土風", + "canonical_ids": "⿰土風", + "expanded_ids": "⿰土風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堹", + "codepoint": "U+5839", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5839", + "status": "exact_ids", + "ids": "⿰土重", + "canonical_ids": "⿰土重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "土" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堺", + "codepoint": "U+583A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-583A", + "status": "exact_ids", + "ids": "⿰土界", + "canonical_ids": "⿰土界", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "田" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堻", + "codepoint": "U+583B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-583B", + "status": "exact_ids", + "ids": "⿱津土", + "canonical_ids": "⿱津土", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "氵" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堼", + "codepoint": "U+583C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-583C", + "status": "exact_ids", + "ids": "⿱封土", + "canonical_ids": "⿱封土", + "expanded_ids": "⿱⿰⿱土土寸土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堽", + "codepoint": "U+583D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-583D", + "status": "exact_ids", + "ids": "⿰土罡", + "canonical_ids": "⿰土罡", + "expanded_ids": "⿰土⿱罒⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "土", + "止", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堾", + "codepoint": "U+583E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-583E", + "status": "exact_ids", + "ids": "⿰土春", + "canonical_ids": "⿰土春", + "expanded_ids": "⿰土⿱𡗗日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "日", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "堿", + "codepoint": "U+583F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-583F", + "status": "exact_ids", + "ids": "⿰土咸", + "canonical_ids": "⿰土咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塀", + "codepoint": "U+5840", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5840", + "status": "exact_ids", + "ids": "⿰土屏", + "canonical_ids": "⿰土屏", + "expanded_ids": "⿰土⿱尸⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "土", + "尸", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塁", + "codepoint": "U+5841", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5841", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塂", + "codepoint": "U+5842", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5842", + "status": "exact_ids", + "ids": "⿰土巷", + "canonical_ids": "⿰土巷", + "expanded_ids": "⿰土⿱⿱廿廾巳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "巳", + "廾", + "廿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塃", + "codepoint": "U+5843", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5843", + "status": "exact_ids", + "ids": "⿰土荒", + "canonical_ids": "⿰土荒", + "expanded_ids": "⿰土⿱艹⿱⿻亠乚川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "土", + "川", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塄", + "codepoint": "U+5844", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5844", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塅", + "codepoint": "U+5845", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5845", + "status": "exact_ids", + "ids": "⿰土段", + "canonical_ids": "⿰土段", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "段" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塆", + "codepoint": "U+5846", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5846", + "status": "exact_ids", + "ids": "⿰土弯", + "canonical_ids": "⿰土弯", + "expanded_ids": "⿰土⿱亦弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "土", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塇", + "codepoint": "U+5847", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5847", + "status": "exact_ids", + "ids": "⿰土宣", + "canonical_ids": "⿰土宣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "宀" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塈", + "codepoint": "U+5848", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5848", + "status": "exact_ids", + "ids": "⿱既土", + "canonical_ids": "⿱既土", + "expanded_ids": "⿱⿰艮旡土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "旡", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塉", + "codepoint": "U+5849", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5849", + "status": "exact_ids", + "ids": "⿰土脊", + "canonical_ids": "⿰土脊", + "expanded_ids": "⿰土⿱兆月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "土", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塊", + "codepoint": "U+584A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-584A", + "status": "exact_ids", + "ids": "⿰土鬼", + "canonical_ids": "⿰土鬼", + "expanded_ids": "⿰土鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塋", + "codepoint": "U+584B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-584B", + "status": "exact_ids", + "ids": "⿳炏冖土", + "canonical_ids": "⿳炏冖土", + "expanded_ids": "⿳⿰火火冖土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "土", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塌", + "codepoint": "U+584C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-584C", + "status": "exact_ids", + "ids": "⿰土𦐇", + "canonical_ids": "⿰土𦐇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "土" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塍", + "codepoint": "U+584D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-584D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塎", + "codepoint": "U+584E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-584E", + "status": "exact_ids", + "ids": "⿰土容", + "canonical_ids": "⿰土容", + "expanded_ids": "⿰土⿱宀⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "土", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塏", + "codepoint": "U+584F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-584F", + "status": "exact_ids", + "ids": "⿰土豈", + "canonical_ids": "⿰土豈", + "expanded_ids": "⿰土⿱山豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "山", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塐", + "codepoint": "U+5850", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5850", + "status": "exact_ids", + "ids": "⿰土素", + "canonical_ids": "⿰土素", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "幺" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塑", + "codepoint": "U+5851", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5851", + "status": "exact_ids", + "ids": "⿱朔土", + "canonical_ids": "⿱朔土", + "expanded_ids": "⿱⿰⿱䒑屮月土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "土", + "屮", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塒", + "codepoint": "U+5852", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5852", + "status": "exact_ids", + "ids": "⿰土時", + "canonical_ids": "⿰土時", + "expanded_ids": "⿰土⿰日⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塓", + "codepoint": "U+5853", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5853", + "status": "exact_ids", + "ids": "⿰土冥", + "canonical_ids": "⿰土冥", + "expanded_ids": "⿰土⿱冖⿱日⿱亠八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塔", + "codepoint": "U+5854", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5854", + "status": "exact_ids", + "ids": "⿰土荅", + "canonical_ids": "⿰土荅", + "expanded_ids": "⿰土⿱艹⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "土", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塕", + "codepoint": "U+5855", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5855", + "status": "exact_ids", + "ids": "⿰土翁", + "canonical_ids": "⿰土翁", + "expanded_ids": "⿰土⿱⿱八厶⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "八", + "厶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塖", + "codepoint": "U+5856", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5856", + "status": "exact_ids", + "ids": "⿰土乘", + "canonical_ids": "⿰土乘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "木" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塗", + "codepoint": "U+5857", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5857", + "status": "exact_ids", + "ids": "⿱涂土", + "canonical_ids": "⿱涂土", + "expanded_ids": "⿱⿰氵⿱⿱人一朩土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "土", + "朩", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塘", + "codepoint": "U+5858", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5858", + "status": "exact_ids", + "ids": "⿰土唐", + "canonical_ids": "⿰土唐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塙", + "codepoint": "U+5859", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5859", + "status": "exact_ids", + "ids": "⿰土高", + "canonical_ids": "⿰土高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塚", + "codepoint": "U+585A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-585A", + "status": "exact_ids", + "ids": "⿰土冡", + "canonical_ids": "⿰土冡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塛", + "codepoint": "U+585B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-585B", + "status": "exact_ids", + "ids": "⿰土栗", + "canonical_ids": "⿰土栗", + "expanded_ids": "⿰土⿱覀木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "木", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塜", + "codepoint": "U+585C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-585C", + "status": "exact_ids", + "ids": "⿰土冡", + "canonical_ids": "⿰土冡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塝", + "codepoint": "U+585D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-585D", + "status": "exact_ids", + "ids": "⿰土旁", + "canonical_ids": "⿰土旁", + "expanded_ids": "⿰土⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "土", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塞", + "codepoint": "U+585E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-585E", + "status": "exact_ids", + "ids": "⿱宀基", + "canonical_ids": "⿱宀基", + "expanded_ids": "⿱宀⿱其土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "土", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塟", + "codepoint": "U+585F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-585F", + "status": "exact_ids", + "ids": "⿱卄㘸", + "canonical_ids": "⿱卄㘸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卄" + ], + "unresolved_leaves": [ + "㘸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塠", + "codepoint": "U+5860", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5860", + "status": "exact_ids", + "ids": "⿰土追", + "canonical_ids": "⿰土追", + "expanded_ids": "⿰土⿰辶⿱丿㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "丿", + "土", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塡", + "codepoint": "U+5861", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5861", + "status": "exact_ids", + "ids": "⿰土眞", + "canonical_ids": "⿰土眞", + "expanded_ids": "⿰土⿻匕⿱⿱一儿目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "匕", + "土", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塢", + "codepoint": "U+5862", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5862", + "status": "exact_ids", + "ids": "⿰土烏", + "canonical_ids": "⿰土烏", + "expanded_ids": "⿰土烏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "烏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塣", + "codepoint": "U+5863", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5863", + "status": "exact_ids", + "ids": "⿱浧土", + "canonical_ids": "⿱浧土", + "expanded_ids": "⿱⿰氵⿱口王土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "氵", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塤", + "codepoint": "U+5864", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5864", + "status": "exact_ids", + "ids": "⿰土員", + "canonical_ids": "⿰土員", + "expanded_ids": "⿰土⿱口⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "土", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塥", + "codepoint": "U+5865", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5865", + "status": "exact_ids", + "ids": "⿰土鬲", + "canonical_ids": "⿰土鬲", + "expanded_ids": "⿰土鬲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塦", + "codepoint": "U+5866", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5866", + "status": "exact_ids", + "ids": "⿱陣土", + "canonical_ids": "⿱陣土", + "expanded_ids": "⿱⿰阝車土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "車", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塧", + "codepoint": "U+5867", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5867", + "status": "exact_ids", + "ids": "⿰土益", + "canonical_ids": "⿰土益", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塨", + "codepoint": "U+5868", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5868", + "status": "exact_ids", + "ids": "⿰土恭", + "canonical_ids": "⿰土恭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "廾", + "廿" + ], + "unresolved_leaves": [ + "㣺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塩", + "codepoint": "U+5869", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5869", + "status": "exact_ids", + "ids": "⿰土𥁓", + "canonical_ids": "⿰土𥁓", + "expanded_ids": "⿰土⿱石皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "皿", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塪", + "codepoint": "U+586A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-586A", + "status": "exact_ids", + "ids": "⿰土舀", + "canonical_ids": "⿰土舀", + "expanded_ids": "⿰土⿱爫臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "爫", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "填", + "codepoint": "U+586B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-586B", + "status": "exact_ids", + "ids": "⿰土真", + "canonical_ids": "⿰土真", + "expanded_ids": "⿰土⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "土", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塬", + "codepoint": "U+586C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-586C", + "status": "exact_ids", + "ids": "⿰土原", + "canonical_ids": "⿰土原", + "expanded_ids": "⿰土⿱厂⿱⿻日丶小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "土", + "小", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塭", + "codepoint": "U+586D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-586D", + "status": "exact_ids", + "ids": "⿰土𥁕", + "canonical_ids": "⿰土𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "皿" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塮", + "codepoint": "U+586E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-586E", + "status": "exact_ids", + "ids": "⿰土射", + "canonical_ids": "⿰土射", + "expanded_ids": "⿰土⿰身寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塯", + "codepoint": "U+586F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-586F", + "status": "exact_ids", + "ids": "⿰土留", + "canonical_ids": "⿰土留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塰", + "codepoint": "U+5870", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5870", + "status": "exact_ids", + "ids": "⿱海土", + "canonical_ids": "⿱海土", + "expanded_ids": "⿱⿰氵⿱⿻丿一母土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "土", + "母", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塱", + "codepoint": "U+5871", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5871", + "status": "exact_ids", + "ids": "⿱朗土", + "canonical_ids": "⿱朗土", + "expanded_ids": "⿱⿰⿻丶艮月土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "土", + "月", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塲", + "codepoint": "U+5872", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5872", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塳", + "codepoint": "U+5873", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5873", + "status": "exact_ids", + "ids": "⿰土逢", + "canonical_ids": "⿰土逢", + "expanded_ids": "⿰土⿰辶⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "土", + "夂", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塴", + "codepoint": "U+5874", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5874", + "status": "exact_ids", + "ids": "⿰土崩", + "canonical_ids": "⿰土崩", + "expanded_ids": "⿰土⿱山⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "山", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塵", + "codepoint": "U+5875", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5875", + "status": "exact_ids", + "ids": "⿱鹿土", + "canonical_ids": "⿱鹿土", + "expanded_ids": "⿱鹿土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塶", + "codepoint": "U+5876", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5876", + "status": "exact_ids", + "ids": "⿰土鹿", + "canonical_ids": "⿰土鹿", + "expanded_ids": "⿰土鹿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塷", + "codepoint": "U+5877", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5877", + "status": "exact_ids", + "ids": "⿰土鹵", + "canonical_ids": "⿰土鹵", + "expanded_ids": "⿰土鹵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "鹵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塸", + "codepoint": "U+5878", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5878", + "status": "exact_ids", + "ids": "⿰土區", + "canonical_ids": "⿰土區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塹", + "codepoint": "U+5879", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5879", + "status": "exact_ids", + "ids": "⿱斬土", + "canonical_ids": "⿱斬土", + "expanded_ids": "⿱⿰車斤土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "斤", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塺", + "codepoint": "U+587A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-587A", + "status": "exact_ids", + "ids": "⿱麻土", + "canonical_ids": "⿱麻土", + "expanded_ids": "⿱⿱广⿰木木土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塻", + "codepoint": "U+587B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-587B", + "status": "exact_ids", + "ids": "⿰土莫", + "canonical_ids": "⿰土莫", + "expanded_ids": "⿰土⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "大", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塼", + "codepoint": "U+587C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-587C", + "status": "exact_ids", + "ids": "⿰土專", + "canonical_ids": "⿰土專", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "寸" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塽", + "codepoint": "U+587D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-587D", + "status": "exact_ids", + "ids": "⿰土爽", + "canonical_ids": "⿰土爽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "大" + ], + "unresolved_leaves": [ + "㸚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塾", + "codepoint": "U+587E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-587E", + "status": "exact_ids", + "ids": "⿱孰土", + "canonical_ids": "⿱孰土", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "土" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "塿", + "codepoint": "U+587F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-587F", + "status": "exact_ids", + "ids": "⿰土婁", + "canonical_ids": "⿰土婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墀", + "codepoint": "U+5880", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5880", + "status": "exact_ids", + "ids": "⿰土犀", + "canonical_ids": "⿰土犀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "犀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墁", + "codepoint": "U+5881", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5881", + "status": "exact_ids", + "ids": "⿰土曼", + "canonical_ids": "⿰土曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墂", + "codepoint": "U+5882", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5882", + "status": "exact_ids", + "ids": "⿰土票", + "canonical_ids": "⿰土票", + "expanded_ids": "⿰土⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "土", + "小", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "境", + "codepoint": "U+5883", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5883", + "status": "exact_ids", + "ids": "⿰土竟", + "canonical_ids": "⿰土竟", + "expanded_ids": "⿰土⿱立⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墄", + "codepoint": "U+5884", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5884", + "status": "exact_ids", + "ids": "⿰土戚", + "canonical_ids": "⿰土戚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "戚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墅", + "codepoint": "U+5885", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5885", + "status": "exact_ids", + "ids": "⿱野土", + "canonical_ids": "⿱野土", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "土", + "龴" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墆", + "codepoint": "U+5886", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5886", + "status": "exact_ids", + "ids": "⿰土帶", + "canonical_ids": "⿰土帶", + "expanded_ids": "⿰土⿳卌冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "卌", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墇", + "codepoint": "U+5887", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5887", + "status": "exact_ids", + "ids": "⿰土章", + "canonical_ids": "⿰土章", + "expanded_ids": "⿰土⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "土", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墈", + "codepoint": "U+5888", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5888", + "status": "exact_ids", + "ids": "⿰土勘", + "canonical_ids": "⿰土勘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "土", + "甘" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墉", + "codepoint": "U+5889", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5889", + "status": "exact_ids", + "ids": "⿰土庸", + "canonical_ids": "⿰土庸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "庸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墊", + "codepoint": "U+588A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-588A", + "status": "exact_ids", + "ids": "⿱執土", + "canonical_ids": "⿱執土", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "土" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墋", + "codepoint": "U+588B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-588B", + "status": "exact_ids", + "ids": "⿰土參", + "canonical_ids": "⿰土參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墌", + "codepoint": "U+588C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-588C", + "status": "exact_ids", + "ids": "⿰土庶", + "canonical_ids": "⿰土庶", + "expanded_ids": "⿰土⿱广⿱廿火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "广", + "廿", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墍", + "codepoint": "U+588D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-588D", + "status": "exact_ids", + "ids": "⿱旣土", + "canonical_ids": "⿱旣土", + "expanded_ids": "⿱⿰⿱⿻日丶匕旡土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "土", + "旡", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墎", + "codepoint": "U+588E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-588E", + "status": "exact_ids", + "ids": "⿰土郭", + "canonical_ids": "⿰土郭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "阝" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墏", + "codepoint": "U+588F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-588F", + "status": "exact_ids", + "ids": "⿱將土", + "canonical_ids": "⿱將土", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "將" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墐", + "codepoint": "U+5890", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5890", + "status": "exact_ids", + "ids": "⿰土堇", + "canonical_ids": "⿰土堇", + "expanded_ids": "⿰土堇", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "堇" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墑", + "codepoint": "U+5891", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5891", + "status": "exact_ids", + "ids": "⿰土啇", + "canonical_ids": "⿰土啇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墒", + "codepoint": "U+5892", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5892", + "status": "exact_ids", + "ids": "⿰土商", + "canonical_ids": "⿰土商", + "expanded_ids": "⿰土⿱⿱亠八⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冂", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墓", + "codepoint": "U+5893", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5893", + "status": "exact_ids", + "ids": "⿱莫土", + "canonical_ids": "⿱莫土", + "expanded_ids": "⿱⿱艹⿱日大土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "大", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墔", + "codepoint": "U+5894", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5894", + "status": "exact_ids", + "ids": "⿰土崔", + "canonical_ids": "⿰土崔", + "expanded_ids": "⿰土⿱山隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "山", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墕", + "codepoint": "U+5895", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5895", + "status": "exact_ids", + "ids": "⿰土焉", + "canonical_ids": "⿰土焉", + "expanded_ids": "⿰土⿱⿱一止⿱⿱卜乙灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乙", + "卜", + "土", + "止", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墖", + "codepoint": "U+5896", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5896", + "status": "exact_ids", + "ids": "⿰土畣", + "canonical_ids": "⿰土畣", + "expanded_ids": "⿰土⿱⿱⿱人一口田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "土", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "増", + "codepoint": "U+5897", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5897", + "status": "exact_ids", + "ids": "⿰土曽", + "canonical_ids": "⿰土曽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "曽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墘", + "codepoint": "U+5898", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5898", + "status": "exact_ids", + "ids": "⿰土乾", + "canonical_ids": "⿰土乾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "車" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墙", + "codepoint": "U+5899", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5899", + "status": "exact_ids", + "ids": "⿰土啬", + "canonical_ids": "⿰土啬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "啬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墚", + "codepoint": "U+589A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-589A", + "status": "exact_ids", + "ids": "⿰土梁", + "canonical_ids": "⿰土梁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "梁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墛", + "codepoint": "U+589B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-589B", + "status": "exact_ids", + "ids": "⿰土尉", + "canonical_ids": "⿰土尉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "尉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墜", + "codepoint": "U+589C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-589C", + "status": "exact_ids", + "ids": "⿱隊土", + "canonical_ids": "⿱隊土", + "expanded_ids": "⿱⿰阝⿱八豕土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "土", + "豕", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墝", + "codepoint": "U+589D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-589D", + "status": "exact_ids", + "ids": "⿰土堯", + "canonical_ids": "⿰土堯", + "expanded_ids": "⿰土⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "增", + "codepoint": "U+589E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-589E", + "status": "exact_ids", + "ids": "⿰土曾", + "canonical_ids": "⿰土曾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墟", + "codepoint": "U+589F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-589F", + "status": "exact_ids", + "ids": "⿰土虚", + "canonical_ids": "⿰土虚", + "expanded_ids": "⿰土⿱虍业", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "土", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墠", + "codepoint": "U+58A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58A0", + "status": "exact_ids", + "ids": "⿰土單", + "canonical_ids": "⿰土單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墡", + "codepoint": "U+58A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58A1", + "status": "exact_ids", + "ids": "⿰土善", + "canonical_ids": "⿰土善", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "善" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墢", + "codepoint": "U+58A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58A2", + "status": "exact_ids", + "ids": "⿰土發", + "canonical_ids": "⿰土發", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "發" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墣", + "codepoint": "U+58A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58A3", + "status": "exact_ids", + "ids": "⿰土菐", + "canonical_ids": "⿰土菐", + "expanded_ids": "⿰土⿱业⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "儿", + "土", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墤", + "codepoint": "U+58A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58A4", + "status": "exact_ids", + "ids": "⿰土貴", + "canonical_ids": "⿰土貴", + "expanded_ids": "⿰土⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "土", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墥", + "codepoint": "U+58A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58A5", + "status": "exact_ids", + "ids": "⿰土童", + "canonical_ids": "⿰土童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墦", + "codepoint": "U+58A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58A6", + "status": "exact_ids", + "ids": "⿰土番", + "canonical_ids": "⿰土番", + "expanded_ids": "⿰土⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "土", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墧", + "codepoint": "U+58A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58A7", + "status": "exact_ids", + "ids": "⿰土喬", + "canonical_ids": "⿰土喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "土", + "大" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墨", + "codepoint": "U+58A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58A8", + "status": "exact_ids", + "ids": "⿱黑土", + "canonical_ids": "⿱黑土", + "expanded_ids": "⿱黑土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墩", + "codepoint": "U+58A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58A9", + "status": "exact_ids", + "ids": "⿰土敦", + "canonical_ids": "⿰土敦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "攵" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墪", + "codepoint": "U+58AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58AA", + "status": "exact_ids", + "ids": "⿱敦土", + "canonical_ids": "⿱敦土", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "攵" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墫", + "codepoint": "U+58AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58AB", + "status": "exact_ids", + "ids": "⿰土尊", + "canonical_ids": "⿰土尊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "土", + "寸" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墬", + "codepoint": "U+58AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58AC", + "status": "exact_ids", + "ids": "⿱䧘土", + "canonical_ids": "⿱䧘土", + "expanded_ids": "⿱⿰阝⿱彑𧰨土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "彑", + "阝", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 154, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墭", + "codepoint": "U+58AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58AD", + "status": "exact_ids", + "ids": "⿰土盛", + "canonical_ids": "⿰土盛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "皿" + ], + "unresolved_leaves": [ + "成" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墮", + "codepoint": "U+58AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58AE", + "status": "exact_ids", + "ids": "⿱隋土", + "canonical_ids": "⿱隋土", + "expanded_ids": "⿱⿰阝⿱⿱牛一月土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "土", + "月", + "牛", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墯", + "codepoint": "U+58AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58AF", + "status": "exact_ids", + "ids": "⿱惰土", + "canonical_ids": "⿱惰土", + "expanded_ids": "⿱⿰忄⿱⿱牛一月土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "土", + "忄", + "月", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墰", + "codepoint": "U+58B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58B0", + "status": "exact_ids", + "ids": "⿰土覃", + "canonical_ids": "⿰土覃", + "expanded_ids": "⿰土⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "土", + "日", + "襾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墱", + "codepoint": "U+58B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58B1", + "status": "exact_ids", + "ids": "⿰土登", + "canonical_ids": "⿰土登", + "expanded_ids": "⿰土⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "癶", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墲", + "codepoint": "U+58B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58B2", + "status": "exact_ids", + "ids": "⿰土無", + "canonical_ids": "⿰土無", + "expanded_ids": "⿰土無", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "無" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墳", + "codepoint": "U+58B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58B3", + "status": "exact_ids", + "ids": "⿰土賁", + "canonical_ids": "⿰土賁", + "expanded_ids": "⿰土⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "土", + "廾", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墴", + "codepoint": "U+58B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58B4", + "status": "exact_ids", + "ids": "⿰土黄", + "canonical_ids": "⿰土黄", + "expanded_ids": "⿰土黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墵", + "codepoint": "U+58B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58B5", + "status": "exact_ids", + "ids": "⿰土雲", + "canonical_ids": "⿰土雲", + "expanded_ids": "⿰土⿱雨⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "土", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墶", + "codepoint": "U+58B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58B6", + "status": "exact_ids", + "ids": "⿰土達", + "canonical_ids": "⿰土達", + "expanded_ids": "⿰土⿰辶⿱土羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "羊", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墷", + "codepoint": "U+58B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58B7", + "status": "exact_ids", + "ids": "⿰土華", + "canonical_ids": "⿰土華", + "expanded_ids": "⿰土⿱艹𠦒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "艹", + "𠦒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墸", + "codepoint": "U+58B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58B8", + "status": "exact_ids", + "ids": "⿰土著", + "canonical_ids": "⿰土著", + "expanded_ids": "⿰土⿱艹⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墹", + "codepoint": "U+58B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58B9", + "status": "exact_ids", + "ids": "⿰土間", + "canonical_ids": "⿰土間", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "間" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墺", + "codepoint": "U+58BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58BA", + "status": "exact_ids", + "ids": "⿰土奧", + "canonical_ids": "⿰土奧", + "expanded_ids": "⿰土⿱⿱宀⿱丿⿻木丷大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "土", + "大", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墻", + "codepoint": "U+58BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58BB", + "status": "exact_ids", + "ids": "⿰土嗇", + "canonical_ids": "⿰土嗇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "土", + "大" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墼", + "codepoint": "U+58BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58BC", + "status": "exact_ids", + "ids": "⿱𣪠土", + "canonical_ids": "⿱𣪠土", + "expanded_ids": "⿱⿰⿱車凵⿱几又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "凵", + "又", + "土", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墽", + "codepoint": "U+58BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58BD", + "status": "exact_ids", + "ids": "⿰土敫", + "canonical_ids": "⿰土敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墾", + "codepoint": "U+58BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58BE", + "status": "exact_ids", + "ids": "⿱貇土", + "canonical_ids": "⿱貇土", + "expanded_ids": "⿱⿰豸艮土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "艮", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "墿", + "codepoint": "U+58BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58BF", + "status": "exact_ids", + "ids": "⿰土睪", + "canonical_ids": "⿰土睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "罒" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壀", + "codepoint": "U+58C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58C0", + "status": "exact_ids", + "ids": "⿰土辟", + "canonical_ids": "⿰土辟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "土", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壁", + "codepoint": "U+58C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58C1", + "status": "exact_ids", + "ids": "⿱辟土", + "canonical_ids": "⿱辟土", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "土", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壂", + "codepoint": "U+58C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58C2", + "status": "exact_ids", + "ids": "⿱殿土", + "canonical_ids": "⿱殿土", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "殿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壃", + "codepoint": "U+58C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58C3", + "status": "exact_ids", + "ids": "⿰土畺", + "canonical_ids": "⿰土畺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "田" + ], + "unresolved_leaves": [ + "三" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壄", + "codepoint": "U+58C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58C4", + "status": "exact_ids", + "ids": "⿱楙土", + "canonical_ids": "⿱楙土", + "expanded_ids": "⿱⿲木矛木土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "木", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壅", + "codepoint": "U+58C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58C5", + "status": "exact_ids", + "ids": "⿱雍土", + "canonical_ids": "⿱雍土", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "雍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壆", + "codepoint": "U+58C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58C6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壇", + "codepoint": "U+58C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58C7", + "status": "exact_ids", + "ids": "⿰土亶", + "canonical_ids": "⿰土亶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "土", + "日" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壈", + "codepoint": "U+58C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58C8", + "status": "exact_ids", + "ids": "⿰土稟", + "canonical_ids": "⿰土稟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亠", + "土", + "木" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壉", + "codepoint": "U+58C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58C9", + "status": "exact_ids", + "ids": "⿰土豦", + "canonical_ids": "⿰土豦", + "expanded_ids": "⿰土⿱虍豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "虍", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壊", + "codepoint": "U+58CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58CA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壋", + "codepoint": "U+58CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58CB", + "status": "exact_ids", + "ids": "⿰土當", + "canonical_ids": "⿰土當", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "田" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壌", + "codepoint": "U+58CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58CC", + "status": "exact_ids", + "ids": "⿰土㐮", + "canonical_ids": "⿰土㐮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "㐮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壍", + "codepoint": "U+58CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58CD", + "status": "exact_ids", + "ids": "⿱漸土", + "canonical_ids": "⿱漸土", + "expanded_ids": "⿱⿰氵⿰車斤土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "斤", + "氵", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壎", + "codepoint": "U+58CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58CE", + "status": "exact_ids", + "ids": "⿰土熏", + "canonical_ids": "⿰土熏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "熏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壏", + "codepoint": "U+58CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58CF", + "status": "exact_ids", + "ids": "⿰土監", + "canonical_ids": "⿰土監", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壐", + "codepoint": "U+58D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58D0", + "status": "exact_ids", + "ids": "⿱爾土", + "canonical_ids": "⿱爾土", + "expanded_ids": "⿱爾土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "爾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壑", + "codepoint": "U+58D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58D1", + "status": "exact_ids", + "ids": "⿱㕡土", + "canonical_ids": "⿱㕡土", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "㕡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壒", + "codepoint": "U+58D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58D2", + "status": "exact_ids", + "ids": "⿰土蓋", + "canonical_ids": "⿰土蓋", + "expanded_ids": "⿰土⿱艹⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "皿", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壓", + "codepoint": "U+58D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58D3", + "status": "exact_ids", + "ids": "⿱厭土", + "canonical_ids": "⿱厭土", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "土", + "大", + "月" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壔", + "codepoint": "U+58D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58D4", + "status": "exact_ids", + "ids": "⿰土壽", + "canonical_ids": "⿰土壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壕", + "codepoint": "U+58D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58D5", + "status": "exact_ids", + "ids": "⿰土豪", + "canonical_ids": "⿰土豪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "豪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壖", + "codepoint": "U+58D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58D6", + "status": "exact_ids", + "ids": "⿰土需", + "canonical_ids": "⿰土需", + "expanded_ids": "⿰土⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壗", + "codepoint": "U+58D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58D7", + "status": "exact_ids", + "ids": "⿰土盡", + "canonical_ids": "⿰土盡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "盡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壘", + "codepoint": "U+58D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58D8", + "status": "exact_ids", + "ids": "⿱畾土", + "canonical_ids": "⿱畾土", + "expanded_ids": "⿱⿱田⿰田田土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壙", + "codepoint": "U+58D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58D9", + "status": "exact_ids", + "ids": "⿰土廣", + "canonical_ids": "⿰土廣", + "expanded_ids": "⿰土⿱广黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "广", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壚", + "codepoint": "U+58DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58DA", + "status": "exact_ids", + "ids": "⿰土盧", + "canonical_ids": "⿰土盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "皿" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壛", + "codepoint": "U+58DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58DB", + "status": "exact_ids", + "ids": "⿰土閻", + "canonical_ids": "⿰土閻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "閻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壜", + "codepoint": "U+58DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58DC", + "status": "exact_ids", + "ids": "⿰土曇", + "canonical_ids": "⿰土曇", + "expanded_ids": "⿰土⿱日⿱雨⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "土", + "日", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壝", + "codepoint": "U+58DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58DD", + "status": "exact_ids", + "ids": "⿰土遺", + "canonical_ids": "⿰土遺", + "expanded_ids": "⿰土⿰辶⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "土", + "目", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壞", + "codepoint": "U+58DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58DE", + "status": "exact_ids", + "ids": "⿰土褱", + "canonical_ids": "⿰土褱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "褱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壟", + "codepoint": "U+58DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58DF", + "status": "exact_ids", + "ids": "⿱龍土", + "canonical_ids": "⿱龍土", + "expanded_ids": "⿱龍土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壠", + "codepoint": "U+58E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58E0", + "status": "exact_ids", + "ids": "⿰土龍", + "canonical_ids": "⿰土龍", + "expanded_ids": "⿰土龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壡", + "codepoint": "U+58E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58E1", + "status": "exact_ids", + "ids": "⿰睿圣", + "canonical_ids": "⿰睿圣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "卜", + "又", + "土" + ], + "unresolved_leaves": [ + "眘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壢", + "codepoint": "U+58E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58E2", + "status": "exact_ids", + "ids": "⿰土歷", + "canonical_ids": "⿰土歷", + "expanded_ids": "⿰土⿱⿱厂⿰⿻丿木⿻丿木止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厂", + "土", + "木", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壣", + "codepoint": "U+58E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58E3", + "status": "exact_ids", + "ids": "⿰土聯", + "canonical_ids": "⿰土聯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "耳" + ], + "unresolved_leaves": [ + "𢇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壤", + "codepoint": "U+58E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58E4", + "status": "exact_ids", + "ids": "⿰土襄", + "canonical_ids": "⿰土襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壥", + "codepoint": "U+58E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58E5", + "status": "exact_ids", + "ids": "⿰土㕓", + "canonical_ids": "⿰土㕓", + "expanded_ids": "⿰土⿱厂⿱黑土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "土", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壦", + "codepoint": "U+58E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58E6", + "status": "exact_ids", + "ids": "⿰土雚", + "canonical_ids": "⿰土雚", + "expanded_ids": "⿰土⿱艹⿱⿰口口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壧", + "codepoint": "U+58E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58E7", + "status": "exact_ids", + "ids": "⿰土嚴", + "canonical_ids": "⿰土嚴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土" + ], + "unresolved_leaves": [ + "𠪚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壨", + "codepoint": "U+58E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58E8", + "status": "exact_ids", + "ids": "⿱⿰畕畕土", + "canonical_ids": "⿱⿰畕畕土", + "expanded_ids": "⿱⿰⿱田田⿱田田土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壩", + "codepoint": "U+58E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58E9", + "status": "exact_ids", + "ids": "⿰土霸", + "canonical_ids": "⿰土霸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "雨" + ], + "unresolved_leaves": [ + "䩗" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壪", + "codepoint": "U+58EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58EA", + "status": "exact_ids", + "ids": "⿰土彎", + "canonical_ids": "⿰土彎", + "expanded_ids": "⿰土⿱⿲⿱幺小言⿱幺小弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "幺", + "弓", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 253, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "士", + "codepoint": "U+58EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58EB", + "status": "leaf_self_fallback", + "ids": "士", + "canonical_ids": "士", + "expanded_ids": "士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壬", + "codepoint": "U+58EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58EC", + "status": "exact_ids", + "ids": "⿱丿士", + "canonical_ids": "⿱丿士", + "expanded_ids": "⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壭", + "codepoint": "U+58ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58ED", + "status": "exact_ids", + "ids": "⿱士卩", + "canonical_ids": "⿱士卩", + "expanded_ids": "⿱士卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壮", + "codepoint": "U+58EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58EE", + "status": "exact_ids", + "ids": "⿰丬士", + "canonical_ids": "⿰丬士", + "expanded_ids": "⿰⿰冫丨士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冫", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壯", + "codepoint": "U+58EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58EF", + "status": "exact_ids", + "ids": "⿰爿土", + "canonical_ids": "⿰爿土", + "expanded_ids": "⿰爿土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "爿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "声", + "codepoint": "U+58F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58F0", + "status": "exact_ids", + "ids": "⿱士𠃜", + "canonical_ids": "⿱士𠃜", + "expanded_ids": "⿱士⿻尸丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "士", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壱", + "codepoint": "U+58F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58F1", + "status": "exact_ids", + "ids": "⿳士冖匕", + "canonical_ids": "⿳士冖匕", + "expanded_ids": "⿳士冖匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "匕", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "売", + "codepoint": "U+58F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58F2", + "status": "exact_ids", + "ids": "⿳士冖儿", + "canonical_ids": "⿳士冖儿", + "expanded_ids": "⿳士冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壳", + "codepoint": "U+58F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58F3", + "status": "exact_ids", + "ids": "⿳士冖几", + "canonical_ids": "⿳士冖几", + "expanded_ids": "⿳士冖几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "几", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壴", + "codepoint": "U+58F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58F4", + "status": "exact_ids", + "ids": "⿱十豆", + "canonical_ids": "⿱十豆", + "expanded_ids": "⿱十豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壵", + "codepoint": "U+58F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58F5", + "status": "exact_ids", + "ids": "⿱士⿰士士", + "canonical_ids": "⿱士⿰士士", + "expanded_ids": "⿱士⿰士士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壶", + "codepoint": "U+58F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58F6", + "status": "exact_ids", + "ids": "⿳士冖业", + "canonical_ids": "⿳士冖业", + "expanded_ids": "⿳士冖业", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "冖", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壷", + "codepoint": "U+58F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58F7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壸", + "codepoint": "U+58F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58F8", + "status": "exact_ids", + "ids": "⿳士冖亚", + "canonical_ids": "⿳士冖亚", + "expanded_ids": "⿳士冖亚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亚", + "冖", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壹", + "codepoint": "U+58F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58F9", + "status": "exact_ids", + "ids": "⿳土冖豆", + "canonical_ids": "⿳土冖豆", + "expanded_ids": "⿳土冖豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "土", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 101, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壺", + "codepoint": "U+58FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58FA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壻", + "codepoint": "U+58FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58FB", + "status": "exact_ids", + "ids": "⿰土胥", + "canonical_ids": "⿰土胥", + "expanded_ids": "⿰土⿱疋月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "月", + "疋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壼", + "codepoint": "U+58FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58FC", + "status": "exact_ids", + "ids": "⿳士冖亞", + "canonical_ids": "⿳士冖亞", + "expanded_ids": "⿳士冖亞", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亞", + "冖", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壽", + "codepoint": "U+58FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58FD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壾", + "codepoint": "U+58FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58FE", + "status": "exact_ids", + "ids": "⿰壴巨", + "canonical_ids": "⿰壴巨", + "expanded_ids": "⿰⿱十豆巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "巨", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "壿", + "codepoint": "U+58FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-58FF", + "status": "exact_ids", + "ids": "⿰士尊", + "canonical_ids": "⿰士尊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "士", + "寸" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夀", + "codepoint": "U+5900", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5900", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夁", + "codepoint": "U+5901", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5901", + "status": "exact_ids", + "ids": "⿱士䍛", + "canonical_ids": "⿱士䍛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "士" + ], + "unresolved_leaves": [ + "䍛" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夂", + "codepoint": "U+5902", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5902", + "status": "leaf_self_fallback", + "ids": "夂", + "canonical_ids": "夂", + "expanded_ids": "夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夃", + "codepoint": "U+5903", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5903", + "status": "exact_ids", + "ids": "⿻乃又", + "canonical_ids": "⿻乃又", + "expanded_ids": "⿻乃又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "处", + "codepoint": "U+5904", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5904", + "status": "exact_ids", + "ids": "⿰夂卜", + "canonical_ids": "⿰夂卜", + "expanded_ids": "⿰夂卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夅", + "codepoint": "U+5905", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5905", + "status": "exact_ids", + "ids": "⿱夂㐄", + "canonical_ids": "⿱夂㐄", + "expanded_ids": "⿱夂⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夆", + "codepoint": "U+5906", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5906", + "status": "exact_ids", + "ids": "⿱夂丰", + "canonical_ids": "⿱夂丰", + "expanded_ids": "⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "备", + "codepoint": "U+5907", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5907", + "status": "exact_ids", + "ids": "⿱夂田", + "canonical_ids": "⿱夂田", + "expanded_ids": "⿱夂田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夂", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夈", + "codepoint": "U+5908", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5908", + "status": "exact_ids", + "ids": "⿱夂米", + "canonical_ids": "⿱夂米", + "expanded_ids": "⿱夂⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "夂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "変", + "codepoint": "U+5909", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5909", + "status": "exact_ids", + "ids": "⿱亦夂", + "canonical_ids": "⿱亦夂", + "expanded_ids": "⿱亦夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夊", + "codepoint": "U+590A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-590A", + "status": "leaf_self_fallback", + "ids": "夊", + "canonical_ids": "夊", + "expanded_ids": "夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夋", + "codepoint": "U+590B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-590B", + "status": "exact_ids", + "ids": "⿱允夂", + "canonical_ids": "⿱允夂", + "expanded_ids": "⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夌", + "codepoint": "U+590C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-590C", + "status": "exact_ids", + "ids": "⿱圥夂", + "canonical_ids": "⿱圥夂", + "expanded_ids": "⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "复", + "codepoint": "U+590D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-590D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夎", + "codepoint": "U+590E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-590E", + "status": "exact_ids", + "ids": "⿱坐夂", + "canonical_ids": "⿱坐夂", + "expanded_ids": "⿱⿱⿰人人土夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "土", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夏", + "codepoint": "U+590F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-590F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夐", + "codepoint": "U+5910", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5910", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夑", + "codepoint": "U+5911", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5911", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夒", + "codepoint": "U+5912", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5912", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夓", + "codepoint": "U+5913", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5913", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夔", + "codepoint": "U+5914", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5914", + "status": "exact_ids", + "ids": "⿱丷夒", + "canonical_ids": "⿱丷夒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷" + ], + "unresolved_leaves": [ + "夒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夕", + "codepoint": "U+5915", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5915", + "status": "leaf_self_fallback", + "ids": "夕", + "canonical_ids": "夕", + "expanded_ids": "夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "外", + "codepoint": "U+5916", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5916", + "status": "exact_ids", + "ids": "⿰夕卜", + "canonical_ids": "⿰夕卜", + "expanded_ids": "⿰夕卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夗", + "codepoint": "U+5917", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5917", + "status": "exact_ids", + "ids": "⿰夕㔾", + "canonical_ids": "⿰夕㔾", + "expanded_ids": "⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 68, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夘", + "codepoint": "U+5918", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5918", + "status": "exact_ids", + "ids": "⿰夕卩", + "canonical_ids": "⿰夕卩", + "expanded_ids": "⿰夕卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夙", + "codepoint": "U+5919", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5919", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "多", + "codepoint": "U+591A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-591A", + "status": "exact_ids", + "ids": "⿱夕夕", + "canonical_ids": "⿱夕夕", + "expanded_ids": "⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夛", + "codepoint": "U+591B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-591B", + "status": "exact_ids", + "ids": "⿱彐夕", + "canonical_ids": "⿱彐夕", + "expanded_ids": "⿱彐夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "彐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夜", + "codepoint": "U+591C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-591C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夝", + "codepoint": "U+591D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-591D", + "status": "exact_ids", + "ids": "⿰夕生", + "canonical_ids": "⿰夕生", + "expanded_ids": "⿰夕⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夞", + "codepoint": "U+591E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-591E", + "status": "exact_ids", + "ids": "⿱外叱", + "canonical_ids": "⿱外叱", + "expanded_ids": "⿱⿰夕卜⿰口七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "卜", + "口", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "够", + "codepoint": "U+591F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-591F", + "status": "exact_ids", + "ids": "⿰句多", + "canonical_ids": "⿰句多", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夠", + "codepoint": "U+5920", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5920", + "status": "exact_ids", + "ids": "⿰多句", + "canonical_ids": "⿰多句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夡", + "codepoint": "U+5921", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5921", + "status": "exact_ids", + "ids": "⿰多吉", + "canonical_ids": "⿰多吉", + "expanded_ids": "⿰⿱夕夕⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夢", + "codepoint": "U+5922", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5922", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夣", + "codepoint": "U+5923", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5923", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夤", + "codepoint": "U+5924", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5924", + "status": "exact_ids", + "ids": "⿱夕寅", + "canonical_ids": "⿱夕寅", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕" + ], + "unresolved_leaves": [ + "寅" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夥", + "codepoint": "U+5925", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5925", + "status": "exact_ids", + "ids": "⿰果多", + "canonical_ids": "⿰果多", + "expanded_ids": "⿰⿻田木⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夦", + "codepoint": "U+5926", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5926", + "status": "exact_ids", + "ids": "⿰甚多", + "canonical_ids": "⿰甚多", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "甘" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "大", + "codepoint": "U+5927", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5927", + "status": "leaf_self_fallback", + "ids": "大", + "canonical_ids": "大", + "expanded_ids": "大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夨", + "codepoint": "U+5928", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5928", + "status": "leaf_self_fallback", + "ids": "夨", + "canonical_ids": "夨", + "expanded_ids": "夨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "天", + "codepoint": "U+5929", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5929", + "status": "exact_ids", + "ids": "⿻一大", + "canonical_ids": "⿻一大", + "expanded_ids": "⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "夫" + ] + }, + { + "character": "太", + "codepoint": "U+592A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-592A", + "status": "exact_ids", + "ids": "⿻大丶", + "canonical_ids": "⿻大丶", + "expanded_ids": "⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "犬" + ] + }, + { + "character": "夫", + "codepoint": "U+592B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-592B", + "status": "exact_ids", + "ids": "⿻一大", + "canonical_ids": "⿻一大", + "expanded_ids": "⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "天" + ] + }, + { + "character": "夬", + "codepoint": "U+592C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-592C", + "status": "exact_ids", + "ids": "⿻大乛", + "canonical_ids": "⿻大乛", + "expanded_ids": "⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夭", + "codepoint": "U+592D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-592D", + "status": "exact_ids", + "ids": "⿱丿大", + "canonical_ids": "⿱丿大", + "expanded_ids": "⿱丿大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "央", + "codepoint": "U+592E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-592E", + "status": "exact_ids", + "ids": "⿻冂大", + "canonical_ids": "⿻冂大", + "expanded_ids": "⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夯", + "codepoint": "U+592F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-592F", + "status": "exact_ids", + "ids": "⿱大力", + "canonical_ids": "⿱大力", + "expanded_ids": "⿱大力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夰", + "codepoint": "U+5930", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5930", + "status": "exact_ids", + "ids": "⿱大儿", + "canonical_ids": "⿱大儿", + "expanded_ids": "⿱大儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "失", + "codepoint": "U+5931", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5931", + "status": "exact_ids", + "ids": "⿻丿夫", + "canonical_ids": "⿻丿夫", + "expanded_ids": "⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夲", + "codepoint": "U+5932", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5932", + "status": "exact_ids", + "ids": "⿱大十", + "canonical_ids": "⿱大十", + "expanded_ids": "⿱大十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夳", + "codepoint": "U+5933", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5933", + "status": "exact_ids", + "ids": "⿱大二", + "canonical_ids": "⿱大二", + "expanded_ids": "⿱大二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "头", + "codepoint": "U+5934", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5934", + "status": "exact_ids", + "ids": "⿻大冫", + "canonical_ids": "⿻大冫", + "expanded_ids": "⿻大冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夵", + "codepoint": "U+5935", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5935", + "status": "exact_ids", + "ids": "⿱大小", + "canonical_ids": "⿱大小", + "expanded_ids": "⿱大小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夶", + "codepoint": "U+5936", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5936", + "status": "exact_ids", + "ids": "⿰大大", + "canonical_ids": "⿰大大", + "expanded_ids": "⿰大大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夷", + "codepoint": "U+5937", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5937", + "status": "exact_ids", + "ids": "⿻大弓", + "canonical_ids": "⿻大弓", + "expanded_ids": "⿻大弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夸", + "codepoint": "U+5938", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5938", + "status": "exact_ids", + "ids": "⿱大亏", + "canonical_ids": "⿱大亏", + "expanded_ids": "⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夹", + "codepoint": "U+5939", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5939", + "status": "exact_ids", + "ids": "⿻夫丷", + "canonical_ids": "⿻夫丷", + "expanded_ids": "⿻⿻一大丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夺", + "codepoint": "U+593A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-593A", + "status": "exact_ids", + "ids": "⿱大寸", + "canonical_ids": "⿱大寸", + "expanded_ids": "⿱大寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夻", + "codepoint": "U+593B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-593B", + "status": "exact_ids", + "ids": "⿱大口", + "canonical_ids": "⿱大口", + "expanded_ids": "⿱大口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夼", + "codepoint": "U+593C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-593C", + "status": "exact_ids", + "ids": "⿱大川", + "canonical_ids": "⿱大川", + "expanded_ids": "⿱大川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "川" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夽", + "codepoint": "U+593D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-593D", + "status": "exact_ids", + "ids": "⿱大云", + "canonical_ids": "⿱大云", + "expanded_ids": "⿱大⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夾", + "codepoint": "U+593E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-593E", + "status": "exact_ids", + "ids": "⿻大从", + "canonical_ids": "⿻大从", + "expanded_ids": "⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "夿", + "codepoint": "U+593F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-593F", + "status": "exact_ids", + "ids": "⿱大巴", + "canonical_ids": "⿱大巴", + "expanded_ids": "⿱大巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "巴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奀", + "codepoint": "U+5940", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5940", + "status": "exact_ids", + "ids": "⿱不大", + "canonical_ids": "⿱不大", + "expanded_ids": "⿱不大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奁", + "codepoint": "U+5941", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5941", + "status": "exact_ids", + "ids": "⿱大区", + "canonical_ids": "⿱大区", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大" + ], + "unresolved_leaves": [ + "区" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奂", + "codepoint": "U+5942", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5942", + "status": "exact_ids", + "ids": "⿱⺈央", + "canonical_ids": "⿱⺈央", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奃", + "codepoint": "U+5943", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5943", + "status": "exact_ids", + "ids": "⿱大氐", + "canonical_ids": "⿱大氐", + "expanded_ids": "⿱大⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奄", + "codepoint": "U+5944", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5944", + "status": "exact_ids", + "ids": "⿱大电", + "canonical_ids": "⿱大电", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奅", + "codepoint": "U+5945", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5945", + "status": "exact_ids", + "ids": "⿱大卯", + "canonical_ids": "⿱大卯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大" + ], + "unresolved_leaves": [ + "卯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奆", + "codepoint": "U+5946", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5946", + "status": "exact_ids", + "ids": "⿱大巨", + "canonical_ids": "⿱大巨", + "expanded_ids": "⿱大巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "巨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奇", + "codepoint": "U+5947", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5947", + "status": "exact_ids", + "ids": "⿱大可", + "canonical_ids": "⿱大可", + "expanded_ids": "⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奈", + "codepoint": "U+5948", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5948", + "status": "exact_ids", + "ids": "⿱大示", + "canonical_ids": "⿱大示", + "expanded_ids": "⿱大⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "大", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奉", + "codepoint": "U+5949", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5949", + "status": "exact_ids", + "ids": "⿱𡗗㐄", + "canonical_ids": "⿱𡗗㐄", + "expanded_ids": "⿱𡗗⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奊", + "codepoint": "U+594A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-594A", + "status": "exact_ids", + "ids": "⿱圭夨", + "canonical_ids": "⿱圭夨", + "expanded_ids": "⿱⿱土土夨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "夨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奋", + "codepoint": "U+594B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-594B", + "status": "exact_ids", + "ids": "⿱大田", + "canonical_ids": "⿱大田", + "expanded_ids": "⿱大田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奌", + "codepoint": "U+594C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-594C", + "status": "exact_ids", + "ids": "⿱占大", + "canonical_ids": "⿱占大", + "expanded_ids": "⿱⿱卜口大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奍", + "codepoint": "U+594D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-594D", + "status": "exact_ids", + "ids": "⿱龹儿", + "canonical_ids": "⿱龹儿", + "expanded_ids": "⿱龹儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奎", + "codepoint": "U+594E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-594E", + "status": "exact_ids", + "ids": "⿱大圭", + "canonical_ids": "⿱大圭", + "expanded_ids": "⿱大⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奏", + "codepoint": "U+594F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-594F", + "status": "exact_ids", + "ids": "⿱𡗗天", + "canonical_ids": "⿱𡗗天", + "expanded_ids": "⿱𡗗⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奐", + "codepoint": "U+5950", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5950", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "契", + "codepoint": "U+5951", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5951", + "status": "exact_ids", + "ids": "⿱㓞大", + "canonical_ids": "⿱㓞大", + "expanded_ids": "⿱⿰丰刀大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奒", + "codepoint": "U+5952", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5952", + "status": "exact_ids", + "ids": "⿱大亥", + "canonical_ids": "⿱大亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奓", + "codepoint": "U+5953", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5953", + "status": "exact_ids", + "ids": "⿱大多", + "canonical_ids": "⿱大多", + "expanded_ids": "⿱大⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奔", + "codepoint": "U+5954", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5954", + "status": "exact_ids", + "ids": "⿱大卉", + "canonical_ids": "⿱大卉", + "expanded_ids": "⿱大⿱十廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "大", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奕", + "codepoint": "U+5955", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5955", + "status": "exact_ids", + "ids": "⿱亦大", + "canonical_ids": "⿱亦大", + "expanded_ids": "⿱亦大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奖", + "codepoint": "U+5956", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5956", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "套", + "codepoint": "U+5957", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5957", + "status": "exact_ids", + "ids": "⿱大镸", + "canonical_ids": "⿱大镸", + "expanded_ids": "⿱大镸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奘", + "codepoint": "U+5958", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5958", + "status": "exact_ids", + "ids": "⿱壯大", + "canonical_ids": "⿱壯大", + "expanded_ids": "⿱⿰爿土大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "大", + "爿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奙", + "codepoint": "U+5959", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5959", + "status": "exact_ids", + "ids": "⿱厶奄", + "canonical_ids": "⿱厶奄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "大" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奚", + "codepoint": "U+595A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-595A", + "status": "exact_ids", + "ids": "⿱爪𡗞", + "canonical_ids": "⿱爪𡗞", + "expanded_ids": "⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "幺", + "爪" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奛", + "codepoint": "U+595B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-595B", + "status": "exact_ids", + "ids": "⿱大明", + "canonical_ids": "⿱大明", + "expanded_ids": "⿱大⿰日月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奜", + "codepoint": "U+595C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-595C", + "status": "exact_ids", + "ids": "⿱非大", + "canonical_ids": "⿱非大", + "expanded_ids": "⿱非大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奝", + "codepoint": "U+595D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-595D", + "status": "exact_ids", + "ids": "⿱大周", + "canonical_ids": "⿱大周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奞", + "codepoint": "U+595E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-595E", + "status": "exact_ids", + "ids": "⿱大隹", + "canonical_ids": "⿱大隹", + "expanded_ids": "⿱大隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奟", + "codepoint": "U+595F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-595F", + "status": "exact_ids", + "ids": "⿱大朋", + "canonical_ids": "⿱大朋", + "expanded_ids": "⿱大⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奠", + "codepoint": "U+5960", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5960", + "status": "exact_ids", + "ids": "⿱酋大", + "canonical_ids": "⿱酋大", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "大" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奡", + "codepoint": "U+5961", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5961", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奢", + "codepoint": "U+5962", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5962", + "status": "exact_ids", + "ids": "⿱大者", + "canonical_ids": "⿱大者", + "expanded_ids": "⿱大⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "大", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奣", + "codepoint": "U+5963", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5963", + "status": "exact_ids", + "ids": "⿱天明", + "canonical_ids": "⿱天明", + "expanded_ids": "⿱⿻一大⿰日月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "日", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奤", + "codepoint": "U+5964", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5964", + "status": "exact_ids", + "ids": "⿱大面", + "canonical_ids": "⿱大面", + "expanded_ids": "⿱大面", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "面" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奥", + "codepoint": "U+5965", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5965", + "status": "exact_ids", + "ids": "⿱宩大", + "canonical_ids": "⿱宩大", + "expanded_ids": "⿱⿱宀⿻木丷大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "大", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奦", + "codepoint": "U+5966", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5966", + "status": "exact_ids", + "ids": "⿱務大", + "canonical_ids": "⿱務大", + "expanded_ids": "⿱⿰矛⿱夂力大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "夂", + "大", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奧", + "codepoint": "U+5967", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5967", + "status": "exact_ids", + "ids": "⿱宷大", + "canonical_ids": "⿱宷大", + "expanded_ids": "⿱⿱宀⿱丿⿻木丷大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "大", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奨", + "codepoint": "U+5968", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5968", + "status": "exact_ids", + "ids": "⿱将大", + "canonical_ids": "⿱将大", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大" + ], + "unresolved_leaves": [ + "将" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奩", + "codepoint": "U+5969", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5969", + "status": "exact_ids", + "ids": "⿱大區", + "canonical_ids": "⿱大區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奪", + "codepoint": "U+596A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-596A", + "status": "exact_ids", + "ids": "⿱奞寸", + "canonical_ids": "⿱奞寸", + "expanded_ids": "⿱⿱大隹寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "寸", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奫", + "codepoint": "U+596B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-596B", + "status": "exact_ids", + "ids": "⿱大淵", + "canonical_ids": "⿱大淵", + "expanded_ids": "⿱大⿰氵𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "氵", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奬", + "codepoint": "U+596C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-596C", + "status": "exact_ids", + "ids": "⿱將大", + "canonical_ids": "⿱將大", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大" + ], + "unresolved_leaves": [ + "將" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奭", + "codepoint": "U+596D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-596D", + "status": "exact_ids", + "ids": "⿲百大百", + "canonical_ids": "⿲百大百", + "expanded_ids": "⿲⿻一⿻日丶大⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "大", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 251, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奮", + "codepoint": "U+596E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-596E", + "status": "exact_ids", + "ids": "⿱奞田", + "canonical_ids": "⿱奞田", + "expanded_ids": "⿱⿱大隹田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "田", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奯", + "codepoint": "U+596F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-596F", + "status": "exact_ids", + "ids": "⿱大歲", + "canonical_ids": "⿱大歲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大" + ], + "unresolved_leaves": [ + "歲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奰", + "codepoint": "U+5970", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5970", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奱", + "codepoint": "U+5971", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5971", + "status": "exact_ids", + "ids": "⿱䜌大", + "canonical_ids": "⿱䜌大", + "expanded_ids": "⿱⿲⿱幺小言⿱幺小大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "小", + "幺", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奲", + "codepoint": "U+5972", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5972", + "status": "exact_ids", + "ids": "⿰奢單", + "canonical_ids": "⿰奢單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "大", + "日" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "女", + "codepoint": "U+5973", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5973", + "status": "leaf_self_fallback", + "ids": "女", + "canonical_ids": "女", + "expanded_ids": "女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奴", + "codepoint": "U+5974", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5974", + "status": "exact_ids", + "ids": "⿰女又", + "canonical_ids": "⿰女又", + "expanded_ids": "⿰女又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奵", + "codepoint": "U+5975", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5975", + "status": "exact_ids", + "ids": "⿰女丁", + "canonical_ids": "⿰女丁", + "expanded_ids": "⿰女⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奶", + "codepoint": "U+5976", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5976", + "status": "exact_ids", + "ids": "⿰女乃", + "canonical_ids": "⿰女乃", + "expanded_ids": "⿰女乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奷", + "codepoint": "U+5977", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5977", + "status": "exact_ids", + "ids": "⿰女千", + "canonical_ids": "⿰女千", + "expanded_ids": "⿰女⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奸", + "codepoint": "U+5978", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5978", + "status": "exact_ids", + "ids": "⿰女干", + "canonical_ids": "⿰女干", + "expanded_ids": "⿰女⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "她", + "codepoint": "U+5979", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5979", + "status": "exact_ids", + "ids": "⿰女也", + "canonical_ids": "⿰女也", + "expanded_ids": "⿰女⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奺", + "codepoint": "U+597A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-597A", + "status": "exact_ids", + "ids": "⿰女久", + "canonical_ids": "⿰女久", + "expanded_ids": "⿰女久", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "久", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奻", + "codepoint": "U+597B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-597B", + "status": "exact_ids", + "ids": "⿰女女", + "canonical_ids": "⿰女女", + "expanded_ids": "⿰女女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奼", + "codepoint": "U+597C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-597C", + "status": "exact_ids", + "ids": "⿰女乇", + "canonical_ids": "⿰女乇", + "expanded_ids": "⿰女⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "好", + "codepoint": "U+597D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-597D", + "status": "exact_ids", + "ids": "⿰女子", + "canonical_ids": "⿰女子", + "expanded_ids": "⿰女子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奾", + "codepoint": "U+597E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-597E", + "status": "exact_ids", + "ids": "⿰女山", + "canonical_ids": "⿰女山", + "expanded_ids": "⿰女山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "奿", + "codepoint": "U+597F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-597F", + "status": "exact_ids", + "ids": "⿰丸女", + "canonical_ids": "⿰丸女", + "expanded_ids": "⿰⿻九丶女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妀", + "codepoint": "U+5980", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5980", + "status": "exact_ids", + "ids": "⿰己女", + "canonical_ids": "⿰己女", + "expanded_ids": "⿰己女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "己" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妁", + "codepoint": "U+5981", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5981", + "status": "exact_ids", + "ids": "⿰女勺", + "canonical_ids": "⿰女勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "如", + "codepoint": "U+5982", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5982", + "status": "exact_ids", + "ids": "⿰女口", + "canonical_ids": "⿰女口", + "expanded_ids": "⿰女口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妃", + "codepoint": "U+5983", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5983", + "status": "exact_ids", + "ids": "⿰女己", + "canonical_ids": "⿰女己", + "expanded_ids": "⿰女己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "己" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妄", + "codepoint": "U+5984", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5984", + "status": "exact_ids", + "ids": "⿱亡女", + "canonical_ids": "⿱亡女", + "expanded_ids": "⿱⿻亠乚女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妅", + "codepoint": "U+5985", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5985", + "status": "exact_ids", + "ids": "⿰女工", + "canonical_ids": "⿰女工", + "expanded_ids": "⿰女工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妆", + "codepoint": "U+5986", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5986", + "status": "exact_ids", + "ids": "⿰丬女", + "canonical_ids": "⿰丬女", + "expanded_ids": "⿰⿰冫丨女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冫", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妇", + "codepoint": "U+5987", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5987", + "status": "exact_ids", + "ids": "⿰女彐", + "canonical_ids": "⿰女彐", + "expanded_ids": "⿰女彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "彐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妈", + "codepoint": "U+5988", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5988", + "status": "exact_ids", + "ids": "⿰女马", + "canonical_ids": "⿰女马", + "expanded_ids": "⿰女马", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妉", + "codepoint": "U+5989", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5989", + "status": "exact_ids", + "ids": "⿰女冘", + "canonical_ids": "⿰女冘", + "expanded_ids": "⿰女⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妊", + "codepoint": "U+598A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-598A", + "status": "exact_ids", + "ids": "⿰女壬", + "canonical_ids": "⿰女壬", + "expanded_ids": "⿰女⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妋", + "codepoint": "U+598B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-598B", + "status": "exact_ids", + "ids": "⿰女夫", + "canonical_ids": "⿰女夫", + "expanded_ids": "⿰女⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妌", + "codepoint": "U+598C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-598C", + "status": "exact_ids", + "ids": "⿰女井", + "canonical_ids": "⿰女井", + "expanded_ids": "⿰女井", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "井", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妍", + "codepoint": "U+598D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-598D", + "status": "exact_ids", + "ids": "⿰女开", + "canonical_ids": "⿰女开", + "expanded_ids": "⿰女⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "女", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妎", + "codepoint": "U+598E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-598E", + "status": "exact_ids", + "ids": "⿰女介", + "canonical_ids": "⿰女介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妏", + "codepoint": "U+598F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-598F", + "status": "exact_ids", + "ids": "⿰女文", + "canonical_ids": "⿰女文", + "expanded_ids": "⿰女文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "文" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妐", + "codepoint": "U+5990", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5990", + "status": "exact_ids", + "ids": "⿰女公", + "canonical_ids": "⿰女公", + "expanded_ids": "⿰女⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妑", + "codepoint": "U+5991", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5991", + "status": "exact_ids", + "ids": "⿰女巴", + "canonical_ids": "⿰女巴", + "expanded_ids": "⿰女巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "巴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妒", + "codepoint": "U+5992", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5992", + "status": "exact_ids", + "ids": "⿰女戶", + "canonical_ids": "⿰女戶", + "expanded_ids": "⿰女⿻丿尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妓", + "codepoint": "U+5993", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5993", + "status": "exact_ids", + "ids": "⿰女支", + "canonical_ids": "⿰女支", + "expanded_ids": "⿰女⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妔", + "codepoint": "U+5994", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5994", + "status": "exact_ids", + "ids": "⿰女亢", + "canonical_ids": "⿰女亢", + "expanded_ids": "⿰女⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妕", + "codepoint": "U+5995", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5995", + "status": "exact_ids", + "ids": "⿰女中", + "canonical_ids": "⿰女中", + "expanded_ids": "⿰女⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妖", + "codepoint": "U+5996", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5996", + "status": "exact_ids", + "ids": "⿰女夭", + "canonical_ids": "⿰女夭", + "expanded_ids": "⿰女⿱丿大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妗", + "codepoint": "U+5997", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5997", + "status": "exact_ids", + "ids": "⿰女今", + "canonical_ids": "⿰女今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "女" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妘", + "codepoint": "U+5998", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5998", + "status": "exact_ids", + "ids": "⿰女云", + "canonical_ids": "⿰女云", + "expanded_ids": "⿰女⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妙", + "codepoint": "U+5999", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5999", + "status": "exact_ids", + "ids": "⿰女少", + "canonical_ids": "⿰女少", + "expanded_ids": "⿰女⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妚", + "codepoint": "U+599A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-599A", + "status": "exact_ids", + "ids": "⿰女不", + "canonical_ids": "⿰女不", + "expanded_ids": "⿰女不", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妛", + "codepoint": "U+599B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-599B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妜", + "codepoint": "U+599C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-599C", + "status": "exact_ids", + "ids": "⿰女夬", + "canonical_ids": "⿰女夬", + "expanded_ids": "⿰女⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "大", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妝", + "codepoint": "U+599D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-599D", + "status": "exact_ids", + "ids": "⿰爿女", + "canonical_ids": "⿰爿女", + "expanded_ids": "⿰爿女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "爿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妞", + "codepoint": "U+599E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-599E", + "status": "exact_ids", + "ids": "⿰女丑", + "canonical_ids": "⿰女丑", + "expanded_ids": "⿰女丑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妟", + "codepoint": "U+599F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-599F", + "status": "exact_ids", + "ids": "⿱日女", + "canonical_ids": "⿱日女", + "expanded_ids": "⿱日女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妠", + "codepoint": "U+59A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59A0", + "status": "exact_ids", + "ids": "⿰女內", + "canonical_ids": "⿰女內", + "expanded_ids": "⿰女⿻冂入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "冂", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妡", + "codepoint": "U+59A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59A1", + "status": "exact_ids", + "ids": "⿰女斤", + "canonical_ids": "⿰女斤", + "expanded_ids": "⿰女斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妢", + "codepoint": "U+59A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59A2", + "status": "exact_ids", + "ids": "⿰女分", + "canonical_ids": "⿰女分", + "expanded_ids": "⿰女⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妣", + "codepoint": "U+59A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59A3", + "status": "exact_ids", + "ids": "⿰女比", + "canonical_ids": "⿰女比", + "expanded_ids": "⿰女⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妤", + "codepoint": "U+59A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59A4", + "status": "exact_ids", + "ids": "⿰女予", + "canonical_ids": "⿰女予", + "expanded_ids": "⿰女⿱龴⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "女", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妥", + "codepoint": "U+59A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59A5", + "status": "exact_ids", + "ids": "⿱爫女", + "canonical_ids": "⿱爫女", + "expanded_ids": "⿱爫女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妦", + "codepoint": "U+59A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59A6", + "status": "exact_ids", + "ids": "⿰女丰", + "canonical_ids": "⿰女丰", + "expanded_ids": "⿰女丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妧", + "codepoint": "U+59A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59A7", + "status": "exact_ids", + "ids": "⿰女元", + "canonical_ids": "⿰女元", + "expanded_ids": "⿰女⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妨", + "codepoint": "U+59A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59A8", + "status": "exact_ids", + "ids": "⿰女方", + "canonical_ids": "⿰女方", + "expanded_ids": "⿰女方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妩", + "codepoint": "U+59A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59A9", + "status": "exact_ids", + "ids": "⿰女无", + "canonical_ids": "⿰女无", + "expanded_ids": "⿰女无", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "无" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妪", + "codepoint": "U+59AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59AA", + "status": "exact_ids", + "ids": "⿰女区", + "canonical_ids": "⿰女区", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "区" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妫", + "codepoint": "U+59AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59AB", + "status": "exact_ids", + "ids": "⿰女为", + "canonical_ids": "⿰女为", + "expanded_ids": "⿰女⿻力丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "力", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妬", + "codepoint": "U+59AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59AC", + "status": "exact_ids", + "ids": "⿰女石", + "canonical_ids": "⿰女石", + "expanded_ids": "⿰女石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妭", + "codepoint": "U+59AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59AD", + "status": "exact_ids", + "ids": "⿰女犮", + "canonical_ids": "⿰女犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妮", + "codepoint": "U+59AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59AE", + "status": "exact_ids", + "ids": "⿰女尼", + "canonical_ids": "⿰女尼", + "expanded_ids": "⿰女⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "女", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妯", + "codepoint": "U+59AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59AF", + "status": "exact_ids", + "ids": "⿰女由", + "canonical_ids": "⿰女由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妰", + "codepoint": "U+59B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59B0", + "status": "exact_ids", + "ids": "⿰女乍", + "canonical_ids": "⿰女乍", + "expanded_ids": "⿰女乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妱", + "codepoint": "U+59B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59B1", + "status": "exact_ids", + "ids": "⿰女召", + "canonical_ids": "⿰女召", + "expanded_ids": "⿰女⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妲", + "codepoint": "U+59B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59B2", + "status": "exact_ids", + "ids": "⿰女旦", + "canonical_ids": "⿰女旦", + "expanded_ids": "⿰女⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "女", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妳", + "codepoint": "U+59B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59B3", + "status": "exact_ids", + "ids": "⿰女尔", + "canonical_ids": "⿰女尔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "小" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妴", + "codepoint": "U+59B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59B4", + "status": "exact_ids", + "ids": "⿱夗女", + "canonical_ids": "⿱夗女", + "expanded_ids": "⿱⿰夕㔾女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妵", + "codepoint": "U+59B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59B5", + "status": "exact_ids", + "ids": "⿰女主", + "canonical_ids": "⿰女主", + "expanded_ids": "⿰女⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "女", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妶", + "codepoint": "U+59B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59B6", + "status": "exact_ids", + "ids": "⿰女玄", + "canonical_ids": "⿰女玄", + "expanded_ids": "⿰女⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "女", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妷", + "codepoint": "U+59B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59B7", + "status": "exact_ids", + "ids": "⿰女失", + "canonical_ids": "⿰女失", + "expanded_ids": "⿰女⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妸", + "codepoint": "U+59B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59B8", + "status": "exact_ids", + "ids": "⿰女可", + "canonical_ids": "⿰女可", + "expanded_ids": "⿰女⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妹", + "codepoint": "U+59B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59B9", + "status": "exact_ids", + "ids": "⿰女未", + "canonical_ids": "⿰女未", + "expanded_ids": "⿰女⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "妺" + ] + }, + { + "character": "妺", + "codepoint": "U+59BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59BA", + "status": "exact_ids", + "ids": "⿰女末", + "canonical_ids": "⿰女末", + "expanded_ids": "⿰女⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "妹" + ] + }, + { + "character": "妻", + "codepoint": "U+59BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59BB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妼", + "codepoint": "U+59BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59BC", + "status": "exact_ids", + "ids": "⿰女必", + "canonical_ids": "⿰女必", + "expanded_ids": "⿰女⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妽", + "codepoint": "U+59BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59BD", + "status": "exact_ids", + "ids": "⿰女申", + "canonical_ids": "⿰女申", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妾", + "codepoint": "U+59BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59BE", + "status": "exact_ids", + "ids": "⿱立女", + "canonical_ids": "⿱立女", + "expanded_ids": "⿱立女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "妿", + "codepoint": "U+59BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59BF", + "status": "exact_ids", + "ids": "⿱加女", + "canonical_ids": "⿱加女", + "expanded_ids": "⿱⿰力口女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姀", + "codepoint": "U+59C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59C0", + "status": "exact_ids", + "ids": "⿰女禾", + "canonical_ids": "⿰女禾", + "expanded_ids": "⿰女⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姁", + "codepoint": "U+59C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59C1", + "status": "exact_ids", + "ids": "⿰女句", + "canonical_ids": "⿰女句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姂", + "codepoint": "U+59C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59C2", + "status": "exact_ids", + "ids": "⿰女乏", + "canonical_ids": "⿰女乏", + "expanded_ids": "⿰女⿱丿之", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "之", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姃", + "codepoint": "U+59C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59C3", + "status": "exact_ids", + "ids": "⿰女正", + "canonical_ids": "⿰女正", + "expanded_ids": "⿰女⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "女", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姄", + "codepoint": "U+59C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59C4", + "status": "exact_ids", + "ids": "⿰女民", + "canonical_ids": "⿰女民", + "expanded_ids": "⿰女民", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "民" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姅", + "codepoint": "U+59C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59C5", + "status": "exact_ids", + "ids": "⿰女半", + "canonical_ids": "⿰女半", + "expanded_ids": "⿰女半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姆", + "codepoint": "U+59C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59C6", + "status": "exact_ids", + "ids": "⿰女母", + "canonical_ids": "⿰女母", + "expanded_ids": "⿰女母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姇", + "codepoint": "U+59C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59C7", + "status": "exact_ids", + "ids": "⿱付女", + "canonical_ids": "⿱付女", + "expanded_ids": "⿱⿰亻寸女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "女", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姈", + "codepoint": "U+59C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59C8", + "status": "exact_ids", + "ids": "⿰女令", + "canonical_ids": "⿰女令", + "expanded_ids": "⿰女⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "女", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姉", + "codepoint": "U+59C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59C9", + "status": "exact_ids", + "ids": "⿰女巿", + "canonical_ids": "⿰女巿", + "expanded_ids": "⿰女⿻⿻冂丨一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姊", + "codepoint": "U+59CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59CA", + "status": "exact_ids", + "ids": "⿰女𠂔", + "canonical_ids": "⿰女𠂔", + "expanded_ids": "⿰女𠂔", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "𠂔" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 76, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "始", + "codepoint": "U+59CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59CB", + "status": "exact_ids", + "ids": "⿰女台", + "canonical_ids": "⿰女台", + "expanded_ids": "⿰女⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姌", + "codepoint": "U+59CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59CC", + "status": "exact_ids", + "ids": "⿰女冉", + "canonical_ids": "⿰女冉", + "expanded_ids": "⿰女⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "土", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姍", + "codepoint": "U+59CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59CD", + "status": "exact_ids", + "ids": "⿰女冊", + "canonical_ids": "⿰女冊", + "expanded_ids": "⿰女⿻冂廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "女", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姎", + "codepoint": "U+59CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59CE", + "status": "exact_ids", + "ids": "⿰女央", + "canonical_ids": "⿰女央", + "expanded_ids": "⿰女⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姏", + "codepoint": "U+59CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59CF", + "status": "exact_ids", + "ids": "⿰女甘", + "canonical_ids": "⿰女甘", + "expanded_ids": "⿰女甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姐", + "codepoint": "U+59D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59D0", + "status": "exact_ids", + "ids": "⿰女且", + "canonical_ids": "⿰女且", + "expanded_ids": "⿰女且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姑", + "codepoint": "U+59D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59D1", + "status": "exact_ids", + "ids": "⿰女古", + "canonical_ids": "⿰女古", + "expanded_ids": "⿰女⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姒", + "codepoint": "U+59D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59D2", + "status": "exact_ids", + "ids": "⿰女以", + "canonical_ids": "⿰女以", + "expanded_ids": "⿰女⿰厶人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "厶", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姓", + "codepoint": "U+59D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59D3", + "status": "exact_ids", + "ids": "⿰女生", + "canonical_ids": "⿰女生", + "expanded_ids": "⿰女⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "女", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "委", + "codepoint": "U+59D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59D4", + "status": "exact_ids", + "ids": "⿱禾女", + "canonical_ids": "⿱禾女", + "expanded_ids": "⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姕", + "codepoint": "U+59D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59D5", + "status": "exact_ids", + "ids": "⿱此女", + "canonical_ids": "⿱此女", + "expanded_ids": "⿱⿰止匕女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "女", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姖", + "codepoint": "U+59D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59D6", + "status": "exact_ids", + "ids": "⿰女巨", + "canonical_ids": "⿰女巨", + "expanded_ids": "⿰女巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "巨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姗", + "codepoint": "U+59D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59D7", + "status": "exact_ids", + "ids": "⿰女册", + "canonical_ids": "⿰女册", + "expanded_ids": "⿰女册", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "册", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姘", + "codepoint": "U+59D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59D8", + "status": "exact_ids", + "ids": "⿰女并", + "canonical_ids": "⿰女并", + "expanded_ids": "⿰女⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "女", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姙", + "codepoint": "U+59D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59D9", + "status": "exact_ids", + "ids": "⿰女任", + "canonical_ids": "⿰女任", + "expanded_ids": "⿰女⿰亻⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "士", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姚", + "codepoint": "U+59DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59DA", + "status": "exact_ids", + "ids": "⿰女兆", + "canonical_ids": "⿰女兆", + "expanded_ids": "⿰女兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姛", + "codepoint": "U+59DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59DB", + "status": "exact_ids", + "ids": "⿰女同", + "canonical_ids": "⿰女同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姜", + "codepoint": "U+59DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59DC", + "status": "exact_ids", + "ids": "⿱𦍌女", + "canonical_ids": "⿱𦍌女", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "𦍌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姝", + "codepoint": "U+59DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59DD", + "status": "exact_ids", + "ids": "⿰女朱", + "canonical_ids": "⿰女朱", + "expanded_ids": "⿰女⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姞", + "codepoint": "U+59DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59DE", + "status": "exact_ids", + "ids": "⿰女吉", + "canonical_ids": "⿰女吉", + "expanded_ids": "⿰女⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姟", + "codepoint": "U+59DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59DF", + "status": "exact_ids", + "ids": "⿰女亥", + "canonical_ids": "⿰女亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姠", + "codepoint": "U+59E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59E0", + "status": "exact_ids", + "ids": "⿰女向", + "canonical_ids": "⿰女向", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "女" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姡", + "codepoint": "U+59E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59E1", + "status": "exact_ids", + "ids": "⿰女舌", + "canonical_ids": "⿰女舌", + "expanded_ids": "⿰女⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姢", + "codepoint": "U+59E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59E2", + "status": "exact_ids", + "ids": "⿰女䏍", + "canonical_ids": "⿰女䏍", + "expanded_ids": "⿰女⿱厶月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "女", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姣", + "codepoint": "U+59E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59E3", + "status": "exact_ids", + "ids": "⿰女交", + "canonical_ids": "⿰女交", + "expanded_ids": "⿰女⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "女", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姤", + "codepoint": "U+59E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59E4", + "status": "exact_ids", + "ids": "⿰女后", + "canonical_ids": "⿰女后", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "后" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姥", + "codepoint": "U+59E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59E5", + "status": "exact_ids", + "ids": "⿰女老", + "canonical_ids": "⿰女老", + "expanded_ids": "⿰女⿱⿻土丿匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姦", + "codepoint": "U+59E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59E6", + "status": "exact_ids", + "ids": "⿱女⿰女女", + "canonical_ids": "⿱女⿰女女", + "expanded_ids": "⿱女⿰女女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姧", + "codepoint": "U+59E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59E7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姨", + "codepoint": "U+59E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59E8", + "status": "exact_ids", + "ids": "⿰女夷", + "canonical_ids": "⿰女夷", + "expanded_ids": "⿰女⿻大弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "女", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姩", + "codepoint": "U+59E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59E9", + "status": "exact_ids", + "ids": "⿰女年", + "canonical_ids": "⿰女年", + "expanded_ids": "⿰女年", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "年" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姪", + "codepoint": "U+59EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59EA", + "status": "exact_ids", + "ids": "⿰女至", + "canonical_ids": "⿰女至", + "expanded_ids": "⿰女⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姫", + "codepoint": "U+59EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59EB", + "status": "exact_ids", + "ids": "⿰女臣", + "canonical_ids": "⿰女臣", + "expanded_ids": "⿰女臣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姬", + "codepoint": "U+59EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59EC", + "status": "exact_ids", + "ids": "⿰女𦣞", + "canonical_ids": "⿰女𦣞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "𦣞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姭", + "codepoint": "U+59ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59ED", + "status": "exact_ids", + "ids": "⿱劦女", + "canonical_ids": "⿱劦女", + "expanded_ids": "⿱⿱力⿰力力女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姮", + "codepoint": "U+59EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59EE", + "status": "exact_ids", + "ids": "⿰女亘", + "canonical_ids": "⿰女亘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姯", + "codepoint": "U+59EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59EF", + "status": "exact_ids", + "ids": "⿰女光", + "canonical_ids": "⿰女光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "女" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姰", + "codepoint": "U+59F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59F0", + "status": "exact_ids", + "ids": "⿰女旬", + "canonical_ids": "⿰女旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姱", + "codepoint": "U+59F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59F1", + "status": "exact_ids", + "ids": "⿰女夸", + "canonical_ids": "⿰女夸", + "expanded_ids": "⿰女⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姲", + "codepoint": "U+59F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59F2", + "status": "exact_ids", + "ids": "⿰女安", + "canonical_ids": "⿰女安", + "expanded_ids": "⿰女⿱宀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姳", + "codepoint": "U+59F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59F3", + "status": "exact_ids", + "ids": "⿰女名", + "canonical_ids": "⿰女名", + "expanded_ids": "⿰女⿱夕口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夕", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姴", + "codepoint": "U+59F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59F4", + "status": "exact_ids", + "ids": "⿱列女", + "canonical_ids": "⿱列女", + "expanded_ids": "⿱⿰⿻夕一刂女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "夕", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姵", + "codepoint": "U+59F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59F5", + "status": "exact_ids", + "ids": "⿰女凧", + "canonical_ids": "⿰女凧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "凧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姶", + "codepoint": "U+59F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59F6", + "status": "exact_ids", + "ids": "⿰女合", + "canonical_ids": "⿰女合", + "expanded_ids": "⿰女⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姷", + "codepoint": "U+59F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59F7", + "status": "exact_ids", + "ids": "⿰女有", + "canonical_ids": "⿰女有", + "expanded_ids": "⿰女⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "女", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姸", + "codepoint": "U+59F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59F8", + "status": "exact_ids", + "ids": "⿰女幵", + "canonical_ids": "⿰女幵", + "expanded_ids": "⿰女⿰⿱一十⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姹", + "codepoint": "U+59F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59F9", + "status": "exact_ids", + "ids": "⿰女宅", + "canonical_ids": "⿰女宅", + "expanded_ids": "⿰女⿱宀⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "女", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姺", + "codepoint": "U+59FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59FA", + "status": "exact_ids", + "ids": "⿰女先", + "canonical_ids": "⿰女先", + "expanded_ids": "⿰女⿱牛儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "女", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姻", + "codepoint": "U+59FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59FB", + "status": "exact_ids", + "ids": "⿰女因", + "canonical_ids": "⿰女因", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姼", + "codepoint": "U+59FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59FC", + "status": "exact_ids", + "ids": "⿰女多", + "canonical_ids": "⿰女多", + "expanded_ids": "⿰女⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姽", + "codepoint": "U+59FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59FD", + "status": "exact_ids", + "ids": "⿰女危", + "canonical_ids": "⿰女危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "女" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姾", + "codepoint": "U+59FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59FE", + "status": "exact_ids", + "ids": "⿰女全", + "canonical_ids": "⿰女全", + "expanded_ids": "⿰女⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "女", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "姿", + "codepoint": "U+59FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-59FF", + "status": "exact_ids", + "ids": "⿱次女", + "canonical_ids": "⿱次女", + "expanded_ids": "⿱⿰冫欠女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "女", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娀", + "codepoint": "U+5A00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A00", + "status": "exact_ids", + "ids": "⿰女戎", + "canonical_ids": "⿰女戎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "女" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "威", + "codepoint": "U+5A01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A01", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娂", + "codepoint": "U+5A02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A02", + "status": "exact_ids", + "ids": "⿰女共", + "canonical_ids": "⿰女共", + "expanded_ids": "⿰女⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "廾", + "廿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娃", + "codepoint": "U+5A03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A03", + "status": "exact_ids", + "ids": "⿰女圭", + "canonical_ids": "⿰女圭", + "expanded_ids": "⿰女⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娄", + "codepoint": "U+5A04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A04", + "status": "exact_ids", + "ids": "⿱米女", + "canonical_ids": "⿱米女", + "expanded_ids": "⿱⿻木丷女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娅", + "codepoint": "U+5A05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A05", + "status": "exact_ids", + "ids": "⿰女亚", + "canonical_ids": "⿰女亚", + "expanded_ids": "⿰女亚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亚", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娆", + "codepoint": "U+5A06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A06", + "status": "exact_ids", + "ids": "⿰女尧", + "canonical_ids": "⿰女尧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "尧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娇", + "codepoint": "U+5A07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A07", + "status": "exact_ids", + "ids": "⿰女乔", + "canonical_ids": "⿰女乔", + "expanded_ids": "⿰女⿱丿⿱大儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "大", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娈", + "codepoint": "U+5A08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A08", + "status": "exact_ids", + "ids": "⿱亦女", + "canonical_ids": "⿱亦女", + "expanded_ids": "⿱亦女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娉", + "codepoint": "U+5A09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A09", + "status": "exact_ids", + "ids": "⿰女甹", + "canonical_ids": "⿰女甹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "女" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娊", + "codepoint": "U+5A0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A0A", + "status": "exact_ids", + "ids": "⿰女見", + "canonical_ids": "⿰女見", + "expanded_ids": "⿰女⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "女", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娋", + "codepoint": "U+5A0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A0B", + "status": "exact_ids", + "ids": "⿰女肖", + "canonical_ids": "⿰女肖", + "expanded_ids": "⿰女⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "小", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娌", + "codepoint": "U+5A0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A0C", + "status": "exact_ids", + "ids": "⿰女里", + "canonical_ids": "⿰女里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娍", + "codepoint": "U+5A0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A0D", + "status": "exact_ids", + "ids": "⿰女成", + "canonical_ids": "⿰女成", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "成" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娎", + "codepoint": "U+5A0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A0E", + "status": "exact_ids", + "ids": "⿱折女", + "canonical_ids": "⿱折女", + "expanded_ids": "⿱⿰扌斤女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "扌", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娏", + "codepoint": "U+5A0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A0F", + "status": "exact_ids", + "ids": "⿰女尨", + "canonical_ids": "⿰女尨", + "expanded_ids": "⿰女⿰尤彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "尤", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娐", + "codepoint": "U+5A10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A10", + "status": "exact_ids", + "ids": "⿰女孚", + "canonical_ids": "⿰女孚", + "expanded_ids": "⿰女⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "子", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娑", + "codepoint": "U+5A11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A11", + "status": "exact_ids", + "ids": "⿱沙女", + "canonical_ids": "⿱沙女", + "expanded_ids": "⿱⿰氵⿱小丿女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "小", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娒", + "codepoint": "U+5A12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A12", + "status": "exact_ids", + "ids": "⿰女每", + "canonical_ids": "⿰女每", + "expanded_ids": "⿰女⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "女", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娓", + "codepoint": "U+5A13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A13", + "status": "exact_ids", + "ids": "⿰女尾", + "canonical_ids": "⿰女尾", + "expanded_ids": "⿰女⿱尸毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "尸", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娔", + "codepoint": "U+5A14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A14", + "status": "exact_ids", + "ids": "⿰女克", + "canonical_ids": "⿰女克", + "expanded_ids": "⿰女⿱⿻十口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "十", + "口", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娕", + "codepoint": "U+5A15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A15", + "status": "exact_ids", + "ids": "⿰女束", + "canonical_ids": "⿰女束", + "expanded_ids": "⿰女⿻木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娖", + "codepoint": "U+5A16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A16", + "status": "exact_ids", + "ids": "⿰女足", + "canonical_ids": "⿰女足", + "expanded_ids": "⿰女⿱口龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娗", + "codepoint": "U+5A17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A17", + "status": "exact_ids", + "ids": "⿰女廷", + "canonical_ids": "⿰女廷", + "expanded_ids": "⿰女⿰廴⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "女", + "廴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娘", + "codepoint": "U+5A18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A18", + "status": "exact_ids", + "ids": "⿰女良", + "canonical_ids": "⿰女良", + "expanded_ids": "⿰女⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "女", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娙", + "codepoint": "U+5A19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A19", + "status": "exact_ids", + "ids": "⿰女巠", + "canonical_ids": "⿰女巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娚", + "codepoint": "U+5A1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A1A", + "status": "exact_ids", + "ids": "⿰女男", + "canonical_ids": "⿰女男", + "expanded_ids": "⿰女⿱田力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "女", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娛", + "codepoint": "U+5A1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A1B", + "status": "exact_ids", + "ids": "⿰女吳", + "canonical_ids": "⿰女吳", + "expanded_ids": "⿰女⿱口⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "口", + "大", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娜", + "codepoint": "U+5A1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A1C", + "status": "exact_ids", + "ids": "⿰女那", + "canonical_ids": "⿰女那", + "expanded_ids": "⿰女⿰⿻冂二阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "冂", + "女", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娝", + "codepoint": "U+5A1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A1D", + "status": "exact_ids", + "ids": "⿰女否", + "canonical_ids": "⿰女否", + "expanded_ids": "⿰女⿱不口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "口", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娞", + "codepoint": "U+5A1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A1E", + "status": "exact_ids", + "ids": "⿰女妥", + "canonical_ids": "⿰女妥", + "expanded_ids": "⿰女⿱爫女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娟", + "codepoint": "U+5A1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A1F", + "status": "exact_ids", + "ids": "⿰女肙", + "canonical_ids": "⿰女肙", + "expanded_ids": "⿰女⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娠", + "codepoint": "U+5A20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A20", + "status": "exact_ids", + "ids": "⿰女辰", + "canonical_ids": "⿰女辰", + "expanded_ids": "⿰女辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娡", + "codepoint": "U+5A21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A21", + "status": "exact_ids", + "ids": "⿰女志", + "canonical_ids": "⿰女志", + "expanded_ids": "⿰女⿱士心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "士", + "女", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娢", + "codepoint": "U+5A22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A22", + "status": "exact_ids", + "ids": "⿰女含", + "canonical_ids": "⿰女含", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "女" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娣", + "codepoint": "U+5A23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A23", + "status": "exact_ids", + "ids": "⿰女弟", + "canonical_ids": "⿰女弟", + "expanded_ids": "⿰女⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "女", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娤", + "codepoint": "U+5A24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A24", + "status": "exact_ids", + "ids": "⿱壯女", + "canonical_ids": "⿱壯女", + "expanded_ids": "⿱⿰爿土女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "女", + "爿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娥", + "codepoint": "U+5A25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A25", + "status": "exact_ids", + "ids": "⿰女我", + "canonical_ids": "⿰女我", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "女" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娦", + "codepoint": "U+5A26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A26", + "status": "exact_ids", + "ids": "⿰女兵", + "canonical_ids": "⿰女兵", + "expanded_ids": "⿰女⿱丘八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "八", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娧", + "codepoint": "U+5A27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A27", + "status": "exact_ids", + "ids": "⿰女兌", + "canonical_ids": "⿰女兌", + "expanded_ids": "⿰女⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娨", + "codepoint": "U+5A28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A28", + "status": "exact_ids", + "ids": "⿰女旱", + "canonical_ids": "⿰女旱", + "expanded_ids": "⿰女⿱日⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "女", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娩", + "codepoint": "U+5A29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A29", + "status": "exact_ids", + "ids": "⿰女免", + "canonical_ids": "⿰女免", + "expanded_ids": "⿰女免", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "免", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娪", + "codepoint": "U+5A2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A2A", + "status": "exact_ids", + "ids": "⿰女吾", + "canonical_ids": "⿰女吾", + "expanded_ids": "⿰女⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娫", + "codepoint": "U+5A2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A2B", + "status": "exact_ids", + "ids": "⿰女延", + "canonical_ids": "⿰女延", + "expanded_ids": "⿰女⿰廴⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "女", + "廴", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娬", + "codepoint": "U+5A2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A2C", + "status": "exact_ids", + "ids": "⿰女武", + "canonical_ids": "⿰女武", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "武" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娭", + "codepoint": "U+5A2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A2D", + "status": "exact_ids", + "ids": "⿰女矣", + "canonical_ids": "⿰女矣", + "expanded_ids": "⿰女⿱厶⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "厶", + "大", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娮", + "codepoint": "U+5A2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A2E", + "status": "exact_ids", + "ids": "⿰女言", + "canonical_ids": "⿰女言", + "expanded_ids": "⿰女言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娯", + "codepoint": "U+5A2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A2F", + "status": "exact_ids", + "ids": "⿰女呉", + "canonical_ids": "⿰女呉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "呉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娰", + "codepoint": "U+5A30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A30", + "status": "exact_ids", + "ids": "⿰女似", + "canonical_ids": "⿰女似", + "expanded_ids": "⿰女⿰亻⿰厶人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "亻", + "厶", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娱", + "codepoint": "U+5A31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A31", + "status": "exact_ids", + "ids": "⿰女吴", + "canonical_ids": "⿰女吴", + "expanded_ids": "⿰女⿱口⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "大", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娲", + "codepoint": "U+5A32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A32", + "status": "exact_ids", + "ids": "⿰女呙", + "canonical_ids": "⿰女呙", + "expanded_ids": "⿰女⿱口⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娳", + "codepoint": "U+5A33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A33", + "status": "exact_ids", + "ids": "⿰女利", + "canonical_ids": "⿰女利", + "expanded_ids": "⿰女⿰⿻丿木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娴", + "codepoint": "U+5A34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A34", + "status": "exact_ids", + "ids": "⿰女闲", + "canonical_ids": "⿰女闲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "闲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娵", + "codepoint": "U+5A35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A35", + "status": "exact_ids", + "ids": "⿰女取", + "canonical_ids": "⿰女取", + "expanded_ids": "⿰女⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "女", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娶", + "codepoint": "U+5A36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A36", + "status": "exact_ids", + "ids": "⿱取女", + "canonical_ids": "⿱取女", + "expanded_ids": "⿱⿰耳又女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "女", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娷", + "codepoint": "U+5A37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A37", + "status": "exact_ids", + "ids": "⿰女垂", + "canonical_ids": "⿰女垂", + "expanded_ids": "⿰女垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "垂", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娸", + "codepoint": "U+5A38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A38", + "status": "exact_ids", + "ids": "⿰女其", + "canonical_ids": "⿰女其", + "expanded_ids": "⿰女其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娹", + "codepoint": "U+5A39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A39", + "status": "exact_ids", + "ids": "⿰女弦", + "canonical_ids": "⿰女弦", + "expanded_ids": "⿰女⿰弓⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "女", + "幺", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娺", + "codepoint": "U+5A3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A3A", + "status": "exact_ids", + "ids": "⿰女叕", + "canonical_ids": "⿰女叕", + "expanded_ids": "⿰女⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娻", + "codepoint": "U+5A3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A3B", + "status": "exact_ids", + "ids": "⿰女東", + "canonical_ids": "⿰女東", + "expanded_ids": "⿰女⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娼", + "codepoint": "U+5A3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A3C", + "status": "exact_ids", + "ids": "⿰女昌", + "canonical_ids": "⿰女昌", + "expanded_ids": "⿰女⿱日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娽", + "codepoint": "U+5A3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A3D", + "status": "exact_ids", + "ids": "⿰女录", + "canonical_ids": "⿰女录", + "expanded_ids": "⿰女⿱彐氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "彐", + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娾", + "codepoint": "U+5A3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A3E", + "status": "exact_ids", + "ids": "⿰女厓", + "canonical_ids": "⿰女厓", + "expanded_ids": "⿰女⿱厂⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "土", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "娿", + "codepoint": "U+5A3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A3F", + "status": "exact_ids", + "ids": "⿱阿女", + "canonical_ids": "⿱阿女", + "expanded_ids": "⿱⿰阝⿰口⿱一亅女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "女", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婀", + "codepoint": "U+5A40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A40", + "status": "exact_ids", + "ids": "⿰女阿", + "canonical_ids": "⿰女阿", + "expanded_ids": "⿰女⿰阝⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "女", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婁", + "codepoint": "U+5A41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A41", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婂", + "codepoint": "U+5A42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A42", + "status": "exact_ids", + "ids": "⿰女帛", + "canonical_ids": "⿰女帛", + "expanded_ids": "⿰女⿱⿻日丶⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丶", + "冂", + "女", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婃", + "codepoint": "U+5A43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A43", + "status": "exact_ids", + "ids": "⿰女宗", + "canonical_ids": "⿰女宗", + "expanded_ids": "⿰女⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "女", + "宀", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婄", + "codepoint": "U+5A44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A44", + "status": "exact_ids", + "ids": "⿰女咅", + "canonical_ids": "⿰女咅", + "expanded_ids": "⿰女⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婅", + "codepoint": "U+5A45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A45", + "status": "exact_ids", + "ids": "⿰女匊", + "canonical_ids": "⿰女匊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "匊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婆", + "codepoint": "U+5A46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A46", + "status": "exact_ids", + "ids": "⿱波女", + "canonical_ids": "⿱波女", + "expanded_ids": "⿱⿰氵皮女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "氵", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婇", + "codepoint": "U+5A47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A47", + "status": "exact_ids", + "ids": "⿰女采", + "canonical_ids": "⿰女采", + "expanded_ids": "⿰女⿱爫木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "木", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婈", + "codepoint": "U+5A48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A48", + "status": "exact_ids", + "ids": "⿰女夌", + "canonical_ids": "⿰女夌", + "expanded_ids": "⿰女⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婉", + "codepoint": "U+5A49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A49", + "status": "exact_ids", + "ids": "⿰女宛", + "canonical_ids": "⿰女宛", + "expanded_ids": "⿰女⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "女", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婊", + "codepoint": "U+5A4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A4A", + "status": "exact_ids", + "ids": "⿰女表", + "canonical_ids": "⿰女表", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "表" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婋", + "codepoint": "U+5A4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A4B", + "status": "exact_ids", + "ids": "⿰女虎", + "canonical_ids": "⿰女虎", + "expanded_ids": "⿰女⿱虍儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "女", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婌", + "codepoint": "U+5A4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A4C", + "status": "exact_ids", + "ids": "⿰女叔", + "canonical_ids": "⿰女叔", + "expanded_ids": "⿰女⿰⿱上小又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "又", + "女", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婍", + "codepoint": "U+5A4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A4D", + "status": "exact_ids", + "ids": "⿰女奇", + "canonical_ids": "⿰女奇", + "expanded_ids": "⿰女⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婎", + "codepoint": "U+5A4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A4E", + "status": "exact_ids", + "ids": "⿰女隹", + "canonical_ids": "⿰女隹", + "expanded_ids": "⿰女隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婏", + "codepoint": "U+5A4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A4F", + "status": "exact_ids", + "ids": "⿰女兔", + "canonical_ids": "⿰女兔", + "expanded_ids": "⿰女⿻免丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "免", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婐", + "codepoint": "U+5A50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A50", + "status": "exact_ids", + "ids": "⿰女果", + "canonical_ids": "⿰女果", + "expanded_ids": "⿰女⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婑", + "codepoint": "U+5A51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A51", + "status": "exact_ids", + "ids": "⿰女委", + "canonical_ids": "⿰女委", + "expanded_ids": "⿰女⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婒", + "codepoint": "U+5A52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A52", + "status": "exact_ids", + "ids": "⿰女炎", + "canonical_ids": "⿰女炎", + "expanded_ids": "⿰女⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婓", + "codepoint": "U+5A53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A53", + "status": "exact_ids", + "ids": "⿱非女", + "canonical_ids": "⿱非女", + "expanded_ids": "⿱非女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婔", + "codepoint": "U+5A54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A54", + "status": "exact_ids", + "ids": "⿰女非", + "canonical_ids": "⿰女非", + "expanded_ids": "⿰女非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婕", + "codepoint": "U+5A55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A55", + "status": "exact_ids", + "ids": "⿰女疌", + "canonical_ids": "⿰女疌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "疌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婖", + "codepoint": "U+5A56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A56", + "status": "exact_ids", + "ids": "⿰女忝", + "canonical_ids": "⿰女忝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "女" + ], + "unresolved_leaves": [ + "㣺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婗", + "codepoint": "U+5A57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A57", + "status": "exact_ids", + "ids": "⿰女兒", + "canonical_ids": "⿰女兒", + "expanded_ids": "⿰女⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "女", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婘", + "codepoint": "U+5A58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A58", + "status": "exact_ids", + "ids": "⿰女卷", + "canonical_ids": "⿰女卷", + "expanded_ids": "⿰女⿱龹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "女", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婙", + "codepoint": "U+5A59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A59", + "status": "exact_ids", + "ids": "⿰女争", + "canonical_ids": "⿰女争", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "争" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婚", + "codepoint": "U+5A5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A5A", + "status": "exact_ids", + "ids": "⿰女昏", + "canonical_ids": "⿰女昏", + "expanded_ids": "⿰女⿱氏日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "日", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婛", + "codepoint": "U+5A5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A5B", + "status": "exact_ids", + "ids": "⿰女京", + "canonical_ids": "⿰女京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婜", + "codepoint": "U+5A5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A5C", + "status": "exact_ids", + "ids": "⿱臤女", + "canonical_ids": "⿱臤女", + "expanded_ids": "⿱⿰臣又女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "女", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婝", + "codepoint": "U+5A5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A5D", + "status": "exact_ids", + "ids": "⿰女定", + "canonical_ids": "⿰女定", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婞", + "codepoint": "U+5A5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A5E", + "status": "exact_ids", + "ids": "⿰女幸", + "canonical_ids": "⿰女幸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "女" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婟", + "codepoint": "U+5A5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A5F", + "status": "exact_ids", + "ids": "⿰女固", + "canonical_ids": "⿰女固", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "固" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婠", + "codepoint": "U+5A60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A60", + "status": "exact_ids", + "ids": "⿰女官", + "canonical_ids": "⿰女官", + "expanded_ids": "⿰女⿱宀㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "女", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婡", + "codepoint": "U+5A61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A61", + "status": "exact_ids", + "ids": "⿰女來", + "canonical_ids": "⿰女來", + "expanded_ids": "⿰女⿻木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婢", + "codepoint": "U+5A62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A62", + "status": "exact_ids", + "ids": "⿰女卑", + "canonical_ids": "⿰女卑", + "expanded_ids": "⿰女卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婣", + "codepoint": "U+5A63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A63", + "status": "exact_ids", + "ids": "⿰女𣶒", + "canonical_ids": "⿰女𣶒", + "expanded_ids": "⿰女𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 76, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婤", + "codepoint": "U+5A64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A64", + "status": "exact_ids", + "ids": "⿰女周", + "canonical_ids": "⿰女周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婥", + "codepoint": "U+5A65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A65", + "status": "exact_ids", + "ids": "⿰女卓", + "canonical_ids": "⿰女卓", + "expanded_ids": "⿰女⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "女", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婦", + "codepoint": "U+5A66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A66", + "status": "exact_ids", + "ids": "⿰女帚", + "canonical_ids": "⿰女帚", + "expanded_ids": "⿰女⿳彐冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "女", + "彐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婧", + "codepoint": "U+5A67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A67", + "status": "exact_ids", + "ids": "⿰女青", + "canonical_ids": "⿰女青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "月" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婨", + "codepoint": "U+5A68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A68", + "status": "exact_ids", + "ids": "⿰女侖", + "canonical_ids": "⿰女侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "女" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婩", + "codepoint": "U+5A69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A69", + "status": "exact_ids", + "ids": "⿰女岸", + "canonical_ids": "⿰女岸", + "expanded_ids": "⿰女⿱山⿱厂⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "厂", + "女", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婪", + "codepoint": "U+5A6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A6A", + "status": "exact_ids", + "ids": "⿱⿰木木女", + "canonical_ids": "⿱⿰木木女", + "expanded_ids": "⿱⿰木木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婫", + "codepoint": "U+5A6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A6B", + "status": "exact_ids", + "ids": "⿰女昆", + "canonical_ids": "⿰女昆", + "expanded_ids": "⿰女⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "女", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婬", + "codepoint": "U+5A6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A6C", + "status": "exact_ids", + "ids": "⿰女㸒", + "canonical_ids": "⿰女㸒", + "expanded_ids": "⿰女⿱爪王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "爪", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婭", + "codepoint": "U+5A6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A6D", + "status": "exact_ids", + "ids": "⿰女亞", + "canonical_ids": "⿰女亞", + "expanded_ids": "⿰女亞", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亞", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婮", + "codepoint": "U+5A6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A6E", + "status": "exact_ids", + "ids": "⿰女居", + "canonical_ids": "⿰女居", + "expanded_ids": "⿰女⿱尸⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "女", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婯", + "codepoint": "U+5A6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A6F", + "status": "exact_ids", + "ids": "⿱丽女", + "canonical_ids": "⿱丽女", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婰", + "codepoint": "U+5A70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A70", + "status": "exact_ids", + "ids": "⿰女典", + "canonical_ids": "⿰女典", + "expanded_ids": "⿰女典", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "典", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婱", + "codepoint": "U+5A71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A71", + "status": "exact_ids", + "ids": "⿱弦女", + "canonical_ids": "⿱弦女", + "expanded_ids": "⿱⿰弓⿱亠幺女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "女", + "幺", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婲", + "codepoint": "U+5A72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A72", + "status": "exact_ids", + "ids": "⿰女花", + "canonical_ids": "⿰女花", + "expanded_ids": "⿰女⿱艹⿰亻匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "女", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婳", + "codepoint": "U+5A73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A73", + "status": "exact_ids", + "ids": "⿰女画", + "canonical_ids": "⿰女画", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "画" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婴", + "codepoint": "U+5A74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A74", + "status": "exact_ids", + "ids": "⿱⿰贝贝女", + "canonical_ids": "⿱⿰贝贝女", + "expanded_ids": "⿱⿰⿻冂人⿻冂人女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婵", + "codepoint": "U+5A75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A75", + "status": "exact_ids", + "ids": "⿰女单", + "canonical_ids": "⿰女单", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "单" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婶", + "codepoint": "U+5A76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A76", + "status": "exact_ids", + "ids": "⿰女审", + "canonical_ids": "⿰女审", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婷", + "codepoint": "U+5A77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A77", + "status": "exact_ids", + "ids": "⿰女亭", + "canonical_ids": "⿰女亭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "亭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婸", + "codepoint": "U+5A78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A78", + "status": "exact_ids", + "ids": "⿰女昜", + "canonical_ids": "⿰女昜", + "expanded_ids": "⿰女⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "女", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婹", + "codepoint": "U+5A79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A79", + "status": "exact_ids", + "ids": "⿰女要", + "canonical_ids": "⿰女要", + "expanded_ids": "⿰女⿱覀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婺", + "codepoint": "U+5A7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A7A", + "status": "exact_ids", + "ids": "⿱敄女", + "canonical_ids": "⿱敄女", + "expanded_ids": "⿱⿰矛攵女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "攵", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婻", + "codepoint": "U+5A7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A7B", + "status": "exact_ids", + "ids": "⿰女南", + "canonical_ids": "⿰女南", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "南" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婼", + "codepoint": "U+5A7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A7C", + "status": "exact_ids", + "ids": "⿰女若", + "canonical_ids": "⿰女若", + "expanded_ids": "⿰女⿱艹⿱⿻丿一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "女", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婽", + "codepoint": "U+5A7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A7D", + "status": "exact_ids", + "ids": "⿰女叚", + "canonical_ids": "⿰女叚", + "expanded_ids": "⿰女叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婾", + "codepoint": "U+5A7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A7E", + "status": "exact_ids", + "ids": "⿰女兪", + "canonical_ids": "⿰女兪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "兪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "婿", + "codepoint": "U+5A7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A7F", + "status": "exact_ids", + "ids": "⿰女胥", + "canonical_ids": "⿰女胥", + "expanded_ids": "⿰女⿱疋月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "月", + "疋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媀", + "codepoint": "U+5A80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A80", + "status": "exact_ids", + "ids": "⿰女禺", + "canonical_ids": "⿰女禺", + "expanded_ids": "⿰女⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "田", + "禸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媁", + "codepoint": "U+5A81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A81", + "status": "exact_ids", + "ids": "⿰女韋", + "canonical_ids": "⿰女韋", + "expanded_ids": "⿰女韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媂", + "codepoint": "U+5A82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A82", + "status": "exact_ids", + "ids": "⿰女帝", + "canonical_ids": "⿰女帝", + "expanded_ids": "⿰女⿳⿱亠八冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媃", + "codepoint": "U+5A83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A83", + "status": "exact_ids", + "ids": "⿰女柔", + "canonical_ids": "⿰女柔", + "expanded_ids": "⿰女⿱矛木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "木", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媄", + "codepoint": "U+5A84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A84", + "status": "exact_ids", + "ids": "⿰女美", + "canonical_ids": "⿰女美", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "美" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媅", + "codepoint": "U+5A85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A85", + "status": "exact_ids", + "ids": "⿰女甚", + "canonical_ids": "⿰女甚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "甘" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媆", + "codepoint": "U+5A86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A86", + "status": "exact_ids", + "ids": "⿰女耎", + "canonical_ids": "⿰女耎", + "expanded_ids": "⿰女⿱而大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "女", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媇", + "codepoint": "U+5A87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A87", + "status": "exact_ids", + "ids": "⿰女亲", + "canonical_ids": "⿰女亲", + "expanded_ids": "⿰女⿱立朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "朩", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媈", + "codepoint": "U+5A88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A88", + "status": "exact_ids", + "ids": "⿰女軍", + "canonical_ids": "⿰女軍", + "expanded_ids": "⿰女⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "女", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媉", + "codepoint": "U+5A89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A89", + "status": "exact_ids", + "ids": "⿰女屋", + "canonical_ids": "⿰女屋", + "expanded_ids": "⿰女⿱尸⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "女", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媊", + "codepoint": "U+5A8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A8A", + "status": "exact_ids", + "ids": "⿰女前", + "canonical_ids": "⿰女前", + "expanded_ids": "⿰女⿱止⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "女", + "月", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媋", + "codepoint": "U+5A8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A8B", + "status": "exact_ids", + "ids": "⿰女春", + "canonical_ids": "⿰女春", + "expanded_ids": "⿰女⿱𡗗日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "日", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媌", + "codepoint": "U+5A8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A8C", + "status": "exact_ids", + "ids": "⿰女苗", + "canonical_ids": "⿰女苗", + "expanded_ids": "⿰女⿱艹田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媍", + "codepoint": "U+5A8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A8D", + "status": "exact_ids", + "ids": "⿰女負", + "canonical_ids": "⿰女負", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "女", + "目" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媎", + "codepoint": "U+5A8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A8E", + "status": "exact_ids", + "ids": "⿰女者", + "canonical_ids": "⿰女者", + "expanded_ids": "⿰女⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "女", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媏", + "codepoint": "U+5A8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A8F", + "status": "exact_ids", + "ids": "⿰女耑", + "canonical_ids": "⿰女耑", + "expanded_ids": "⿰女⿱山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "山", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媐", + "codepoint": "U+5A90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A90", + "status": "exact_ids", + "ids": "⿱巸女", + "canonical_ids": "⿱巸女", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "巳" + ], + "unresolved_leaves": [ + "𦣞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媑", + "codepoint": "U+5A91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A91", + "status": "exact_ids", + "ids": "⿰女重", + "canonical_ids": "⿰女重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "女" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媒", + "codepoint": "U+5A92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A92", + "status": "exact_ids", + "ids": "⿰女某", + "canonical_ids": "⿰女某", + "expanded_ids": "⿰女⿱甘木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "木", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媓", + "codepoint": "U+5A93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A93", + "status": "exact_ids", + "ids": "⿰女皇", + "canonical_ids": "⿰女皇", + "expanded_ids": "⿰女⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "女", + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媔", + "codepoint": "U+5A94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A94", + "status": "exact_ids", + "ids": "⿰女面", + "canonical_ids": "⿰女面", + "expanded_ids": "⿰女面", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "面" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媕", + "codepoint": "U+5A95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A95", + "status": "exact_ids", + "ids": "⿰女弇", + "canonical_ids": "⿰女弇", + "expanded_ids": "⿰女⿱⿱⿱人一口廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "女", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媖", + "codepoint": "U+5A96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A96", + "status": "exact_ids", + "ids": "⿰女英", + "canonical_ids": "⿰女英", + "expanded_ids": "⿰女⿱艹⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "女", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媗", + "codepoint": "U+5A97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A97", + "status": "exact_ids", + "ids": "⿰女宣", + "canonical_ids": "⿰女宣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媘", + "codepoint": "U+5A98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A98", + "status": "exact_ids", + "ids": "⿰女皆", + "canonical_ids": "⿰女皆", + "expanded_ids": "⿰女⿱⿰匕匕⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "女", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媙", + "codepoint": "U+5A99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A99", + "status": "exact_ids", + "ids": "⿰女威", + "canonical_ids": "⿰女威", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "威" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媚", + "codepoint": "U+5A9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A9A", + "status": "exact_ids", + "ids": "⿰女眉", + "canonical_ids": "⿰女眉", + "expanded_ids": "⿰女⿱⿻尸丨目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "女", + "尸", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媛", + "codepoint": "U+5A9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A9B", + "status": "exact_ids", + "ids": "⿰女爰", + "canonical_ids": "⿰女爰", + "expanded_ids": "⿰女⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "女", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媜", + "codepoint": "U+5A9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A9C", + "status": "exact_ids", + "ids": "⿰女貞", + "canonical_ids": "⿰女貞", + "expanded_ids": "⿰女⿱卜⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "卜", + "女", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媝", + "codepoint": "U+5A9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A9D", + "status": "exact_ids", + "ids": "⿱秋女", + "canonical_ids": "⿱秋女", + "expanded_ids": "⿱⿰⿻丿木火女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媞", + "codepoint": "U+5A9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A9E", + "status": "exact_ids", + "ids": "⿰女是", + "canonical_ids": "⿰女是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "日" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媟", + "codepoint": "U+5A9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5A9F", + "status": "exact_ids", + "ids": "⿰女枼", + "canonical_ids": "⿰女枼", + "expanded_ids": "⿰女⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媠", + "codepoint": "U+5AA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AA0", + "status": "exact_ids", + "ids": "⿰女𤯝", + "canonical_ids": "⿰女𤯝", + "expanded_ids": "⿰女⿱⿱牛一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "女", + "月", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媡", + "codepoint": "U+5AA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AA1", + "status": "exact_ids", + "ids": "⿰女柬", + "canonical_ids": "⿰女柬", + "expanded_ids": "⿰女柬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "柬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媢", + "codepoint": "U+5AA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AA2", + "status": "exact_ids", + "ids": "⿰女冒", + "canonical_ids": "⿰女冒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "目" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媣", + "codepoint": "U+5AA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AA3", + "status": "exact_ids", + "ids": "⿰女染", + "canonical_ids": "⿰女染", + "expanded_ids": "⿰女⿱⿰氵九木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "女", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媤", + "codepoint": "U+5AA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AA4", + "status": "exact_ids", + "ids": "⿰女思", + "canonical_ids": "⿰女思", + "expanded_ids": "⿰女⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "心", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媥", + "codepoint": "U+5AA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AA5", + "status": "exact_ids", + "ids": "⿰女扁", + "canonical_ids": "⿰女扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "女", + "尸" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媦", + "codepoint": "U+5AA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AA6", + "status": "exact_ids", + "ids": "⿰女胃", + "canonical_ids": "⿰女胃", + "expanded_ids": "⿰女⿱田月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "月", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媧", + "codepoint": "U+5AA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AA7", + "status": "exact_ids", + "ids": "⿰女咼", + "canonical_ids": "⿰女咼", + "expanded_ids": "⿰女⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媨", + "codepoint": "U+5AA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AA8", + "status": "exact_ids", + "ids": "⿰女酋", + "canonical_ids": "⿰女酋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "女" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媩", + "codepoint": "U+5AA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AA9", + "status": "exact_ids", + "ids": "⿰女胡", + "canonical_ids": "⿰女胡", + "expanded_ids": "⿰女⿰⿻十口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "女", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媪", + "codepoint": "U+5AAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AAA", + "status": "exact_ids", + "ids": "⿰女昷", + "canonical_ids": "⿰女昷", + "expanded_ids": "⿰女⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "日", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媫", + "codepoint": "U+5AAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AAB", + "status": "exact_ids", + "ids": "⿰女疌", + "canonical_ids": "⿰女疌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "疌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媬", + "codepoint": "U+5AAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AAC", + "status": "exact_ids", + "ids": "⿰女保", + "canonical_ids": "⿰女保", + "expanded_ids": "⿰女⿰亻⿱口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媭", + "codepoint": "U+5AAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AAD", + "status": "exact_ids", + "ids": "⿱须女", + "canonical_ids": "⿱须女", + "expanded_ids": "⿱⿰彡⿱⿱一丿⿻冂人女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "女", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媮", + "codepoint": "U+5AAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AAE", + "status": "exact_ids", + "ids": "⿰女俞", + "canonical_ids": "⿰女俞", + "expanded_ids": "⿰女⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "女", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媯", + "codepoint": "U+5AAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AAF", + "status": "exact_ids", + "ids": "⿰女為", + "canonical_ids": "⿰女為", + "expanded_ids": "⿰女為", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "為" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媰", + "codepoint": "U+5AB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AB0", + "status": "exact_ids", + "ids": "⿰女芻", + "canonical_ids": "⿰女芻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "芻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媱", + "codepoint": "U+5AB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AB1", + "status": "exact_ids", + "ids": "⿰女䍃", + "canonical_ids": "⿰女䍃", + "expanded_ids": "⿰女⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "爪", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媲", + "codepoint": "U+5AB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AB2", + "status": "exact_ids", + "ids": "⿰女𣬉", + "canonical_ids": "⿰女𣬉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "女" + ], + "unresolved_leaves": [ + "囟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媳", + "codepoint": "U+5AB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AB3", + "status": "exact_ids", + "ids": "⿰女息", + "canonical_ids": "⿰女息", + "expanded_ids": "⿰女⿱⿻目丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "女", + "心", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媴", + "codepoint": "U+5AB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AB4", + "status": "exact_ids", + "ids": "⿰女袁", + "canonical_ids": "⿰女袁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "袁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媵", + "codepoint": "U+5AB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AB5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媶", + "codepoint": "U+5AB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AB6", + "status": "exact_ids", + "ids": "⿰女茸", + "canonical_ids": "⿰女茸", + "expanded_ids": "⿰女⿱艹耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "耳", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媷", + "codepoint": "U+5AB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AB7", + "status": "exact_ids", + "ids": "⿰女辱", + "canonical_ids": "⿰女辱", + "expanded_ids": "⿰女⿱辰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "寸", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媸", + "codepoint": "U+5AB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AB8", + "status": "exact_ids", + "ids": "⿰女蚩", + "canonical_ids": "⿰女蚩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "蚩" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媹", + "codepoint": "U+5AB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AB9", + "status": "exact_ids", + "ids": "⿰女留", + "canonical_ids": "⿰女留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媺", + "codepoint": "U+5ABA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ABA", + "status": "exact_ids", + "ids": "⿰女𢼸", + "canonical_ids": "⿰女𢼸", + "expanded_ids": "⿰女⿰⿳山冖几攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "几", + "女", + "山", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媻", + "codepoint": "U+5ABB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ABB", + "status": "exact_ids", + "ids": "⿱般女", + "canonical_ids": "⿱般女", + "expanded_ids": "⿱⿰舟⿱几又女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "女", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媼", + "codepoint": "U+5ABC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ABC", + "status": "exact_ids", + "ids": "⿰女𥁕", + "canonical_ids": "⿰女𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "皿" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媽", + "codepoint": "U+5ABD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ABD", + "status": "exact_ids", + "ids": "⿰女馬", + "canonical_ids": "⿰女馬", + "expanded_ids": "⿰女馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媾", + "codepoint": "U+5ABE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ABE", + "status": "exact_ids", + "ids": "⿰女冓", + "canonical_ids": "⿰女冓", + "expanded_ids": "⿰女⿱井⿱一⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "井", + "冂", + "土", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "媿", + "codepoint": "U+5ABF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ABF", + "status": "exact_ids", + "ids": "⿰女鬼", + "canonical_ids": "⿰女鬼", + "expanded_ids": "⿰女鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫀", + "codepoint": "U+5AC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AC0", + "status": "exact_ids", + "ids": "⿰女秦", + "canonical_ids": "⿰女秦", + "expanded_ids": "⿰女⿱𡗗⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "木", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫁", + "codepoint": "U+5AC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AC1", + "status": "exact_ids", + "ids": "⿰女家", + "canonical_ids": "⿰女家", + "expanded_ids": "⿰女⿱宀豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫂", + "codepoint": "U+5AC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AC2", + "status": "exact_ids", + "ids": "⿰女叟", + "canonical_ids": "⿰女叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "女" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫃", + "codepoint": "U+5AC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AC3", + "status": "exact_ids", + "ids": "⿰女真", + "canonical_ids": "⿰女真", + "expanded_ids": "⿰女⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "女", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫄", + "codepoint": "U+5AC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AC4", + "status": "exact_ids", + "ids": "⿰女原", + "canonical_ids": "⿰女原", + "expanded_ids": "⿰女⿱厂⿱⿻日丶小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "女", + "小", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫅", + "codepoint": "U+5AC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AC5", + "status": "exact_ids", + "ids": "⿰女差", + "canonical_ids": "⿰女差", + "expanded_ids": "⿰女⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "工", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫆", + "codepoint": "U+5AC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AC6", + "status": "exact_ids", + "ids": "⿰女容", + "canonical_ids": "⿰女容", + "expanded_ids": "⿰女⿱宀⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "女", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫇", + "codepoint": "U+5AC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AC7", + "status": "exact_ids", + "ids": "⿰女冥", + "canonical_ids": "⿰女冥", + "expanded_ids": "⿰女⿱冖⿱日⿱亠八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "女", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫈", + "codepoint": "U+5AC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AC8", + "status": "exact_ids", + "ids": "⿳炏冖女", + "canonical_ids": "⿳炏冖女", + "expanded_ids": "⿳⿰火火冖女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "女", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫉", + "codepoint": "U+5AC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AC9", + "status": "exact_ids", + "ids": "⿰女疾", + "canonical_ids": "⿰女疾", + "expanded_ids": "⿰女⿱⿰冫广⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "冫", + "大", + "女", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫊", + "codepoint": "U+5ACA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ACA", + "status": "exact_ids", + "ids": "⿰女素", + "canonical_ids": "⿰女素", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "小", + "幺" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫋", + "codepoint": "U+5ACB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ACB", + "status": "exact_ids", + "ids": "⿰女弱", + "canonical_ids": "⿰女弱", + "expanded_ids": "⿰女⿰⿱弓二⿱弓二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "女", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫌", + "codepoint": "U+5ACC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ACC", + "status": "exact_ids", + "ids": "⿰女兼", + "canonical_ids": "⿰女兼", + "expanded_ids": "⿰女兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫍", + "codepoint": "U+5ACD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ACD", + "status": "exact_ids", + "ids": "⿰女舀", + "canonical_ids": "⿰女舀", + "expanded_ids": "⿰女⿱爫臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "爫", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫎", + "codepoint": "U+5ACE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ACE", + "status": "exact_ids", + "ids": "⿰女旁", + "canonical_ids": "⿰女旁", + "expanded_ids": "⿰女⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "女", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫏", + "codepoint": "U+5ACF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ACF", + "status": "exact_ids", + "ids": "⿰女郎", + "canonical_ids": "⿰女郎", + "expanded_ids": "⿰女⿰⿻丶艮阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "女", + "艮", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫐", + "codepoint": "U+5AD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AD0", + "status": "exact_ids", + "ids": "⿲女男女", + "canonical_ids": "⿲女男女", + "expanded_ids": "⿲女⿱田力女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "女", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫑", + "codepoint": "U+5AD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AD1", + "status": "exact_ids", + "ids": "⿱不要", + "canonical_ids": "⿱不要", + "expanded_ids": "⿱不⿱覀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "女", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫒", + "codepoint": "U+5AD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AD2", + "status": "exact_ids", + "ids": "⿰女爱", + "canonical_ids": "⿰女爱", + "expanded_ids": "⿰女⿳爫冖⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "冖", + "又", + "女", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫓", + "codepoint": "U+5AD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AD3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫔", + "codepoint": "U+5AD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AD4", + "status": "exact_ids", + "ids": "⿰女宾", + "canonical_ids": "⿰女宾", + "expanded_ids": "⿰女⿱宀⿱丘八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "八", + "女", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫕", + "codepoint": "U+5AD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AD5", + "status": "exact_ids", + "ids": "⿰女悘", + "canonical_ids": "⿰女悘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "心" + ], + "unresolved_leaves": [ + "医" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫖", + "codepoint": "U+5AD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AD6", + "status": "exact_ids", + "ids": "⿰女票", + "canonical_ids": "⿰女票", + "expanded_ids": "⿰女⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "女", + "小", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫗", + "codepoint": "U+5AD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AD7", + "status": "exact_ids", + "ids": "⿰女區", + "canonical_ids": "⿰女區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫘", + "codepoint": "U+5AD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AD8", + "status": "exact_ids", + "ids": "⿰女累", + "canonical_ids": "⿰女累", + "expanded_ids": "⿰女⿱田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "小", + "幺", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫙", + "codepoint": "U+5AD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AD9", + "status": "exact_ids", + "ids": "⿰女旋", + "canonical_ids": "⿰女旋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "旋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫚", + "codepoint": "U+5ADA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ADA", + "status": "exact_ids", + "ids": "⿰女曼", + "canonical_ids": "⿰女曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫛", + "codepoint": "U+5ADB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ADB", + "status": "exact_ids", + "ids": "⿱殹女", + "canonical_ids": "⿱殹女", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "女" + ], + "unresolved_leaves": [ + "医" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫜", + "codepoint": "U+5ADC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ADC", + "status": "exact_ids", + "ids": "⿰女章", + "canonical_ids": "⿰女章", + "expanded_ids": "⿰女⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "女", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫝", + "codepoint": "U+5ADD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ADD", + "status": "exact_ids", + "ids": "⿰女康", + "canonical_ids": "⿰女康", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "广" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫞", + "codepoint": "U+5ADE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ADE", + "status": "exact_ids", + "ids": "⿰女庸", + "canonical_ids": "⿰女庸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "庸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫟", + "codepoint": "U+5ADF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ADF", + "status": "exact_ids", + "ids": "⿰女匿", + "canonical_ids": "⿰女匿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "匿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫠", + "codepoint": "U+5AE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AE0", + "status": "exact_ids", + "ids": "⿱𠩺女", + "canonical_ids": "⿱𠩺女", + "expanded_ids": "⿱⿱⿰⿻木冂攵厂女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "厂", + "女", + "攵", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫡", + "codepoint": "U+5AE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AE1", + "status": "exact_ids", + "ids": "⿰女啇", + "canonical_ids": "⿰女啇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫢", + "codepoint": "U+5AE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AE2", + "status": "exact_ids", + "ids": "⿱規女", + "canonical_ids": "⿱規女", + "expanded_ids": "⿱⿰⿻一大⿱目儿女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "大", + "女", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫣", + "codepoint": "U+5AE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AE3", + "status": "exact_ids", + "ids": "⿰女焉", + "canonical_ids": "⿰女焉", + "expanded_ids": "⿰女⿱⿱一止⿱⿱卜乙灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乙", + "卜", + "女", + "止", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫤", + "codepoint": "U+5AE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AE4", + "status": "exact_ids", + "ids": "⿰女堇", + "canonical_ids": "⿰女堇", + "expanded_ids": "⿰女堇", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫥", + "codepoint": "U+5AE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AE5", + "status": "exact_ids", + "ids": "⿰女專", + "canonical_ids": "⿰女專", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "女", + "寸" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫦", + "codepoint": "U+5AE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AE6", + "status": "exact_ids", + "ids": "⿰女常", + "canonical_ids": "⿰女常", + "expanded_ids": "⿰女⿳小冖⿱口⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "口", + "女", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫧", + "codepoint": "U+5AE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AE7", + "status": "exact_ids", + "ids": "⿰女責", + "canonical_ids": "⿰女責", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "女", + "目" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫨", + "codepoint": "U+5AE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AE8", + "status": "exact_ids", + "ids": "⿰女𦰩", + "canonical_ids": "⿰女𦰩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "𦰩" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫩", + "codepoint": "U+5AE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AE9", + "status": "exact_ids", + "ids": "⿰女敕", + "canonical_ids": "⿰女敕", + "expanded_ids": "⿰女⿰⿻木口攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "攵", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫪", + "codepoint": "U+5AEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AEA", + "status": "exact_ids", + "ids": "⿰女翏", + "canonical_ids": "⿰女翏", + "expanded_ids": "⿰女⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "女", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫫", + "codepoint": "U+5AEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AEB", + "status": "exact_ids", + "ids": "⿰女莫", + "canonical_ids": "⿰女莫", + "expanded_ids": "⿰女⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "女", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫬", + "codepoint": "U+5AEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AEC", + "status": "exact_ids", + "ids": "⿰女庶", + "canonical_ids": "⿰女庶", + "expanded_ids": "⿰女⿱广⿱廿火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "广", + "廿", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫭", + "codepoint": "U+5AED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AED", + "status": "exact_ids", + "ids": "⿰女虖", + "canonical_ids": "⿰女虖", + "expanded_ids": "⿰女⿱虍乎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乎", + "女", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫮", + "codepoint": "U+5AEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AEE", + "status": "exact_ids", + "ids": "⿰女雩", + "canonical_ids": "⿰女雩", + "expanded_ids": "⿰女⿱雨⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "女", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫯", + "codepoint": "U+5AEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AEF", + "status": "exact_ids", + "ids": "⿱敖女", + "canonical_ids": "⿱敖女", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫰", + "codepoint": "U+5AF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AF0", + "status": "exact_ids", + "ids": "⿰女欶", + "canonical_ids": "⿰女欶", + "expanded_ids": "⿰女⿰⿻木口欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "木", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫱", + "codepoint": "U+5AF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AF1", + "status": "exact_ids", + "ids": "⿰女啬", + "canonical_ids": "⿰女啬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "啬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫲", + "codepoint": "U+5AF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AF2", + "status": "exact_ids", + "ids": "⿰女麻", + "canonical_ids": "⿰女麻", + "expanded_ids": "⿰女⿱广⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫳", + "codepoint": "U+5AF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AF3", + "status": "exact_ids", + "ids": "⿱敝女", + "canonical_ids": "⿱敝女", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "攵" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫴", + "codepoint": "U+5AF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AF4", + "status": "exact_ids", + "ids": "⿰女辜", + "canonical_ids": "⿰女辜", + "expanded_ids": "⿰女⿱⿻十口⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "女", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫵", + "codepoint": "U+5AF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AF5", + "status": "exact_ids", + "ids": "⿰女無", + "canonical_ids": "⿰女無", + "expanded_ids": "⿰女無", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "無" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫶", + "codepoint": "U+5AF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AF6", + "status": "exact_ids", + "ids": "⿰女焦", + "canonical_ids": "⿰女焦", + "expanded_ids": "⿰女⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "灬", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫷", + "codepoint": "U+5AF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AF7", + "status": "exact_ids", + "ids": "⿰女隋", + "canonical_ids": "⿰女隋", + "expanded_ids": "⿰女⿰阝⿱⿱牛一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "女", + "月", + "牛", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫸", + "codepoint": "U+5AF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AF8", + "status": "exact_ids", + "ids": "⿰女善", + "canonical_ids": "⿰女善", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "善" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫹", + "codepoint": "U+5AF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AF9", + "status": "exact_ids", + "ids": "⿰女黄", + "canonical_ids": "⿰女黄", + "expanded_ids": "⿰女黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫺", + "codepoint": "U+5AFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AFA", + "status": "exact_ids", + "ids": "⿰女閒", + "canonical_ids": "⿰女閒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "閒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫻", + "codepoint": "U+5AFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AFB", + "status": "exact_ids", + "ids": "⿰女閑", + "canonical_ids": "⿰女閑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "閑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫼", + "codepoint": "U+5AFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AFC", + "status": "exact_ids", + "ids": "⿰女黑", + "canonical_ids": "⿰女黑", + "expanded_ids": "⿰女黑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫽", + "codepoint": "U+5AFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AFD", + "status": "exact_ids", + "ids": "⿰女尞", + "canonical_ids": "⿰女尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "小" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫾", + "codepoint": "U+5AFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AFE", + "status": "exact_ids", + "ids": "⿰女粦", + "canonical_ids": "⿰女粦", + "expanded_ids": "⿰女⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嫿", + "codepoint": "U+5AFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5AFF", + "status": "exact_ids", + "ids": "⿰女畫", + "canonical_ids": "⿰女畫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "畫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬀", + "codepoint": "U+5B00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B00", + "status": "exact_ids", + "ids": "⿰女爲", + "canonical_ids": "⿰女爲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "爲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬁", + "codepoint": "U+5B01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B01", + "status": "exact_ids", + "ids": "⿰女登", + "canonical_ids": "⿰女登", + "expanded_ids": "⿰女⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "癶", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬂", + "codepoint": "U+5B02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B02", + "status": "exact_ids", + "ids": "⿰女戠", + "canonical_ids": "⿰女戠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "日", + "立" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬃", + "codepoint": "U+5B03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B03", + "status": "exact_ids", + "ids": "⿱須女", + "canonical_ids": "⿱須女", + "expanded_ids": "⿱⿰彡⿱⿱一丿⿱目八女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "女", + "彡", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬄", + "codepoint": "U+5B04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B04", + "status": "exact_ids", + "ids": "⿰女壹", + "canonical_ids": "⿰女壹", + "expanded_ids": "⿰女⿳土冖豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "土", + "女", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬅", + "codepoint": "U+5B05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B05", + "status": "exact_ids", + "ids": "⿰女華", + "canonical_ids": "⿰女華", + "expanded_ids": "⿰女⿱艹𠦒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "艹", + "𠦒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬆", + "codepoint": "U+5B06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B06", + "status": "exact_ids", + "ids": "⿰女翕", + "canonical_ids": "⿰女翕", + "expanded_ids": "⿰女⿱⿱⿱人一口⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "人", + "口", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬇", + "codepoint": "U+5B07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B07", + "status": "exact_ids", + "ids": "⿰女貴", + "canonical_ids": "⿰女貴", + "expanded_ids": "⿰女⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "女", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬈", + "codepoint": "U+5B08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B08", + "status": "exact_ids", + "ids": "⿰女堯", + "canonical_ids": "⿰女堯", + "expanded_ids": "⿰女⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬉", + "codepoint": "U+5B09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B09", + "status": "exact_ids", + "ids": "⿰女喜", + "canonical_ids": "⿰女喜", + "expanded_ids": "⿰女⿱⿱十豆口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "女", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬊", + "codepoint": "U+5B0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B0A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬋", + "codepoint": "U+5B0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B0B", + "status": "exact_ids", + "ids": "⿰女單", + "canonical_ids": "⿰女單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬌", + "codepoint": "U+5B0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B0C", + "status": "exact_ids", + "ids": "⿰女喬", + "canonical_ids": "⿰女喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "女" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬍", + "codepoint": "U+5B0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B0D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬎", + "codepoint": "U+5B0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B0E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬏", + "codepoint": "U+5B0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B0F", + "status": "exact_ids", + "ids": "⿰女番", + "canonical_ids": "⿰女番", + "expanded_ids": "⿰女⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "女", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬐", + "codepoint": "U+5B10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B10", + "status": "exact_ids", + "ids": "⿰女僉", + "canonical_ids": "⿰女僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬑", + "codepoint": "U+5B11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B11", + "status": "exact_ids", + "ids": "⿰女意", + "canonical_ids": "⿰女意", + "expanded_ids": "⿰女⿱⿱立日心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "心", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬒", + "codepoint": "U+5B12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B12", + "status": "exact_ids", + "ids": "⿰女會", + "canonical_ids": "⿰女會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "曰" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬓", + "codepoint": "U+5B13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B13", + "status": "exact_ids", + "ids": "⿰女敫", + "canonical_ids": "⿰女敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬔", + "codepoint": "U+5B14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B14", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬕", + "codepoint": "U+5B15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B15", + "status": "exact_ids", + "ids": "⿰女睪", + "canonical_ids": "⿰女睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "女", + "罒" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬖", + "codepoint": "U+5B16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B16", + "status": "exact_ids", + "ids": "⿱辟女", + "canonical_ids": "⿱辟女", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "女", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬗", + "codepoint": "U+5B17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B17", + "status": "exact_ids", + "ids": "⿰女亶", + "canonical_ids": "⿰女亶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "女", + "日" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬘", + "codepoint": "U+5B18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B18", + "status": "exact_ids", + "ids": "⿰女遂", + "canonical_ids": "⿰女遂", + "expanded_ids": "⿰女⿰辶⿱八豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "女", + "豕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬙", + "codepoint": "U+5B19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B19", + "status": "exact_ids", + "ids": "⿰女嗇", + "canonical_ids": "⿰女嗇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "女" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬚", + "codepoint": "U+5B1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B1A", + "status": "exact_ids", + "ids": "⿰女廉", + "canonical_ids": "⿰女廉", + "expanded_ids": "⿰女⿱广兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "女", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬛", + "codepoint": "U+5B1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B1B", + "status": "exact_ids", + "ids": "⿰女睘", + "canonical_ids": "⿰女睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬜", + "codepoint": "U+5B1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B1C", + "status": "exact_ids", + "ids": "⿱歆女", + "canonical_ids": "⿱歆女", + "expanded_ids": "⿱⿰⿱立日欠女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "日", + "欠", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬝", + "codepoint": "U+5B1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B1D", + "status": "exact_ids", + "ids": "⿰女裊", + "canonical_ids": "⿰女裊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "裊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬞", + "codepoint": "U+5B1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B1E", + "status": "exact_ids", + "ids": "⿰女董", + "canonical_ids": "⿰女董", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "女", + "艹" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬟", + "codepoint": "U+5B1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B1F", + "status": "exact_ids", + "ids": "⿰女義", + "canonical_ids": "⿰女義", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "義" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬠", + "codepoint": "U+5B20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B20", + "status": "exact_ids", + "ids": "⿰女喿", + "canonical_ids": "⿰女喿", + "expanded_ids": "⿰女⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬡", + "codepoint": "U+5B21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B21", + "status": "exact_ids", + "ids": "⿰女愛", + "canonical_ids": "⿰女愛", + "expanded_ids": "⿰女⿳爫冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "夊", + "女", + "心", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬢", + "codepoint": "U+5B22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B22", + "status": "exact_ids", + "ids": "⿰女㐮", + "canonical_ids": "⿰女㐮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "㐮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬣", + "codepoint": "U+5B23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B23", + "status": "exact_ids", + "ids": "⿰女寧", + "canonical_ids": "⿰女寧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "女" + ], + "unresolved_leaves": [ + "寍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬤", + "codepoint": "U+5B24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B24", + "status": "exact_ids", + "ids": "⿰女麼", + "canonical_ids": "⿰女麼", + "expanded_ids": "⿰女⿱⿱广⿰木木幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "幺", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬥", + "codepoint": "U+5B25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B25", + "status": "exact_ids", + "ids": "⿰女翟", + "canonical_ids": "⿰女翟", + "expanded_ids": "⿰女⿱⿰习习隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "女", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬦", + "codepoint": "U+5B26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B26", + "status": "exact_ids", + "ids": "⿰女壽", + "canonical_ids": "⿰女壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬧", + "codepoint": "U+5B27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B27", + "status": "exact_ids", + "ids": "⿰女盡", + "canonical_ids": "⿰女盡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "盡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬨", + "codepoint": "U+5B28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B28", + "status": "exact_ids", + "ids": "⿰女慈", + "canonical_ids": "⿰女慈", + "expanded_ids": "⿰女⿱⿱䒑⿰幺幺心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "女", + "幺", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬩", + "codepoint": "U+5B29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B29", + "status": "exact_ids", + "ids": "⿰女與", + "canonical_ids": "⿰女與", + "expanded_ids": "⿰女與", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "與" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬪", + "codepoint": "U+5B2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B2A", + "status": "exact_ids", + "ids": "⿰女賓", + "canonical_ids": "⿰女賓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬫", + "codepoint": "U+5B2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B2B", + "status": "exact_ids", + "ids": "⿰女榮", + "canonical_ids": "⿰女榮", + "expanded_ids": "⿰女⿳⿰火火冖木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "女", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬬", + "codepoint": "U+5B2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B2C", + "status": "exact_ids", + "ids": "⿰女需", + "canonical_ids": "⿰女需", + "expanded_ids": "⿰女⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬭", + "codepoint": "U+5B2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B2D", + "status": "exact_ids", + "ids": "⿰女爾", + "canonical_ids": "⿰女爾", + "expanded_ids": "⿰女爾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "爾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬮", + "codepoint": "U+5B2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B2E", + "status": "exact_ids", + "ids": "⿱厭女", + "canonical_ids": "⿱厭女", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "大", + "女", + "月" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬯", + "codepoint": "U+5B2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B2F", + "status": "exact_ids", + "ids": "⿰女臺", + "canonical_ids": "⿰女臺", + "expanded_ids": "⿰女⿳⿱士口冖⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冖", + "厶", + "口", + "土", + "士", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 251, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬰", + "codepoint": "U+5B30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B30", + "status": "exact_ids", + "ids": "⿱⿰貝貝女", + "canonical_ids": "⿱⿰貝貝女", + "expanded_ids": "⿱⿰⿱目八⿱目八女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "女", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬱", + "codepoint": "U+5B31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B31", + "status": "exact_ids", + "ids": "⿱漸女", + "canonical_ids": "⿱漸女", + "expanded_ids": "⿱⿰氵⿰車斤女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "斤", + "氵", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬲", + "codepoint": "U+5B32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B32", + "status": "exact_ids", + "ids": "⿲男女男", + "canonical_ids": "⿲男女男", + "expanded_ids": "⿲⿱田力女⿱田力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "女", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬳", + "codepoint": "U+5B33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B33", + "status": "exact_ids", + "ids": "⿰女蒦", + "canonical_ids": "⿰女蒦", + "expanded_ids": "⿰女⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "女", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬴", + "codepoint": "U+5B34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B34", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬵", + "codepoint": "U+5B35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B35", + "status": "exact_ids", + "ids": "⿰女綿", + "canonical_ids": "⿰女綿", + "expanded_ids": "⿰女⿰⿻幺小⿱⿻日丶⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丶", + "冂", + "女", + "小", + "幺", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬶", + "codepoint": "U+5B36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B36", + "status": "exact_ids", + "ids": "⿰女鼻", + "canonical_ids": "⿰女鼻", + "expanded_ids": "⿰女⿱⿻目丶⿱田丌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "丶", + "女", + "田", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬷", + "codepoint": "U+5B37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B37", + "status": "exact_ids", + "ids": "⿰女麽", + "canonical_ids": "⿰女麽", + "expanded_ids": "⿰女⿱⿱广⿰木木⿱丿厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厶", + "女", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬸", + "codepoint": "U+5B38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B38", + "status": "exact_ids", + "ids": "⿰女審", + "canonical_ids": "⿰女審", + "expanded_ids": "⿰女⿱宀⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "女", + "宀", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬹", + "codepoint": "U+5B39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B39", + "status": "exact_ids", + "ids": "⿰女興", + "canonical_ids": "⿰女興", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "興" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬺", + "codepoint": "U+5B3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B3A", + "status": "exact_ids", + "ids": "⿰女慝", + "canonical_ids": "⿰女慝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "心" + ], + "unresolved_leaves": [ + "匿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬻", + "codepoint": "U+5B3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B3B", + "status": "exact_ids", + "ids": "⿰女賣", + "canonical_ids": "⿰女賣", + "expanded_ids": "⿰女⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "士", + "女", + "目", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬼", + "codepoint": "U+5B3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B3C", + "status": "exact_ids", + "ids": "⿰女劉", + "canonical_ids": "⿰女劉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "女" + ], + "unresolved_leaves": [ + "𨥫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬽", + "codepoint": "U+5B3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B3D", + "status": "exact_ids", + "ids": "⿰女𡚇", + "canonical_ids": "⿰女𡚇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "𡚇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬾", + "codepoint": "U+5B3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B3E", + "status": "exact_ids", + "ids": "⿰女賴", + "canonical_ids": "⿰女賴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "賴" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嬿", + "codepoint": "U+5B3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B3F", + "status": "exact_ids", + "ids": "⿰女燕", + "canonical_ids": "⿰女燕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "燕" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孀", + "codepoint": "U+5B40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B40", + "status": "exact_ids", + "ids": "⿰女霜", + "canonical_ids": "⿰女霜", + "expanded_ids": "⿰女⿱雨⿰木目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "木", + "目", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孁", + "codepoint": "U+5B41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B41", + "status": "exact_ids", + "ids": "⿱霝女", + "canonical_ids": "⿱霝女", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "雨" + ], + "unresolved_leaves": [ + "𠱠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孂", + "codepoint": "U+5B42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B42", + "status": "exact_ids", + "ids": "⿰女簋", + "canonical_ids": "⿰女簋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "女", + "皿", + "艮" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孃", + "codepoint": "U+5B43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B43", + "status": "exact_ids", + "ids": "⿰女襄", + "canonical_ids": "⿰女襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孄", + "codepoint": "U+5B44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B44", + "status": "exact_ids", + "ids": "⿰女闌", + "canonical_ids": "⿰女闌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孅", + "codepoint": "U+5B45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B45", + "status": "exact_ids", + "ids": "⿰女韱", + "canonical_ids": "⿰女韱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "韱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孆", + "codepoint": "U+5B46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B46", + "status": "exact_ids", + "ids": "⿰女嬰", + "canonical_ids": "⿰女嬰", + "expanded_ids": "⿰女⿱⿰⿱目八⿱目八女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "女", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孇", + "codepoint": "U+5B47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B47", + "status": "exact_ids", + "ids": "⿰女雙", + "canonical_ids": "⿰女雙", + "expanded_ids": "⿰女⿱⿰隹隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "女", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孈", + "codepoint": "U+5B48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B48", + "status": "exact_ids", + "ids": "⿰女巂", + "canonical_ids": "⿰女巂", + "expanded_ids": "⿰女⿱⿱山隹⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "女", + "山", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孉", + "codepoint": "U+5B49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B49", + "status": "exact_ids", + "ids": "⿰女雚", + "canonical_ids": "⿰女雚", + "expanded_ids": "⿰女⿱艹⿱⿰口口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孊", + "codepoint": "U+5B4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B4A", + "status": "exact_ids", + "ids": "⿰女靡", + "canonical_ids": "⿰女靡", + "expanded_ids": "⿰女⿱⿱广⿰木木非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "广", + "木", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孋", + "codepoint": "U+5B4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B4B", + "status": "exact_ids", + "ids": "⿰女麗", + "canonical_ids": "⿰女麗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "鹿" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孌", + "codepoint": "U+5B4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B4C", + "status": "exact_ids", + "ids": "⿱䜌女", + "canonical_ids": "⿱䜌女", + "expanded_ids": "⿱⿲⿱幺小言⿱幺小女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "小", + "幺", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孍", + "codepoint": "U+5B4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B4D", + "status": "exact_ids", + "ids": "⿰女嚴", + "canonical_ids": "⿰女嚴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女" + ], + "unresolved_leaves": [ + "𠪚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孎", + "codepoint": "U+5B4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B4E", + "status": "exact_ids", + "ids": "⿰女屬", + "canonical_ids": "⿰女屬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女" + ], + "unresolved_leaves": [ + "屬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孏", + "codepoint": "U+5B4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B4F", + "status": "exact_ids", + "ids": "⿰女蘭", + "canonical_ids": "⿰女蘭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "艹" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "子", + "codepoint": "U+5B50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B50", + "status": "leaf_self_fallback", + "ids": "子", + "canonical_ids": "子", + "expanded_ids": "子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孑", + "codepoint": "U+5B51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B51", + "status": "leaf_self_fallback", + "ids": "孑", + "canonical_ids": "孑", + "expanded_ids": "孑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "孑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孒", + "codepoint": "U+5B52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B52", + "status": "leaf_self_fallback", + "ids": "孒", + "canonical_ids": "孒", + "expanded_ids": "孒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "孒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孓", + "codepoint": "U+5B53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B53", + "status": "leaf_self_fallback", + "ids": "孓", + "canonical_ids": "孓", + "expanded_ids": "孓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "孓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孔", + "codepoint": "U+5B54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B54", + "status": "exact_ids", + "ids": "⿰子乚", + "canonical_ids": "⿰子乚", + "expanded_ids": "⿰子乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孕", + "codepoint": "U+5B55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B55", + "status": "exact_ids", + "ids": "⿱乃子", + "canonical_ids": "⿱乃子", + "expanded_ids": "⿱乃子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孖", + "codepoint": "U+5B56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B56", + "status": "exact_ids", + "ids": "⿰子子", + "canonical_ids": "⿰子子", + "expanded_ids": "⿰子子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "字", + "codepoint": "U+5B57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B57", + "status": "exact_ids", + "ids": "⿱宀子", + "canonical_ids": "⿱宀子", + "expanded_ids": "⿱宀子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "存", + "codepoint": "U+5B58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B58", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孙", + "codepoint": "U+5B59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B59", + "status": "exact_ids", + "ids": "⿰子小", + "canonical_ids": "⿰子小", + "expanded_ids": "⿰子小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孚", + "codepoint": "U+5B5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B5A", + "status": "exact_ids", + "ids": "⿱爫子", + "canonical_ids": "⿱爫子", + "expanded_ids": "⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孛", + "codepoint": "U+5B5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B5B", + "status": "exact_ids", + "ids": "⿳十冖子", + "canonical_ids": "⿳十冖子", + "expanded_ids": "⿳十冖子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孜", + "codepoint": "U+5B5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B5C", + "status": "exact_ids", + "ids": "⿰子攵", + "canonical_ids": "⿰子攵", + "expanded_ids": "⿰子攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孝", + "codepoint": "U+5B5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B5D", + "status": "exact_ids", + "ids": "⿱耂子", + "canonical_ids": "⿱耂子", + "expanded_ids": "⿱⿻土丿子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孞", + "codepoint": "U+5B5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B5E", + "status": "exact_ids", + "ids": "⿱子心", + "canonical_ids": "⿱子心", + "expanded_ids": "⿱子心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孟", + "codepoint": "U+5B5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B5F", + "status": "exact_ids", + "ids": "⿱子皿", + "canonical_ids": "⿱子皿", + "expanded_ids": "⿱子皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孠", + "codepoint": "U+5B60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B60", + "status": "exact_ids", + "ids": "⿱司子", + "canonical_ids": "⿱司子", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子" + ], + "unresolved_leaves": [ + "司" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孡", + "codepoint": "U+5B61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B61", + "status": "exact_ids", + "ids": "⿰子台", + "canonical_ids": "⿰子台", + "expanded_ids": "⿰子⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孢", + "codepoint": "U+5B62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B62", + "status": "exact_ids", + "ids": "⿰子包", + "canonical_ids": "⿰子包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "季", + "codepoint": "U+5B63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B63", + "status": "exact_ids", + "ids": "⿱禾子", + "canonical_ids": "⿱禾子", + "expanded_ids": "⿱⿻丿木子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "子", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孤", + "codepoint": "U+5B64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B64", + "status": "exact_ids", + "ids": "⿰子瓜", + "canonical_ids": "⿰子瓜", + "expanded_ids": "⿰子瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "瓜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孥", + "codepoint": "U+5B65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B65", + "status": "exact_ids", + "ids": "⿱奴子", + "canonical_ids": "⿱奴子", + "expanded_ids": "⿱⿰女又子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "女", + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "学", + "codepoint": "U+5B66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B66", + "status": "exact_ids", + "ids": "⿳小冖子", + "canonical_ids": "⿳小冖子", + "expanded_ids": "⿳小冖子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "子", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孧", + "codepoint": "U+5B67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B67", + "status": "exact_ids", + "ids": "⿱幼子", + "canonical_ids": "⿱幼子", + "expanded_ids": "⿱⿰幺力子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "子", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孨", + "codepoint": "U+5B68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B68", + "status": "exact_ids", + "ids": "⿱子⿰子子", + "canonical_ids": "⿱子⿰子子", + "expanded_ids": "⿱子⿰子子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孩", + "codepoint": "U+5B69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B69", + "status": "exact_ids", + "ids": "⿰子亥", + "canonical_ids": "⿰子亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孪", + "codepoint": "U+5B6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B6A", + "status": "exact_ids", + "ids": "⿱亦子", + "canonical_ids": "⿱亦子", + "expanded_ids": "⿱亦子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孫", + "codepoint": "U+5B6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B6B", + "status": "exact_ids", + "ids": "⿰子系", + "canonical_ids": "⿰子系", + "expanded_ids": "⿰子⿱丿⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "子", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孬", + "codepoint": "U+5B6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B6C", + "status": "exact_ids", + "ids": "⿱不好", + "canonical_ids": "⿱不好", + "expanded_ids": "⿱不⿰女子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "女", + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孭", + "codepoint": "U+5B6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B6D", + "status": "exact_ids", + "ids": "⿰子貝", + "canonical_ids": "⿰子貝", + "expanded_ids": "⿰子⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "子", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孮", + "codepoint": "U+5B6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B6E", + "status": "exact_ids", + "ids": "⿰子宗", + "canonical_ids": "⿰子宗", + "expanded_ids": "⿰子⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "子", + "宀", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孯", + "codepoint": "U+5B6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B6F", + "status": "exact_ids", + "ids": "⿱臤子", + "canonical_ids": "⿱臤子", + "expanded_ids": "⿱⿰臣又子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "子", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孰", + "codepoint": "U+5B70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B70", + "status": "exact_ids", + "ids": "⿰享丸", + "canonical_ids": "⿰享丸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孱", + "codepoint": "U+5B71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B71", + "status": "exact_ids", + "ids": "⿱尸孨", + "canonical_ids": "⿱尸孨", + "expanded_ids": "⿱尸⿱子⿰子子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孲", + "codepoint": "U+5B72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B72", + "status": "exact_ids", + "ids": "⿰子亞", + "canonical_ids": "⿰子亞", + "expanded_ids": "⿰子亞", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亞", + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孳", + "codepoint": "U+5B73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B73", + "status": "exact_ids", + "ids": "⿱兹子", + "canonical_ids": "⿱兹子", + "expanded_ids": "⿱⿱䒑⿰幺幺子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "子", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孴", + "codepoint": "U+5B74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B74", + "status": "exact_ids", + "ids": "⿱孨日", + "canonical_ids": "⿱孨日", + "expanded_ids": "⿱⿱子⿰子子日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孵", + "codepoint": "U+5B75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B75", + "status": "exact_ids", + "ids": "⿰卵孚", + "canonical_ids": "⿰卵孚", + "expanded_ids": "⿰⿰⿻𠂎丶⿻卩丶⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "卩", + "子", + "爫", + "𠂎" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 228, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孶", + "codepoint": "U+5B76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B76", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孷", + "codepoint": "U+5B77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B77", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "學", + "codepoint": "U+5B78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B78", + "status": "exact_ids", + "ids": "⿳𦥯冖子", + "canonical_ids": "⿳𦥯冖子", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "子" + ], + "unresolved_leaves": [ + "𦥯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孹", + "codepoint": "U+5B79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B79", + "status": "exact_ids", + "ids": "⿱辟子", + "canonical_ids": "⿱辟子", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "子", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孺", + "codepoint": "U+5B7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B7A", + "status": "exact_ids", + "ids": "⿰子需", + "canonical_ids": "⿰子需", + "expanded_ids": "⿰子⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孻", + "codepoint": "U+5B7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B7B", + "status": "exact_ids", + "ids": "⿰子盡", + "canonical_ids": "⿰子盡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子" + ], + "unresolved_leaves": [ + "盡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孼", + "codepoint": "U+5B7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B7C", + "status": "exact_ids", + "ids": "⿱辥子", + "canonical_ids": "⿱辥子", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "子", + "立" + ], + "unresolved_leaves": [ + "𡴎" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孽", + "codepoint": "U+5B7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B7D", + "status": "exact_ids", + "ids": "⿱薛子", + "canonical_ids": "⿱薛子", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子" + ], + "unresolved_leaves": [ + "薛" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孾", + "codepoint": "U+5B7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B7E", + "status": "exact_ids", + "ids": "⿰子嬰", + "canonical_ids": "⿰子嬰", + "expanded_ids": "⿰子⿱⿰⿱目八⿱目八女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "女", + "子", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "孿", + "codepoint": "U+5B7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B7F", + "status": "exact_ids", + "ids": "⿱䜌子", + "canonical_ids": "⿱䜌子", + "expanded_ids": "⿱⿲⿱幺小言⿱幺小子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "小", + "幺", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宀", + "codepoint": "U+5B80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B80", + "status": "leaf_self_fallback", + "ids": "宀", + "canonical_ids": "宀", + "expanded_ids": "宀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宁", + "codepoint": "U+5B81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B81", + "status": "exact_ids", + "ids": "⿱宀丁", + "canonical_ids": "⿱宀丁", + "expanded_ids": "⿱宀⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宂", + "codepoint": "U+5B82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B82", + "status": "exact_ids", + "ids": "⿱宀几", + "canonical_ids": "⿱宀几", + "expanded_ids": "⿱宀几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "它", + "codepoint": "U+5B83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B83", + "status": "exact_ids", + "ids": "⿱宀匕", + "canonical_ids": "⿱宀匕", + "expanded_ids": "⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宄", + "codepoint": "U+5B84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B84", + "status": "exact_ids", + "ids": "⿱宀九", + "canonical_ids": "⿱宀九", + "expanded_ids": "⿱宀九", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宅", + "codepoint": "U+5B85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B85", + "status": "exact_ids", + "ids": "⿱宀乇", + "canonical_ids": "⿱宀乇", + "expanded_ids": "⿱宀⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宆", + "codepoint": "U+5B86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B86", + "status": "exact_ids", + "ids": "⿱宀弓", + "canonical_ids": "⿱宀弓", + "expanded_ids": "⿱宀弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宇", + "codepoint": "U+5B87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B87", + "status": "exact_ids", + "ids": "⿱宀于", + "canonical_ids": "⿱宀于", + "expanded_ids": "⿱宀⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "守", + "codepoint": "U+5B88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B88", + "status": "exact_ids", + "ids": "⿱宀寸", + "canonical_ids": "⿱宀寸", + "expanded_ids": "⿱宀寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "安", + "codepoint": "U+5B89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B89", + "status": "exact_ids", + "ids": "⿱宀女", + "canonical_ids": "⿱宀女", + "expanded_ids": "⿱宀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宊", + "codepoint": "U+5B8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B8A", + "status": "exact_ids", + "ids": "⿱宀犬", + "canonical_ids": "⿱宀犬", + "expanded_ids": "⿱宀⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宋", + "codepoint": "U+5B8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B8B", + "status": "exact_ids", + "ids": "⿱宀木", + "canonical_ids": "⿱宀木", + "expanded_ids": "⿱宀木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "完", + "codepoint": "U+5B8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B8C", + "status": "exact_ids", + "ids": "⿱宀元", + "canonical_ids": "⿱宀元", + "expanded_ids": "⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宍", + "codepoint": "U+5B8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B8D", + "status": "exact_ids", + "ids": "⿱宀六", + "canonical_ids": "⿱宀六", + "expanded_ids": "⿱宀⿱亠八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宎", + "codepoint": "U+5B8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B8E", + "status": "exact_ids", + "ids": "⿱宀夭", + "canonical_ids": "⿱宀夭", + "expanded_ids": "⿱宀⿱丿大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宏", + "codepoint": "U+5B8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B8F", + "status": "exact_ids", + "ids": "⿱宀厷", + "canonical_ids": "⿱宀厷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀" + ], + "unresolved_leaves": [ + "厷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宐", + "codepoint": "U+5B90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B90", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宑", + "codepoint": "U+5B91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B91", + "status": "exact_ids", + "ids": "⿱宀井", + "canonical_ids": "⿱宀井", + "expanded_ids": "⿱宀井", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "井", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宒", + "codepoint": "U+5B92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B92", + "status": "exact_ids", + "ids": "⿱宀毛", + "canonical_ids": "⿱宀毛", + "expanded_ids": "⿱宀毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宓", + "codepoint": "U+5B93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B93", + "status": "exact_ids", + "ids": "⿱宀必", + "canonical_ids": "⿱宀必", + "expanded_ids": "⿱宀⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "宀", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宔", + "codepoint": "U+5B94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B94", + "status": "exact_ids", + "ids": "⿱宀主", + "canonical_ids": "⿱宀主", + "expanded_ids": "⿱宀⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "宀", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宕", + "codepoint": "U+5B95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B95", + "status": "exact_ids", + "ids": "⿱宀石", + "canonical_ids": "⿱宀石", + "expanded_ids": "⿱宀石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宖", + "codepoint": "U+5B96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B96", + "status": "exact_ids", + "ids": "⿱宀弘", + "canonical_ids": "⿱宀弘", + "expanded_ids": "⿱宀⿰弓厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "宀", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宗", + "codepoint": "U+5B97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B97", + "status": "exact_ids", + "ids": "⿱宀示", + "canonical_ids": "⿱宀示", + "expanded_ids": "⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "官", + "codepoint": "U+5B98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B98", + "status": "exact_ids", + "ids": "⿱宀㠯", + "canonical_ids": "⿱宀㠯", + "expanded_ids": "⿱宀㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 68, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宙", + "codepoint": "U+5B99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B99", + "status": "exact_ids", + "ids": "⿱宀由", + "canonical_ids": "⿱宀由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "定", + "codepoint": "U+5B9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B9A", + "status": "exact_ids", + "ids": "⿱宀𤴓", + "canonical_ids": "⿱宀𤴓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宛", + "codepoint": "U+5B9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B9B", + "status": "exact_ids", + "ids": "⿱宀夗", + "canonical_ids": "⿱宀夗", + "expanded_ids": "⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宜", + "codepoint": "U+5B9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B9C", + "status": "exact_ids", + "ids": "⿱宀且", + "canonical_ids": "⿱宀且", + "expanded_ids": "⿱宀且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宝", + "codepoint": "U+5B9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B9D", + "status": "exact_ids", + "ids": "⿱宀玉", + "canonical_ids": "⿱宀玉", + "expanded_ids": "⿱宀⿻王丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "宀", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "实", + "codepoint": "U+5B9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B9E", + "status": "exact_ids", + "ids": "⿱宀头", + "canonical_ids": "⿱宀头", + "expanded_ids": "⿱宀⿻大冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "大", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "実", + "codepoint": "U+5B9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5B9F", + "status": "exact_ids", + "ids": "⿱宀𡗗", + "canonical_ids": "⿱宀𡗗", + "expanded_ids": "⿱宀𡗗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 76, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宠", + "codepoint": "U+5BA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BA0", + "status": "exact_ids", + "ids": "⿱宀龙", + "canonical_ids": "⿱宀龙", + "expanded_ids": "⿱宀龙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "审", + "codepoint": "U+5BA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BA1", + "status": "exact_ids", + "ids": "⿱宀申", + "canonical_ids": "⿱宀申", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "客", + "codepoint": "U+5BA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BA2", + "status": "exact_ids", + "ids": "⿱宀各", + "canonical_ids": "⿱宀各", + "expanded_ids": "⿱宀⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宣", + "codepoint": "U+5BA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BA3", + "status": "exact_ids", + "ids": "⿱宀亘", + "canonical_ids": "⿱宀亘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "室", + "codepoint": "U+5BA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BA4", + "status": "exact_ids", + "ids": "⿱宀至", + "canonical_ids": "⿱宀至", + "expanded_ids": "⿱宀⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宥", + "codepoint": "U+5BA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BA5", + "status": "exact_ids", + "ids": "⿱宀有", + "canonical_ids": "⿱宀有", + "expanded_ids": "⿱宀⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "宀", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宦", + "codepoint": "U+5BA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BA6", + "status": "exact_ids", + "ids": "⿱宀臣", + "canonical_ids": "⿱宀臣", + "expanded_ids": "⿱宀臣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宧", + "codepoint": "U+5BA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BA7", + "status": "exact_ids", + "ids": "⿱宀𦣞", + "canonical_ids": "⿱宀𦣞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀" + ], + "unresolved_leaves": [ + "𦣞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宨", + "codepoint": "U+5BA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BA8", + "status": "exact_ids", + "ids": "⿱宀兆", + "canonical_ids": "⿱宀兆", + "expanded_ids": "⿱宀兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宩", + "codepoint": "U+5BA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BA9", + "status": "exact_ids", + "ids": "⿱宀米", + "canonical_ids": "⿱宀米", + "expanded_ids": "⿱宀⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宪", + "codepoint": "U+5BAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BAA", + "status": "exact_ids", + "ids": "⿱宀先", + "canonical_ids": "⿱宀先", + "expanded_ids": "⿱宀⿱牛儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "宀", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宫", + "codepoint": "U+5BAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BAB", + "status": "exact_ids", + "ids": "⿱宀吕", + "canonical_ids": "⿱宀吕", + "expanded_ids": "⿱宀⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宬", + "codepoint": "U+5BAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BAC", + "status": "exact_ids", + "ids": "⿱宀成", + "canonical_ids": "⿱宀成", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀" + ], + "unresolved_leaves": [ + "成" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宭", + "codepoint": "U+5BAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BAD", + "status": "exact_ids", + "ids": "⿱宀君", + "canonical_ids": "⿱宀君", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "宀" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宮", + "codepoint": "U+5BAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BAE", + "status": "exact_ids", + "ids": "⿱宀呂", + "canonical_ids": "⿱宀呂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀" + ], + "unresolved_leaves": [ + "呂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宯", + "codepoint": "U+5BAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BAF", + "status": "exact_ids", + "ids": "⿱宀孝", + "canonical_ids": "⿱宀孝", + "expanded_ids": "⿱宀⿱⿻土丿子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "子", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宰", + "codepoint": "U+5BB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BB0", + "status": "exact_ids", + "ids": "⿱宀辛", + "canonical_ids": "⿱宀辛", + "expanded_ids": "⿱宀⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "宀", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宱", + "codepoint": "U+5BB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BB1", + "status": "exact_ids", + "ids": "⿱宀作", + "canonical_ids": "⿱宀作", + "expanded_ids": "⿱宀⿰亻乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "亻", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宲", + "codepoint": "U+5BB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BB2", + "status": "exact_ids", + "ids": "⿱宀呆", + "canonical_ids": "⿱宀呆", + "expanded_ids": "⿱宀⿱口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "害", + "codepoint": "U+5BB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BB3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宴", + "codepoint": "U+5BB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BB4", + "status": "exact_ids", + "ids": "⿱宀妟", + "canonical_ids": "⿱宀妟", + "expanded_ids": "⿱宀⿱日女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宵", + "codepoint": "U+5BB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BB5", + "status": "exact_ids", + "ids": "⿱宀肖", + "canonical_ids": "⿱宀肖", + "expanded_ids": "⿱宀⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "小", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "家", + "codepoint": "U+5BB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BB6", + "status": "exact_ids", + "ids": "⿱宀豕", + "canonical_ids": "⿱宀豕", + "expanded_ids": "⿱宀豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宷", + "codepoint": "U+5BB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BB7", + "status": "exact_ids", + "ids": "⿱宀釆", + "canonical_ids": "⿱宀釆", + "expanded_ids": "⿱宀⿱丿⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宸", + "codepoint": "U+5BB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BB8", + "status": "exact_ids", + "ids": "⿱宀辰", + "canonical_ids": "⿱宀辰", + "expanded_ids": "⿱宀辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "容", + "codepoint": "U+5BB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BB9", + "status": "exact_ids", + "ids": "⿱宀谷", + "canonical_ids": "⿱宀谷", + "expanded_ids": "⿱宀⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宺", + "codepoint": "U+5BBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BBA", + "status": "exact_ids", + "ids": "⿱宀𠯚", + "canonical_ids": "⿱宀𠯚", + "expanded_ids": "⿱宀𠯚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "𠯚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 76, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宻", + "codepoint": "U+5BBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BBB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宼", + "codepoint": "U+5BBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BBC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宽", + "codepoint": "U+5BBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BBD", + "status": "exact_ids", + "ids": "⿱宀苋", + "canonical_ids": "⿱宀苋", + "expanded_ids": "⿱宀⿱艹⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂", + "宀", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宾", + "codepoint": "U+5BBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BBE", + "status": "exact_ids", + "ids": "⿱宀兵", + "canonical_ids": "⿱宀兵", + "expanded_ids": "⿱宀⿱丘八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "八", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "宿", + "codepoint": "U+5BBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BBF", + "status": "exact_ids", + "ids": "⿱宀佰", + "canonical_ids": "⿱宀佰", + "expanded_ids": "⿱宀⿰亻⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "亻", + "宀", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寀", + "codepoint": "U+5BC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BC0", + "status": "exact_ids", + "ids": "⿱宀采", + "canonical_ids": "⿱宀采", + "expanded_ids": "⿱宀⿱爫木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "木", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寁", + "codepoint": "U+5BC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BC1", + "status": "exact_ids", + "ids": "⿱宀疌", + "canonical_ids": "⿱宀疌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀" + ], + "unresolved_leaves": [ + "疌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寂", + "codepoint": "U+5BC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BC2", + "status": "exact_ids", + "ids": "⿱宀叔", + "canonical_ids": "⿱宀叔", + "expanded_ids": "⿱宀⿰⿱上小又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "又", + "宀", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寃", + "codepoint": "U+5BC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BC3", + "status": "exact_ids", + "ids": "⿱宀兔", + "canonical_ids": "⿱宀兔", + "expanded_ids": "⿱宀⿻免丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "免", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寄", + "codepoint": "U+5BC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BC4", + "status": "exact_ids", + "ids": "⿱宀奇", + "canonical_ids": "⿱宀奇", + "expanded_ids": "⿱宀⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寅", + "codepoint": "U+5BC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BC5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "密", + "codepoint": "U+5BC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BC6", + "status": "exact_ids", + "ids": "⿱宓山", + "canonical_ids": "⿱宓山", + "expanded_ids": "⿱⿱宀⿻心丿山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "宀", + "山", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寇", + "codepoint": "U+5BC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BC7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寈", + "codepoint": "U+5BC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BC8", + "status": "exact_ids", + "ids": "⿱宀青", + "canonical_ids": "⿱宀青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "月" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寉", + "codepoint": "U+5BC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BC9", + "status": "exact_ids", + "ids": "⿱宀隹", + "canonical_ids": "⿱宀隹", + "expanded_ids": "⿱宀隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寊", + "codepoint": "U+5BCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BCA", + "status": "exact_ids", + "ids": "⿱宀貞", + "canonical_ids": "⿱宀貞", + "expanded_ids": "⿱宀⿱卜⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "卜", + "宀", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寋", + "codepoint": "U+5BCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BCB", + "status": "exact_ids", + "ids": "⿱𡨄㔾", + "canonical_ids": "⿱𡨄㔾", + "expanded_ids": "⿱⿱宀⿱廿廾㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "宀", + "廾", + "廿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "富", + "codepoint": "U+5BCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BCC", + "status": "exact_ids", + "ids": "⿱宀畐", + "canonical_ids": "⿱宀畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寍", + "codepoint": "U+5BCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BCD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寎", + "codepoint": "U+5BCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BCE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寏", + "codepoint": "U+5BCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BCF", + "status": "exact_ids", + "ids": "⿱宀奐", + "canonical_ids": "⿱宀奐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀" + ], + "unresolved_leaves": [ + "奐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寐", + "codepoint": "U+5BD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BD0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寑", + "codepoint": "U+5BD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BD1", + "status": "exact_ids", + "ids": "⿱宀侵", + "canonical_ids": "⿱宀侵", + "expanded_ids": "⿱宀⿰亻⿳彐冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "冖", + "又", + "宀", + "彐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寒", + "codepoint": "U+5BD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BD2", + "status": "exact_ids", + "ids": "⿱𡨄冫", + "canonical_ids": "⿱𡨄冫", + "expanded_ids": "⿱⿱宀⿱廿廾冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "宀", + "廾", + "廿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寓", + "codepoint": "U+5BD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BD3", + "status": "exact_ids", + "ids": "⿱宀禺", + "canonical_ids": "⿱宀禺", + "expanded_ids": "⿱宀⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "田", + "禸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寔", + "codepoint": "U+5BD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BD4", + "status": "exact_ids", + "ids": "⿱宀是", + "canonical_ids": "⿱宀是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "日" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寕", + "codepoint": "U+5BD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BD5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寖", + "codepoint": "U+5BD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BD6", + "status": "exact_ids", + "ids": "⿱宀浸", + "canonical_ids": "⿱宀浸", + "expanded_ids": "⿱宀⿰氵⿳彐冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "又", + "宀", + "彐", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寗", + "codepoint": "U+5BD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BD7", + "status": "exact_ids", + "ids": "⿱宓冉", + "canonical_ids": "⿱宓冉", + "expanded_ids": "⿱⿱宀⿻心丿⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "冂", + "土", + "宀", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寘", + "codepoint": "U+5BD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BD8", + "status": "exact_ids", + "ids": "⿱宀真", + "canonical_ids": "⿱宀真", + "expanded_ids": "⿱宀⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "宀", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寙", + "codepoint": "U+5BD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BD9", + "status": "exact_ids", + "ids": "⿱宀㼌", + "canonical_ids": "⿱宀㼌", + "expanded_ids": "⿱宀⿰瓜瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "瓜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寚", + "codepoint": "U+5BDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BDA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寛", + "codepoint": "U+5BDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BDB", + "status": "exact_ids", + "ids": "⿱宀莧", + "canonical_ids": "⿱宀莧", + "expanded_ids": "⿱宀⿱艹⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "宀", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寜", + "codepoint": "U+5BDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BDC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寝", + "codepoint": "U+5BDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BDD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寞", + "codepoint": "U+5BDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BDE", + "status": "exact_ids", + "ids": "⿱宀莫", + "canonical_ids": "⿱宀莫", + "expanded_ids": "⿱宀⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "宀", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "察", + "codepoint": "U+5BDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BDF", + "status": "exact_ids", + "ids": "⿱宀祭", + "canonical_ids": "⿱宀祭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寠", + "codepoint": "U+5BE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BE0", + "status": "exact_ids", + "ids": "⿱宀婁", + "canonical_ids": "⿱宀婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寡", + "codepoint": "U+5BE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BE1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寢", + "codepoint": "U+5BE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BE2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寣", + "codepoint": "U+5BE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BE3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寤", + "codepoint": "U+5BE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BE4", + "status": "exact_ids", + "ids": "⿱宀𤕻", + "canonical_ids": "⿱宀𤕻", + "expanded_ids": "⿱宀⿰爿⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "宀", + "爿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寥", + "codepoint": "U+5BE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BE5", + "status": "exact_ids", + "ids": "⿱宀翏", + "canonical_ids": "⿱宀翏", + "expanded_ids": "⿱宀⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "宀", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "實", + "codepoint": "U+5BE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BE6", + "status": "exact_ids", + "ids": "⿱宀貫", + "canonical_ids": "⿱宀貫", + "expanded_ids": "⿱宀⿱毌⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "毌", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寧", + "codepoint": "U+5BE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BE7", + "status": "exact_ids", + "ids": "⿱寍丁", + "canonical_ids": "⿱寍丁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅" + ], + "unresolved_leaves": [ + "寍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寨", + "codepoint": "U+5BE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BE8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "審", + "codepoint": "U+5BE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BE9", + "status": "exact_ids", + "ids": "⿱宀番", + "canonical_ids": "⿱宀番", + "expanded_ids": "⿱宀⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "宀", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寪", + "codepoint": "U+5BEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BEA", + "status": "exact_ids", + "ids": "⿱宀為", + "canonical_ids": "⿱宀為", + "expanded_ids": "⿱宀為", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "為" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寫", + "codepoint": "U+5BEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BEB", + "status": "exact_ids", + "ids": "⿱宀舄", + "canonical_ids": "⿱宀舄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "臼" + ], + "unresolved_leaves": [ + "灳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寬", + "codepoint": "U+5BEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BEC", + "status": "exact_ids", + "ids": "⿱宀萈", + "canonical_ids": "⿱宀萈", + "expanded_ids": "⿱宀萈", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "萈" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寭", + "codepoint": "U+5BED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BED", + "status": "exact_ids", + "ids": "⿱宀惠", + "canonical_ids": "⿱宀惠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "宀", + "心" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寮", + "codepoint": "U+5BEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BEE", + "status": "exact_ids", + "ids": "⿱宀尞", + "canonical_ids": "⿱宀尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "小" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寯", + "codepoint": "U+5BEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BEF", + "status": "exact_ids", + "ids": "⿱宀雋", + "canonical_ids": "⿱宀雋", + "expanded_ids": "⿱宀⿱隹弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "弓", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寰", + "codepoint": "U+5BF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BF0", + "status": "exact_ids", + "ids": "⿱宀睘", + "canonical_ids": "⿱宀睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寱", + "codepoint": "U+5BF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BF1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寲", + "codepoint": "U+5BF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BF2", + "status": "exact_ids", + "ids": "⿱宀疑", + "canonical_ids": "⿱宀疑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀" + ], + "unresolved_leaves": [ + "疑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寳", + "codepoint": "U+5BF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BF3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寴", + "codepoint": "U+5BF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BF4", + "status": "exact_ids", + "ids": "⿱宀親", + "canonical_ids": "⿱宀親", + "expanded_ids": "⿱宀⿰⿱立朩⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "宀", + "朩", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寵", + "codepoint": "U+5BF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BF5", + "status": "exact_ids", + "ids": "⿱宀龍", + "canonical_ids": "⿱宀龍", + "expanded_ids": "⿱宀龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寶", + "codepoint": "U+5BF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BF6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寷", + "codepoint": "U+5BF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BF7", + "status": "exact_ids", + "ids": "⿱宀豐", + "canonical_ids": "⿱宀豐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "豆" + ], + "unresolved_leaves": [ + "𠁳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寸", + "codepoint": "U+5BF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BF8", + "status": "leaf_self_fallback", + "ids": "寸", + "canonical_ids": "寸", + "expanded_ids": "寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "对", + "codepoint": "U+5BF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BF9", + "status": "exact_ids", + "ids": "⿰又寸", + "canonical_ids": "⿰又寸", + "expanded_ids": "⿰又寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寺", + "codepoint": "U+5BFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BFA", + "status": "exact_ids", + "ids": "⿱土寸", + "canonical_ids": "⿱土寸", + "expanded_ids": "⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寻", + "codepoint": "U+5BFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BFB", + "status": "exact_ids", + "ids": "⿱彐寸", + "canonical_ids": "⿱彐寸", + "expanded_ids": "⿱彐寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "彐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "导", + "codepoint": "U+5BFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BFC", + "status": "exact_ids", + "ids": "⿱巳寸", + "canonical_ids": "⿱巳寸", + "expanded_ids": "⿱巳寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "巳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寽", + "codepoint": "U+5BFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BFD", + "status": "exact_ids", + "ids": "⿱爫寸", + "canonical_ids": "⿱爫寸", + "expanded_ids": "⿱爫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "対", + "codepoint": "U+5BFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BFE", + "status": "exact_ids", + "ids": "⿰文寸", + "canonical_ids": "⿰文寸", + "expanded_ids": "⿰文寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "文" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "寿", + "codepoint": "U+5BFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5BFF", + "status": "exact_ids", + "ids": "⿻丰寸", + "canonical_ids": "⿻丰寸", + "expanded_ids": "⿻丰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尀", + "codepoint": "U+5C00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C00", + "status": "exact_ids", + "ids": "⿰叵寸", + "canonical_ids": "⿰叵寸", + "expanded_ids": "⿰⿰匚口寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匚", + "口", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "封", + "codepoint": "U+5C01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C01", + "status": "exact_ids", + "ids": "⿰圭寸", + "canonical_ids": "⿰圭寸", + "expanded_ids": "⿰⿱土土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "専", + "codepoint": "U+5C02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C02", + "status": "exact_ids", + "ids": "⿱𤰔寸", + "canonical_ids": "⿱𤰔寸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尃", + "codepoint": "U+5C03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C03", + "status": "exact_ids", + "ids": "⿱甫寸", + "canonical_ids": "⿱甫寸", + "expanded_ids": "⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "射", + "codepoint": "U+5C04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C04", + "status": "exact_ids", + "ids": "⿰身寸", + "canonical_ids": "⿰身寸", + "expanded_ids": "⿰身寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尅", + "codepoint": "U+5C05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C05", + "status": "exact_ids", + "ids": "⿰克寸", + "canonical_ids": "⿰克寸", + "expanded_ids": "⿰⿱⿻十口儿寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "十", + "口", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "将", + "codepoint": "U+5C06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C06", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "將", + "codepoint": "U+5C07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C07", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "專", + "codepoint": "U+5C08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C08", + "status": "exact_ids", + "ids": "⿱叀寸", + "canonical_ids": "⿱叀寸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "寸" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尉", + "codepoint": "U+5C09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C09", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尊", + "codepoint": "U+5C0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C0A", + "status": "exact_ids", + "ids": "⿱酋寸", + "canonical_ids": "⿱酋寸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "寸" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尋", + "codepoint": "U+5C0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C0B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尌", + "codepoint": "U+5C0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C0C", + "status": "exact_ids", + "ids": "⿰壴寸", + "canonical_ids": "⿰壴寸", + "expanded_ids": "⿰⿱十豆寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "寸", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "對", + "codepoint": "U+5C0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C0D", + "status": "exact_ids", + "ids": "⿰丵寸", + "canonical_ids": "⿰丵寸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "寸" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "導", + "codepoint": "U+5C0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C0E", + "status": "exact_ids", + "ids": "⿱道寸", + "canonical_ids": "⿱道寸", + "expanded_ids": "⿱⿰辶⿱䒑⿻目丶寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "丶", + "寸", + "目", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "小", + "codepoint": "U+5C0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C0F", + "status": "leaf_self_fallback", + "ids": "小", + "canonical_ids": "小", + "expanded_ids": "小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尐", + "codepoint": "U+5C10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C10", + "status": "exact_ids", + "ids": "⿱小乁", + "canonical_ids": "⿱小乁", + "expanded_ids": "⿱小乁", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乁", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "少", + "codepoint": "U+5C11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C11", + "status": "exact_ids", + "ids": "⿱小丿", + "canonical_ids": "⿱小丿", + "expanded_ids": "⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尒", + "codepoint": "U+5C12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C12", + "status": "exact_ids", + "ids": "⿱人小", + "canonical_ids": "⿱人小", + "expanded_ids": "⿱人小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尓", + "codepoint": "U+5C13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C13", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尔", + "codepoint": "U+5C14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C14", + "status": "exact_ids", + "ids": "⿱⺈小", + "canonical_ids": "⿱⺈小", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尕", + "codepoint": "U+5C15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C15", + "status": "exact_ids", + "ids": "⿱乃小", + "canonical_ids": "⿱乃小", + "expanded_ids": "⿱乃小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尖", + "codepoint": "U+5C16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C16", + "status": "exact_ids", + "ids": "⿱小大", + "canonical_ids": "⿱小大", + "expanded_ids": "⿱小大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尗", + "codepoint": "U+5C17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C17", + "status": "exact_ids", + "ids": "⿱上小", + "canonical_ids": "⿱上小", + "expanded_ids": "⿱上小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尘", + "codepoint": "U+5C18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C18", + "status": "exact_ids", + "ids": "⿱小土", + "canonical_ids": "⿱小土", + "expanded_ids": "⿱小土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尙", + "codepoint": "U+5C19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C19", + "status": "exact_ids", + "ids": "⿱小冋", + "canonical_ids": "⿱小冋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尚", + "codepoint": "U+5C1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C1A", + "status": "exact_ids", + "ids": "⿱小冋", + "canonical_ids": "⿱小冋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尛", + "codepoint": "U+5C1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C1B", + "status": "exact_ids", + "ids": "⿱小⿰小小", + "canonical_ids": "⿱小⿰小小", + "expanded_ids": "⿱小⿰小小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尜", + "codepoint": "U+5C1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C1C", + "status": "exact_ids", + "ids": "⿱小夵", + "canonical_ids": "⿱小夵", + "expanded_ids": "⿱小⿱大小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尝", + "codepoint": "U+5C1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C1D", + "status": "exact_ids", + "ids": "⿳小冖云", + "canonical_ids": "⿳小冖云", + "expanded_ids": "⿳小冖⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "冖", + "厶", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尞", + "codepoint": "U+5C1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C1E", + "status": "exact_ids", + "ids": "⿱昚小", + "canonical_ids": "⿱昚小", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尟", + "codepoint": "U+5C1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C1F", + "status": "exact_ids", + "ids": "⿰是少", + "canonical_ids": "⿰是少", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "日" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尠", + "codepoint": "U+5C20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C20", + "status": "exact_ids", + "ids": "⿰甚少", + "canonical_ids": "⿰甚少", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "甘" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尡", + "codepoint": "U+5C21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C21", + "status": "exact_ids", + "ids": "⿰光昆", + "canonical_ids": "⿰光昆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "匕", + "日" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尢", + "codepoint": "U+5C22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C22", + "status": "leaf_self_fallback", + "ids": "尢", + "canonical_ids": "尢", + "expanded_ids": "尢", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尢" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尣", + "codepoint": "U+5C23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C23", + "status": "exact_ids", + "ids": "⿱八儿", + "canonical_ids": "⿱八儿", + "expanded_ids": "⿱八儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尤", + "codepoint": "U+5C24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C24", + "status": "leaf_self_fallback", + "ids": "尤", + "canonical_ids": "尤", + "expanded_ids": "尤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尥", + "codepoint": "U+5C25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C25", + "status": "exact_ids", + "ids": "⿰尢勺", + "canonical_ids": "⿰尢勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尢" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尦", + "codepoint": "U+5C26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C26", + "status": "exact_ids", + "ids": "⿰尣勺", + "canonical_ids": "⿰尣勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尧", + "codepoint": "U+5C27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C27", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尨", + "codepoint": "U+5C28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C28", + "status": "exact_ids", + "ids": "⿰尤彡", + "canonical_ids": "⿰尤彡", + "expanded_ids": "⿰尤彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尩", + "codepoint": "U+5C29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C29", + "status": "exact_ids", + "ids": "⿰尣王", + "canonical_ids": "⿰尣王", + "expanded_ids": "⿰⿱八儿王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尪", + "codepoint": "U+5C2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C2A", + "status": "exact_ids", + "ids": "⿰尢王", + "canonical_ids": "⿰尢王", + "expanded_ids": "⿰尢王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尢", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尫", + "codepoint": "U+5C2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C2B", + "status": "exact_ids", + "ids": "⿰兀王", + "canonical_ids": "⿰兀王", + "expanded_ids": "⿰⿱一儿王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尬", + "codepoint": "U+5C2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C2C", + "status": "exact_ids", + "ids": "⿰尢介", + "canonical_ids": "⿰尢介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尢" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尭", + "codepoint": "U+5C2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C2D", + "status": "exact_ids", + "ids": "⿱卉兀", + "canonical_ids": "⿱卉兀", + "expanded_ids": "⿱⿱十廾⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "十", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尮", + "codepoint": "U+5C2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C2E", + "status": "exact_ids", + "ids": "⿰尢朶", + "canonical_ids": "⿰尢朶", + "expanded_ids": "⿰尢⿱乃木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "尢", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尯", + "codepoint": "U+5C2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C2F", + "status": "exact_ids", + "ids": "⿰尢危", + "canonical_ids": "⿰尢危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "尢" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尰", + "codepoint": "U+5C30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C30", + "status": "exact_ids", + "ids": "⿰尢重", + "canonical_ids": "⿰尢重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "尢" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "就", + "codepoint": "U+5C31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C31", + "status": "exact_ids", + "ids": "⿰京尤", + "canonical_ids": "⿰京尤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尲", + "codepoint": "U+5C32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C32", + "status": "exact_ids", + "ids": "⿰尢兼", + "canonical_ids": "⿰尢兼", + "expanded_ids": "⿰尢兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "尢" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尳", + "codepoint": "U+5C33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C33", + "status": "exact_ids", + "ids": "⿰尢骨", + "canonical_ids": "⿰尢骨", + "expanded_ids": "⿰尢⿱冎月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "尢", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尴", + "codepoint": "U+5C34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C34", + "status": "exact_ids", + "ids": "⿰尢监", + "canonical_ids": "⿰尢监", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尢" + ], + "unresolved_leaves": [ + "监" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尵", + "codepoint": "U+5C35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C35", + "status": "exact_ids", + "ids": "⿰尢貴", + "canonical_ids": "⿰尢貴", + "expanded_ids": "⿰尢⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "尢", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尶", + "codepoint": "U+5C36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C36", + "status": "exact_ids", + "ids": "⿰兀監", + "canonical_ids": "⿰兀監", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尷", + "codepoint": "U+5C37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C37", + "status": "exact_ids", + "ids": "⿰尢監", + "canonical_ids": "⿰尢監", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尢" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尸", + "codepoint": "U+5C38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C38", + "status": "leaf_self_fallback", + "ids": "尸", + "canonical_ids": "尸", + "expanded_ids": "尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尹", + "codepoint": "U+5C39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C39", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尺", + "codepoint": "U+5C3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C3A", + "status": "exact_ids", + "ids": "⿱尸㇏", + "canonical_ids": "⿱尸㇏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尻", + "codepoint": "U+5C3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C3B", + "status": "exact_ids", + "ids": "⿱尸九", + "canonical_ids": "⿱尸九", + "expanded_ids": "⿱尸九", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尼", + "codepoint": "U+5C3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C3C", + "status": "exact_ids", + "ids": "⿱尸匕", + "canonical_ids": "⿱尸匕", + "expanded_ids": "⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尽", + "codepoint": "U+5C3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C3D", + "status": "exact_ids", + "ids": "⿱尺冫", + "canonical_ids": "⿱尺冫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "尸" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尾", + "codepoint": "U+5C3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C3E", + "status": "exact_ids", + "ids": "⿱尸毛", + "canonical_ids": "⿱尸毛", + "expanded_ids": "⿱尸毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "尿", + "codepoint": "U+5C3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C3F", + "status": "exact_ids", + "ids": "⿱尸水", + "canonical_ids": "⿱尸水", + "expanded_ids": "⿱尸水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "局", + "codepoint": "U+5C40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C40", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屁", + "codepoint": "U+5C41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C41", + "status": "exact_ids", + "ids": "⿱尸比", + "canonical_ids": "⿱尸比", + "expanded_ids": "⿱尸⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "层", + "codepoint": "U+5C42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C42", + "status": "exact_ids", + "ids": "⿱尸云", + "canonical_ids": "⿱尸云", + "expanded_ids": "⿱尸⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屃", + "codepoint": "U+5C43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C43", + "status": "exact_ids", + "ids": "⿱尸贝", + "canonical_ids": "⿱尸贝", + "expanded_ids": "⿱尸⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屄", + "codepoint": "U+5C44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C44", + "status": "exact_ids", + "ids": "⿱尸穴", + "canonical_ids": "⿱尸穴", + "expanded_ids": "⿱尸⿱宀八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "居", + "codepoint": "U+5C45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C45", + "status": "exact_ids", + "ids": "⿱尸古", + "canonical_ids": "⿱尸古", + "expanded_ids": "⿱尸⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屆", + "codepoint": "U+5C46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C46", + "status": "exact_ids", + "ids": "⿱尸𠙽", + "canonical_ids": "⿱尸𠙽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸" + ], + "unresolved_leaves": [ + "𠙽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屇", + "codepoint": "U+5C47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C47", + "status": "exact_ids", + "ids": "⿱尸田", + "canonical_ids": "⿱尸田", + "expanded_ids": "⿱尸田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屈", + "codepoint": "U+5C48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C48", + "status": "exact_ids", + "ids": "⿱尸出", + "canonical_ids": "⿱尸出", + "expanded_ids": "⿱尸⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "尸", + "屮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屉", + "codepoint": "U+5C49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C49", + "status": "exact_ids", + "ids": "⿱尸世", + "canonical_ids": "⿱尸世", + "expanded_ids": "⿱尸世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "届", + "codepoint": "U+5C4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C4A", + "status": "exact_ids", + "ids": "⿱尸由", + "canonical_ids": "⿱尸由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屋", + "codepoint": "U+5C4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C4B", + "status": "exact_ids", + "ids": "⿱尸至", + "canonical_ids": "⿱尸至", + "expanded_ids": "⿱尸⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屌", + "codepoint": "U+5C4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C4C", + "status": "exact_ids", + "ids": "⿱尸吊", + "canonical_ids": "⿱尸吊", + "expanded_ids": "⿱尸⿱口⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "口", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屍", + "codepoint": "U+5C4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C4D", + "status": "exact_ids", + "ids": "⿱尸死", + "canonical_ids": "⿱尸死", + "expanded_ids": "⿱尸⿰⿻夕一匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "匕", + "夕", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屎", + "codepoint": "U+5C4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C4E", + "status": "exact_ids", + "ids": "⿱尸米", + "canonical_ids": "⿱尸米", + "expanded_ids": "⿱尸⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "尸", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屏", + "codepoint": "U+5C4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C4F", + "status": "exact_ids", + "ids": "⿱尸并", + "canonical_ids": "⿱尸并", + "expanded_ids": "⿱尸⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "尸", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屐", + "codepoint": "U+5C50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C50", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屑", + "codepoint": "U+5C51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C51", + "status": "exact_ids", + "ids": "⿱尸肖", + "canonical_ids": "⿱尸肖", + "expanded_ids": "⿱尸⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "尸", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屒", + "codepoint": "U+5C52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C52", + "status": "exact_ids", + "ids": "⿱尸辰", + "canonical_ids": "⿱尸辰", + "expanded_ids": "⿱尸辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屓", + "codepoint": "U+5C53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C53", + "status": "exact_ids", + "ids": "⿱尸貝", + "canonical_ids": "⿱尸貝", + "expanded_ids": "⿱尸⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "尸", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屔", + "codepoint": "U+5C54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C54", + "status": "exact_ids", + "ids": "⿰丘尼", + "canonical_ids": "⿰丘尼", + "expanded_ids": "⿰丘⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "匕", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "展", + "codepoint": "U+5C55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C55", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屖", + "codepoint": "U+5C56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C56", + "status": "exact_ids", + "ids": "⿱尸辛", + "canonical_ids": "⿱尸辛", + "expanded_ids": "⿱尸⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "尸", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屗", + "codepoint": "U+5C57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C57", + "status": "exact_ids", + "ids": "⿰尾寸", + "canonical_ids": "⿰尾寸", + "expanded_ids": "⿰⿱尸毛寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "尸", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屘", + "codepoint": "U+5C58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C58", + "status": "exact_ids", + "ids": "⿰尾子", + "canonical_ids": "⿰尾子", + "expanded_ids": "⿰⿱尸毛子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "尸", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屙", + "codepoint": "U+5C59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C59", + "status": "exact_ids", + "ids": "⿱尸阿", + "canonical_ids": "⿱尸阿", + "expanded_ids": "⿱尸⿰阝⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "尸", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屚", + "codepoint": "U+5C5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C5A", + "status": "exact_ids", + "ids": "⿱尸雨", + "canonical_ids": "⿱尸雨", + "expanded_ids": "⿱尸雨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屛", + "codepoint": "U+5C5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C5B", + "status": "exact_ids", + "ids": "⿱尸幷", + "canonical_ids": "⿱尸幷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸" + ], + "unresolved_leaves": [ + "幷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屜", + "codepoint": "U+5C5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C5C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屝", + "codepoint": "U+5C5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C5D", + "status": "exact_ids", + "ids": "⿱尸非", + "canonical_ids": "⿱尸非", + "expanded_ids": "⿱尸非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "属", + "codepoint": "U+5C5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C5E", + "status": "exact_ids", + "ids": "⿱尸禹", + "canonical_ids": "⿱尸禹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸" + ], + "unresolved_leaves": [ + "禹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屟", + "codepoint": "U+5C5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C5F", + "status": "exact_ids", + "ids": "⿱尸枼", + "canonical_ids": "⿱尸枼", + "expanded_ids": "⿱尸⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "尸", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屠", + "codepoint": "U+5C60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C60", + "status": "exact_ids", + "ids": "⿱尸者", + "canonical_ids": "⿱尸者", + "expanded_ids": "⿱尸⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "尸", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屡", + "codepoint": "U+5C61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C61", + "status": "exact_ids", + "ids": "⿱尸娄", + "canonical_ids": "⿱尸娄", + "expanded_ids": "⿱尸⿱⿻木丷女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "女", + "尸", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屢", + "codepoint": "U+5C62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C62", + "status": "exact_ids", + "ids": "⿱尸婁", + "canonical_ids": "⿱尸婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屣", + "codepoint": "U+5C63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C63", + "status": "exact_ids", + "ids": "⿱尸徙", + "canonical_ids": "⿱尸徙", + "expanded_ids": "⿱尸⿰彳⿱止止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "彳", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "層", + "codepoint": "U+5C64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C64", + "status": "exact_ids", + "ids": "⿱尸曽", + "canonical_ids": "⿱尸曽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸" + ], + "unresolved_leaves": [ + "曽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "履", + "codepoint": "U+5C65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C65", + "status": "exact_ids", + "ids": "⿱尸復", + "canonical_ids": "⿱尸復", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "彳" + ], + "unresolved_leaves": [ + "复" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屦", + "codepoint": "U+5C66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C66", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屧", + "codepoint": "U+5C67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C67", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屨", + "codepoint": "U+5C68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C68", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屩", + "codepoint": "U+5C69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C69", + "status": "exact_ids", + "ids": "⿱尸𢕪", + "canonical_ids": "⿱尸𢕪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "尸", + "彳" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屪", + "codepoint": "U+5C6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C6A", + "status": "exact_ids", + "ids": "⿱尸寮", + "canonical_ids": "⿱尸寮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "小", + "尸" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屫", + "codepoint": "U+5C6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C6B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屬", + "codepoint": "U+5C6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C6C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屭", + "codepoint": "U+5C6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C6D", + "status": "exact_ids", + "ids": "⿱尸贔", + "canonical_ids": "⿱尸贔", + "expanded_ids": "⿱尸⿱⿱目八⿰⿱目八⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "尸", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屮", + "codepoint": "U+5C6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C6E", + "status": "leaf_self_fallback", + "ids": "屮", + "canonical_ids": "屮", + "expanded_ids": "屮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屯", + "codepoint": "U+5C6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C6F", + "status": "leaf_self_fallback", + "ids": "屯", + "canonical_ids": "屯", + "expanded_ids": "屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屰", + "codepoint": "U+5C70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C70", + "status": "exact_ids", + "ids": "⿱䒑屮", + "canonical_ids": "⿱䒑屮", + "expanded_ids": "⿱䒑屮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "屮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "山", + "codepoint": "U+5C71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C71", + "status": "leaf_self_fallback", + "ids": "山", + "canonical_ids": "山", + "expanded_ids": "山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屲", + "codepoint": "U+5C72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C72", + "status": "exact_ids", + "ids": "⿱丿山", + "canonical_ids": "⿱丿山", + "expanded_ids": "⿱丿山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屳", + "codepoint": "U+5C73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C73", + "status": "exact_ids", + "ids": "⿱入山", + "canonical_ids": "⿱入山", + "expanded_ids": "⿱入山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屴", + "codepoint": "U+5C74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C74", + "status": "exact_ids", + "ids": "⿱山力", + "canonical_ids": "⿱山力", + "expanded_ids": "⿱山力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屵", + "codepoint": "U+5C75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C75", + "status": "exact_ids", + "ids": "⿱山厂", + "canonical_ids": "⿱山厂", + "expanded_ids": "⿱山厂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屶", + "codepoint": "U+5C76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C76", + "status": "exact_ids", + "ids": "⿱山刀", + "canonical_ids": "⿱山刀", + "expanded_ids": "⿱山刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屷", + "codepoint": "U+5C77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C77", + "status": "exact_ids", + "ids": "⿰山乃", + "canonical_ids": "⿰山乃", + "expanded_ids": "⿰山乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屸", + "codepoint": "U+5C78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C78", + "status": "exact_ids", + "ids": "⿰山工", + "canonical_ids": "⿰山工", + "expanded_ids": "⿰山工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屹", + "codepoint": "U+5C79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C79", + "status": "exact_ids", + "ids": "⿰山乞", + "canonical_ids": "⿰山乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屺", + "codepoint": "U+5C7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C7A", + "status": "exact_ids", + "ids": "⿰山己", + "canonical_ids": "⿰山己", + "expanded_ids": "⿰山己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "己" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屻", + "codepoint": "U+5C7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C7B", + "status": "exact_ids", + "ids": "⿰山刃", + "canonical_ids": "⿰山刃", + "expanded_ids": "⿰山⿻刀丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屼", + "codepoint": "U+5C7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C7C", + "status": "exact_ids", + "ids": "⿰山兀", + "canonical_ids": "⿰山兀", + "expanded_ids": "⿰山⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屽", + "codepoint": "U+5C7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C7D", + "status": "exact_ids", + "ids": "⿰山干", + "canonical_ids": "⿰山干", + "expanded_ids": "⿰山⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屾", + "codepoint": "U+5C7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C7E", + "status": "exact_ids", + "ids": "⿰山山", + "canonical_ids": "⿰山山", + "expanded_ids": "⿰山山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "屿", + "codepoint": "U+5C7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C7F", + "status": "exact_ids", + "ids": "⿰山与", + "canonical_ids": "⿰山与", + "expanded_ids": "⿰山与", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "与", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岀", + "codepoint": "U+5C80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C80", + "status": "exact_ids", + "ids": "⿱山山", + "canonical_ids": "⿱山山", + "expanded_ids": "⿱山山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岁", + "codepoint": "U+5C81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C81", + "status": "exact_ids", + "ids": "⿱山夕", + "canonical_ids": "⿱山夕", + "expanded_ids": "⿱山夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岂", + "codepoint": "U+5C82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C82", + "status": "exact_ids", + "ids": "⿱山己", + "canonical_ids": "⿱山己", + "expanded_ids": "⿱山己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "己" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岃", + "codepoint": "U+5C83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C83", + "status": "exact_ids", + "ids": "⿱山刃", + "canonical_ids": "⿱山刃", + "expanded_ids": "⿱山⿻刀丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岄", + "codepoint": "U+5C84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C84", + "status": "exact_ids", + "ids": "⿰山月", + "canonical_ids": "⿰山月", + "expanded_ids": "⿰山月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岅", + "codepoint": "U+5C85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C85", + "status": "exact_ids", + "ids": "⿰山反", + "canonical_ids": "⿰山反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岆", + "codepoint": "U+5C86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C86", + "status": "exact_ids", + "ids": "⿰山夭", + "canonical_ids": "⿰山夭", + "expanded_ids": "⿰山⿱丿大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岇", + "codepoint": "U+5C87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C87", + "status": "exact_ids", + "ids": "⿱山卬", + "canonical_ids": "⿱山卬", + "expanded_ids": "⿱山⿰匚卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匚", + "卩", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岈", + "codepoint": "U+5C88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C88", + "status": "exact_ids", + "ids": "⿰山牙", + "canonical_ids": "⿰山牙", + "expanded_ids": "⿰山牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "牙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岉", + "codepoint": "U+5C89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C89", + "status": "exact_ids", + "ids": "⿰山勿", + "canonical_ids": "⿰山勿", + "expanded_ids": "⿰山勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岊", + "codepoint": "U+5C8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C8A", + "status": "exact_ids", + "ids": "⿱巴山", + "canonical_ids": "⿱巴山", + "expanded_ids": "⿱巴山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "巴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岋", + "codepoint": "U+5C8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C8B", + "status": "exact_ids", + "ids": "⿰山及", + "canonical_ids": "⿰山及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "山" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岌", + "codepoint": "U+5C8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C8C", + "status": "exact_ids", + "ids": "⿱山及", + "canonical_ids": "⿱山及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "山" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岍", + "codepoint": "U+5C8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C8D", + "status": "exact_ids", + "ids": "⿰山开", + "canonical_ids": "⿰山开", + "expanded_ids": "⿰山⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "山", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岎", + "codepoint": "U+5C8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C8E", + "status": "exact_ids", + "ids": "⿰山分", + "canonical_ids": "⿰山分", + "expanded_ids": "⿰山⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岏", + "codepoint": "U+5C8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C8F", + "status": "exact_ids", + "ids": "⿰山元", + "canonical_ids": "⿰山元", + "expanded_ids": "⿰山⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岐", + "codepoint": "U+5C90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C90", + "status": "exact_ids", + "ids": "⿰山支", + "canonical_ids": "⿰山支", + "expanded_ids": "⿰山⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岑", + "codepoint": "U+5C91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C91", + "status": "exact_ids", + "ids": "⿱山今", + "canonical_ids": "⿱山今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "山" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岒", + "codepoint": "U+5C92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C92", + "status": "exact_ids", + "ids": "⿰山今", + "canonical_ids": "⿰山今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "山" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岓", + "codepoint": "U+5C93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C93", + "status": "exact_ids", + "ids": "⿰山斤", + "canonical_ids": "⿰山斤", + "expanded_ids": "⿰山斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岔", + "codepoint": "U+5C94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C94", + "status": "exact_ids", + "ids": "⿱分山", + "canonical_ids": "⿱分山", + "expanded_ids": "⿱⿱八刀山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岕", + "codepoint": "U+5C95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C95", + "status": "exact_ids", + "ids": "⿱山介", + "canonical_ids": "⿱山介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岖", + "codepoint": "U+5C96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C96", + "status": "exact_ids", + "ids": "⿰山区", + "canonical_ids": "⿰山区", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "区" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岗", + "codepoint": "U+5C97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C97", + "status": "exact_ids", + "ids": "⿱山冈", + "canonical_ids": "⿱山冈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "冈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岘", + "codepoint": "U+5C98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C98", + "status": "exact_ids", + "ids": "⿰山见", + "canonical_ids": "⿰山见", + "expanded_ids": "⿰山⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岙", + "codepoint": "U+5C99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C99", + "status": "exact_ids", + "ids": "⿱夭山", + "canonical_ids": "⿱夭山", + "expanded_ids": "⿱⿱丿大山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岚", + "codepoint": "U+5C9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C9A", + "status": "exact_ids", + "ids": "⿱山风", + "canonical_ids": "⿱山风", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "风" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岛", + "codepoint": "U+5C9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C9B", + "status": "exact_ids", + "ids": "⿱乌山", + "canonical_ids": "⿱乌山", + "expanded_ids": "⿱乌山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乌", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岜", + "codepoint": "U+5C9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C9C", + "status": "exact_ids", + "ids": "⿱山巴", + "canonical_ids": "⿱山巴", + "expanded_ids": "⿱山巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "巴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岝", + "codepoint": "U+5C9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C9D", + "status": "exact_ids", + "ids": "⿱山乍", + "canonical_ids": "⿱山乍", + "expanded_ids": "⿱山乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岞", + "codepoint": "U+5C9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C9E", + "status": "exact_ids", + "ids": "⿰山乍", + "canonical_ids": "⿰山乍", + "expanded_ids": "⿰山乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岟", + "codepoint": "U+5C9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5C9F", + "status": "exact_ids", + "ids": "⿰山央", + "canonical_ids": "⿰山央", + "expanded_ids": "⿰山⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岠", + "codepoint": "U+5CA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CA0", + "status": "exact_ids", + "ids": "⿰山巨", + "canonical_ids": "⿰山巨", + "expanded_ids": "⿰山巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "巨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岡", + "codepoint": "U+5CA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CA1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岢", + "codepoint": "U+5CA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CA2", + "status": "exact_ids", + "ids": "⿱山可", + "canonical_ids": "⿱山可", + "expanded_ids": "⿱山⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岣", + "codepoint": "U+5CA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CA3", + "status": "exact_ids", + "ids": "⿰山句", + "canonical_ids": "⿰山句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岤", + "codepoint": "U+5CA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CA4", + "status": "exact_ids", + "ids": "⿰山穴", + "canonical_ids": "⿰山穴", + "expanded_ids": "⿰山⿱宀八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岥", + "codepoint": "U+5CA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CA5", + "status": "exact_ids", + "ids": "⿰山皮", + "canonical_ids": "⿰山皮", + "expanded_ids": "⿰山皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岦", + "codepoint": "U+5CA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CA6", + "status": "exact_ids", + "ids": "⿱山立", + "canonical_ids": "⿱山立", + "expanded_ids": "⿱山立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岧", + "codepoint": "U+5CA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CA7", + "status": "exact_ids", + "ids": "⿱山召", + "canonical_ids": "⿱山召", + "expanded_ids": "⿱山⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岨", + "codepoint": "U+5CA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CA8", + "status": "exact_ids", + "ids": "⿰山且", + "canonical_ids": "⿰山且", + "expanded_ids": "⿰山且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岩", + "codepoint": "U+5CA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CA9", + "status": "exact_ids", + "ids": "⿱山石", + "canonical_ids": "⿱山石", + "expanded_ids": "⿱山石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岪", + "codepoint": "U+5CAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CAA", + "status": "exact_ids", + "ids": "⿱山弗", + "canonical_ids": "⿱山弗", + "expanded_ids": "⿱山⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "山", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岫", + "codepoint": "U+5CAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CAB", + "status": "exact_ids", + "ids": "⿰山由", + "canonical_ids": "⿰山由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岬", + "codepoint": "U+5CAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CAC", + "status": "exact_ids", + "ids": "⿰山甲", + "canonical_ids": "⿰山甲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "甲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岭", + "codepoint": "U+5CAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CAD", + "status": "exact_ids", + "ids": "⿰山令", + "canonical_ids": "⿰山令", + "expanded_ids": "⿰山⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "山", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岮", + "codepoint": "U+5CAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CAE", + "status": "exact_ids", + "ids": "⿰山它", + "canonical_ids": "⿰山它", + "expanded_ids": "⿰山⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岯", + "codepoint": "U+5CAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CAF", + "status": "exact_ids", + "ids": "⿰山丕", + "canonical_ids": "⿰山丕", + "expanded_ids": "⿰山⿱不一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岰", + "codepoint": "U+5CB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CB0", + "status": "exact_ids", + "ids": "⿰山幼", + "canonical_ids": "⿰山幼", + "expanded_ids": "⿰山⿰幺力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "山", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岱", + "codepoint": "U+5CB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CB1", + "status": "exact_ids", + "ids": "⿱代山", + "canonical_ids": "⿱代山", + "expanded_ids": "⿱⿰亻弋山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "山", + "弋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岲", + "codepoint": "U+5CB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CB2", + "status": "exact_ids", + "ids": "⿰山兄", + "canonical_ids": "⿰山兄", + "expanded_ids": "⿰山⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岳", + "codepoint": "U+5CB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CB3", + "status": "exact_ids", + "ids": "⿱丘山", + "canonical_ids": "⿱丘山", + "expanded_ids": "⿱丘山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岴", + "codepoint": "U+5CB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CB4", + "status": "exact_ids", + "ids": "⿰山丘", + "canonical_ids": "⿰山丘", + "expanded_ids": "⿰山丘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岵", + "codepoint": "U+5CB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CB5", + "status": "exact_ids", + "ids": "⿰山古", + "canonical_ids": "⿰山古", + "expanded_ids": "⿰山⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岶", + "codepoint": "U+5CB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CB6", + "status": "exact_ids", + "ids": "⿰山白", + "canonical_ids": "⿰山白", + "expanded_ids": "⿰山⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "山", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岷", + "codepoint": "U+5CB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CB7", + "status": "exact_ids", + "ids": "⿰山民", + "canonical_ids": "⿰山民", + "expanded_ids": "⿰山民", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "民" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岸", + "codepoint": "U+5CB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CB8", + "status": "exact_ids", + "ids": "⿱山厈", + "canonical_ids": "⿱山厈", + "expanded_ids": "⿱山⿱厂⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "厂", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岹", + "codepoint": "U+5CB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CB9", + "status": "exact_ids", + "ids": "⿰山召", + "canonical_ids": "⿰山召", + "expanded_ids": "⿰山⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岺", + "codepoint": "U+5CBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CBA", + "status": "exact_ids", + "ids": "⿱山令", + "canonical_ids": "⿱山令", + "expanded_ids": "⿱山⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "山", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岻", + "codepoint": "U+5CBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CBB", + "status": "exact_ids", + "ids": "⿰山氐", + "canonical_ids": "⿰山氐", + "expanded_ids": "⿰山⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "山", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岼", + "codepoint": "U+5CBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CBC", + "status": "exact_ids", + "ids": "⿰山平", + "canonical_ids": "⿰山平", + "expanded_ids": "⿰山⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "十", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岽", + "codepoint": "U+5CBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CBD", + "status": "exact_ids", + "ids": "⿱山东", + "canonical_ids": "⿱山东", + "expanded_ids": "⿱山东", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "东", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岾", + "codepoint": "U+5CBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CBE", + "status": "exact_ids", + "ids": "⿰山占", + "canonical_ids": "⿰山占", + "expanded_ids": "⿰山⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "岿", + "codepoint": "U+5CBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CBF", + "status": "exact_ids", + "ids": "⿱山归", + "canonical_ids": "⿱山归", + "expanded_ids": "⿱山⿰刂彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "山", + "彐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峀", + "codepoint": "U+5CC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CC0", + "status": "exact_ids", + "ids": "⿱山由", + "canonical_ids": "⿱山由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峁", + "codepoint": "U+5CC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CC1", + "status": "exact_ids", + "ids": "⿱山卯", + "canonical_ids": "⿱山卯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "卯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峂", + "codepoint": "U+5CC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CC2", + "status": "exact_ids", + "ids": "⿰山冬", + "canonical_ids": "⿰山冬", + "expanded_ids": "⿰山⿱夂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "夂", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峃", + "codepoint": "U+5CC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CC3", + "status": "exact_ids", + "ids": "⿳小冖山", + "canonical_ids": "⿳小冖山", + "expanded_ids": "⿳小冖山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "小", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峄", + "codepoint": "U+5CC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CC4", + "status": "exact_ids", + "ids": "⿰山𠬤", + "canonical_ids": "⿰山𠬤", + "expanded_ids": "⿰山⿱又⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "又", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峅", + "codepoint": "U+5CC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CC5", + "status": "exact_ids", + "ids": "⿰山弁", + "canonical_ids": "⿰山弁", + "expanded_ids": "⿰山⿱厶廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "山", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峆", + "codepoint": "U+5CC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CC6", + "status": "exact_ids", + "ids": "⿰山合", + "canonical_ids": "⿰山合", + "expanded_ids": "⿰山⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峇", + "codepoint": "U+5CC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CC7", + "status": "exact_ids", + "ids": "⿱山合", + "canonical_ids": "⿱山合", + "expanded_ids": "⿱山⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峈", + "codepoint": "U+5CC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CC8", + "status": "exact_ids", + "ids": "⿰山各", + "canonical_ids": "⿰山各", + "expanded_ids": "⿰山⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峉", + "codepoint": "U+5CC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CC9", + "status": "exact_ids", + "ids": "⿱山各", + "canonical_ids": "⿱山各", + "expanded_ids": "⿱山⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峊", + "codepoint": "U+5CCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CCA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峋", + "codepoint": "U+5CCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CCB", + "status": "exact_ids", + "ids": "⿰山旬", + "canonical_ids": "⿰山旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峌", + "codepoint": "U+5CCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CCC", + "status": "exact_ids", + "ids": "⿰山至", + "canonical_ids": "⿰山至", + "expanded_ids": "⿰山⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峍", + "codepoint": "U+5CCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CCD", + "status": "exact_ids", + "ids": "⿰山聿", + "canonical_ids": "⿰山聿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峎", + "codepoint": "U+5CCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CCE", + "status": "exact_ids", + "ids": "⿱山艮", + "canonical_ids": "⿱山艮", + "expanded_ids": "⿱山艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峏", + "codepoint": "U+5CCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CCF", + "status": "exact_ids", + "ids": "⿰山而", + "canonical_ids": "⿰山而", + "expanded_ids": "⿰山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峐", + "codepoint": "U+5CD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CD0", + "status": "exact_ids", + "ids": "⿰山亥", + "canonical_ids": "⿰山亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峑", + "codepoint": "U+5CD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CD1", + "status": "exact_ids", + "ids": "⿱山全", + "canonical_ids": "⿱山全", + "expanded_ids": "⿱山⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "山", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峒", + "codepoint": "U+5CD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CD2", + "status": "exact_ids", + "ids": "⿰山同", + "canonical_ids": "⿰山同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峓", + "codepoint": "U+5CD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CD3", + "status": "exact_ids", + "ids": "⿰山夷", + "canonical_ids": "⿰山夷", + "expanded_ids": "⿰山⿻大弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "山", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峔", + "codepoint": "U+5CD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CD4", + "status": "exact_ids", + "ids": "⿰山老", + "canonical_ids": "⿰山老", + "expanded_ids": "⿰山⿱⿻土丿匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峕", + "codepoint": "U+5CD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CD5", + "status": "exact_ids", + "ids": "⿱山𣅀", + "canonical_ids": "⿱山𣅀", + "expanded_ids": "⿱山⿱亠日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "山", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峖", + "codepoint": "U+5CD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CD6", + "status": "exact_ids", + "ids": "⿰山安", + "canonical_ids": "⿰山安", + "expanded_ids": "⿰山⿱宀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峗", + "codepoint": "U+5CD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CD7", + "status": "exact_ids", + "ids": "⿰山危", + "canonical_ids": "⿰山危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "山" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峘", + "codepoint": "U+5CD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CD8", + "status": "exact_ids", + "ids": "⿰山亘", + "canonical_ids": "⿰山亘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峙", + "codepoint": "U+5CD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CD9", + "status": "exact_ids", + "ids": "⿰山寺", + "canonical_ids": "⿰山寺", + "expanded_ids": "⿰山⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峚", + "codepoint": "U+5CDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CDA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峛", + "codepoint": "U+5CDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CDB", + "status": "exact_ids", + "ids": "⿱山列", + "canonical_ids": "⿱山列", + "expanded_ids": "⿱山⿰⿻夕一刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "夕", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峜", + "codepoint": "U+5CDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CDC", + "status": "exact_ids", + "ids": "⿱山企", + "canonical_ids": "⿱山企", + "expanded_ids": "⿱山⿱人止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "山", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峝", + "codepoint": "U+5CDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CDD", + "status": "exact_ids", + "ids": "⿱山同", + "canonical_ids": "⿱山同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峞", + "codepoint": "U+5CDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CDE", + "status": "exact_ids", + "ids": "⿱山危", + "canonical_ids": "⿱山危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "山" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峟", + "codepoint": "U+5CDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CDF", + "status": "exact_ids", + "ids": "⿱山有", + "canonical_ids": "⿱山有", + "expanded_ids": "⿱山⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "山", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峠", + "codepoint": "U+5CE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CE0", + "status": "exact_ids", + "ids": "⿰山𠧗", + "canonical_ids": "⿰山𠧗", + "expanded_ids": "⿰山⿱上⿱一卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "上", + "卜", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峡", + "codepoint": "U+5CE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CE1", + "status": "exact_ids", + "ids": "⿰山夹", + "canonical_ids": "⿰山夹", + "expanded_ids": "⿰山⿻⿻一大丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峢", + "codepoint": "U+5CE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CE2", + "status": "exact_ids", + "ids": "⿰山列", + "canonical_ids": "⿰山列", + "expanded_ids": "⿰山⿰⿻夕一刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "夕", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峣", + "codepoint": "U+5CE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CE3", + "status": "exact_ids", + "ids": "⿰山尧", + "canonical_ids": "⿰山尧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "尧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峤", + "codepoint": "U+5CE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CE4", + "status": "exact_ids", + "ids": "⿰山乔", + "canonical_ids": "⿰山乔", + "expanded_ids": "⿰山⿱丿⿱大儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "大", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峥", + "codepoint": "U+5CE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CE5", + "status": "exact_ids", + "ids": "⿰山争", + "canonical_ids": "⿰山争", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "争" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峦", + "codepoint": "U+5CE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CE6", + "status": "exact_ids", + "ids": "⿱亦山", + "canonical_ids": "⿱亦山", + "expanded_ids": "⿱亦山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峧", + "codepoint": "U+5CE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CE7", + "status": "exact_ids", + "ids": "⿰山交", + "canonical_ids": "⿰山交", + "expanded_ids": "⿰山⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "山", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峨", + "codepoint": "U+5CE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CE8", + "status": "exact_ids", + "ids": "⿰山我", + "canonical_ids": "⿰山我", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "山" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峩", + "codepoint": "U+5CE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CE9", + "status": "exact_ids", + "ids": "⿱山我", + "canonical_ids": "⿱山我", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "山" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峪", + "codepoint": "U+5CEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CEA", + "status": "exact_ids", + "ids": "⿰山谷", + "canonical_ids": "⿰山谷", + "expanded_ids": "⿰山⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峫", + "codepoint": "U+5CEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CEB", + "status": "exact_ids", + "ids": "⿰山邪", + "canonical_ids": "⿰山邪", + "expanded_ids": "⿰山⿰牙阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "牙", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峬", + "codepoint": "U+5CEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CEC", + "status": "exact_ids", + "ids": "⿰山甫", + "canonical_ids": "⿰山甫", + "expanded_ids": "⿰山甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峭", + "codepoint": "U+5CED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CED", + "status": "exact_ids", + "ids": "⿰山肖", + "canonical_ids": "⿰山肖", + "expanded_ids": "⿰山⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "山", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峮", + "codepoint": "U+5CEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CEE", + "status": "exact_ids", + "ids": "⿰山君", + "canonical_ids": "⿰山君", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "山" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峯", + "codepoint": "U+5CEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CEF", + "status": "exact_ids", + "ids": "⿱山夆", + "canonical_ids": "⿱山夆", + "expanded_ids": "⿱山⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峰", + "codepoint": "U+5CF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CF0", + "status": "exact_ids", + "ids": "⿰山夆", + "canonical_ids": "⿰山夆", + "expanded_ids": "⿰山⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峱", + "codepoint": "U+5CF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CF1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峲", + "codepoint": "U+5CF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CF2", + "status": "exact_ids", + "ids": "⿱山利", + "canonical_ids": "⿱山利", + "expanded_ids": "⿱山⿰⿻丿木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "山", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峳", + "codepoint": "U+5CF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CF3", + "status": "exact_ids", + "ids": "⿱山攸", + "canonical_ids": "⿱山攸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "攸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峴", + "codepoint": "U+5CF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CF4", + "status": "exact_ids", + "ids": "⿰山見", + "canonical_ids": "⿰山見", + "expanded_ids": "⿰山⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "山", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峵", + "codepoint": "U+5CF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CF5", + "status": "exact_ids", + "ids": "⿰山宏", + "canonical_ids": "⿰山宏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "山" + ], + "unresolved_leaves": [ + "厷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "島", + "codepoint": "U+5CF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CF6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峷", + "codepoint": "U+5CF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CF7", + "status": "exact_ids", + "ids": "⿱山辛", + "canonical_ids": "⿱山辛", + "expanded_ids": "⿱山⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "山", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峸", + "codepoint": "U+5CF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CF8", + "status": "exact_ids", + "ids": "⿰山成", + "canonical_ids": "⿰山成", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "成" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峹", + "codepoint": "U+5CF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CF9", + "status": "exact_ids", + "ids": "⿱余山", + "canonical_ids": "⿱余山", + "expanded_ids": "⿱⿱⿱人一朩山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "山", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峺", + "codepoint": "U+5CFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CFA", + "status": "exact_ids", + "ids": "⿰山更", + "canonical_ids": "⿰山更", + "expanded_ids": "⿰山更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "更" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峻", + "codepoint": "U+5CFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CFB", + "status": "exact_ids", + "ids": "⿰山夋", + "canonical_ids": "⿰山夋", + "expanded_ids": "⿰山⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峼", + "codepoint": "U+5CFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CFC", + "status": "exact_ids", + "ids": "⿰山告", + "canonical_ids": "⿰山告", + "expanded_ids": "⿰山⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "山", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峽", + "codepoint": "U+5CFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CFD", + "status": "exact_ids", + "ids": "⿰山夾", + "canonical_ids": "⿰山夾", + "expanded_ids": "⿰山⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峾", + "codepoint": "U+5CFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CFE", + "status": "exact_ids", + "ids": "⿱沂山", + "canonical_ids": "⿱沂山", + "expanded_ids": "⿱⿰氵斤山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "斤", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "峿", + "codepoint": "U+5CFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5CFF", + "status": "exact_ids", + "ids": "⿰山吾", + "canonical_ids": "⿰山吾", + "expanded_ids": "⿰山⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崀", + "codepoint": "U+5D00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D00", + "status": "exact_ids", + "ids": "⿱山良", + "canonical_ids": "⿱山良", + "expanded_ids": "⿱山⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "山", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崁", + "codepoint": "U+5D01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D01", + "status": "exact_ids", + "ids": "⿱山坎", + "canonical_ids": "⿱山坎", + "expanded_ids": "⿱山⿰土欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "山", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崂", + "codepoint": "U+5D02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D02", + "status": "exact_ids", + "ids": "⿰山劳", + "canonical_ids": "⿰山劳", + "expanded_ids": "⿰山⿳艹冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "山", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崃", + "codepoint": "U+5D03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D03", + "status": "exact_ids", + "ids": "⿰山来", + "canonical_ids": "⿰山来", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "来" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崄", + "codepoint": "U+5D04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D04", + "status": "exact_ids", + "ids": "⿰山佥", + "canonical_ids": "⿰山佥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "佥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崅", + "codepoint": "U+5D05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D05", + "status": "exact_ids", + "ids": "⿰山角", + "canonical_ids": "⿰山角", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "山", + "月" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崆", + "codepoint": "U+5D06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D06", + "status": "exact_ids", + "ids": "⿰山空", + "canonical_ids": "⿰山空", + "expanded_ids": "⿰山⿱⿱宀八工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "山", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崇", + "codepoint": "U+5D07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D07", + "status": "exact_ids", + "ids": "⿱山宗", + "canonical_ids": "⿱山宗", + "expanded_ids": "⿱山⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崈", + "codepoint": "U+5D08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D08", + "status": "exact_ids", + "ids": "⿱宗山", + "canonical_ids": "⿱宗山", + "expanded_ids": "⿱⿱宀⿱二小山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崉", + "codepoint": "U+5D09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D09", + "status": "exact_ids", + "ids": "⿰山沓", + "canonical_ids": "⿰山沓", + "expanded_ids": "⿰山⿱水日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "日", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崊", + "codepoint": "U+5D0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D0A", + "status": "exact_ids", + "ids": "⿰山林", + "canonical_ids": "⿰山林", + "expanded_ids": "⿰山⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崋", + "codepoint": "U+5D0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D0B", + "status": "exact_ids", + "ids": "⿱山垂", + "canonical_ids": "⿱山垂", + "expanded_ids": "⿱山垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "垂", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崌", + "codepoint": "U+5D0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D0C", + "status": "exact_ids", + "ids": "⿰山居", + "canonical_ids": "⿰山居", + "expanded_ids": "⿰山⿱尸⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "尸", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崍", + "codepoint": "U+5D0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D0D", + "status": "exact_ids", + "ids": "⿰山來", + "canonical_ids": "⿰山來", + "expanded_ids": "⿰山⿻木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "山", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崎", + "codepoint": "U+5D0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D0E", + "status": "exact_ids", + "ids": "⿰山奇", + "canonical_ids": "⿰山奇", + "expanded_ids": "⿰山⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崏", + "codepoint": "U+5D0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D0F", + "status": "exact_ids", + "ids": "⿰山昏", + "canonical_ids": "⿰山昏", + "expanded_ids": "⿰山⿱氏日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "日", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崐", + "codepoint": "U+5D10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D10", + "status": "exact_ids", + "ids": "⿰山昆", + "canonical_ids": "⿰山昆", + "expanded_ids": "⿰山⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "山", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崑", + "codepoint": "U+5D11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D11", + "status": "exact_ids", + "ids": "⿱山昆", + "canonical_ids": "⿱山昆", + "expanded_ids": "⿱山⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "山", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崒", + "codepoint": "U+5D12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D12", + "status": "exact_ids", + "ids": "⿱山卒", + "canonical_ids": "⿱山卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崓", + "codepoint": "U+5D13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D13", + "status": "exact_ids", + "ids": "⿰山固", + "canonical_ids": "⿰山固", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "固" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崔", + "codepoint": "U+5D14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D14", + "status": "exact_ids", + "ids": "⿱山隹", + "canonical_ids": "⿱山隹", + "expanded_ids": "⿱山隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崕", + "codepoint": "U+5D15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D15", + "status": "exact_ids", + "ids": "⿰山厓", + "canonical_ids": "⿰山厓", + "expanded_ids": "⿰山⿱厂⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "土", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崖", + "codepoint": "U+5D16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D16", + "status": "exact_ids", + "ids": "⿱山厓", + "canonical_ids": "⿱山厓", + "expanded_ids": "⿱山⿱厂⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "土", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崗", + "codepoint": "U+5D17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D17", + "status": "exact_ids", + "ids": "⿱山岡", + "canonical_ids": "⿱山岡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "岡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崘", + "codepoint": "U+5D18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D18", + "status": "exact_ids", + "ids": "⿰山侖", + "canonical_ids": "⿰山侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "山" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崙", + "codepoint": "U+5D19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D19", + "status": "exact_ids", + "ids": "⿱山侖", + "canonical_ids": "⿱山侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "山" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崚", + "codepoint": "U+5D1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D1A", + "status": "exact_ids", + "ids": "⿰山夌", + "canonical_ids": "⿰山夌", + "expanded_ids": "⿰山⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崛", + "codepoint": "U+5D1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D1B", + "status": "exact_ids", + "ids": "⿰山屈", + "canonical_ids": "⿰山屈", + "expanded_ids": "⿰山⿱尸⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "尸", + "屮", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崜", + "codepoint": "U+5D1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D1C", + "status": "exact_ids", + "ids": "⿰山垂", + "canonical_ids": "⿰山垂", + "expanded_ids": "⿰山垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "垂", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崝", + "codepoint": "U+5D1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D1D", + "status": "exact_ids", + "ids": "⿰山青", + "canonical_ids": "⿰山青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "月" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崞", + "codepoint": "U+5D1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D1E", + "status": "exact_ids", + "ids": "⿰山享", + "canonical_ids": "⿰山享", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崟", + "codepoint": "U+5D1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D1F", + "status": "exact_ids", + "ids": "⿱山金", + "canonical_ids": "⿱山金", + "expanded_ids": "⿱山金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崠", + "codepoint": "U+5D20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D20", + "status": "exact_ids", + "ids": "⿰山東", + "canonical_ids": "⿰山東", + "expanded_ids": "⿰山⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崡", + "codepoint": "U+5D21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D21", + "status": "exact_ids", + "ids": "⿰山函", + "canonical_ids": "⿰山函", + "expanded_ids": "⿰山函", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "函", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崢", + "codepoint": "U+5D22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D22", + "status": "exact_ids", + "ids": "⿰山爭", + "canonical_ids": "⿰山爭", + "expanded_ids": "⿰山⿱爫肀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "爫", + "肀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崣", + "codepoint": "U+5D23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D23", + "status": "exact_ids", + "ids": "⿱山委", + "canonical_ids": "⿱山委", + "expanded_ids": "⿱山⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "山", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崤", + "codepoint": "U+5D24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D24", + "status": "exact_ids", + "ids": "⿰山肴", + "canonical_ids": "⿰山肴", + "expanded_ids": "⿰山⿱乂⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "乂", + "山", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崥", + "codepoint": "U+5D25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D25", + "status": "exact_ids", + "ids": "⿰山卑", + "canonical_ids": "⿰山卑", + "expanded_ids": "⿰山卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崦", + "codepoint": "U+5D26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D26", + "status": "exact_ids", + "ids": "⿰山奄", + "canonical_ids": "⿰山奄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "山" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崧", + "codepoint": "U+5D27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D27", + "status": "exact_ids", + "ids": "⿱山松", + "canonical_ids": "⿱山松", + "expanded_ids": "⿱山⿰木⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "山", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崨", + "codepoint": "U+5D28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D28", + "status": "exact_ids", + "ids": "⿰山疌", + "canonical_ids": "⿰山疌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "疌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崩", + "codepoint": "U+5D29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D29", + "status": "exact_ids", + "ids": "⿱山朋", + "canonical_ids": "⿱山朋", + "expanded_ids": "⿱山⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崪", + "codepoint": "U+5D2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D2A", + "status": "exact_ids", + "ids": "⿰山卒", + "canonical_ids": "⿰山卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崫", + "codepoint": "U+5D2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D2B", + "status": "exact_ids", + "ids": "⿱山屈", + "canonical_ids": "⿱山屈", + "expanded_ids": "⿱山⿱尸⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "尸", + "屮", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崬", + "codepoint": "U+5D2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D2C", + "status": "exact_ids", + "ids": "⿱山東", + "canonical_ids": "⿱山東", + "expanded_ids": "⿱山⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崭", + "codepoint": "U+5D2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D2D", + "status": "exact_ids", + "ids": "⿱山斩", + "canonical_ids": "⿱山斩", + "expanded_ids": "⿱山⿰车斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "斤", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崮", + "codepoint": "U+5D2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D2E", + "status": "exact_ids", + "ids": "⿱山固", + "canonical_ids": "⿱山固", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "固" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崯", + "codepoint": "U+5D2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D2F", + "status": "exact_ids", + "ids": "⿰山金", + "canonical_ids": "⿰山金", + "expanded_ids": "⿰山金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崰", + "codepoint": "U+5D30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D30", + "status": "exact_ids", + "ids": "⿰山甾", + "canonical_ids": "⿰山甾", + "expanded_ids": "⿰山⿱巛田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "巛", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崱", + "codepoint": "U+5D31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D31", + "status": "exact_ids", + "ids": "⿱山則", + "canonical_ids": "⿱山則", + "expanded_ids": "⿱山⿰⿱目八刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刂", + "山", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崲", + "codepoint": "U+5D32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D32", + "status": "exact_ids", + "ids": "⿰山皇", + "canonical_ids": "⿰山皇", + "expanded_ids": "⿰山⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "山", + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崳", + "codepoint": "U+5D33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D33", + "status": "exact_ids", + "ids": "⿰山俞", + "canonical_ids": "⿰山俞", + "expanded_ids": "⿰山⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "山", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崴", + "codepoint": "U+5D34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D34", + "status": "exact_ids", + "ids": "⿱山威", + "canonical_ids": "⿱山威", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "威" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崵", + "codepoint": "U+5D35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D35", + "status": "exact_ids", + "ids": "⿰山昜", + "canonical_ids": "⿰山昜", + "expanded_ids": "⿰山⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "山", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崶", + "codepoint": "U+5D36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D36", + "status": "exact_ids", + "ids": "⿱山封", + "canonical_ids": "⿱山封", + "expanded_ids": "⿱山⿰⿱土土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崷", + "codepoint": "U+5D37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D37", + "status": "exact_ids", + "ids": "⿰山酋", + "canonical_ids": "⿰山酋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "山" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崸", + "codepoint": "U+5D38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D38", + "status": "exact_ids", + "ids": "⿰山頁", + "canonical_ids": "⿰山頁", + "expanded_ids": "⿰山⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "山", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崹", + "codepoint": "U+5D39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D39", + "status": "exact_ids", + "ids": "⿰山帝", + "canonical_ids": "⿰山帝", + "expanded_ids": "⿰山⿳⿱亠八冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崺", + "codepoint": "U+5D3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D3A", + "status": "exact_ids", + "ids": "⿱山施", + "canonical_ids": "⿱山施", + "expanded_ids": "⿱山⿰⿰方人⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "人", + "山", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崻", + "codepoint": "U+5D3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D3B", + "status": "exact_ids", + "ids": "⿰山待", + "canonical_ids": "⿰山待", + "expanded_ids": "⿰山⿰彳⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "山", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崼", + "codepoint": "U+5D3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D3C", + "status": "exact_ids", + "ids": "⿰山是", + "canonical_ids": "⿰山是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "日" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崽", + "codepoint": "U+5D3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D3D", + "status": "exact_ids", + "ids": "⿱山思", + "canonical_ids": "⿱山思", + "expanded_ids": "⿱山⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "心", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崾", + "codepoint": "U+5D3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D3E", + "status": "exact_ids", + "ids": "⿰山要", + "canonical_ids": "⿰山要", + "expanded_ids": "⿰山⿱覀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "山", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "崿", + "codepoint": "U+5D3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D3F", + "status": "exact_ids", + "ids": "⿰山咢", + "canonical_ids": "⿰山咢", + "expanded_ids": "⿰山⿱⿰口口⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "口", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵀", + "codepoint": "U+5D40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D40", + "status": "exact_ids", + "ids": "⿱山柱", + "canonical_ids": "⿱山柱", + "expanded_ids": "⿱山⿰木⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "山", + "木", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵁", + "codepoint": "U+5D41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D41", + "status": "exact_ids", + "ids": "⿰山甚", + "canonical_ids": "⿰山甚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "甘" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵂", + "codepoint": "U+5D42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D42", + "status": "exact_ids", + "ids": "⿱山律", + "canonical_ids": "⿱山律", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "彳" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵃", + "codepoint": "U+5D43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D43", + "status": "exact_ids", + "ids": "⿰山彦", + "canonical_ids": "⿰山彦", + "expanded_ids": "⿰山⿱⿱⿱亠八厂彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "厂", + "山", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵄", + "codepoint": "U+5D44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D44", + "status": "exact_ids", + "ids": "⿰山美", + "canonical_ids": "⿰山美", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "美" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵅", + "codepoint": "U+5D45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D45", + "status": "exact_ids", + "ids": "⿱山咸", + "canonical_ids": "⿱山咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵆", + "codepoint": "U+5D46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D46", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵇", + "codepoint": "U+5D47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D47", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵈", + "codepoint": "U+5D48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D48", + "status": "exact_ids", + "ids": "⿰山爰", + "canonical_ids": "⿰山爰", + "expanded_ids": "⿰山⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "山", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵉", + "codepoint": "U+5D49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D49", + "status": "exact_ids", + "ids": "⿰山亭", + "canonical_ids": "⿰山亭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "亭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵊", + "codepoint": "U+5D4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D4A", + "status": "exact_ids", + "ids": "⿰山乘", + "canonical_ids": "⿰山乘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "山", + "木" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵋", + "codepoint": "U+5D4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D4B", + "status": "exact_ids", + "ids": "⿰山眉", + "canonical_ids": "⿰山眉", + "expanded_ids": "⿰山⿱⿻尸丨目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "尸", + "山", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵌", + "codepoint": "U+5D4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D4C", + "status": "exact_ids", + "ids": "⿱山𣢟", + "canonical_ids": "⿱山𣢟", + "expanded_ids": "⿱山⿰甘欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "欠", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵍", + "codepoint": "U+5D4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D4D", + "status": "exact_ids", + "ids": "⿱敄山", + "canonical_ids": "⿱敄山", + "expanded_ids": "⿱⿰矛攵山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "攵", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵎", + "codepoint": "U+5D4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D4E", + "status": "exact_ids", + "ids": "⿰山禺", + "canonical_ids": "⿰山禺", + "expanded_ids": "⿰山⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "田", + "禸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵏", + "codepoint": "U+5D4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D4F", + "status": "exact_ids", + "ids": "⿱山㚇", + "canonical_ids": "⿱山㚇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "夊", + "山" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵐", + "codepoint": "U+5D50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D50", + "status": "exact_ids", + "ids": "⿱山風", + "canonical_ids": "⿱山風", + "expanded_ids": "⿱山風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵑", + "codepoint": "U+5D51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D51", + "status": "exact_ids", + "ids": "⿰山曷", + "canonical_ids": "⿰山曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "曰" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵒", + "codepoint": "U+5D52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D52", + "status": "exact_ids", + "ids": "⿱品山", + "canonical_ids": "⿱品山", + "expanded_ids": "⿱⿱口⿰口口山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "喦" + ] + }, + { + "character": "嵓", + "codepoint": "U+5D53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D53", + "status": "exact_ids", + "ids": "⿱山品", + "canonical_ids": "⿱山品", + "expanded_ids": "⿱山⿱口⿰口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵔", + "codepoint": "U+5D54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D54", + "status": "exact_ids", + "ids": "⿱山畏", + "canonical_ids": "⿱山畏", + "expanded_ids": "⿱山⿱田氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "氏", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵕", + "codepoint": "U+5D55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D55", + "status": "exact_ids", + "ids": "⿰山㚇", + "canonical_ids": "⿰山㚇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "夊", + "山" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵖", + "codepoint": "U+5D56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D56", + "status": "exact_ids", + "ids": "⿰山查", + "canonical_ids": "⿰山查", + "expanded_ids": "⿰山⿱木⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "山", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵗", + "codepoint": "U+5D57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D57", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵘", + "codepoint": "U+5D58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D58", + "status": "exact_ids", + "ids": "⿰山荣", + "canonical_ids": "⿰山荣", + "expanded_ids": "⿰山⿳艹冖木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "山", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵙", + "codepoint": "U+5D59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D59", + "status": "exact_ids", + "ids": "⿱山科", + "canonical_ids": "⿱山科", + "expanded_ids": "⿱山⿰⿻丿木斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "山", + "斗", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵚", + "codepoint": "U+5D5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D5A", + "status": "exact_ids", + "ids": "⿱山钦", + "canonical_ids": "⿱山钦", + "expanded_ids": "⿱山⿰钅欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "欠", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵛", + "codepoint": "U+5D5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D5B", + "status": "exact_ids", + "ids": "⿱山俞", + "canonical_ids": "⿱山俞", + "expanded_ids": "⿱山⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "山", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵜", + "codepoint": "U+5D5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D5C", + "status": "exact_ids", + "ids": "⿱山竒", + "canonical_ids": "⿱山竒", + "expanded_ids": "⿱山⿻⿱亠八⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "亠", + "八", + "口", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵝", + "codepoint": "U+5D5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D5D", + "status": "exact_ids", + "ids": "⿰山娄", + "canonical_ids": "⿰山娄", + "expanded_ids": "⿰山⿱⿻木丷女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "女", + "山", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵞", + "codepoint": "U+5D5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D5E", + "status": "exact_ids", + "ids": "⿱余屾", + "canonical_ids": "⿱余屾", + "expanded_ids": "⿱⿱⿱人一朩⿰山山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "山", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵟", + "codepoint": "U+5D5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D5F", + "status": "exact_ids", + "ids": "⿱屵隹", + "canonical_ids": "⿱屵隹", + "expanded_ids": "⿱⿱山厂隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "山", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵠", + "codepoint": "U+5D60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D60", + "status": "exact_ids", + "ids": "⿰山奚", + "canonical_ids": "⿰山奚", + "expanded_ids": "⿰山⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "山", + "幺", + "爪" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵡", + "codepoint": "U+5D61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D61", + "status": "exact_ids", + "ids": "⿱山翁", + "canonical_ids": "⿱山翁", + "expanded_ids": "⿱山⿱⿱八厶⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "八", + "厶", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵢", + "codepoint": "U+5D62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D62", + "status": "exact_ids", + "ids": "⿰山倉", + "canonical_ids": "⿰山倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵣", + "codepoint": "U+5D63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D63", + "status": "exact_ids", + "ids": "⿰山唐", + "canonical_ids": "⿰山唐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵤", + "codepoint": "U+5D64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D64", + "status": "exact_ids", + "ids": "⿳炏冖山", + "canonical_ids": "⿳炏冖山", + "expanded_ids": "⿳⿰火火冖山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "山", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵥", + "codepoint": "U+5D65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D65", + "status": "exact_ids", + "ids": "⿰山桀", + "canonical_ids": "⿰山桀", + "expanded_ids": "⿰山⿱⿰夕⿻丨二木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夕", + "山", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵦", + "codepoint": "U+5D66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D66", + "status": "exact_ids", + "ids": "⿰山豈", + "canonical_ids": "⿰山豈", + "expanded_ids": "⿰山⿱山豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵧", + "codepoint": "U+5D67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D67", + "status": "exact_ids", + "ids": "⿰山留", + "canonical_ids": "⿰山留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵨", + "codepoint": "U+5D68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D68", + "status": "exact_ids", + "ids": "⿰山烏", + "canonical_ids": "⿰山烏", + "expanded_ids": "⿰山烏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "烏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵩", + "codepoint": "U+5D69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D69", + "status": "exact_ids", + "ids": "⿱山高", + "canonical_ids": "⿱山高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵪", + "codepoint": "U+5D6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D6A", + "status": "exact_ids", + "ids": "⿰山高", + "canonical_ids": "⿰山高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵫", + "codepoint": "U+5D6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D6B", + "status": "exact_ids", + "ids": "⿰山兹", + "canonical_ids": "⿰山兹", + "expanded_ids": "⿰山⿱䒑⿰幺幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "山", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵬", + "codepoint": "U+5D6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D6C", + "status": "exact_ids", + "ids": "⿱山鬼", + "canonical_ids": "⿱山鬼", + "expanded_ids": "⿱山鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵭", + "codepoint": "U+5D6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D6D", + "status": "exact_ids", + "ids": "⿰山旁", + "canonical_ids": "⿰山旁", + "expanded_ids": "⿰山⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "山", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵮", + "codepoint": "U+5D6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D6E", + "status": "exact_ids", + "ids": "⿰山真", + "canonical_ids": "⿰山真", + "expanded_ids": "⿰山⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "山", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵯", + "codepoint": "U+5D6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D6F", + "status": "exact_ids", + "ids": "⿰山差", + "canonical_ids": "⿰山差", + "expanded_ids": "⿰山⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "工", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵰", + "codepoint": "U+5D70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D70", + "status": "exact_ids", + "ids": "⿰山兼", + "canonical_ids": "⿰山兼", + "expanded_ids": "⿰山兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵱", + "codepoint": "U+5D71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D71", + "status": "exact_ids", + "ids": "⿰山容", + "canonical_ids": "⿰山容", + "expanded_ids": "⿰山⿱宀⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵲", + "codepoint": "U+5D72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D72", + "status": "exact_ids", + "ids": "⿰山臬", + "canonical_ids": "⿰山臬", + "expanded_ids": "⿰山⿱⿻目丶木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "山", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵳", + "codepoint": "U+5D73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D73", + "status": "exact_ids", + "ids": "⿱山差", + "canonical_ids": "⿱山差", + "expanded_ids": "⿱山⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "工", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵴", + "codepoint": "U+5D74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D74", + "status": "exact_ids", + "ids": "⿰山脊", + "canonical_ids": "⿰山脊", + "expanded_ids": "⿰山⿱兆月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "山", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵵", + "codepoint": "U+5D75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D75", + "status": "exact_ids", + "ids": "⿱山時", + "canonical_ids": "⿱山時", + "expanded_ids": "⿱山⿰日⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "山", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵶", + "codepoint": "U+5D76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D76", + "status": "exact_ids", + "ids": "⿰山弱", + "canonical_ids": "⿰山弱", + "expanded_ids": "⿰山⿰⿱弓二⿱弓二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "山", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵷", + "codepoint": "U+5D77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D77", + "status": "exact_ids", + "ids": "⿰山從", + "canonical_ids": "⿰山從", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "從" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵸", + "codepoint": "U+5D78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D78", + "status": "exact_ids", + "ids": "⿱山從", + "canonical_ids": "⿱山從", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "從" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵹", + "codepoint": "U+5D79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D79", + "status": "exact_ids", + "ids": "⿱山强", + "canonical_ids": "⿱山强", + "expanded_ids": "⿱山⿰弓⿱口虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "山", + "弓", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵺", + "codepoint": "U+5D7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D7A", + "status": "exact_ids", + "ids": "⿰山翏", + "canonical_ids": "⿰山翏", + "expanded_ids": "⿰山⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "山", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵻", + "codepoint": "U+5D7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D7B", + "status": "exact_ids", + "ids": "⿰山康", + "canonical_ids": "⿰山康", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "广" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵼", + "codepoint": "U+5D7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D7C", + "status": "exact_ids", + "ids": "⿰山產", + "canonical_ids": "⿰山產", + "expanded_ids": "⿰山⿱⿱⿱亠八厂⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "八", + "厂", + "山", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵽", + "codepoint": "U+5D7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D7D", + "status": "exact_ids", + "ids": "⿰山帶", + "canonical_ids": "⿰山帶", + "expanded_ids": "⿰山⿳卌冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "卌", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵾", + "codepoint": "U+5D7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D7E", + "status": "exact_ids", + "ids": "⿱山參", + "canonical_ids": "⿱山參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嵿", + "codepoint": "U+5D7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D7F", + "status": "exact_ids", + "ids": "⿱山頂", + "canonical_ids": "⿱山頂", + "expanded_ids": "⿱山⿰⿱一亅⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亅", + "八", + "山", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶀", + "codepoint": "U+5D80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D80", + "status": "exact_ids", + "ids": "⿰山雩", + "canonical_ids": "⿰山雩", + "expanded_ids": "⿰山⿱雨⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "山", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶁", + "codepoint": "U+5D81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D81", + "status": "exact_ids", + "ids": "⿰山婁", + "canonical_ids": "⿰山婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶂", + "codepoint": "U+5D82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D82", + "status": "exact_ids", + "ids": "⿰山章", + "canonical_ids": "⿰山章", + "expanded_ids": "⿰山⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "山", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶃", + "codepoint": "U+5D83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D83", + "status": "exact_ids", + "ids": "⿰山斬", + "canonical_ids": "⿰山斬", + "expanded_ids": "⿰山⿰車斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "斤", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶄", + "codepoint": "U+5D84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D84", + "status": "exact_ids", + "ids": "⿱山斬", + "canonical_ids": "⿱山斬", + "expanded_ids": "⿱山⿰車斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "斤", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶅", + "codepoint": "U+5D85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D85", + "status": "exact_ids", + "ids": "⿱敖山", + "canonical_ids": "⿱敖山", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶆", + "codepoint": "U+5D86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D86", + "status": "exact_ids", + "ids": "⿰山曹", + "canonical_ids": "⿰山曹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "曹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶇", + "codepoint": "U+5D87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D87", + "status": "exact_ids", + "ids": "⿰山區", + "canonical_ids": "⿰山區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶈", + "codepoint": "U+5D88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D88", + "status": "exact_ids", + "ids": "⿱山將", + "canonical_ids": "⿱山將", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "將" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶉", + "codepoint": "U+5D89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D89", + "status": "exact_ids", + "ids": "⿱山唯", + "canonical_ids": "⿱山唯", + "expanded_ids": "⿱山⿰口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "山", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶊", + "codepoint": "U+5D8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D8A", + "status": "exact_ids", + "ids": "⿱山推", + "canonical_ids": "⿱山推", + "expanded_ids": "⿱山⿰扌隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "扌", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶋", + "codepoint": "U+5D8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D8B", + "status": "exact_ids", + "ids": "⿰山鳥", + "canonical_ids": "⿰山鳥", + "expanded_ids": "⿰山鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶌", + "codepoint": "U+5D8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D8C", + "status": "exact_ids", + "ids": "⿱山鳥", + "canonical_ids": "⿱山鳥", + "expanded_ids": "⿱山鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶍", + "codepoint": "U+5D8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D8D", + "status": "exact_ids", + "ids": "⿰山習", + "canonical_ids": "⿰山習", + "expanded_ids": "⿰山⿱⿰习习⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "习", + "山", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶎", + "codepoint": "U+5D8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D8E", + "status": "exact_ids", + "ids": "⿱山尉", + "canonical_ids": "⿱山尉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "尉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶏", + "codepoint": "U+5D8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D8F", + "status": "exact_ids", + "ids": "⿱屵配", + "canonical_ids": "⿱屵配", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "山", + "己" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶐", + "codepoint": "U+5D90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D90", + "status": "exact_ids", + "ids": "⿱山隆", + "canonical_ids": "⿱山隆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "隆" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶑", + "codepoint": "U+5D91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D91", + "status": "exact_ids", + "ids": "⿰山象", + "canonical_ids": "⿰山象", + "expanded_ids": "⿰山象", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "象" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶒", + "codepoint": "U+5D92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D92", + "status": "exact_ids", + "ids": "⿰山曾", + "canonical_ids": "⿰山曾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶓", + "codepoint": "U+5D93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D93", + "status": "exact_ids", + "ids": "⿰山番", + "canonical_ids": "⿰山番", + "expanded_ids": "⿰山⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "山", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶔", + "codepoint": "U+5D94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D94", + "status": "exact_ids", + "ids": "⿱山欽", + "canonical_ids": "⿱山欽", + "expanded_ids": "⿱山⿰金欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "欠", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶕", + "codepoint": "U+5D95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D95", + "status": "exact_ids", + "ids": "⿰山焦", + "canonical_ids": "⿰山焦", + "expanded_ids": "⿰山⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "灬", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶖", + "codepoint": "U+5D96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D96", + "status": "exact_ids", + "ids": "⿰山翕", + "canonical_ids": "⿰山翕", + "expanded_ids": "⿰山⿱⿱⿱人一口⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "人", + "口", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶗", + "codepoint": "U+5D97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D97", + "status": "exact_ids", + "ids": "⿰山勞", + "canonical_ids": "⿰山勞", + "expanded_ids": "⿰山⿳⿰火火冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "山", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶘", + "codepoint": "U+5D98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D98", + "status": "exact_ids", + "ids": "⿱山棧", + "canonical_ids": "⿱山棧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "木" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶙", + "codepoint": "U+5D99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D99", + "status": "exact_ids", + "ids": "⿰山粦", + "canonical_ids": "⿰山粦", + "expanded_ids": "⿰山⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "山", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶚", + "codepoint": "U+5D9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D9A", + "status": "exact_ids", + "ids": "⿱山尞", + "canonical_ids": "⿱山尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "山" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶛", + "codepoint": "U+5D9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D9B", + "status": "exact_ids", + "ids": "⿰山尞", + "canonical_ids": "⿰山尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "山" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶜", + "codepoint": "U+5D9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D9C", + "status": "exact_ids", + "ids": "⿱山朁", + "canonical_ids": "⿱山朁", + "expanded_ids": "⿱山⿱⿰旡旡曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "旡", + "曰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶝", + "codepoint": "U+5D9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D9D", + "status": "exact_ids", + "ids": "⿰山登", + "canonical_ids": "⿰山登", + "expanded_ids": "⿰山⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "癶", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶞", + "codepoint": "U+5D9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D9E", + "status": "exact_ids", + "ids": "⿱隋山", + "canonical_ids": "⿱隋山", + "expanded_ids": "⿱⿰阝⿱⿱牛一月山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "山", + "月", + "牛", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶟", + "codepoint": "U+5D9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5D9F", + "status": "exact_ids", + "ids": "⿰山尊", + "canonical_ids": "⿰山尊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "寸", + "山" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶠", + "codepoint": "U+5DA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DA0", + "status": "exact_ids", + "ids": "⿰山喬", + "canonical_ids": "⿰山喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "山" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶡", + "codepoint": "U+5DA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DA1", + "status": "exact_ids", + "ids": "⿱山厥", + "canonical_ids": "⿱山厥", + "expanded_ids": "⿱山⿱厂⿰⿱䒑屮欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "厂", + "屮", + "山", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶢", + "codepoint": "U+5DA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DA2", + "status": "exact_ids", + "ids": "⿰山堯", + "canonical_ids": "⿰山堯", + "expanded_ids": "⿰山⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶣", + "codepoint": "U+5DA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DA3", + "status": "exact_ids", + "ids": "⿱山焦", + "canonical_ids": "⿱山焦", + "expanded_ids": "⿱山⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "灬", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶤", + "codepoint": "U+5DA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DA4", + "status": "exact_ids", + "ids": "⿱山堯", + "canonical_ids": "⿱山堯", + "expanded_ids": "⿱山⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶥", + "codepoint": "U+5DA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DA5", + "status": "exact_ids", + "ids": "⿰山厥", + "canonical_ids": "⿰山厥", + "expanded_ids": "⿰山⿱厂⿰⿱䒑屮欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "厂", + "屮", + "山", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶦", + "codepoint": "U+5DA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DA6", + "status": "exact_ids", + "ids": "⿰山詹", + "canonical_ids": "⿰山詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶧", + "codepoint": "U+5DA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DA7", + "status": "exact_ids", + "ids": "⿰山睪", + "canonical_ids": "⿰山睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "山", + "罒" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶨", + "codepoint": "U+5DA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DA8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶩", + "codepoint": "U+5DA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DA9", + "status": "exact_ids", + "ids": "⿰山農", + "canonical_ids": "⿰山農", + "expanded_ids": "⿰山⿱曲辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "曲", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶪", + "codepoint": "U+5DAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DAA", + "status": "exact_ids", + "ids": "⿱山業", + "canonical_ids": "⿱山業", + "expanded_ids": "⿱山⿱业⿻羊八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "八", + "山", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶫", + "codepoint": "U+5DAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DAB", + "status": "exact_ids", + "ids": "⿰山業", + "canonical_ids": "⿰山業", + "expanded_ids": "⿰山⿱业⿻羊八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "八", + "山", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶬", + "codepoint": "U+5DAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DAC", + "status": "exact_ids", + "ids": "⿰山義", + "canonical_ids": "⿰山義", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "義" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶭", + "codepoint": "U+5DAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DAD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶮", + "codepoint": "U+5DAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DAE", + "status": "exact_ids", + "ids": "⿰山僉", + "canonical_ids": "⿰山僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶯", + "codepoint": "U+5DAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DAF", + "status": "exact_ids", + "ids": "⿱山戢", + "canonical_ids": "⿱山戢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "山", + "耳" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶰", + "codepoint": "U+5DB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DB0", + "status": "exact_ids", + "ids": "⿰山解", + "canonical_ids": "⿰山解", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "解" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶱", + "codepoint": "U+5DB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DB1", + "status": "exact_ids", + "ids": "⿰山葛", + "canonical_ids": "⿰山葛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "曰", + "艹" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶲", + "codepoint": "U+5DB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DB2", + "status": "exact_ids", + "ids": "⿱山雋", + "canonical_ids": "⿱山雋", + "expanded_ids": "⿱山⿱隹弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "弓", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶳", + "codepoint": "U+5DB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DB3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶴", + "codepoint": "U+5DB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DB4", + "status": "exact_ids", + "ids": "⿱奧山", + "canonical_ids": "⿱奧山", + "expanded_ids": "⿱⿱⿱宀⿱丿⿻木丷大山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "大", + "宀", + "山", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶵", + "codepoint": "U+5DB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DB5", + "status": "exact_ids", + "ids": "⿰山罪", + "canonical_ids": "⿰山罪", + "expanded_ids": "⿰山⿱罒非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "罒", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶶", + "codepoint": "U+5DB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DB6", + "status": "exact_ids", + "ids": "⿱山微", + "canonical_ids": "⿱山微", + "expanded_ids": "⿱山⿰彳⿰⿳山冖几攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "几", + "山", + "彳", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶷", + "codepoint": "U+5DB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DB7", + "status": "exact_ids", + "ids": "⿱山疑", + "canonical_ids": "⿱山疑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "疑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶸", + "codepoint": "U+5DB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DB8", + "status": "exact_ids", + "ids": "⿰山榮", + "canonical_ids": "⿰山榮", + "expanded_ids": "⿰山⿳⿰火火冖木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "山", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶹", + "codepoint": "U+5DB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DB9", + "status": "exact_ids", + "ids": "⿰山壽", + "canonical_ids": "⿰山壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶺", + "codepoint": "U+5DBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DBA", + "status": "exact_ids", + "ids": "⿱山領", + "canonical_ids": "⿱山領", + "expanded_ids": "⿱山⿰⿱⿱人一龴⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "八", + "山", + "目", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 300, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶻", + "codepoint": "U+5DBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DBB", + "status": "exact_ids", + "ids": "⿱山截", + "canonical_ids": "⿱山截", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "山", + "隹" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶼", + "codepoint": "U+5DBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DBC", + "status": "exact_ids", + "ids": "⿰山與", + "canonical_ids": "⿰山與", + "expanded_ids": "⿰山與", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "與" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶽", + "codepoint": "U+5DBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DBD", + "status": "exact_ids", + "ids": "⿱山獄", + "canonical_ids": "⿱山獄", + "expanded_ids": "⿱山⿰犭⿰言尤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "山", + "犭", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶾", + "codepoint": "U+5DBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DBE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "嶿", + "codepoint": "U+5DBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DBF", + "status": "exact_ids", + "ids": "⿰山需", + "canonical_ids": "⿰山需", + "expanded_ids": "⿰山⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巀", + "codepoint": "U+5DC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DC0", + "status": "exact_ids", + "ids": "⿱山𢧵", + "canonical_ids": "⿱山𢧵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "山", + "隹" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巁", + "codepoint": "U+5DC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DC1", + "status": "exact_ids", + "ids": "⿰山厲", + "canonical_ids": "⿰山厲", + "expanded_ids": "⿰山⿱厂⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "山", + "田", + "禸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巂", + "codepoint": "U+5DC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DC2", + "status": "exact_ids", + "ids": "⿱崔冏", + "canonical_ids": "⿱崔冏", + "expanded_ids": "⿱⿱山隹⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "山", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巃", + "codepoint": "U+5DC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DC3", + "status": "exact_ids", + "ids": "⿱山龍", + "canonical_ids": "⿱山龍", + "expanded_ids": "⿱山龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巄", + "codepoint": "U+5DC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DC4", + "status": "exact_ids", + "ids": "⿰山龍", + "canonical_ids": "⿰山龍", + "expanded_ids": "⿰山龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巅", + "codepoint": "U+5DC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DC5", + "status": "exact_ids", + "ids": "⿱山颠", + "canonical_ids": "⿱山颠", + "expanded_ids": "⿱山⿰⿱十⿻⿱目八一⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "八", + "冂", + "十", + "山", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 336, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巆", + "codepoint": "U+5DC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DC6", + "status": "exact_ids", + "ids": "⿰山營", + "canonical_ids": "⿰山營", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "山", + "火" + ], + "unresolved_leaves": [ + "呂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巇", + "codepoint": "U+5DC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DC7", + "status": "exact_ids", + "ids": "⿰山戲", + "canonical_ids": "⿰山戲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "䖒", + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巈", + "codepoint": "U+5DC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DC8", + "status": "exact_ids", + "ids": "⿱山鞠", + "canonical_ids": "⿱山鞠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "革" + ], + "unresolved_leaves": [ + "匊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巉", + "codepoint": "U+5DC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DC9", + "status": "exact_ids", + "ids": "⿰山毚", + "canonical_ids": "⿰山毚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "毚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巊", + "codepoint": "U+5DCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DCA", + "status": "exact_ids", + "ids": "⿰山嬰", + "canonical_ids": "⿰山嬰", + "expanded_ids": "⿰山⿱⿰⿱目八⿱目八女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "女", + "山", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巋", + "codepoint": "U+5DCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DCB", + "status": "exact_ids", + "ids": "⿱山歸", + "canonical_ids": "⿱山歸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "歸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巌", + "codepoint": "U+5DCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DCC", + "status": "exact_ids", + "ids": "⿱山厳", + "canonical_ids": "⿱山厳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "厳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巍", + "codepoint": "U+5DCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DCD", + "status": "exact_ids", + "ids": "⿱山魏", + "canonical_ids": "⿱山魏", + "expanded_ids": "⿱山⿰⿱⿻丿木女鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "山", + "木", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巎", + "codepoint": "U+5DCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DCE", + "status": "exact_ids", + "ids": "⿰山夒", + "canonical_ids": "⿰山夒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山" + ], + "unresolved_leaves": [ + "夒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巏", + "codepoint": "U+5DCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DCF", + "status": "exact_ids", + "ids": "⿰山雚", + "canonical_ids": "⿰山雚", + "expanded_ids": "⿰山⿱艹⿱⿰口口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "山", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巐", + "codepoint": "U+5DD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DD0", + "status": "exact_ids", + "ids": "⿱山髜", + "canonical_ids": "⿱山髜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "升", + "山", + "日" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巑", + "codepoint": "U+5DD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DD1", + "status": "exact_ids", + "ids": "⿰山贊", + "canonical_ids": "⿰山贊", + "expanded_ids": "⿰山⿱⿰⿱牛儿⿱牛儿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "山", + "牛", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巒", + "codepoint": "U+5DD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DD2", + "status": "exact_ids", + "ids": "⿱䜌山", + "canonical_ids": "⿱䜌山", + "expanded_ids": "⿱⿲⿱幺小言⿱幺小山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "山", + "幺", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巓", + "codepoint": "U+5DD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DD3", + "status": "exact_ids", + "ids": "⿱山顚", + "canonical_ids": "⿱山顚", + "expanded_ids": "⿱山⿰⿻匕⿱⿱一儿目⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "儿", + "八", + "匕", + "山", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 336, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巔", + "codepoint": "U+5DD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DD4", + "status": "exact_ids", + "ids": "⿱山顛", + "canonical_ids": "⿱山顛", + "expanded_ids": "⿱山⿰⿱十⿻⿱目八一⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "十", + "山", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 336, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巕", + "codepoint": "U+5DD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DD5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巖", + "codepoint": "U+5DD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DD6", + "status": "exact_ids", + "ids": "⿱山嚴", + "canonical_ids": "⿱山嚴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "山" + ], + "unresolved_leaves": [ + "𠪚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巗", + "codepoint": "U+5DD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DD7", + "status": "exact_ids", + "ids": "⿰山嚴", + "canonical_ids": "⿰山嚴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "山" + ], + "unresolved_leaves": [ + "𠪚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巘", + "codepoint": "U+5DD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DD8", + "status": "exact_ids", + "ids": "⿰山獻", + "canonical_ids": "⿰山獻", + "expanded_ids": "⿰山⿰⿱虍鬲⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "山", + "虍", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巙", + "codepoint": "U+5DD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DD9", + "status": "exact_ids", + "ids": "⿰山夔", + "canonical_ids": "⿰山夔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "山" + ], + "unresolved_leaves": [ + "夒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巚", + "codepoint": "U+5DDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DDA", + "status": "exact_ids", + "ids": "⿱山獻", + "canonical_ids": "⿱山獻", + "expanded_ids": "⿱山⿰⿱虍鬲⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "山", + "虍", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巛", + "codepoint": "U+5DDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DDB", + "status": "leaf_self_fallback", + "ids": "巛", + "canonical_ids": "巛", + "expanded_ids": "巛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巜", + "codepoint": "U+5DDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DDC", + "status": "leaf_self_fallback", + "ids": "巜", + "canonical_ids": "巜", + "expanded_ids": "巜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "川", + "codepoint": "U+5DDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DDD", + "status": "leaf_self_fallback", + "ids": "川", + "canonical_ids": "川", + "expanded_ids": "川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "川" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "州", + "codepoint": "U+5DDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DDE", + "status": "leaf_self_fallback", + "ids": "州", + "canonical_ids": "州", + "expanded_ids": "州", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "州" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巟", + "codepoint": "U+5DDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DDF", + "status": "exact_ids", + "ids": "⿱亡川", + "canonical_ids": "⿱亡川", + "expanded_ids": "⿱⿻亠乚川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "川" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巠", + "codepoint": "U+5DE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DE0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巡", + "codepoint": "U+5DE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DE1", + "status": "exact_ids", + "ids": "⿰辶巛", + "canonical_ids": "⿰辶巛", + "expanded_ids": "⿰辶巛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巢", + "codepoint": "U+5DE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DE2", + "status": "exact_ids", + "ids": "⿱巛果", + "canonical_ids": "⿱巛果", + "expanded_ids": "⿱巛⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巣", + "codepoint": "U+5DE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DE3", + "status": "exact_ids", + "ids": "⿱⺍果", + "canonical_ids": "⿱⺍果", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田" + ], + "unresolved_leaves": [ + "⺍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巤", + "codepoint": "U+5DE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DE4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "工", + "codepoint": "U+5DE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DE5", + "status": "leaf_self_fallback", + "ids": "工", + "canonical_ids": "工", + "expanded_ids": "工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "左", + "codepoint": "U+5DE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DE6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巧", + "codepoint": "U+5DE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DE7", + "status": "exact_ids", + "ids": "⿰工丂", + "canonical_ids": "⿰工丂", + "expanded_ids": "⿰工丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巨", + "codepoint": "U+5DE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DE8", + "status": "leaf_self_fallback", + "ids": "巨", + "canonical_ids": "巨", + "expanded_ids": "巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巩", + "codepoint": "U+5DE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DE9", + "status": "exact_ids", + "ids": "⿰工凡", + "canonical_ids": "⿰工凡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巪", + "codepoint": "U+5DEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DEA", + "status": "exact_ids", + "ids": "⿱巨乛", + "canonical_ids": "⿱巨乛", + "expanded_ids": "⿱巨乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "巨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巫", + "codepoint": "U+5DEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DEB", + "status": "exact_ids", + "ids": "⿻工从", + "canonical_ids": "⿻工从", + "expanded_ids": "⿻工⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巬", + "codepoint": "U+5DEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DEC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巭", + "codepoint": "U+5DED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DED", + "status": "exact_ids", + "ids": "⿱功夫", + "canonical_ids": "⿱功夫", + "expanded_ids": "⿱⿰工力⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "力", + "大", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "差", + "codepoint": "U+5DEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DEE", + "status": "exact_ids", + "ids": "⿱羊工", + "canonical_ids": "⿱羊工", + "expanded_ids": "⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巯", + "codepoint": "U+5DEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DEF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巰", + "codepoint": "U+5DF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DF0", + "status": "exact_ids", + "ids": "⿰巠㐬", + "canonical_ids": "⿰巠㐬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "厶", + "川" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "己", + "codepoint": "U+5DF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DF1", + "status": "leaf_self_fallback", + "ids": "己", + "canonical_ids": "己", + "expanded_ids": "己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "已", + "codepoint": "U+5DF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DF2", + "status": "leaf_self_fallback", + "ids": "已", + "canonical_ids": "已", + "expanded_ids": "已", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "已" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巳", + "codepoint": "U+5DF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DF3", + "status": "leaf_self_fallback", + "ids": "巳", + "canonical_ids": "巳", + "expanded_ids": "巳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巴", + "codepoint": "U+5DF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DF4", + "status": "leaf_self_fallback", + "ids": "巴", + "canonical_ids": "巴", + "expanded_ids": "巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巵", + "codepoint": "U+5DF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DF5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巶", + "codepoint": "U+5DF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DF6", + "status": "exact_ids", + "ids": "⿰召巳", + "canonical_ids": "⿰召巳", + "expanded_ids": "⿰⿱刀口巳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "巳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巷", + "codepoint": "U+5DF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DF7", + "status": "exact_ids", + "ids": "⿱共巳", + "canonical_ids": "⿱共巳", + "expanded_ids": "⿱⿱廿廾巳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巳", + "廾", + "廿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巸", + "codepoint": "U+5DF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DF8", + "status": "exact_ids", + "ids": "⿰𦣞巳", + "canonical_ids": "⿰𦣞巳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巳" + ], + "unresolved_leaves": [ + "𦣞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巹", + "codepoint": "U+5DF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DF9", + "status": "exact_ids", + "ids": "⿱丞己", + "canonical_ids": "⿱丞己", + "expanded_ids": "⿱⿱⿱乛水一己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乛", + "己", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巺", + "codepoint": "U+5DFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DFA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巻", + "codepoint": "U+5DFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DFB", + "status": "exact_ids", + "ids": "⿱龹己", + "canonical_ids": "⿱龹己", + "expanded_ids": "⿱龹己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巼", + "codepoint": "U+5DFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DFC", + "status": "exact_ids", + "ids": "⿱巴叱", + "canonical_ids": "⿱巴叱", + "expanded_ids": "⿱巴⿰口七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "口", + "巴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巽", + "codepoint": "U+5DFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DFD", + "status": "exact_ids", + "ids": "⿱⿰己己共", + "canonical_ids": "⿱⿰己己共", + "expanded_ids": "⿱⿰己己⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "廾", + "廿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巾", + "codepoint": "U+5DFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DFE", + "status": "exact_ids", + "ids": "⿻冂丨", + "canonical_ids": "⿻冂丨", + "expanded_ids": "⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "巿", + "codepoint": "U+5DFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5DFF", + "status": "exact_ids", + "ids": "⿻巾一", + "canonical_ids": "⿻巾一", + "expanded_ids": "⿻⿻冂丨一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帀", + "codepoint": "U+5E00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E00", + "status": "exact_ids", + "ids": "⿱一巾", + "canonical_ids": "⿱一巾", + "expanded_ids": "⿱一⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "币", + "codepoint": "U+5E01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E01", + "status": "exact_ids", + "ids": "⿱丿巾", + "canonical_ids": "⿱丿巾", + "expanded_ids": "⿱丿⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丿", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "市", + "codepoint": "U+5E02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E02", + "status": "exact_ids", + "ids": "⿱亠巾", + "canonical_ids": "⿱亠巾", + "expanded_ids": "⿱亠⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "布", + "codepoint": "U+5E03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E03", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帄", + "codepoint": "U+5E04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E04", + "status": "exact_ids", + "ids": "⿰巾丁", + "canonical_ids": "⿰巾丁", + "expanded_ids": "⿰⿻冂丨⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "亅", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帅", + "codepoint": "U+5E05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E05", + "status": "exact_ids", + "ids": "⿰刂巾", + "canonical_ids": "⿰刂巾", + "expanded_ids": "⿰刂⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "刂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帆", + "codepoint": "U+5E06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E06", + "status": "exact_ids", + "ids": "⿰巾凡", + "canonical_ids": "⿰巾凡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帇", + "codepoint": "U+5E07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E07", + "status": "exact_ids", + "ids": "⿻彐巾", + "canonical_ids": "⿻彐巾", + "expanded_ids": "⿻彐⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "彐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "师", + "codepoint": "U+5E08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E08", + "status": "exact_ids", + "ids": "⿰刂帀", + "canonical_ids": "⿰刂帀", + "expanded_ids": "⿰刂⿱一⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "刂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帉", + "codepoint": "U+5E09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E09", + "status": "exact_ids", + "ids": "⿰巾分", + "canonical_ids": "⿰巾分", + "expanded_ids": "⿰⿻冂丨⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "八", + "冂", + "刀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帊", + "codepoint": "U+5E0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E0A", + "status": "exact_ids", + "ids": "⿰巾巴", + "canonical_ids": "⿰巾巴", + "expanded_ids": "⿰⿻冂丨巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "巴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帋", + "codepoint": "U+5E0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E0B", + "status": "exact_ids", + "ids": "⿱氏巾", + "canonical_ids": "⿱氏巾", + "expanded_ids": "⿱氏⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "希", + "codepoint": "U+5E0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E0C", + "status": "exact_ids", + "ids": "⿱乂布", + "canonical_ids": "⿱乂布", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帍", + "codepoint": "U+5E0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E0D", + "status": "exact_ids", + "ids": "⿱户巾", + "canonical_ids": "⿱户巾", + "expanded_ids": "⿱⿻丶尸⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丶", + "冂", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帎", + "codepoint": "U+5E0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E0E", + "status": "exact_ids", + "ids": "⿰巾冘", + "canonical_ids": "⿰巾冘", + "expanded_ids": "⿰⿻冂丨⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "儿", + "冂", + "冖" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帏", + "codepoint": "U+5E0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E0F", + "status": "exact_ids", + "ids": "⿰巾韦", + "canonical_ids": "⿰巾韦", + "expanded_ids": "⿰⿻冂丨韦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "韦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帐", + "codepoint": "U+5E10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E10", + "status": "exact_ids", + "ids": "⿰巾长", + "canonical_ids": "⿰巾长", + "expanded_ids": "⿰⿻冂丨长", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "长" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帑", + "codepoint": "U+5E11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E11", + "status": "exact_ids", + "ids": "⿱奴巾", + "canonical_ids": "⿱奴巾", + "expanded_ids": "⿱⿰女又⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "又", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帒", + "codepoint": "U+5E12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E12", + "status": "exact_ids", + "ids": "⿱代巾", + "canonical_ids": "⿱代巾", + "expanded_ids": "⿱⿰亻弋⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亻", + "冂", + "弋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帓", + "codepoint": "U+5E13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E13", + "status": "exact_ids", + "ids": "⿰巾末", + "canonical_ids": "⿰巾末", + "expanded_ids": "⿰⿻冂丨⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帔", + "codepoint": "U+5E14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E14", + "status": "exact_ids", + "ids": "⿰巾皮", + "canonical_ids": "⿰巾皮", + "expanded_ids": "⿰⿻冂丨皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帕", + "codepoint": "U+5E15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E15", + "status": "exact_ids", + "ids": "⿰巾白", + "canonical_ids": "⿰巾白", + "expanded_ids": "⿰⿻冂丨⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丶", + "冂", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帖", + "codepoint": "U+5E16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E16", + "status": "exact_ids", + "ids": "⿰巾占", + "canonical_ids": "⿰巾占", + "expanded_ids": "⿰⿻冂丨⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "卜", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帗", + "codepoint": "U+5E17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E17", + "status": "exact_ids", + "ids": "⿰巾犮", + "canonical_ids": "⿰巾犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帘", + "codepoint": "U+5E18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E18", + "status": "exact_ids", + "ids": "⿱穴巾", + "canonical_ids": "⿱穴巾", + "expanded_ids": "⿱⿱宀八⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "八", + "冂", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帙", + "codepoint": "U+5E19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E19", + "status": "exact_ids", + "ids": "⿰巾失", + "canonical_ids": "⿰巾失", + "expanded_ids": "⿰⿻冂丨⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丿", + "冂", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帚", + "codepoint": "U+5E1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E1A", + "status": "exact_ids", + "ids": "⿳彐冖巾", + "canonical_ids": "⿳彐冖巾", + "expanded_ids": "⿳彐冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "彐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帛", + "codepoint": "U+5E1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E1B", + "status": "exact_ids", + "ids": "⿱白巾", + "canonical_ids": "⿱白巾", + "expanded_ids": "⿱⿻日丶⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丶", + "冂", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帜", + "codepoint": "U+5E1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E1C", + "status": "exact_ids", + "ids": "⿰巾只", + "canonical_ids": "⿰巾只", + "expanded_ids": "⿰⿻冂丨⿱口八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "八", + "冂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帝", + "codepoint": "U+5E1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E1D", + "status": "exact_ids", + "ids": "⿳六冖巾", + "canonical_ids": "⿳六冖巾", + "expanded_ids": "⿳⿱亠八冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帞", + "codepoint": "U+5E1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E1E", + "status": "exact_ids", + "ids": "⿰巾百", + "canonical_ids": "⿰巾百", + "expanded_ids": "⿰⿻冂丨⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丶", + "冂", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帟", + "codepoint": "U+5E1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E1F", + "status": "exact_ids", + "ids": "⿱亦巾", + "canonical_ids": "⿱亦巾", + "expanded_ids": "⿱亦⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亦", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帠", + "codepoint": "U+5E20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E20", + "status": "exact_ids", + "ids": "⿱臼巾", + "canonical_ids": "⿱臼巾", + "expanded_ids": "⿱臼⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帡", + "codepoint": "U+5E21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E21", + "status": "exact_ids", + "ids": "⿰巾并", + "canonical_ids": "⿰巾并", + "expanded_ids": "⿰⿻冂丨⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丷", + "冂", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帢", + "codepoint": "U+5E22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E22", + "status": "exact_ids", + "ids": "⿰巾合", + "canonical_ids": "⿰巾合", + "expanded_ids": "⿰⿻冂丨⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "人", + "冂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帣", + "codepoint": "U+5E23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E23", + "status": "exact_ids", + "ids": "⿱龹巾", + "canonical_ids": "⿱龹巾", + "expanded_ids": "⿱龹⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帤", + "codepoint": "U+5E24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E24", + "status": "exact_ids", + "ids": "⿱如巾", + "canonical_ids": "⿱如巾", + "expanded_ids": "⿱⿰女口⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "口", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帥", + "codepoint": "U+5E25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E25", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "带", + "codepoint": "U+5E26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E26", + "status": "exact_ids", + "ids": "⿳卅冖巾", + "canonical_ids": "⿳卅冖巾", + "expanded_ids": "⿳⿻川一冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "冖", + "川" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帧", + "codepoint": "U+5E27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E27", + "status": "exact_ids", + "ids": "⿰巾贞", + "canonical_ids": "⿰巾贞", + "expanded_ids": "⿰⿻冂丨⿱卜⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "人", + "冂", + "卜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帨", + "codepoint": "U+5E28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E28", + "status": "exact_ids", + "ids": "⿰巾兌", + "canonical_ids": "⿰巾兌", + "expanded_ids": "⿰⿻冂丨⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "儿", + "八", + "冂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帩", + "codepoint": "U+5E29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E29", + "status": "exact_ids", + "ids": "⿰巾肖", + "canonical_ids": "⿰巾肖", + "expanded_ids": "⿰⿻冂丨⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "小", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帪", + "codepoint": "U+5E2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E2A", + "status": "exact_ids", + "ids": "⿰巾辰", + "canonical_ids": "⿰巾辰", + "expanded_ids": "⿰⿻冂丨辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "師", + "codepoint": "U+5E2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E2B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帬", + "codepoint": "U+5E2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E2C", + "status": "exact_ids", + "ids": "⿱君巾", + "canonical_ids": "⿱君巾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "口" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "席", + "codepoint": "U+5E2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E2D", + "status": "exact_ids", + "ids": "⿱广芇", + "canonical_ids": "⿱广芇", + "expanded_ids": "⿱广⿱艹⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "广", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帮", + "codepoint": "U+5E2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E2E", + "status": "exact_ids", + "ids": "⿱邦巾", + "canonical_ids": "⿱邦巾", + "expanded_ids": "⿱⿰丰阝⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丰", + "冂", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帯", + "codepoint": "U+5E2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E2F", + "status": "exact_ids", + "ids": "⿳丗冖巾", + "canonical_ids": "⿳丗冖巾", + "expanded_ids": "⿳丗冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丗", + "丨", + "冂", + "冖" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帰", + "codepoint": "U+5E30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E30", + "status": "exact_ids", + "ids": "⿰刂帚", + "canonical_ids": "⿰刂帚", + "expanded_ids": "⿰刂⿳彐冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "刂", + "彐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帱", + "codepoint": "U+5E31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E31", + "status": "exact_ids", + "ids": "⿰巾寿", + "canonical_ids": "⿰巾寿", + "expanded_ids": "⿰⿻冂丨⿻丰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丰", + "冂", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帲", + "codepoint": "U+5E32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E32", + "status": "exact_ids", + "ids": "⿰巾幷", + "canonical_ids": "⿰巾幷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂" + ], + "unresolved_leaves": [ + "幷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帳", + "codepoint": "U+5E33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E33", + "status": "exact_ids", + "ids": "⿰巾長", + "canonical_ids": "⿰巾長", + "expanded_ids": "⿰⿻冂丨長", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "長" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帴", + "codepoint": "U+5E34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E34", + "status": "exact_ids", + "ids": "⿰巾戔", + "canonical_ids": "⿰巾戔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帵", + "codepoint": "U+5E35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E35", + "status": "exact_ids", + "ids": "⿰巾宛", + "canonical_ids": "⿰巾宛", + "expanded_ids": "⿰⿻冂丨⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "丨", + "冂", + "夕", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 182, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帶", + "codepoint": "U+5E36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E36", + "status": "exact_ids", + "ids": "⿳卌冖巾", + "canonical_ids": "⿳卌冖巾", + "expanded_ids": "⿳卌冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "卌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帷", + "codepoint": "U+5E37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E37", + "status": "exact_ids", + "ids": "⿰巾隹", + "canonical_ids": "⿰巾隹", + "expanded_ids": "⿰⿻冂丨隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "常", + "codepoint": "U+5E38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E38", + "status": "exact_ids", + "ids": "⿳小冖吊", + "canonical_ids": "⿳小冖吊", + "expanded_ids": "⿳小冖⿱口⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "口", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帹", + "codepoint": "U+5E39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E39", + "status": "exact_ids", + "ids": "⿰巾妾", + "canonical_ids": "⿰巾妾", + "expanded_ids": "⿰⿻冂丨⿱立女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "女", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帺", + "codepoint": "U+5E3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E3A", + "status": "exact_ids", + "ids": "⿰巾其", + "canonical_ids": "⿰巾其", + "expanded_ids": "⿰⿻冂丨其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "其", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帻", + "codepoint": "U+5E3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E3B", + "status": "exact_ids", + "ids": "⿰巾责", + "canonical_ids": "⿰巾责", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "人", + "冂" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帼", + "codepoint": "U+5E3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E3C", + "status": "exact_ids", + "ids": "⿰巾国", + "canonical_ids": "⿰巾国", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂" + ], + "unresolved_leaves": [ + "国" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帽", + "codepoint": "U+5E3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E3D", + "status": "exact_ids", + "ids": "⿰巾冒", + "canonical_ids": "⿰巾冒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "目" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帾", + "codepoint": "U+5E3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E3E", + "status": "exact_ids", + "ids": "⿰巾者", + "canonical_ids": "⿰巾者", + "expanded_ids": "⿰⿻冂丨⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丿", + "冂", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "帿", + "codepoint": "U+5E3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E3F", + "status": "exact_ids", + "ids": "⿰巾侯", + "canonical_ids": "⿰巾侯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂" + ], + "unresolved_leaves": [ + "侯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幀", + "codepoint": "U+5E40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E40", + "status": "exact_ids", + "ids": "⿰巾貞", + "canonical_ids": "⿰巾貞", + "expanded_ids": "⿰⿻冂丨⿱卜⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "八", + "冂", + "卜", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幁", + "codepoint": "U+5E41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E41", + "status": "exact_ids", + "ids": "⿰巾頁", + "canonical_ids": "⿰巾頁", + "expanded_ids": "⿰⿻冂丨⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丿", + "八", + "冂", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幂", + "codepoint": "U+5E42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E42", + "status": "exact_ids", + "ids": "⿱𠖇巾", + "canonical_ids": "⿱𠖇巾", + "expanded_ids": "⿱⿱冖⿱日大⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "大", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幃", + "codepoint": "U+5E43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E43", + "status": "exact_ids", + "ids": "⿰巾韋", + "canonical_ids": "⿰巾韋", + "expanded_ids": "⿰⿻冂丨韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幄", + "codepoint": "U+5E44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E44", + "status": "exact_ids", + "ids": "⿰巾屋", + "canonical_ids": "⿰巾屋", + "expanded_ids": "⿰⿻冂丨⿱尸⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "厶", + "土", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幅", + "codepoint": "U+5E45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E45", + "status": "exact_ids", + "ids": "⿰巾畐", + "canonical_ids": "⿰巾畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幆", + "codepoint": "U+5E46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E46", + "status": "exact_ids", + "ids": "⿰巾曷", + "canonical_ids": "⿰巾曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "曰" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幇", + "codepoint": "U+5E47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E47", + "status": "exact_ids", + "ids": "⿱封巾", + "canonical_ids": "⿱封巾", + "expanded_ids": "⿱⿰⿱土土寸⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "土", + "寸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幈", + "codepoint": "U+5E48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E48", + "status": "exact_ids", + "ids": "⿰巾屏", + "canonical_ids": "⿰巾屏", + "expanded_ids": "⿰⿻冂丨⿱尸⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丷", + "冂", + "尸", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幉", + "codepoint": "U+5E49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E49", + "status": "exact_ids", + "ids": "⿰巾枼", + "canonical_ids": "⿰巾枼", + "expanded_ids": "⿰⿻冂丨⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "丨", + "冂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幊", + "codepoint": "U+5E4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E4A", + "status": "exact_ids", + "ids": "⿰巾貢", + "canonical_ids": "⿰巾貢", + "expanded_ids": "⿰⿻冂丨⿱工⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "八", + "冂", + "工", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幋", + "codepoint": "U+5E4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E4B", + "status": "exact_ids", + "ids": "⿱般巾", + "canonical_ids": "⿱般巾", + "expanded_ids": "⿱⿰舟⿱几又⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "几", + "又", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幌", + "codepoint": "U+5E4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E4C", + "status": "exact_ids", + "ids": "⿰巾晃", + "canonical_ids": "⿰巾晃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "儿", + "冂", + "日" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幍", + "codepoint": "U+5E4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E4D", + "status": "exact_ids", + "ids": "⿰巾舀", + "canonical_ids": "⿰巾舀", + "expanded_ids": "⿰⿻冂丨⿱爫臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "爫", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幎", + "codepoint": "U+5E4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E4E", + "status": "exact_ids", + "ids": "⿰巾冥", + "canonical_ids": "⿰巾冥", + "expanded_ids": "⿰⿻冂丨⿱冖⿱日⿱亠八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幏", + "codepoint": "U+5E4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E4F", + "status": "exact_ids", + "ids": "⿰巾家", + "canonical_ids": "⿰巾家", + "expanded_ids": "⿰⿻冂丨⿱宀豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "宀", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幐", + "codepoint": "U+5E50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E50", + "status": "exact_ids", + "ids": "⿰月帣", + "canonical_ids": "⿰月帣", + "expanded_ids": "⿰月⿱龹⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "月", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幑", + "codepoint": "U+5E51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E51", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幒", + "codepoint": "U+5E52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E52", + "status": "exact_ids", + "ids": "⿰巾悤", + "canonical_ids": "⿰巾悤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "心" + ], + "unresolved_leaves": [ + "囱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幓", + "codepoint": "U+5E53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E53", + "status": "exact_ids", + "ids": "⿰巾參", + "canonical_ids": "⿰巾參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幔", + "codepoint": "U+5E54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E54", + "status": "exact_ids", + "ids": "⿰巾曼", + "canonical_ids": "⿰巾曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幕", + "codepoint": "U+5E55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E55", + "status": "exact_ids", + "ids": "⿱莫巾", + "canonical_ids": "⿱莫巾", + "expanded_ids": "⿱⿱艹⿱日大⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "大", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幖", + "codepoint": "U+5E56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E56", + "status": "exact_ids", + "ids": "⿰巾票", + "canonical_ids": "⿰巾票", + "expanded_ids": "⿰⿻冂丨⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "冂", + "小", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幗", + "codepoint": "U+5E57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E57", + "status": "exact_ids", + "ids": "⿰巾國", + "canonical_ids": "⿰巾國", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂" + ], + "unresolved_leaves": [ + "國" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幘", + "codepoint": "U+5E58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E58", + "status": "exact_ids", + "ids": "⿰巾責", + "canonical_ids": "⿰巾責", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "八", + "冂", + "目" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幙", + "codepoint": "U+5E59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E59", + "status": "exact_ids", + "ids": "⿰巾莫", + "canonical_ids": "⿰巾莫", + "expanded_ids": "⿰⿻冂丨⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "大", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幚", + "codepoint": "U+5E5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E5A", + "status": "exact_ids", + "ids": "⿱邦帛", + "canonical_ids": "⿱邦帛", + "expanded_ids": "⿱⿰丰阝⿱⿻日丶⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丰", + "丶", + "冂", + "日", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幛", + "codepoint": "U+5E5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E5B", + "status": "exact_ids", + "ids": "⿰巾章", + "canonical_ids": "⿰巾章", + "expanded_ids": "⿰⿻冂丨⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "十", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幜", + "codepoint": "U+5E5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E5C", + "status": "exact_ids", + "ids": "⿰巾景", + "canonical_ids": "⿰巾景", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "日" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幝", + "codepoint": "U+5E5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E5D", + "status": "exact_ids", + "ids": "⿰巾單", + "canonical_ids": "⿰巾單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幞", + "codepoint": "U+5E5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E5E", + "status": "exact_ids", + "ids": "⿰巾菐", + "canonical_ids": "⿰巾菐", + "expanded_ids": "⿰⿻冂丨⿱业⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "丨", + "儿", + "冂", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幟", + "codepoint": "U+5E5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E5F", + "status": "exact_ids", + "ids": "⿰巾戠", + "canonical_ids": "⿰巾戠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "日", + "立" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幠", + "codepoint": "U+5E60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E60", + "status": "exact_ids", + "ids": "⿰巾無", + "canonical_ids": "⿰巾無", + "expanded_ids": "⿰⿻冂丨無", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "無" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幡", + "codepoint": "U+5E61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E61", + "status": "exact_ids", + "ids": "⿰巾番", + "canonical_ids": "⿰巾番", + "expanded_ids": "⿰⿻冂丨⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "冂", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幢", + "codepoint": "U+5E62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E62", + "status": "exact_ids", + "ids": "⿰巾童", + "canonical_ids": "⿰巾童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幣", + "codepoint": "U+5E63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E63", + "status": "exact_ids", + "ids": "⿱敝巾", + "canonical_ids": "⿱敝巾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "攵" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幤", + "codepoint": "U+5E64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E64", + "status": "exact_ids", + "ids": "⿱敞巾", + "canonical_ids": "⿱敞巾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "小", + "攵" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幥", + "codepoint": "U+5E65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E65", + "status": "exact_ids", + "ids": "⿰巾掌", + "canonical_ids": "⿰巾掌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "小", + "手" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幦", + "codepoint": "U+5E66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E66", + "status": "exact_ids", + "ids": "⿱辟巾", + "canonical_ids": "⿱辟巾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "十", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幧", + "codepoint": "U+5E67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E67", + "status": "exact_ids", + "ids": "⿰巾喿", + "canonical_ids": "⿰巾喿", + "expanded_ids": "⿰⿻冂丨⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幨", + "codepoint": "U+5E68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E68", + "status": "exact_ids", + "ids": "⿰巾詹", + "canonical_ids": "⿰巾詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幩", + "codepoint": "U+5E69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E69", + "status": "exact_ids", + "ids": "⿰巾賁", + "canonical_ids": "⿰巾賁", + "expanded_ids": "⿰⿻冂丨⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "八", + "冂", + "十", + "廾", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幪", + "codepoint": "U+5E6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E6A", + "status": "exact_ids", + "ids": "⿰巾蒙", + "canonical_ids": "⿰巾蒙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "艹", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幫", + "codepoint": "U+5E6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E6B", + "status": "exact_ids", + "ids": "⿱封帛", + "canonical_ids": "⿱封帛", + "expanded_ids": "⿱⿰⿱土土寸⿱⿻日丶⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丶", + "冂", + "土", + "寸", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幬", + "codepoint": "U+5E6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E6C", + "status": "exact_ids", + "ids": "⿰巾壽", + "canonical_ids": "⿰巾壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幭", + "codepoint": "U+5E6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E6D", + "status": "exact_ids", + "ids": "⿰巾蔑", + "canonical_ids": "⿰巾蔑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "目", + "艹" + ], + "unresolved_leaves": [ + "戌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幮", + "codepoint": "U+5E6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E6E", + "status": "exact_ids", + "ids": "⿰巾廚", + "canonical_ids": "⿰巾廚", + "expanded_ids": "⿰⿻冂丨⿱广⿰⿱十豆寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "十", + "寸", + "广", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幯", + "codepoint": "U+5E6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E6F", + "status": "exact_ids", + "ids": "⿰巾節", + "canonical_ids": "⿰巾節", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "卩", + "艮" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幰", + "codepoint": "U+5E70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E70", + "status": "exact_ids", + "ids": "⿰巾憲", + "canonical_ids": "⿰巾憲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂" + ], + "unresolved_leaves": [ + "憲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幱", + "codepoint": "U+5E71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E71", + "status": "exact_ids", + "ids": "⿰巾闌", + "canonical_ids": "⿰巾闌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "干", + "codepoint": "U+5E72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E72", + "status": "exact_ids", + "ids": "⿱一十", + "canonical_ids": "⿱一十", + "expanded_ids": "⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "平", + "codepoint": "U+5E73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E73", + "status": "exact_ids", + "ids": "⿻干丷", + "canonical_ids": "⿻干丷", + "expanded_ids": "⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "年", + "codepoint": "U+5E74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E74", + "status": "leaf_self_fallback", + "ids": "年", + "canonical_ids": "年", + "expanded_ids": "年", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "年" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幵", + "codepoint": "U+5E75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E75", + "status": "exact_ids", + "ids": "⿰干干", + "canonical_ids": "⿰干干", + "expanded_ids": "⿰⿱一十⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "并", + "codepoint": "U+5E76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E76", + "status": "exact_ids", + "ids": "⿱丷开", + "canonical_ids": "⿱丷开", + "expanded_ids": "⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幷", + "codepoint": "U+5E77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E77", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幸", + "codepoint": "U+5E78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E78", + "status": "exact_ids", + "ids": "⿱土𢆉", + "canonical_ids": "⿱土𢆉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幹", + "codepoint": "U+5E79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E79", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幺", + "codepoint": "U+5E7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E7A", + "status": "leaf_self_fallback", + "ids": "幺", + "canonical_ids": "幺", + "expanded_ids": "幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幻", + "codepoint": "U+5E7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E7B", + "status": "exact_ids", + "ids": "⿰幺㇇", + "canonical_ids": "⿰幺㇇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幼", + "codepoint": "U+5E7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E7C", + "status": "exact_ids", + "ids": "⿰幺力", + "canonical_ids": "⿰幺力", + "expanded_ids": "⿰幺力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幽", + "codepoint": "U+5E7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E7D", + "status": "exact_ids", + "ids": "⿻𢆶山", + "canonical_ids": "⿻𢆶山", + "expanded_ids": "⿻⿰幺幺山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "幾", + "codepoint": "U+5E7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E7E", + "status": "exact_ids", + "ids": "⿱𢆶戍", + "canonical_ids": "⿱𢆶戍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺" + ], + "unresolved_leaves": [ + "戍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "广", + "codepoint": "U+5E7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E7F", + "status": "leaf_self_fallback", + "ids": "广", + "canonical_ids": "广", + "expanded_ids": "广", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庀", + "codepoint": "U+5E80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E80", + "status": "exact_ids", + "ids": "⿱广匕", + "canonical_ids": "⿱广匕", + "expanded_ids": "⿱广匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庁", + "codepoint": "U+5E81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E81", + "status": "exact_ids", + "ids": "⿱广丁", + "canonical_ids": "⿱广丁", + "expanded_ids": "⿱广⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庂", + "codepoint": "U+5E82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E82", + "status": "exact_ids", + "ids": "⿱广人", + "canonical_ids": "⿱广人", + "expanded_ids": "⿱广人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "広", + "codepoint": "U+5E83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E83", + "status": "exact_ids", + "ids": "⿱广厶", + "canonical_ids": "⿱广厶", + "expanded_ids": "⿱广厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庄", + "codepoint": "U+5E84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E84", + "status": "exact_ids", + "ids": "⿱广土", + "canonical_ids": "⿱广土", + "expanded_ids": "⿱广土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庅", + "codepoint": "U+5E85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E85", + "status": "exact_ids", + "ids": "⿱广么", + "canonical_ids": "⿱广么", + "expanded_ids": "⿱广⿱丿厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厶", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庆", + "codepoint": "U+5E86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E86", + "status": "exact_ids", + "ids": "⿱广大", + "canonical_ids": "⿱广大", + "expanded_ids": "⿱广大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庇", + "codepoint": "U+5E87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E87", + "status": "exact_ids", + "ids": "⿱广比", + "canonical_ids": "⿱广比", + "expanded_ids": "⿱广⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庈", + "codepoint": "U+5E88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E88", + "status": "exact_ids", + "ids": "⿱广今", + "canonical_ids": "⿱广今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "广" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庉", + "codepoint": "U+5E89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E89", + "status": "exact_ids", + "ids": "⿱广屯", + "canonical_ids": "⿱广屯", + "expanded_ids": "⿱广屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "床", + "codepoint": "U+5E8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E8A", + "status": "exact_ids", + "ids": "⿱广木", + "canonical_ids": "⿱广木", + "expanded_ids": "⿱广木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庋", + "codepoint": "U+5E8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E8B", + "status": "exact_ids", + "ids": "⿱广支", + "canonical_ids": "⿱广支", + "expanded_ids": "⿱广⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庌", + "codepoint": "U+5E8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E8C", + "status": "exact_ids", + "ids": "⿱广牙", + "canonical_ids": "⿱广牙", + "expanded_ids": "⿱广牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "牙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庍", + "codepoint": "U+5E8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E8D", + "status": "exact_ids", + "ids": "⿱广斤", + "canonical_ids": "⿱广斤", + "expanded_ids": "⿱广斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庎", + "codepoint": "U+5E8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E8E", + "status": "exact_ids", + "ids": "⿱广介", + "canonical_ids": "⿱广介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "序", + "codepoint": "U+5E8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E8F", + "status": "exact_ids", + "ids": "⿱广予", + "canonical_ids": "⿱广予", + "expanded_ids": "⿱广⿱龴⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "广", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庐", + "codepoint": "U+5E90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E90", + "status": "exact_ids", + "ids": "⿱广户", + "canonical_ids": "⿱广户", + "expanded_ids": "⿱广⿻丶尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "尸", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庑", + "codepoint": "U+5E91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E91", + "status": "exact_ids", + "ids": "⿱广无", + "canonical_ids": "⿱广无", + "expanded_ids": "⿱广无", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "无" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庒", + "codepoint": "U+5E92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E92", + "status": "exact_ids", + "ids": "⿱广圡", + "canonical_ids": "⿱广圡", + "expanded_ids": "⿱广⿻土丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "土", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "库", + "codepoint": "U+5E93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E93", + "status": "exact_ids", + "ids": "⿱广车", + "canonical_ids": "⿱广车", + "expanded_ids": "⿱广车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "应", + "codepoint": "U+5E94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E94", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "底", + "codepoint": "U+5E95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E95", + "status": "exact_ids", + "ids": "⿱广氐", + "canonical_ids": "⿱广氐", + "expanded_ids": "⿱广⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "广", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庖", + "codepoint": "U+5E96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E96", + "status": "exact_ids", + "ids": "⿱广包", + "canonical_ids": "⿱广包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "店", + "codepoint": "U+5E97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E97", + "status": "exact_ids", + "ids": "⿱广占", + "canonical_ids": "⿱广占", + "expanded_ids": "⿱广⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庘", + "codepoint": "U+5E98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E98", + "status": "exact_ids", + "ids": "⿱广甲", + "canonical_ids": "⿱广甲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广" + ], + "unresolved_leaves": [ + "甲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庙", + "codepoint": "U+5E99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E99", + "status": "exact_ids", + "ids": "⿱广由", + "canonical_ids": "⿱广由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庚", + "codepoint": "U+5E9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E9A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庛", + "codepoint": "U+5E9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E9B", + "status": "exact_ids", + "ids": "⿱广此", + "canonical_ids": "⿱广此", + "expanded_ids": "⿱广⿰止匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "广", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "府", + "codepoint": "U+5E9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E9C", + "status": "exact_ids", + "ids": "⿱广付", + "canonical_ids": "⿱广付", + "expanded_ids": "⿱广⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庝", + "codepoint": "U+5E9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E9D", + "status": "exact_ids", + "ids": "⿱广冬", + "canonical_ids": "⿱广冬", + "expanded_ids": "⿱广⿱夂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "夂", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庞", + "codepoint": "U+5E9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E9E", + "status": "exact_ids", + "ids": "⿱广龙", + "canonical_ids": "⿱广龙", + "expanded_ids": "⿱广龙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "废", + "codepoint": "U+5E9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5E9F", + "status": "exact_ids", + "ids": "⿱广发", + "canonical_ids": "⿱广发", + "expanded_ids": "⿱广发", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "发", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庠", + "codepoint": "U+5EA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EA0", + "status": "exact_ids", + "ids": "⿱广羊", + "canonical_ids": "⿱广羊", + "expanded_ids": "⿱广羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庡", + "codepoint": "U+5EA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EA1", + "status": "exact_ids", + "ids": "⿱广衣", + "canonical_ids": "⿱广衣", + "expanded_ids": "⿱广衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庢", + "codepoint": "U+5EA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EA2", + "status": "exact_ids", + "ids": "⿱广至", + "canonical_ids": "⿱广至", + "expanded_ids": "⿱广⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庣", + "codepoint": "U+5EA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EA3", + "status": "exact_ids", + "ids": "⿱广兆", + "canonical_ids": "⿱广兆", + "expanded_ids": "⿱广兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庤", + "codepoint": "U+5EA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EA4", + "status": "exact_ids", + "ids": "⿱广寺", + "canonical_ids": "⿱广寺", + "expanded_ids": "⿱广⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庥", + "codepoint": "U+5EA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EA5", + "status": "exact_ids", + "ids": "⿱广休", + "canonical_ids": "⿱广休", + "expanded_ids": "⿱广⿰亻木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "度", + "codepoint": "U+5EA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EA6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "座", + "codepoint": "U+5EA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EA7", + "status": "exact_ids", + "ids": "⿱广坐", + "canonical_ids": "⿱广坐", + "expanded_ids": "⿱广⿱⿰人人土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "土", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庨", + "codepoint": "U+5EA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EA8", + "status": "exact_ids", + "ids": "⿱广孝", + "canonical_ids": "⿱广孝", + "expanded_ids": "⿱广⿱⿻土丿子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "子", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庩", + "codepoint": "U+5EA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EA9", + "status": "exact_ids", + "ids": "⿱广余", + "canonical_ids": "⿱广余", + "expanded_ids": "⿱广⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "广", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庪", + "codepoint": "U+5EAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EAA", + "status": "exact_ids", + "ids": "⿱广技", + "canonical_ids": "⿱广技", + "expanded_ids": "⿱广⿰扌⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "广", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庫", + "codepoint": "U+5EAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EAB", + "status": "exact_ids", + "ids": "⿱广車", + "canonical_ids": "⿱广車", + "expanded_ids": "⿱广車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庬", + "codepoint": "U+5EAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EAC", + "status": "exact_ids", + "ids": "⿱广尨", + "canonical_ids": "⿱广尨", + "expanded_ids": "⿱广⿰尤彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "广", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庭", + "codepoint": "U+5EAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EAD", + "status": "exact_ids", + "ids": "⿱广廷", + "canonical_ids": "⿱广廷", + "expanded_ids": "⿱广⿰廴⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "广", + "廴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庮", + "codepoint": "U+5EAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EAE", + "status": "exact_ids", + "ids": "⿱广酉", + "canonical_ids": "⿱广酉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庯", + "codepoint": "U+5EAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EAF", + "status": "exact_ids", + "ids": "⿱广甫", + "canonical_ids": "⿱广甫", + "expanded_ids": "⿱广甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庰", + "codepoint": "U+5EB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EB0", + "status": "exact_ids", + "ids": "⿱广并", + "canonical_ids": "⿱广并", + "expanded_ids": "⿱广⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "广", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庱", + "codepoint": "U+5EB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EB1", + "status": "exact_ids", + "ids": "⿱广夌", + "canonical_ids": "⿱广夌", + "expanded_ids": "⿱广⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庲", + "codepoint": "U+5EB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EB2", + "status": "exact_ids", + "ids": "⿱广來", + "canonical_ids": "⿱广來", + "expanded_ids": "⿱广⿻木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庳", + "codepoint": "U+5EB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EB3", + "status": "exact_ids", + "ids": "⿱广卑", + "canonical_ids": "⿱广卑", + "expanded_ids": "⿱广卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庴", + "codepoint": "U+5EB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EB4", + "status": "exact_ids", + "ids": "⿱广昔", + "canonical_ids": "⿱广昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "日" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庵", + "codepoint": "U+5EB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EB5", + "status": "exact_ids", + "ids": "⿱广奄", + "canonical_ids": "⿱广奄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "广" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庶", + "codepoint": "U+5EB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EB6", + "status": "exact_ids", + "ids": "⿱广炗", + "canonical_ids": "⿱广炗", + "expanded_ids": "⿱广⿱廿火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "廿", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "康", + "codepoint": "U+5EB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EB7", + "status": "exact_ids", + "ids": "⿱广隶", + "canonical_ids": "⿱广隶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庸", + "codepoint": "U+5EB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EB8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庹", + "codepoint": "U+5EB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EB9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庺", + "codepoint": "U+5EBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EBA", + "status": "exact_ids", + "ids": "⿱广枀", + "canonical_ids": "⿱广枀", + "expanded_ids": "⿱广⿱⿱八厶木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庻", + "codepoint": "U+5EBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EBB", + "status": "exact_ids", + "ids": "⿱广苁", + "canonical_ids": "⿱广苁", + "expanded_ids": "⿱广⿱艹⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "广", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庼", + "codepoint": "U+5EBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EBC", + "status": "exact_ids", + "ids": "⿱广顷", + "canonical_ids": "⿱广顷", + "expanded_ids": "⿱广⿰匕⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "匕", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庽", + "codepoint": "U+5EBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EBD", + "status": "exact_ids", + "ids": "⿱广禺", + "canonical_ids": "⿱广禺", + "expanded_ids": "⿱广⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "田", + "禸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庾", + "codepoint": "U+5EBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EBE", + "status": "exact_ids", + "ids": "⿱广臾", + "canonical_ids": "⿱广臾", + "expanded_ids": "⿱广⿻人臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "广", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "庿", + "codepoint": "U+5EBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EBF", + "status": "exact_ids", + "ids": "⿱广苗", + "canonical_ids": "⿱广苗", + "expanded_ids": "⿱广⿱艹田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廀", + "codepoint": "U+5EC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EC0", + "status": "exact_ids", + "ids": "⿱广叜", + "canonical_ids": "⿱广叜", + "expanded_ids": "⿱广⿱⿱宀火又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "宀", + "广", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廁", + "codepoint": "U+5EC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EC1", + "status": "exact_ids", + "ids": "⿱广則", + "canonical_ids": "⿱广則", + "expanded_ids": "⿱广⿰⿱目八刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刂", + "广", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廂", + "codepoint": "U+5EC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EC2", + "status": "exact_ids", + "ids": "⿱广相", + "canonical_ids": "⿱广相", + "expanded_ids": "⿱广⿰木目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廃", + "codepoint": "U+5EC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EC3", + "status": "exact_ids", + "ids": "⿱广発", + "canonical_ids": "⿱广発", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广" + ], + "unresolved_leaves": [ + "発" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廄", + "codepoint": "U+5EC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EC4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廅", + "codepoint": "U+5EC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EC5", + "status": "exact_ids", + "ids": "⿱广盍", + "canonical_ids": "⿱广盍", + "expanded_ids": "⿱广⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "广", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廆", + "codepoint": "U+5EC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EC6", + "status": "exact_ids", + "ids": "⿱广鬼", + "canonical_ids": "⿱广鬼", + "expanded_ids": "⿱广鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廇", + "codepoint": "U+5EC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EC7", + "status": "exact_ids", + "ids": "⿱广留", + "canonical_ids": "⿱广留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廈", + "codepoint": "U+5EC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EC8", + "status": "exact_ids", + "ids": "⿱广夏", + "canonical_ids": "⿱广夏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广" + ], + "unresolved_leaves": [ + "夏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廉", + "codepoint": "U+5EC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EC9", + "status": "exact_ids", + "ids": "⿱广兼", + "canonical_ids": "⿱广兼", + "expanded_ids": "⿱广兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廊", + "codepoint": "U+5ECA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ECA", + "status": "exact_ids", + "ids": "⿱广郎", + "canonical_ids": "⿱广郎", + "expanded_ids": "⿱广⿰⿻丶艮阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "广", + "艮", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廋", + "codepoint": "U+5ECB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ECB", + "status": "exact_ids", + "ids": "⿱广叟", + "canonical_ids": "⿱广叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "广" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廌", + "codepoint": "U+5ECC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ECC", + "status": "leaf_self_fallback", + "ids": "廌", + "canonical_ids": "廌", + "expanded_ids": "廌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廍", + "codepoint": "U+5ECD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ECD", + "status": "exact_ids", + "ids": "⿱广部", + "canonical_ids": "⿱广部", + "expanded_ids": "⿱广⿰⿱立口阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "广", + "立", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廎", + "codepoint": "U+5ECE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ECE", + "status": "exact_ids", + "ids": "⿱广頃", + "canonical_ids": "⿱广頃", + "expanded_ids": "⿱广⿰匕⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "匕", + "广", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廏", + "codepoint": "U+5ECF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ECF", + "status": "exact_ids", + "ids": "⿱广𣪘", + "canonical_ids": "⿱广𣪘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广" + ], + "unresolved_leaves": [ + "𣪘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廐", + "codepoint": "U+5ED0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ED0", + "status": "exact_ids", + "ids": "⿱广旣", + "canonical_ids": "⿱广旣", + "expanded_ids": "⿱广⿰⿱⿻日丶匕旡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "广", + "旡", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廑", + "codepoint": "U+5ED1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ED1", + "status": "exact_ids", + "ids": "⿱广堇", + "canonical_ids": "⿱广堇", + "expanded_ids": "⿱广堇", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廒", + "codepoint": "U+5ED2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ED2", + "status": "exact_ids", + "ids": "⿱广敖", + "canonical_ids": "⿱广敖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廓", + "codepoint": "U+5ED3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ED3", + "status": "exact_ids", + "ids": "⿱广郭", + "canonical_ids": "⿱广郭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "阝" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廔", + "codepoint": "U+5ED4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ED4", + "status": "exact_ids", + "ids": "⿱广婁", + "canonical_ids": "⿱广婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廕", + "codepoint": "U+5ED5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ED5", + "status": "exact_ids", + "ids": "⿱广陰", + "canonical_ids": "⿱广陰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "二", + "人", + "厶", + "广", + "阝" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廖", + "codepoint": "U+5ED6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ED6", + "status": "exact_ids", + "ids": "⿱广翏", + "canonical_ids": "⿱广翏", + "expanded_ids": "⿱广⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "广", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廗", + "codepoint": "U+5ED7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ED7", + "status": "exact_ids", + "ids": "⿱广帶", + "canonical_ids": "⿱广帶", + "expanded_ids": "⿱广⿳卌冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "卌", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廘", + "codepoint": "U+5ED8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ED8", + "status": "exact_ids", + "ids": "⿱广鹿", + "canonical_ids": "⿱广鹿", + "expanded_ids": "⿱广鹿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廙", + "codepoint": "U+5ED9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5ED9", + "status": "exact_ids", + "ids": "⿱广異", + "canonical_ids": "⿱广異", + "expanded_ids": "⿱广⿱田⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "廾", + "廿", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廚", + "codepoint": "U+5EDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EDA", + "status": "exact_ids", + "ids": "⿱广尌", + "canonical_ids": "⿱广尌", + "expanded_ids": "⿱广⿰⿱十豆寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "寸", + "广", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廛", + "codepoint": "U+5EDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EDB", + "status": "exact_ids", + "ids": "⿱㢆𡉀", + "canonical_ids": "⿱㢆𡉀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广" + ], + "unresolved_leaves": [ + "里", + "𡉀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廜", + "codepoint": "U+5EDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EDC", + "status": "exact_ids", + "ids": "⿱广屠", + "canonical_ids": "⿱广屠", + "expanded_ids": "⿱广⿱尸⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "尸", + "广", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廝", + "codepoint": "U+5EDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EDD", + "status": "exact_ids", + "ids": "⿱广斯", + "canonical_ids": "⿱广斯", + "expanded_ids": "⿱广⿰其斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "广", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廞", + "codepoint": "U+5EDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EDE", + "status": "exact_ids", + "ids": "⿱广欽", + "canonical_ids": "⿱广欽", + "expanded_ids": "⿱广⿰金欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "欠", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廟", + "codepoint": "U+5EDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EDF", + "status": "exact_ids", + "ids": "⿱广朝", + "canonical_ids": "⿱广朝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广" + ], + "unresolved_leaves": [ + "朝" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廠", + "codepoint": "U+5EE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EE0", + "status": "exact_ids", + "ids": "⿱广敞", + "canonical_ids": "⿱广敞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "广", + "攵" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廡", + "codepoint": "U+5EE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EE1", + "status": "exact_ids", + "ids": "⿱广無", + "canonical_ids": "⿱广無", + "expanded_ids": "⿱广無", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "無" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廢", + "codepoint": "U+5EE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EE2", + "status": "exact_ids", + "ids": "⿱广發", + "canonical_ids": "⿱广發", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广" + ], + "unresolved_leaves": [ + "發" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廣", + "codepoint": "U+5EE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EE3", + "status": "exact_ids", + "ids": "⿱广黄", + "canonical_ids": "⿱广黄", + "expanded_ids": "⿱广黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廤", + "codepoint": "U+5EE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EE4", + "status": "exact_ids", + "ids": "⿱庫叱", + "canonical_ids": "⿱庫叱", + "expanded_ids": "⿱⿱广車⿰口七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "口", + "广", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廥", + "codepoint": "U+5EE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EE5", + "status": "exact_ids", + "ids": "⿱广會", + "canonical_ids": "⿱广會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "曰" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廦", + "codepoint": "U+5EE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EE6", + "status": "exact_ids", + "ids": "⿱广辟", + "canonical_ids": "⿱广辟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "广", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廧", + "codepoint": "U+5EE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EE7", + "status": "exact_ids", + "ids": "⿱广嗇", + "canonical_ids": "⿱广嗇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "广" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廨", + "codepoint": "U+5EE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EE8", + "status": "exact_ids", + "ids": "⿱广解", + "canonical_ids": "⿱广解", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广" + ], + "unresolved_leaves": [ + "解" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廩", + "codepoint": "U+5EE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EE9", + "status": "exact_ids", + "ids": "⿱广稟", + "canonical_ids": "⿱广稟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亠", + "广", + "木" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廪", + "codepoint": "U+5EEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EEA", + "status": "exact_ids", + "ids": "⿱广禀", + "canonical_ids": "⿱广禀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广" + ], + "unresolved_leaves": [ + "禀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廫", + "codepoint": "U+5EEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EEB", + "status": "exact_ids", + "ids": "⿱广膠", + "canonical_ids": "⿱广膠", + "expanded_ids": "⿱广⿰月⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "广", + "彡", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廬", + "codepoint": "U+5EEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EEC", + "status": "exact_ids", + "ids": "⿱广盧", + "canonical_ids": "⿱广盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "皿" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廭", + "codepoint": "U+5EED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EED", + "status": "exact_ids", + "ids": "⿱广積", + "canonical_ids": "⿱广積", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "八", + "广", + "木", + "目" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廮", + "codepoint": "U+5EEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EEE", + "status": "exact_ids", + "ids": "⿱广嬰", + "canonical_ids": "⿱广嬰", + "expanded_ids": "⿱广⿱⿰⿱目八⿱目八女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "女", + "广", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廯", + "codepoint": "U+5EEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EEF", + "status": "exact_ids", + "ids": "⿱广鮮", + "canonical_ids": "⿱广鮮", + "expanded_ids": "⿱广⿰魚羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "羊", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廰", + "codepoint": "U+5EF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EF0", + "status": "exact_ids", + "ids": "⿱广聴", + "canonical_ids": "⿱广聴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广" + ], + "unresolved_leaves": [ + "聴" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廱", + "codepoint": "U+5EF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EF1", + "status": "exact_ids", + "ids": "⿱广雝", + "canonical_ids": "⿱广雝", + "expanded_ids": "⿱广⿰⿱巛⿱口巴隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "巛", + "巴", + "广", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廲", + "codepoint": "U+5EF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EF2", + "status": "exact_ids", + "ids": "⿱广麗", + "canonical_ids": "⿱广麗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "鹿" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廳", + "codepoint": "U+5EF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EF3", + "status": "exact_ids", + "ids": "⿱广聽", + "canonical_ids": "⿱广聽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广" + ], + "unresolved_leaves": [ + "聽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廴", + "codepoint": "U+5EF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EF4", + "status": "leaf_self_fallback", + "ids": "廴", + "canonical_ids": "廴", + "expanded_ids": "廴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廵", + "codepoint": "U+5EF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EF5", + "status": "exact_ids", + "ids": "⿰廴巛", + "canonical_ids": "⿰廴巛", + "expanded_ids": "⿰廴巛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "廴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "延", + "codepoint": "U+5EF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EF6", + "status": "exact_ids", + "ids": "⿰廴正", + "canonical_ids": "⿰廴正", + "expanded_ids": "⿰廴⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廴", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廷", + "codepoint": "U+5EF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EF7", + "status": "exact_ids", + "ids": "⿰廴壬", + "canonical_ids": "⿰廴壬", + "expanded_ids": "⿰廴⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "廴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廸", + "codepoint": "U+5EF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EF8", + "status": "exact_ids", + "ids": "⿰廴由", + "canonical_ids": "⿰廴由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廴" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廹", + "codepoint": "U+5EF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EF9", + "status": "exact_ids", + "ids": "⿰廴白", + "canonical_ids": "⿰廴白", + "expanded_ids": "⿰廴⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "廴", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "建", + "codepoint": "U+5EFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EFA", + "status": "exact_ids", + "ids": "⿰廴聿", + "canonical_ids": "⿰廴聿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廴" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廻", + "codepoint": "U+5EFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EFB", + "status": "exact_ids", + "ids": "⿰廴回", + "canonical_ids": "⿰廴回", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廴" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廼", + "codepoint": "U+5EFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EFC", + "status": "exact_ids", + "ids": "⿰廴西", + "canonical_ids": "⿰廴西", + "expanded_ids": "⿰廴⿻⿱一儿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口", + "廴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廽", + "codepoint": "U+5EFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EFD", + "status": "exact_ids", + "ids": "⿰廴囬", + "canonical_ids": "⿰廴囬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廴" + ], + "unresolved_leaves": [ + "囬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廾", + "codepoint": "U+5EFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EFE", + "status": "leaf_self_fallback", + "ids": "廾", + "canonical_ids": "廾", + "expanded_ids": "廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "廿", + "codepoint": "U+5EFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5EFF", + "status": "leaf_self_fallback", + "ids": "廿", + "canonical_ids": "廿", + "expanded_ids": "廿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "开", + "codepoint": "U+5F00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F00", + "status": "exact_ids", + "ids": "⿱一廾", + "canonical_ids": "⿱一廾", + "expanded_ids": "⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弁", + "codepoint": "U+5F01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F01", + "status": "exact_ids", + "ids": "⿱厶廾", + "canonical_ids": "⿱厶廾", + "expanded_ids": "⿱厶廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "异", + "codepoint": "U+5F02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F02", + "status": "exact_ids", + "ids": "⿱己廾", + "canonical_ids": "⿱己廾", + "expanded_ids": "⿱己廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弃", + "codepoint": "U+5F03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F03", + "status": "exact_ids", + "ids": "⿱亠弁", + "canonical_ids": "⿱亠弁", + "expanded_ids": "⿱亠⿱厶廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "厶", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弄", + "codepoint": "U+5F04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F04", + "status": "exact_ids", + "ids": "⿱王廾", + "canonical_ids": "⿱王廾", + "expanded_ids": "⿱王廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弅", + "codepoint": "U+5F05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F05", + "status": "exact_ids", + "ids": "⿱分廾", + "canonical_ids": "⿱分廾", + "expanded_ids": "⿱⿱八刀廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弆", + "codepoint": "U+5F06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F06", + "status": "exact_ids", + "ids": "⿱去廾", + "canonical_ids": "⿱去廾", + "expanded_ids": "⿱⿱土厶廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弇", + "codepoint": "U+5F07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F07", + "status": "exact_ids", + "ids": "⿱合廾", + "canonical_ids": "⿱合廾", + "expanded_ids": "⿱⿱⿱人一口廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弈", + "codepoint": "U+5F08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F08", + "status": "exact_ids", + "ids": "⿱亦廾", + "canonical_ids": "⿱亦廾", + "expanded_ids": "⿱亦廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弉", + "codepoint": "U+5F09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F09", + "status": "exact_ids", + "ids": "⿱壯廾", + "canonical_ids": "⿱壯廾", + "expanded_ids": "⿱⿰爿土廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "廾", + "爿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弊", + "codepoint": "U+5F0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F0A", + "status": "exact_ids", + "ids": "⿱敝廾", + "canonical_ids": "⿱敝廾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "攵" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弋", + "codepoint": "U+5F0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F0B", + "status": "leaf_self_fallback", + "ids": "弋", + "canonical_ids": "弋", + "expanded_ids": "弋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弌", + "codepoint": "U+5F0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F0C", + "status": "exact_ids", + "ids": "⿱弋一", + "canonical_ids": "⿱弋一", + "expanded_ids": "⿱弋一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "弋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弍", + "codepoint": "U+5F0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F0D", + "status": "exact_ids", + "ids": "⿱弋二", + "canonical_ids": "⿱弋二", + "expanded_ids": "⿱弋二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "弋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弎", + "codepoint": "U+5F0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F0E", + "status": "exact_ids", + "ids": "⿱弋三", + "canonical_ids": "⿱弋三", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弋" + ], + "unresolved_leaves": [ + "三" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "式", + "codepoint": "U+5F0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F0F", + "status": "exact_ids", + "ids": "⿱弋工", + "canonical_ids": "⿱弋工", + "expanded_ids": "⿱弋工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "弋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弐", + "codepoint": "U+5F10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F10", + "status": "exact_ids", + "ids": "⿱一弍", + "canonical_ids": "⿱一弍", + "expanded_ids": "⿱一⿱弋二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "二", + "弋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弑", + "codepoint": "U+5F11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F11", + "status": "exact_ids", + "ids": "⿰杀式", + "canonical_ids": "⿰杀式", + "expanded_ids": "⿰⿱乂朩⿱弋工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "工", + "弋", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弒", + "codepoint": "U+5F12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F12", + "status": "exact_ids", + "ids": "⿰𣏂式", + "canonical_ids": "⿰𣏂式", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "工", + "弋" + ], + "unresolved_leaves": [ + "朮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弓", + "codepoint": "U+5F13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F13", + "status": "leaf_self_fallback", + "ids": "弓", + "canonical_ids": "弓", + "expanded_ids": "弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弔", + "codepoint": "U+5F14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F14", + "status": "exact_ids", + "ids": "⿻弓丨", + "canonical_ids": "⿻弓丨", + "expanded_ids": "⿻弓丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "引", + "codepoint": "U+5F15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F15", + "status": "exact_ids", + "ids": "⿰弓丨", + "canonical_ids": "⿰弓丨", + "expanded_ids": "⿰弓丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弖", + "codepoint": "U+5F16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F16", + "status": "exact_ids", + "ids": "⿱弓一", + "canonical_ids": "⿱弓一", + "expanded_ids": "⿱弓一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弗", + "codepoint": "U+5F17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F17", + "status": "exact_ids", + "ids": "⿻弓刂", + "canonical_ids": "⿻弓刂", + "expanded_ids": "⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弘", + "codepoint": "U+5F18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F18", + "status": "exact_ids", + "ids": "⿰弓厶", + "canonical_ids": "⿰弓厶", + "expanded_ids": "⿰弓厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弙", + "codepoint": "U+5F19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F19", + "status": "exact_ids", + "ids": "⿰弓于", + "canonical_ids": "⿰弓于", + "expanded_ids": "⿰弓⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弚", + "codepoint": "U+5F1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F1A", + "status": "exact_ids", + "ids": "⿱丷弔", + "canonical_ids": "⿱丷弔", + "expanded_ids": "⿱丷⿻弓丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弛", + "codepoint": "U+5F1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F1B", + "status": "exact_ids", + "ids": "⿰弓也", + "canonical_ids": "⿰弓也", + "expanded_ids": "⿰弓⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弜", + "codepoint": "U+5F1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F1C", + "status": "exact_ids", + "ids": "⿰弓弓", + "canonical_ids": "⿰弓弓", + "expanded_ids": "⿰弓弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弝", + "codepoint": "U+5F1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F1D", + "status": "exact_ids", + "ids": "⿰弓巴", + "canonical_ids": "⿰弓巴", + "expanded_ids": "⿰弓巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弞", + "codepoint": "U+5F1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F1E", + "status": "exact_ids", + "ids": "⿰弓欠", + "canonical_ids": "⿰弓欠", + "expanded_ids": "⿰弓欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弟", + "codepoint": "U+5F1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F1F", + "status": "exact_ids", + "ids": "⿱丷𢎨", + "canonical_ids": "⿱丷𢎨", + "expanded_ids": "⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "张", + "codepoint": "U+5F20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F20", + "status": "exact_ids", + "ids": "⿰弓长", + "canonical_ids": "⿰弓长", + "expanded_ids": "⿰弓长", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "长" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弡", + "codepoint": "U+5F21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F21", + "status": "exact_ids", + "ids": "⿰弓巨", + "canonical_ids": "⿰弓巨", + "expanded_ids": "⿰弓巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弢", + "codepoint": "U+5F22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F22", + "status": "exact_ids", + "ids": "⿰弓𠬢", + "canonical_ids": "⿰弓𠬢", + "expanded_ids": "⿰弓⿻屮又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "屮", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弣", + "codepoint": "U+5F23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F23", + "status": "exact_ids", + "ids": "⿰弓付", + "canonical_ids": "⿰弓付", + "expanded_ids": "⿰弓⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弤", + "codepoint": "U+5F24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F24", + "status": "exact_ids", + "ids": "⿰弓氐", + "canonical_ids": "⿰弓氐", + "expanded_ids": "⿰弓⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "弓", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弥", + "codepoint": "U+5F25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F25", + "status": "exact_ids", + "ids": "⿰弓尔", + "canonical_ids": "⿰弓尔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "弓" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弦", + "codepoint": "U+5F26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F26", + "status": "exact_ids", + "ids": "⿰弓玄", + "canonical_ids": "⿰弓玄", + "expanded_ids": "⿰弓⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弧", + "codepoint": "U+5F27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F27", + "status": "exact_ids", + "ids": "⿰弓瓜", + "canonical_ids": "⿰弓瓜", + "expanded_ids": "⿰弓瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "瓜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弨", + "codepoint": "U+5F28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F28", + "status": "exact_ids", + "ids": "⿰弓召", + "canonical_ids": "⿰弓召", + "expanded_ids": "⿰弓⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弩", + "codepoint": "U+5F29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F29", + "status": "exact_ids", + "ids": "⿱奴弓", + "canonical_ids": "⿱奴弓", + "expanded_ids": "⿱⿰女又弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "女", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弪", + "codepoint": "U+5F2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F2A", + "status": "exact_ids", + "ids": "⿰弓𢀖", + "canonical_ids": "⿰弓𢀖", + "expanded_ids": "⿰弓⿱又工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "工", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弫", + "codepoint": "U+5F2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F2B", + "status": "exact_ids", + "ids": "⿰弓臣", + "canonical_ids": "⿰弓臣", + "expanded_ids": "⿰弓臣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弬", + "codepoint": "U+5F2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F2C", + "status": "exact_ids", + "ids": "⿰弓𦣝", + "canonical_ids": "⿰弓𦣝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓" + ], + "unresolved_leaves": [ + "𦣝" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弭", + "codepoint": "U+5F2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F2D", + "status": "exact_ids", + "ids": "⿰弓耳", + "canonical_ids": "⿰弓耳", + "expanded_ids": "⿰弓耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弮", + "codepoint": "U+5F2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F2E", + "status": "exact_ids", + "ids": "⿱龹弓", + "canonical_ids": "⿱龹弓", + "expanded_ids": "⿱龹弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弯", + "codepoint": "U+5F2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F2F", + "status": "exact_ids", + "ids": "⿱亦弓", + "canonical_ids": "⿱亦弓", + "expanded_ids": "⿱亦弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弰", + "codepoint": "U+5F30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F30", + "status": "exact_ids", + "ids": "⿰弓肖", + "canonical_ids": "⿰弓肖", + "expanded_ids": "⿰弓⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "弓", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弱", + "codepoint": "U+5F31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F31", + "status": "exact_ids", + "ids": "⿰𢎥𢎥", + "canonical_ids": "⿰𢎥𢎥", + "expanded_ids": "⿰⿱弓二⿱弓二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弲", + "codepoint": "U+5F32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F32", + "status": "exact_ids", + "ids": "⿰弓肙", + "canonical_ids": "⿰弓肙", + "expanded_ids": "⿰弓⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "弓", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弳", + "codepoint": "U+5F33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F33", + "status": "exact_ids", + "ids": "⿰弓巠", + "canonical_ids": "⿰弓巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弴", + "codepoint": "U+5F34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F34", + "status": "exact_ids", + "ids": "⿰弓享", + "canonical_ids": "⿰弓享", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "張", + "codepoint": "U+5F35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F35", + "status": "exact_ids", + "ids": "⿰弓長", + "canonical_ids": "⿰弓長", + "expanded_ids": "⿰弓長", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "長" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弶", + "codepoint": "U+5F36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F36", + "status": "exact_ids", + "ids": "⿰弓京", + "canonical_ids": "⿰弓京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "強", + "codepoint": "U+5F37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F37", + "status": "exact_ids", + "ids": "⿰弓𧈧", + "canonical_ids": "⿰弓𧈧", + "expanded_ids": "⿰弓⿱厶虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "弓", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弸", + "codepoint": "U+5F38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F38", + "status": "exact_ids", + "ids": "⿰弓朋", + "canonical_ids": "⿰弓朋", + "expanded_ids": "⿰弓⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弹", + "codepoint": "U+5F39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F39", + "status": "exact_ids", + "ids": "⿰弓单", + "canonical_ids": "⿰弓单", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓" + ], + "unresolved_leaves": [ + "单" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "强", + "codepoint": "U+5F3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F3A", + "status": "exact_ids", + "ids": "⿰弓虽", + "canonical_ids": "⿰弓虽", + "expanded_ids": "⿰弓⿱口虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "弓", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弻", + "codepoint": "U+5F3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F3B", + "status": "exact_ids", + "ids": "⿲弓㐁弓", + "canonical_ids": "⿲弓㐁弓", + "expanded_ids": "⿲弓⿻⿱一人囗弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "囗", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弼", + "codepoint": "U+5F3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F3C", + "status": "exact_ids", + "ids": "⿲弓百弓", + "canonical_ids": "⿲弓百弓", + "expanded_ids": "⿲弓⿻一⿻日丶弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "弓", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弽", + "codepoint": "U+5F3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F3D", + "status": "exact_ids", + "ids": "⿰弓枼", + "canonical_ids": "⿰弓枼", + "expanded_ids": "⿰弓⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "弓", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弾", + "codepoint": "U+5F3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F3E", + "status": "exact_ids", + "ids": "⿰弓単", + "canonical_ids": "⿰弓単", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓" + ], + "unresolved_leaves": [ + "単" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "弿", + "codepoint": "U+5F3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F3F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彀", + "codepoint": "U+5F40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F40", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彁", + "codepoint": "U+5F41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F41", + "status": "exact_ids", + "ids": "⿰弓哥", + "canonical_ids": "⿰弓哥", + "expanded_ids": "⿰弓⿱⿰口⿱一亅⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彂", + "codepoint": "U+5F42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F42", + "status": "exact_ids", + "ids": "⿱业矤", + "canonical_ids": "⿱业矤", + "expanded_ids": "⿱业⿰弓⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "业", + "丿", + "大", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彃", + "codepoint": "U+5F43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F43", + "status": "exact_ids", + "ids": "⿰弓畢", + "canonical_ids": "⿰弓畢", + "expanded_ids": "⿰弓畢", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "畢" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彄", + "codepoint": "U+5F44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F44", + "status": "exact_ids", + "ids": "⿰弓區", + "canonical_ids": "⿰弓區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彅", + "codepoint": "U+5F45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F45", + "status": "exact_ids", + "ids": "⿰弓剪", + "canonical_ids": "⿰弓剪", + "expanded_ids": "⿰弓⿱⿱止⿰月刂刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "刂", + "弓", + "月", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彆", + "codepoint": "U+5F46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F46", + "status": "exact_ids", + "ids": "⿱敝弓", + "canonical_ids": "⿱敝弓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "攵" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彇", + "codepoint": "U+5F47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F47", + "status": "exact_ids", + "ids": "⿰弓肅", + "canonical_ids": "⿰弓肅", + "expanded_ids": "⿰弓⿻肀𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "肀", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彈", + "codepoint": "U+5F48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F48", + "status": "exact_ids", + "ids": "⿰弓單", + "canonical_ids": "⿰弓單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彉", + "codepoint": "U+5F49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F49", + "status": "exact_ids", + "ids": "⿰弓黄", + "canonical_ids": "⿰弓黄", + "expanded_ids": "⿰弓黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彊", + "codepoint": "U+5F4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F4A", + "status": "exact_ids", + "ids": "⿰弓畺", + "canonical_ids": "⿰弓畺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "田" + ], + "unresolved_leaves": [ + "三" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彋", + "codepoint": "U+5F4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F4B", + "status": "exact_ids", + "ids": "⿰弓睘", + "canonical_ids": "⿰弓睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彌", + "codepoint": "U+5F4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F4C", + "status": "exact_ids", + "ids": "⿰弓爾", + "canonical_ids": "⿰弓爾", + "expanded_ids": "⿰弓爾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "爾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彍", + "codepoint": "U+5F4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F4D", + "status": "exact_ids", + "ids": "⿰弓廣", + "canonical_ids": "⿰弓廣", + "expanded_ids": "⿰弓⿱广黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "弓", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彎", + "codepoint": "U+5F4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F4E", + "status": "exact_ids", + "ids": "⿱䜌弓", + "canonical_ids": "⿱䜌弓", + "expanded_ids": "⿱⿲⿱幺小言⿱幺小弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "弓", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彏", + "codepoint": "U+5F4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F4F", + "status": "exact_ids", + "ids": "⿰弓矍", + "canonical_ids": "⿰弓矍", + "expanded_ids": "⿰弓⿱⿰目目⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "弓", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彐", + "codepoint": "U+5F50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F50", + "status": "leaf_self_fallback", + "ids": "彐", + "canonical_ids": "彐", + "expanded_ids": "彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彑", + "codepoint": "U+5F51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F51", + "status": "leaf_self_fallback", + "ids": "彑", + "canonical_ids": "彑", + "expanded_ids": "彑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "归", + "codepoint": "U+5F52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F52", + "status": "exact_ids", + "ids": "⿰刂彐", + "canonical_ids": "⿰刂彐", + "expanded_ids": "⿰刂彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "彐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "当", + "codepoint": "U+5F53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F53", + "status": "exact_ids", + "ids": "⿱小彐", + "canonical_ids": "⿱小彐", + "expanded_ids": "⿱小彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "彐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彔", + "codepoint": "U+5F54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F54", + "status": "exact_ids", + "ids": "⿱彑氺", + "canonical_ids": "⿱彑氺", + "expanded_ids": "⿱彑氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "录", + "codepoint": "U+5F55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F55", + "status": "exact_ids", + "ids": "⿱彐氺", + "canonical_ids": "⿱彐氺", + "expanded_ids": "⿱彐氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彖", + "codepoint": "U+5F56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F56", + "status": "exact_ids", + "ids": "⿱彑𧰨", + "canonical_ids": "⿱彑𧰨", + "expanded_ids": "⿱彑𧰨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 76, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彗", + "codepoint": "U+5F57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F57", + "status": "exact_ids", + "ids": "⿱⿰丰丰彐", + "canonical_ids": "⿱⿰丰丰彐", + "expanded_ids": "⿱⿰丰丰彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "彐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彘", + "codepoint": "U+5F58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F58", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彙", + "codepoint": "U+5F59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F59", + "status": "exact_ids", + "ids": "⿳彑冖果", + "canonical_ids": "⿳彑冖果", + "expanded_ids": "⿳彑冖⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "彑", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彚", + "codepoint": "U+5F5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F5A", + "status": "exact_ids", + "ids": "⿳彐冖果", + "canonical_ids": "⿳彐冖果", + "expanded_ids": "⿳彐冖⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "彐", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彛", + "codepoint": "U+5F5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F5B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彜", + "codepoint": "U+5F5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F5C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彝", + "codepoint": "U+5F5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F5D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彞", + "codepoint": "U+5F5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F5E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彟", + "codepoint": "U+5F5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F5F", + "status": "exact_ids", + "ids": "⿰寻蒦", + "canonical_ids": "⿰寻蒦", + "expanded_ids": "⿰⿱彐寸⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "寸", + "彐", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彠", + "codepoint": "U+5F60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F60", + "status": "exact_ids", + "ids": "⿰尋蒦", + "canonical_ids": "⿰尋蒦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "艹", + "隹" + ], + "unresolved_leaves": [ + "尋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彡", + "codepoint": "U+5F61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F61", + "status": "leaf_self_fallback", + "ids": "彡", + "canonical_ids": "彡", + "expanded_ids": "彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "形", + "codepoint": "U+5F62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F62", + "status": "exact_ids", + "ids": "⿰开彡", + "canonical_ids": "⿰开彡", + "expanded_ids": "⿰⿱一廾彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廾", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彣", + "codepoint": "U+5F63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F63", + "status": "exact_ids", + "ids": "⿰文彡", + "canonical_ids": "⿰文彡", + "expanded_ids": "⿰文彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "文" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彤", + "codepoint": "U+5F64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F64", + "status": "exact_ids", + "ids": "⿰丹彡", + "canonical_ids": "⿰丹彡", + "expanded_ids": "⿰丹彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丹", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彥", + "codepoint": "U+5F65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F65", + "status": "exact_ids", + "ids": "⿱产彡", + "canonical_ids": "⿱产彡", + "expanded_ids": "⿱⿱⿱亠八厂彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "厂", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "彦" + ] + }, + { + "character": "彦", + "codepoint": "U+5F66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F66", + "status": "exact_ids", + "ids": "⿱产彡", + "canonical_ids": "⿱产彡", + "expanded_ids": "⿱⿱⿱亠八厂彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "厂", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "彥" + ] + }, + { + "character": "彧", + "codepoint": "U+5F67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F67", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彨", + "codepoint": "U+5F68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F68", + "status": "exact_ids", + "ids": "⿰丽彡", + "canonical_ids": "⿰丽彡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彩", + "codepoint": "U+5F69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F69", + "status": "exact_ids", + "ids": "⿰采彡", + "canonical_ids": "⿰采彡", + "expanded_ids": "⿰⿱爫木彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "木", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彪", + "codepoint": "U+5F6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F6A", + "status": "exact_ids", + "ids": "⿰虎彡", + "canonical_ids": "⿰虎彡", + "expanded_ids": "⿰⿱虍儿彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "彡", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彫", + "codepoint": "U+5F6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F6B", + "status": "exact_ids", + "ids": "⿰周彡", + "canonical_ids": "⿰周彡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彬", + "codepoint": "U+5F6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F6C", + "status": "exact_ids", + "ids": "⿰林彡", + "canonical_ids": "⿰林彡", + "expanded_ids": "⿰⿰木木彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彭", + "codepoint": "U+5F6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F6D", + "status": "exact_ids", + "ids": "⿰壴彡", + "canonical_ids": "⿰壴彡", + "expanded_ids": "⿰⿱十豆彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "彡", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彮", + "codepoint": "U+5F6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F6E", + "status": "exact_ids", + "ids": "⿰容彡", + "canonical_ids": "⿰容彡", + "expanded_ids": "⿰⿱宀⿱八⿱八口彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彯", + "codepoint": "U+5F6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F6F", + "status": "exact_ids", + "ids": "⿰票彡", + "canonical_ids": "⿰票彡", + "expanded_ids": "⿰⿱覀⿱二小彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "彡", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彰", + "codepoint": "U+5F70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F70", + "status": "exact_ids", + "ids": "⿰章彡", + "canonical_ids": "⿰章彡", + "expanded_ids": "⿰⿱立⿱日十彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "彡", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "影", + "codepoint": "U+5F71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F71", + "status": "exact_ids", + "ids": "⿰景彡", + "canonical_ids": "⿰景彡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "日" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彲", + "codepoint": "U+5F72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F72", + "status": "exact_ids", + "ids": "⿰麗彡", + "canonical_ids": "⿰麗彡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "鹿" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彳", + "codepoint": "U+5F73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F73", + "status": "leaf_self_fallback", + "ids": "彳", + "canonical_ids": "彳", + "expanded_ids": "彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彴", + "codepoint": "U+5F74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F74", + "status": "exact_ids", + "ids": "⿰彳勺", + "canonical_ids": "⿰彳勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彵", + "codepoint": "U+5F75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F75", + "status": "exact_ids", + "ids": "⿰彳也", + "canonical_ids": "⿰彳也", + "expanded_ids": "⿰彳⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彶", + "codepoint": "U+5F76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F76", + "status": "exact_ids", + "ids": "⿰彳及", + "canonical_ids": "⿰彳及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "彳" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彷", + "codepoint": "U+5F77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F77", + "status": "exact_ids", + "ids": "⿰彳方", + "canonical_ids": "⿰彳方", + "expanded_ids": "⿰彳方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彸", + "codepoint": "U+5F78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F78", + "status": "exact_ids", + "ids": "⿰彳公", + "canonical_ids": "⿰彳公", + "expanded_ids": "⿰彳⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "役", + "codepoint": "U+5F79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F79", + "status": "exact_ids", + "ids": "⿰彳殳", + "canonical_ids": "⿰彳殳", + "expanded_ids": "⿰彳⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彺", + "codepoint": "U+5F7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F7A", + "status": "exact_ids", + "ids": "⿰彳王", + "canonical_ids": "⿰彳王", + "expanded_ids": "⿰彳王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彻", + "codepoint": "U+5F7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F7B", + "status": "exact_ids", + "ids": "⿰彳切", + "canonical_ids": "⿰彳切", + "expanded_ids": "⿰彳⿰七刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "刀", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彼", + "codepoint": "U+5F7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F7C", + "status": "exact_ids", + "ids": "⿰彳皮", + "canonical_ids": "⿰彳皮", + "expanded_ids": "⿰彳皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彽", + "codepoint": "U+5F7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F7D", + "status": "exact_ids", + "ids": "⿰彳氐", + "canonical_ids": "⿰彳氐", + "expanded_ids": "⿰彳⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "彳", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彾", + "codepoint": "U+5F7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F7E", + "status": "exact_ids", + "ids": "⿰彳令", + "canonical_ids": "⿰彳令", + "expanded_ids": "⿰彳⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "彳", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "彿", + "codepoint": "U+5F7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F7F", + "status": "exact_ids", + "ids": "⿰彳弗", + "canonical_ids": "⿰彳弗", + "expanded_ids": "⿰彳⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "弓", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "往", + "codepoint": "U+5F80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F80", + "status": "exact_ids", + "ids": "⿰彳主", + "canonical_ids": "⿰彳主", + "expanded_ids": "⿰彳⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "彳", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "征", + "codepoint": "U+5F81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F81", + "status": "exact_ids", + "ids": "⿰彳正", + "canonical_ids": "⿰彳正", + "expanded_ids": "⿰彳⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "彳", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徂", + "codepoint": "U+5F82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F82", + "status": "exact_ids", + "ids": "⿰彳且", + "canonical_ids": "⿰彳且", + "expanded_ids": "⿰彳且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徃", + "codepoint": "U+5F83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F83", + "status": "exact_ids", + "ids": "⿰彳生", + "canonical_ids": "⿰彳生", + "expanded_ids": "⿰彳⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "彳", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "径", + "codepoint": "U+5F84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F84", + "status": "exact_ids", + "ids": "⿰彳圣", + "canonical_ids": "⿰彳圣", + "expanded_ids": "⿰彳⿱又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "土", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "待", + "codepoint": "U+5F85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F85", + "status": "exact_ids", + "ids": "⿰彳寺", + "canonical_ids": "⿰彳寺", + "expanded_ids": "⿰彳⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徆", + "codepoint": "U+5F86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F86", + "status": "exact_ids", + "ids": "⿰彳西", + "canonical_ids": "⿰彳西", + "expanded_ids": "⿰彳⿻⿱一儿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徇", + "codepoint": "U+5F87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F87", + "status": "exact_ids", + "ids": "⿰彳旬", + "canonical_ids": "⿰彳旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "很", + "codepoint": "U+5F88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F88", + "status": "exact_ids", + "ids": "⿰彳艮", + "canonical_ids": "⿰彳艮", + "expanded_ids": "⿰彳艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徉", + "codepoint": "U+5F89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F89", + "status": "exact_ids", + "ids": "⿰彳羊", + "canonical_ids": "⿰彳羊", + "expanded_ids": "⿰彳羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徊", + "codepoint": "U+5F8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F8A", + "status": "exact_ids", + "ids": "⿰彳回", + "canonical_ids": "⿰彳回", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "律", + "codepoint": "U+5F8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F8B", + "status": "exact_ids", + "ids": "⿰彳聿", + "canonical_ids": "⿰彳聿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "後", + "codepoint": "U+5F8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F8C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徍", + "codepoint": "U+5F8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F8D", + "status": "exact_ids", + "ids": "⿰彳圭", + "canonical_ids": "⿰彳圭", + "expanded_ids": "⿰彳⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徎", + "codepoint": "U+5F8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F8E", + "status": "exact_ids", + "ids": "⿰彳呈", + "canonical_ids": "⿰彳呈", + "expanded_ids": "⿰彳⿱口王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "彳", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徏", + "codepoint": "U+5F8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F8F", + "status": "exact_ids", + "ids": "⿰彳步", + "canonical_ids": "⿰彳步", + "expanded_ids": "⿰彳⿱止𣥂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "止", + "𣥂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徐", + "codepoint": "U+5F90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F90", + "status": "exact_ids", + "ids": "⿰彳余", + "canonical_ids": "⿰彳余", + "expanded_ids": "⿰彳⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "彳", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徑", + "codepoint": "U+5F91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F91", + "status": "exact_ids", + "ids": "⿰彳巠", + "canonical_ids": "⿰彳巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徒", + "codepoint": "U+5F92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F92", + "status": "exact_ids", + "ids": "⿰彳走", + "canonical_ids": "⿰彳走", + "expanded_ids": "⿰彳⿱土龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "彳", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "従", + "codepoint": "U+5F93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F93", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徔", + "codepoint": "U+5F94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F94", + "status": "exact_ids", + "ids": "⿰彳芝", + "canonical_ids": "⿰彳芝", + "expanded_ids": "⿰彳⿱艹之", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "之", + "彳", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徕", + "codepoint": "U+5F95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F95", + "status": "exact_ids", + "ids": "⿰彳来", + "canonical_ids": "⿰彳来", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳" + ], + "unresolved_leaves": [ + "来" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徖", + "codepoint": "U+5F96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F96", + "status": "exact_ids", + "ids": "⿰彳宗", + "canonical_ids": "⿰彳宗", + "expanded_ids": "⿰彳⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "得", + "codepoint": "U+5F97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F97", + "status": "exact_ids", + "ids": "⿰彳㝵", + "canonical_ids": "⿰彳㝵", + "expanded_ids": "⿰彳⿱日寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "彳", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徘", + "codepoint": "U+5F98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F98", + "status": "exact_ids", + "ids": "⿰彳非", + "canonical_ids": "⿰彳非", + "expanded_ids": "⿰彳非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徙", + "codepoint": "U+5F99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F99", + "status": "exact_ids", + "ids": "⿰彳歨", + "canonical_ids": "⿰彳歨", + "expanded_ids": "⿰彳⿱止止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徚", + "codepoint": "U+5F9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F9A", + "status": "exact_ids", + "ids": "⿰彳柬", + "canonical_ids": "⿰彳柬", + "expanded_ids": "⿰彳柬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "柬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徛", + "codepoint": "U+5F9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F9B", + "status": "exact_ids", + "ids": "⿰彳奇", + "canonical_ids": "⿰彳奇", + "expanded_ids": "⿰彳⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徜", + "codepoint": "U+5F9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F9C", + "status": "exact_ids", + "ids": "⿰彳尚", + "canonical_ids": "⿰彳尚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "彳" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徝", + "codepoint": "U+5F9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F9D", + "status": "exact_ids", + "ids": "⿰彳直", + "canonical_ids": "⿰彳直", + "expanded_ids": "⿰彳⿱⿱十目乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "十", + "彳", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "從", + "codepoint": "U+5F9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F9E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徟", + "codepoint": "U+5F9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5F9F", + "status": "exact_ids", + "ids": "⿰彳周", + "canonical_ids": "⿰彳周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徠", + "codepoint": "U+5FA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FA0", + "status": "exact_ids", + "ids": "⿰彳來", + "canonical_ids": "⿰彳來", + "expanded_ids": "⿰彳⿻木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "彳", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "御", + "codepoint": "U+5FA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FA1", + "status": "exact_ids", + "ids": "⿰彳卸", + "canonical_ids": "⿰彳卸", + "expanded_ids": "⿰彳⿰𦈢卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "彳", + "𦈢" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徢", + "codepoint": "U+5FA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FA2", + "status": "exact_ids", + "ids": "⿰彳疌", + "canonical_ids": "⿰彳疌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳" + ], + "unresolved_leaves": [ + "疌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徣", + "codepoint": "U+5FA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FA3", + "status": "exact_ids", + "ids": "⿰彳昔", + "canonical_ids": "⿰彳昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "日" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徤", + "codepoint": "U+5FA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FA4", + "status": "exact_ids", + "ids": "⿰彳建", + "canonical_ids": "⿰彳建", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廴", + "彳" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徥", + "codepoint": "U+5FA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FA5", + "status": "exact_ids", + "ids": "⿰彳是", + "canonical_ids": "⿰彳是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "日" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徦", + "codepoint": "U+5FA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FA6", + "status": "exact_ids", + "ids": "⿰彳叚", + "canonical_ids": "⿰彳叚", + "expanded_ids": "⿰彳叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徧", + "codepoint": "U+5FA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FA7", + "status": "exact_ids", + "ids": "⿰彳扁", + "canonical_ids": "⿰彳扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "彳" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徨", + "codepoint": "U+5FA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FA8", + "status": "exact_ids", + "ids": "⿰彳皇", + "canonical_ids": "⿰彳皇", + "expanded_ids": "⿰彳⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "彳", + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "復", + "codepoint": "U+5FA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FA9", + "status": "exact_ids", + "ids": "⿰彳复", + "canonical_ids": "⿰彳复", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳" + ], + "unresolved_leaves": [ + "复" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "循", + "codepoint": "U+5FAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FAA", + "status": "exact_ids", + "ids": "⿰彳盾", + "canonical_ids": "⿰彳盾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "彳", + "目" + ], + "unresolved_leaves": [ + "⺁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徫", + "codepoint": "U+5FAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FAB", + "status": "exact_ids", + "ids": "⿰彳韋", + "canonical_ids": "⿰彳韋", + "expanded_ids": "⿰彳韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徬", + "codepoint": "U+5FAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FAC", + "status": "exact_ids", + "ids": "⿰彳旁", + "canonical_ids": "⿰彳旁", + "expanded_ids": "⿰彳⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "彳", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徭", + "codepoint": "U+5FAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FAD", + "status": "exact_ids", + "ids": "⿰彳䍃", + "canonical_ids": "⿰彳䍃", + "expanded_ids": "⿰彳⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "爪", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "微", + "codepoint": "U+5FAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FAE", + "status": "exact_ids", + "ids": "⿰彳𢼸", + "canonical_ids": "⿰彳𢼸", + "expanded_ids": "⿰彳⿰⿳山冖几攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "几", + "山", + "彳", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徯", + "codepoint": "U+5FAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FAF", + "status": "exact_ids", + "ids": "⿰彳奚", + "canonical_ids": "⿰彳奚", + "expanded_ids": "⿰彳⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "幺", + "彳", + "爪" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徰", + "codepoint": "U+5FB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FB0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徱", + "codepoint": "U+5FB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FB1", + "status": "exact_ids", + "ids": "⿰彳票", + "canonical_ids": "⿰彳票", + "expanded_ids": "⿰彳⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "彳", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徲", + "codepoint": "U+5FB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FB2", + "status": "exact_ids", + "ids": "⿰彳犀", + "canonical_ids": "⿰彳犀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳" + ], + "unresolved_leaves": [ + "犀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徳", + "codepoint": "U+5FB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FB3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徴", + "codepoint": "U+5FB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FB4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徵", + "codepoint": "U+5FB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FB5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徶", + "codepoint": "U+5FB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FB6", + "status": "exact_ids", + "ids": "⿰彳敝", + "canonical_ids": "⿰彳敝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "攵" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "德", + "codepoint": "U+5FB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FB7", + "status": "exact_ids", + "ids": "⿰彳𢛳", + "canonical_ids": "⿰彳𢛳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳" + ], + "unresolved_leaves": [ + "𢛳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徸", + "codepoint": "U+5FB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FB8", + "status": "exact_ids", + "ids": "⿰彳童", + "canonical_ids": "⿰彳童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徹", + "codepoint": "U+5FB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FB9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徺", + "codepoint": "U+5FBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FBA", + "status": "exact_ids", + "ids": "⿰彳堯", + "canonical_ids": "⿰彳堯", + "expanded_ids": "⿰彳⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徻", + "codepoint": "U+5FBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FBB", + "status": "exact_ids", + "ids": "⿰彳會", + "canonical_ids": "⿰彳會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "曰" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徼", + "codepoint": "U+5FBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FBC", + "status": "exact_ids", + "ids": "⿰彳敫", + "canonical_ids": "⿰彳敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徽", + "codepoint": "U+5FBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FBD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徾", + "codepoint": "U+5FBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FBE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "徿", + "codepoint": "U+5FBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FBF", + "status": "exact_ids", + "ids": "⿰彳龍", + "canonical_ids": "⿰彳龍", + "expanded_ids": "⿰彳龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忀", + "codepoint": "U+5FC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FC0", + "status": "exact_ids", + "ids": "⿰彳襄", + "canonical_ids": "⿰彳襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忁", + "codepoint": "U+5FC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FC1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忂", + "codepoint": "U+5FC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FC2", + "status": "exact_ids", + "ids": "⿰彳瞿", + "canonical_ids": "⿰彳瞿", + "expanded_ids": "⿰彳⿱⿰目目隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "心", + "codepoint": "U+5FC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FC3", + "status": "leaf_self_fallback", + "ids": "心", + "canonical_ids": "心", + "expanded_ids": "心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忄", + "codepoint": "U+5FC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FC4", + "status": "leaf_self_fallback", + "ids": "忄", + "canonical_ids": "忄", + "expanded_ids": "忄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "必", + "codepoint": "U+5FC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FC5", + "status": "exact_ids", + "ids": "⿻心丿", + "canonical_ids": "⿻心丿", + "expanded_ids": "⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忆", + "codepoint": "U+5FC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FC6", + "status": "exact_ids", + "ids": "⿰忄乙", + "canonical_ids": "⿰忄乙", + "expanded_ids": "⿰忄乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忇", + "codepoint": "U+5FC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FC7", + "status": "exact_ids", + "ids": "⿰忄力", + "canonical_ids": "⿰忄力", + "expanded_ids": "⿰忄力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忈", + "codepoint": "U+5FC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FC8", + "status": "exact_ids", + "ids": "⿱二心", + "canonical_ids": "⿱二心", + "expanded_ids": "⿱二心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忉", + "codepoint": "U+5FC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FC9", + "status": "exact_ids", + "ids": "⿰忄刀", + "canonical_ids": "⿰忄刀", + "expanded_ids": "⿰忄刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忊", + "codepoint": "U+5FCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FCA", + "status": "exact_ids", + "ids": "⿰忄丁", + "canonical_ids": "⿰忄丁", + "expanded_ids": "⿰忄⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忋", + "codepoint": "U+5FCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FCB", + "status": "exact_ids", + "ids": "⿰忄己", + "canonical_ids": "⿰忄己", + "expanded_ids": "⿰忄己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忌", + "codepoint": "U+5FCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FCC", + "status": "exact_ids", + "ids": "⿱己心", + "canonical_ids": "⿱己心", + "expanded_ids": "⿱己心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忍", + "codepoint": "U+5FCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FCD", + "status": "exact_ids", + "ids": "⿱刃心", + "canonical_ids": "⿱刃心", + "expanded_ids": "⿱⿻刀丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忎", + "codepoint": "U+5FCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FCE", + "status": "exact_ids", + "ids": "⿱千心", + "canonical_ids": "⿱千心", + "expanded_ids": "⿱⿱丿十心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忏", + "codepoint": "U+5FCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FCF", + "status": "exact_ids", + "ids": "⿰忄千", + "canonical_ids": "⿰忄千", + "expanded_ids": "⿰忄⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忐", + "codepoint": "U+5FD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FD0", + "status": "exact_ids", + "ids": "⿱上心", + "canonical_ids": "⿱上心", + "expanded_ids": "⿱上心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忑", + "codepoint": "U+5FD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FD1", + "status": "exact_ids", + "ids": "⿱下心", + "canonical_ids": "⿱下心", + "expanded_ids": "⿱⿱一卜心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "卜", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忒", + "codepoint": "U+5FD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FD2", + "status": "exact_ids", + "ids": "⿱弋心", + "canonical_ids": "⿱弋心", + "expanded_ids": "⿱弋心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弋", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忓", + "codepoint": "U+5FD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FD3", + "status": "exact_ids", + "ids": "⿰忄干", + "canonical_ids": "⿰忄干", + "expanded_ids": "⿰忄⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忔", + "codepoint": "U+5FD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FD4", + "status": "exact_ids", + "ids": "⿰忄乞", + "canonical_ids": "⿰忄乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忕", + "codepoint": "U+5FD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FD5", + "status": "exact_ids", + "ids": "⿰忄大", + "canonical_ids": "⿰忄大", + "expanded_ids": "⿰忄大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忖", + "codepoint": "U+5FD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FD6", + "status": "exact_ids", + "ids": "⿰忄寸", + "canonical_ids": "⿰忄寸", + "expanded_ids": "⿰忄寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "志", + "codepoint": "U+5FD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FD7", + "status": "exact_ids", + "ids": "⿱士心", + "canonical_ids": "⿱士心", + "expanded_ids": "⿱士心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "士", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忘", + "codepoint": "U+5FD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FD8", + "status": "exact_ids", + "ids": "⿱亡心", + "canonical_ids": "⿱亡心", + "expanded_ids": "⿱⿻亠乚心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忙", + "codepoint": "U+5FD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FD9", + "status": "exact_ids", + "ids": "⿰忄亡", + "canonical_ids": "⿰忄亡", + "expanded_ids": "⿰忄⿻亠乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忚", + "codepoint": "U+5FDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FDA", + "status": "exact_ids", + "ids": "⿰忄也", + "canonical_ids": "⿰忄也", + "expanded_ids": "⿰忄⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忛", + "codepoint": "U+5FDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FDB", + "status": "exact_ids", + "ids": "⿰忄凡", + "canonical_ids": "⿰忄凡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "応", + "codepoint": "U+5FDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FDC", + "status": "exact_ids", + "ids": "⿱广心", + "canonical_ids": "⿱广心", + "expanded_ids": "⿱广心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忝", + "codepoint": "U+5FDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FDD", + "status": "exact_ids", + "ids": "⿱夭㣺", + "canonical_ids": "⿱夭㣺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大" + ], + "unresolved_leaves": [ + "㣺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忞", + "codepoint": "U+5FDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FDE", + "status": "exact_ids", + "ids": "⿱文心", + "canonical_ids": "⿱文心", + "expanded_ids": "⿱文心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "文" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忟", + "codepoint": "U+5FDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FDF", + "status": "exact_ids", + "ids": "⿰忄文", + "canonical_ids": "⿰忄文", + "expanded_ids": "⿰忄文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "文" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忠", + "codepoint": "U+5FE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FE0", + "status": "exact_ids", + "ids": "⿱中心", + "canonical_ids": "⿱中心", + "expanded_ids": "⿱⿻口丨心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忡", + "codepoint": "U+5FE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FE1", + "status": "exact_ids", + "ids": "⿰忄中", + "canonical_ids": "⿰忄中", + "expanded_ids": "⿰忄⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忢", + "codepoint": "U+5FE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FE2", + "status": "exact_ids", + "ids": "⿱五心", + "canonical_ids": "⿱五心", + "expanded_ids": "⿱五心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忣", + "codepoint": "U+5FE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FE3", + "status": "exact_ids", + "ids": "⿰忄及", + "canonical_ids": "⿰忄及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "忄" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忤", + "codepoint": "U+5FE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FE4", + "status": "exact_ids", + "ids": "⿰忄午", + "canonical_ids": "⿰忄午", + "expanded_ids": "⿰忄⿱⿻丿一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "十", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忥", + "codepoint": "U+5FE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FE5", + "status": "exact_ids", + "ids": "⿱气心", + "canonical_ids": "⿱气心", + "expanded_ids": "⿱气心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忦", + "codepoint": "U+5FE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FE6", + "status": "exact_ids", + "ids": "⿰忄介", + "canonical_ids": "⿰忄介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忧", + "codepoint": "U+5FE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FE7", + "status": "exact_ids", + "ids": "⿰忄尤", + "canonical_ids": "⿰忄尤", + "expanded_ids": "⿰忄尤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忨", + "codepoint": "U+5FE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FE8", + "status": "exact_ids", + "ids": "⿰忄元", + "canonical_ids": "⿰忄元", + "expanded_ids": "⿰忄⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忩", + "codepoint": "U+5FE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FE9", + "status": "exact_ids", + "ids": "⿱公心", + "canonical_ids": "⿱公心", + "expanded_ids": "⿱⿱八厶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忪", + "codepoint": "U+5FEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FEA", + "status": "exact_ids", + "ids": "⿰忄公", + "canonical_ids": "⿰忄公", + "expanded_ids": "⿰忄⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "快", + "codepoint": "U+5FEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FEB", + "status": "exact_ids", + "ids": "⿰忄夬", + "canonical_ids": "⿰忄夬", + "expanded_ids": "⿰忄⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "大", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忬", + "codepoint": "U+5FEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FEC", + "status": "exact_ids", + "ids": "⿰忄予", + "canonical_ids": "⿰忄予", + "expanded_ids": "⿰忄⿱龴⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "忄", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忭", + "codepoint": "U+5FED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FED", + "status": "exact_ids", + "ids": "⿰忄卞", + "canonical_ids": "⿰忄卞", + "expanded_ids": "⿰忄⿱亠卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "卜", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忮", + "codepoint": "U+5FEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FEE", + "status": "exact_ids", + "ids": "⿰忄支", + "canonical_ids": "⿰忄支", + "expanded_ids": "⿰忄⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忯", + "codepoint": "U+5FEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FEF", + "status": "exact_ids", + "ids": "⿰忄氏", + "canonical_ids": "⿰忄氏", + "expanded_ids": "⿰忄氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忰", + "codepoint": "U+5FF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FF0", + "status": "exact_ids", + "ids": "⿰忄卆", + "canonical_ids": "⿰忄卆", + "expanded_ids": "⿰忄⿱九十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "十", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忱", + "codepoint": "U+5FF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FF1", + "status": "exact_ids", + "ids": "⿰忄冘", + "canonical_ids": "⿰忄冘", + "expanded_ids": "⿰忄⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忲", + "codepoint": "U+5FF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FF2", + "status": "exact_ids", + "ids": "⿰忄太", + "canonical_ids": "⿰忄太", + "expanded_ids": "⿰忄⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忳", + "codepoint": "U+5FF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FF3", + "status": "exact_ids", + "ids": "⿰忄屯", + "canonical_ids": "⿰忄屯", + "expanded_ids": "⿰忄屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忴", + "codepoint": "U+5FF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FF4", + "status": "exact_ids", + "ids": "⿰忄今", + "canonical_ids": "⿰忄今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "忄" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "念", + "codepoint": "U+5FF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FF5", + "status": "exact_ids", + "ids": "⿱今心", + "canonical_ids": "⿱今心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "心" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忶", + "codepoint": "U+5FF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FF6", + "status": "exact_ids", + "ids": "⿰忄云", + "canonical_ids": "⿰忄云", + "expanded_ids": "⿰忄⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忷", + "codepoint": "U+5FF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FF7", + "status": "exact_ids", + "ids": "⿰忄凶", + "canonical_ids": "⿰忄凶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忸", + "codepoint": "U+5FF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FF8", + "status": "exact_ids", + "ids": "⿰忄丑", + "canonical_ids": "⿰忄丑", + "expanded_ids": "⿰忄丑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忹", + "codepoint": "U+5FF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FF9", + "status": "exact_ids", + "ids": "⿰忄王", + "canonical_ids": "⿰忄王", + "expanded_ids": "⿰忄王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忺", + "codepoint": "U+5FFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FFA", + "status": "exact_ids", + "ids": "⿰忄欠", + "canonical_ids": "⿰忄欠", + "expanded_ids": "⿰忄欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忻", + "codepoint": "U+5FFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FFB", + "status": "exact_ids", + "ids": "⿰忄斤", + "canonical_ids": "⿰忄斤", + "expanded_ids": "⿰忄斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忼", + "codepoint": "U+5FFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FFC", + "status": "exact_ids", + "ids": "⿰忄亢", + "canonical_ids": "⿰忄亢", + "expanded_ids": "⿰忄⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忽", + "codepoint": "U+5FFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FFD", + "status": "exact_ids", + "ids": "⿱勿心", + "canonical_ids": "⿱勿心", + "expanded_ids": "⿱勿心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忾", + "codepoint": "U+5FFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FFE", + "status": "exact_ids", + "ids": "⿰忄气", + "canonical_ids": "⿰忄气", + "expanded_ids": "⿰忄气", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "忿", + "codepoint": "U+5FFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-5FFF", + "status": "exact_ids", + "ids": "⿱分心", + "canonical_ids": "⿱分心", + "expanded_ids": "⿱⿱八刀心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怀", + "codepoint": "U+6000", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6000", + "status": "exact_ids", + "ids": "⿰忄不", + "canonical_ids": "⿰忄不", + "expanded_ids": "⿰忄不", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "态", + "codepoint": "U+6001", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6001", + "status": "exact_ids", + "ids": "⿱太心", + "canonical_ids": "⿱太心", + "expanded_ids": "⿱⿻大丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怂", + "codepoint": "U+6002", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6002", + "status": "exact_ids", + "ids": "⿱⿰人人心", + "canonical_ids": "⿱⿰人人心", + "expanded_ids": "⿱⿰人人心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怃", + "codepoint": "U+6003", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6003", + "status": "exact_ids", + "ids": "⿰忄无", + "canonical_ids": "⿰忄无", + "expanded_ids": "⿰忄无", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "无" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怄", + "codepoint": "U+6004", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6004", + "status": "exact_ids", + "ids": "⿰忄区", + "canonical_ids": "⿰忄区", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "区" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怅", + "codepoint": "U+6005", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6005", + "status": "exact_ids", + "ids": "⿰忄长", + "canonical_ids": "⿰忄长", + "expanded_ids": "⿰忄长", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "长" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怆", + "codepoint": "U+6006", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6006", + "status": "exact_ids", + "ids": "⿰忄仓", + "canonical_ids": "⿰忄仓", + "expanded_ids": "⿰忄⿱人㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "人", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怇", + "codepoint": "U+6007", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6007", + "status": "exact_ids", + "ids": "⿰忄巨", + "canonical_ids": "⿰忄巨", + "expanded_ids": "⿰忄巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怈", + "codepoint": "U+6008", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6008", + "status": "exact_ids", + "ids": "⿰忄世", + "canonical_ids": "⿰忄世", + "expanded_ids": "⿰忄世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怉", + "codepoint": "U+6009", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6009", + "status": "exact_ids", + "ids": "⿰忄包", + "canonical_ids": "⿰忄包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怊", + "codepoint": "U+600A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-600A", + "status": "exact_ids", + "ids": "⿰忄召", + "canonical_ids": "⿰忄召", + "expanded_ids": "⿰忄⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怋", + "codepoint": "U+600B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-600B", + "status": "exact_ids", + "ids": "⿰忄民", + "canonical_ids": "⿰忄民", + "expanded_ids": "⿰忄民", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "民" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怌", + "codepoint": "U+600C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-600C", + "status": "exact_ids", + "ids": "⿰忄丕", + "canonical_ids": "⿰忄丕", + "expanded_ids": "⿰忄⿱不一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怍", + "codepoint": "U+600D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-600D", + "status": "exact_ids", + "ids": "⿰忄乍", + "canonical_ids": "⿰忄乍", + "expanded_ids": "⿰忄乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怎", + "codepoint": "U+600E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-600E", + "status": "exact_ids", + "ids": "⿱乍心", + "canonical_ids": "⿱乍心", + "expanded_ids": "⿱乍心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怏", + "codepoint": "U+600F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-600F", + "status": "exact_ids", + "ids": "⿰忄央", + "canonical_ids": "⿰忄央", + "expanded_ids": "⿰忄⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怐", + "codepoint": "U+6010", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6010", + "status": "exact_ids", + "ids": "⿰忄句", + "canonical_ids": "⿰忄句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怑", + "codepoint": "U+6011", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6011", + "status": "exact_ids", + "ids": "⿰忄半", + "canonical_ids": "⿰忄半", + "expanded_ids": "⿰忄半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怒", + "codepoint": "U+6012", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6012", + "status": "exact_ids", + "ids": "⿱奴心", + "canonical_ids": "⿱奴心", + "expanded_ids": "⿱⿰女又心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "女", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怓", + "codepoint": "U+6013", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6013", + "status": "exact_ids", + "ids": "⿰忄奴", + "canonical_ids": "⿰忄奴", + "expanded_ids": "⿰忄⿰女又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "女", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怔", + "codepoint": "U+6014", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6014", + "status": "exact_ids", + "ids": "⿰忄正", + "canonical_ids": "⿰忄正", + "expanded_ids": "⿰忄⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "忄", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怕", + "codepoint": "U+6015", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6015", + "status": "exact_ids", + "ids": "⿰忄白", + "canonical_ids": "⿰忄白", + "expanded_ids": "⿰忄⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "忄", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怖", + "codepoint": "U+6016", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6016", + "status": "exact_ids", + "ids": "⿰忄布", + "canonical_ids": "⿰忄布", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怗", + "codepoint": "U+6017", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6017", + "status": "exact_ids", + "ids": "⿰忄占", + "canonical_ids": "⿰忄占", + "expanded_ids": "⿰忄⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怘", + "codepoint": "U+6018", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6018", + "status": "exact_ids", + "ids": "⿱古心", + "canonical_ids": "⿱古心", + "expanded_ids": "⿱⿻十口心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怙", + "codepoint": "U+6019", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6019", + "status": "exact_ids", + "ids": "⿰忄古", + "canonical_ids": "⿰忄古", + "expanded_ids": "⿰忄⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怚", + "codepoint": "U+601A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-601A", + "status": "exact_ids", + "ids": "⿰忄且", + "canonical_ids": "⿰忄且", + "expanded_ids": "⿰忄且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怛", + "codepoint": "U+601B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-601B", + "status": "exact_ids", + "ids": "⿰忄旦", + "canonical_ids": "⿰忄旦", + "expanded_ids": "⿰忄⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "忄", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怜", + "codepoint": "U+601C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-601C", + "status": "exact_ids", + "ids": "⿰忄令", + "canonical_ids": "⿰忄令", + "expanded_ids": "⿰忄⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "忄", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "思", + "codepoint": "U+601D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-601D", + "status": "exact_ids", + "ids": "⿱田心", + "canonical_ids": "⿱田心", + "expanded_ids": "⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怞", + "codepoint": "U+601E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-601E", + "status": "exact_ids", + "ids": "⿰忄由", + "canonical_ids": "⿰忄由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怟", + "codepoint": "U+601F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-601F", + "status": "exact_ids", + "ids": "⿰忄氐", + "canonical_ids": "⿰忄氐", + "expanded_ids": "⿰忄⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "忄", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怠", + "codepoint": "U+6020", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6020", + "status": "exact_ids", + "ids": "⿱台心", + "canonical_ids": "⿱台心", + "expanded_ids": "⿱⿱厶口心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怡", + "codepoint": "U+6021", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6021", + "status": "exact_ids", + "ids": "⿰忄台", + "canonical_ids": "⿰忄台", + "expanded_ids": "⿰忄⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怢", + "codepoint": "U+6022", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6022", + "status": "exact_ids", + "ids": "⿰忄失", + "canonical_ids": "⿰忄失", + "expanded_ids": "⿰忄⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怣", + "codepoint": "U+6023", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6023", + "status": "exact_ids", + "ids": "⿱失心", + "canonical_ids": "⿱失心", + "expanded_ids": "⿱⿻丿⿻一大心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怤", + "codepoint": "U+6024", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6024", + "status": "exact_ids", + "ids": "⿱付心", + "canonical_ids": "⿱付心", + "expanded_ids": "⿱⿰亻寸心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "急", + "codepoint": "U+6025", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6025", + "status": "exact_ids", + "ids": "⿱刍心", + "canonical_ids": "⿱刍心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "心" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怦", + "codepoint": "U+6026", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6026", + "status": "exact_ids", + "ids": "⿰忄平", + "canonical_ids": "⿰忄平", + "expanded_ids": "⿰忄⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "十", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "性", + "codepoint": "U+6027", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6027", + "status": "exact_ids", + "ids": "⿰忄生", + "canonical_ids": "⿰忄生", + "expanded_ids": "⿰忄⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "忄", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怨", + "codepoint": "U+6028", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6028", + "status": "exact_ids", + "ids": "⿱夗心", + "canonical_ids": "⿱夗心", + "expanded_ids": "⿱⿰夕㔾心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怩", + "codepoint": "U+6029", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6029", + "status": "exact_ids", + "ids": "⿰忄尼", + "canonical_ids": "⿰忄尼", + "expanded_ids": "⿰忄⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "尸", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怪", + "codepoint": "U+602A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-602A", + "status": "exact_ids", + "ids": "⿰忄圣", + "canonical_ids": "⿰忄圣", + "expanded_ids": "⿰忄⿱又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "土", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怫", + "codepoint": "U+602B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-602B", + "status": "exact_ids", + "ids": "⿰忄弗", + "canonical_ids": "⿰忄弗", + "expanded_ids": "⿰忄⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "弓", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怬", + "codepoint": "U+602C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-602C", + "status": "exact_ids", + "ids": "⿰忄四", + "canonical_ids": "⿰忄四", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "四" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怭", + "codepoint": "U+602D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-602D", + "status": "exact_ids", + "ids": "⿰忄必", + "canonical_ids": "⿰忄必", + "expanded_ids": "⿰忄⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怮", + "codepoint": "U+602E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-602E", + "status": "exact_ids", + "ids": "⿰忄幼", + "canonical_ids": "⿰忄幼", + "expanded_ids": "⿰忄⿰幺力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "幺", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怯", + "codepoint": "U+602F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-602F", + "status": "exact_ids", + "ids": "⿰忄去", + "canonical_ids": "⿰忄去", + "expanded_ids": "⿰忄⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怰", + "codepoint": "U+6030", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6030", + "status": "exact_ids", + "ids": "⿰忄玄", + "canonical_ids": "⿰忄玄", + "expanded_ids": "⿰忄⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怱", + "codepoint": "U+6031", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6031", + "status": "exact_ids", + "ids": "⿱匆心", + "canonical_ids": "⿱匆心", + "expanded_ids": "⿱⿻勿丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "勿", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怲", + "codepoint": "U+6032", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6032", + "status": "exact_ids", + "ids": "⿰忄丙", + "canonical_ids": "⿰忄丙", + "expanded_ids": "⿰忄⿱一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怳", + "codepoint": "U+6033", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6033", + "status": "exact_ids", + "ids": "⿰忄兄", + "canonical_ids": "⿰忄兄", + "expanded_ids": "⿰忄⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怴", + "codepoint": "U+6034", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6034", + "status": "exact_ids", + "ids": "⿰忄戉", + "canonical_ids": "⿰忄戉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "忄" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怵", + "codepoint": "U+6035", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6035", + "status": "exact_ids", + "ids": "⿰忄朮", + "canonical_ids": "⿰忄朮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "朮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怶", + "codepoint": "U+6036", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6036", + "status": "exact_ids", + "ids": "⿰忄皮", + "canonical_ids": "⿰忄皮", + "expanded_ids": "⿰忄皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怷", + "codepoint": "U+6037", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6037", + "status": "exact_ids", + "ids": "⿱朮心", + "canonical_ids": "⿱朮心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "朮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怸", + "codepoint": "U+6038", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6038", + "status": "exact_ids", + "ids": "⿱术心", + "canonical_ids": "⿱术心", + "expanded_ids": "⿱⿻木丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怹", + "codepoint": "U+6039", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6039", + "status": "exact_ids", + "ids": "⿱他心", + "canonical_ids": "⿱他心", + "expanded_ids": "⿱⿰亻⿻乜丨心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "亻", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怺", + "codepoint": "U+603A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-603A", + "status": "exact_ids", + "ids": "⿰忄永", + "canonical_ids": "⿰忄永", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "永" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "总", + "codepoint": "U+603B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-603B", + "status": "exact_ids", + "ids": "⿱𠮦心", + "canonical_ids": "⿱𠮦心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "𠮦" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怼", + "codepoint": "U+603C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-603C", + "status": "exact_ids", + "ids": "⿱对心", + "canonical_ids": "⿱对心", + "expanded_ids": "⿱⿰又寸心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "寸", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怽", + "codepoint": "U+603D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-603D", + "status": "exact_ids", + "ids": "⿰忄未", + "canonical_ids": "⿰忄未", + "expanded_ids": "⿰忄⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "忄", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怾", + "codepoint": "U+603E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-603E", + "status": "exact_ids", + "ids": "⿰忄只", + "canonical_ids": "⿰忄只", + "expanded_ids": "⿰忄⿱口八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "怿", + "codepoint": "U+603F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-603F", + "status": "exact_ids", + "ids": "⿰忄夅", + "canonical_ids": "⿰忄夅", + "expanded_ids": "⿰忄⿱夂⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夂", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恀", + "codepoint": "U+6040", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6040", + "status": "exact_ids", + "ids": "⿰忄多", + "canonical_ids": "⿰忄多", + "expanded_ids": "⿰忄⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恁", + "codepoint": "U+6041", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6041", + "status": "exact_ids", + "ids": "⿱任心", + "canonical_ids": "⿱任心", + "expanded_ids": "⿱⿰亻⿱丿士心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "士", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恂", + "codepoint": "U+6042", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6042", + "status": "exact_ids", + "ids": "⿰忄旬", + "canonical_ids": "⿰忄旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恃", + "codepoint": "U+6043", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6043", + "status": "exact_ids", + "ids": "⿰忄寺", + "canonical_ids": "⿰忄寺", + "expanded_ids": "⿰忄⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恄", + "codepoint": "U+6044", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6044", + "status": "exact_ids", + "ids": "⿰忄吉", + "canonical_ids": "⿰忄吉", + "expanded_ids": "⿰忄⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恅", + "codepoint": "U+6045", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6045", + "status": "exact_ids", + "ids": "⿰忄老", + "canonical_ids": "⿰忄老", + "expanded_ids": "⿰忄⿱⿻土丿匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恆", + "codepoint": "U+6046", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6046", + "status": "exact_ids", + "ids": "⿰忄亙", + "canonical_ids": "⿰忄亙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "亙" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恇", + "codepoint": "U+6047", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6047", + "status": "exact_ids", + "ids": "⿰忄匡", + "canonical_ids": "⿰忄匡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "匡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恈", + "codepoint": "U+6048", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6048", + "status": "exact_ids", + "ids": "⿰忄牟", + "canonical_ids": "⿰忄牟", + "expanded_ids": "⿰忄⿱厶牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "忄", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恉", + "codepoint": "U+6049", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6049", + "status": "exact_ids", + "ids": "⿰忄旨", + "canonical_ids": "⿰忄旨", + "expanded_ids": "⿰忄⿱匕日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "忄", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恊", + "codepoint": "U+604A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-604A", + "status": "exact_ids", + "ids": "⿰忄劦", + "canonical_ids": "⿰忄劦", + "expanded_ids": "⿰忄⿱力⿰力力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恋", + "codepoint": "U+604B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-604B", + "status": "exact_ids", + "ids": "⿱亦心", + "canonical_ids": "⿱亦心", + "expanded_ids": "⿱亦心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恌", + "codepoint": "U+604C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-604C", + "status": "exact_ids", + "ids": "⿰忄兆", + "canonical_ids": "⿰忄兆", + "expanded_ids": "⿰忄兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恍", + "codepoint": "U+604D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-604D", + "status": "exact_ids", + "ids": "⿰忄光", + "canonical_ids": "⿰忄光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "忄" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恎", + "codepoint": "U+604E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-604E", + "status": "exact_ids", + "ids": "⿰忄至", + "canonical_ids": "⿰忄至", + "expanded_ids": "⿰忄⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恏", + "codepoint": "U+604F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-604F", + "status": "exact_ids", + "ids": "⿱好心", + "canonical_ids": "⿱好心", + "expanded_ids": "⿱⿰女子心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "子", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恐", + "codepoint": "U+6050", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6050", + "status": "exact_ids", + "ids": "⿱巩心", + "canonical_ids": "⿱巩心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "心" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恑", + "codepoint": "U+6051", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6051", + "status": "exact_ids", + "ids": "⿰忄危", + "canonical_ids": "⿰忄危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "忄" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恒", + "codepoint": "U+6052", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6052", + "status": "exact_ids", + "ids": "⿰忄亘", + "canonical_ids": "⿰忄亘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恓", + "codepoint": "U+6053", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6053", + "status": "exact_ids", + "ids": "⿰忄西", + "canonical_ids": "⿰忄西", + "expanded_ids": "⿰忄⿻⿱一儿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恔", + "codepoint": "U+6054", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6054", + "status": "exact_ids", + "ids": "⿰忄交", + "canonical_ids": "⿰忄交", + "expanded_ids": "⿰忄⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "忄", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恕", + "codepoint": "U+6055", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6055", + "status": "exact_ids", + "ids": "⿱如心", + "canonical_ids": "⿱如心", + "expanded_ids": "⿱⿰女口心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恖", + "codepoint": "U+6056", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6056", + "status": "exact_ids", + "ids": "⿱囟心", + "canonical_ids": "⿱囟心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "囟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恗", + "codepoint": "U+6057", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6057", + "status": "exact_ids", + "ids": "⿰忄夸", + "canonical_ids": "⿰忄夸", + "expanded_ids": "⿰忄⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恘", + "codepoint": "U+6058", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6058", + "status": "exact_ids", + "ids": "⿰忄休", + "canonical_ids": "⿰忄休", + "expanded_ids": "⿰忄⿰亻木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "忄", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恙", + "codepoint": "U+6059", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6059", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恚", + "codepoint": "U+605A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-605A", + "status": "exact_ids", + "ids": "⿱圭心", + "canonical_ids": "⿱圭心", + "expanded_ids": "⿱⿱土土心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恛", + "codepoint": "U+605B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-605B", + "status": "exact_ids", + "ids": "⿰忄回", + "canonical_ids": "⿰忄回", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恜", + "codepoint": "U+605C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-605C", + "status": "exact_ids", + "ids": "⿰忄式", + "canonical_ids": "⿰忄式", + "expanded_ids": "⿰忄⿱弋工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "弋", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恝", + "codepoint": "U+605D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-605D", + "status": "exact_ids", + "ids": "⿱㓞心", + "canonical_ids": "⿱㓞心", + "expanded_ids": "⿱⿰丰刀心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恞", + "codepoint": "U+605E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-605E", + "status": "exact_ids", + "ids": "⿰忄夷", + "canonical_ids": "⿰忄夷", + "expanded_ids": "⿰忄⿻大弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "弓", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恟", + "codepoint": "U+605F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-605F", + "status": "exact_ids", + "ids": "⿰忄匈", + "canonical_ids": "⿰忄匈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "匈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恠", + "codepoint": "U+6060", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6060", + "status": "exact_ids", + "ids": "⿰忄在", + "canonical_ids": "⿰忄在", + "expanded_ids": "⿰忄⿱才土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "忄", + "才" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恡", + "codepoint": "U+6061", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6061", + "status": "exact_ids", + "ids": "⿰忄𠫤", + "canonical_ids": "⿰忄𠫤", + "expanded_ids": "⿰忄⿱⿱乂乂厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "厶", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恢", + "codepoint": "U+6062", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6062", + "status": "exact_ids", + "ids": "⿰忄灰", + "canonical_ids": "⿰忄灰", + "expanded_ids": "⿰忄⿱厂火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "忄", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恣", + "codepoint": "U+6063", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6063", + "status": "exact_ids", + "ids": "⿱次心", + "canonical_ids": "⿱次心", + "expanded_ids": "⿱⿰冫欠心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "心", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恤", + "codepoint": "U+6064", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6064", + "status": "exact_ids", + "ids": "⿰忄血", + "canonical_ids": "⿰忄血", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "血" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恥", + "codepoint": "U+6065", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6065", + "status": "exact_ids", + "ids": "⿰耳心", + "canonical_ids": "⿰耳心", + "expanded_ids": "⿰耳心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恦", + "codepoint": "U+6066", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6066", + "status": "exact_ids", + "ids": "⿰忄向", + "canonical_ids": "⿰忄向", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "忄" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恧", + "codepoint": "U+6067", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6067", + "status": "exact_ids", + "ids": "⿱而心", + "canonical_ids": "⿱而心", + "expanded_ids": "⿱而心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恨", + "codepoint": "U+6068", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6068", + "status": "exact_ids", + "ids": "⿰忄艮", + "canonical_ids": "⿰忄艮", + "expanded_ids": "⿰忄艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恩", + "codepoint": "U+6069", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6069", + "status": "exact_ids", + "ids": "⿱因心", + "canonical_ids": "⿱因心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恪", + "codepoint": "U+606A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-606A", + "status": "exact_ids", + "ids": "⿰忄各", + "canonical_ids": "⿰忄各", + "expanded_ids": "⿰忄⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恫", + "codepoint": "U+606B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-606B", + "status": "exact_ids", + "ids": "⿰忄同", + "canonical_ids": "⿰忄同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恬", + "codepoint": "U+606C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-606C", + "status": "exact_ids", + "ids": "⿰忄舌", + "canonical_ids": "⿰忄舌", + "expanded_ids": "⿰忄⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恭", + "codepoint": "U+606D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-606D", + "status": "exact_ids", + "ids": "⿱共㣺", + "canonical_ids": "⿱共㣺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿" + ], + "unresolved_leaves": [ + "㣺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恮", + "codepoint": "U+606E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-606E", + "status": "exact_ids", + "ids": "⿰忄全", + "canonical_ids": "⿰忄全", + "expanded_ids": "⿰忄⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "忄", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "息", + "codepoint": "U+606F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-606F", + "status": "exact_ids", + "ids": "⿱自心", + "canonical_ids": "⿱自心", + "expanded_ids": "⿱⿻目丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "心", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恰", + "codepoint": "U+6070", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6070", + "status": "exact_ids", + "ids": "⿰忄合", + "canonical_ids": "⿰忄合", + "expanded_ids": "⿰忄⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恱", + "codepoint": "U+6071", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6071", + "status": "exact_ids", + "ids": "⿰忄兊", + "canonical_ids": "⿰忄兊", + "expanded_ids": "⿰忄⿱八⿱厶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "厶", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恲", + "codepoint": "U+6072", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6072", + "status": "exact_ids", + "ids": "⿰忄并", + "canonical_ids": "⿰忄并", + "expanded_ids": "⿰忄⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恳", + "codepoint": "U+6073", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6073", + "status": "exact_ids", + "ids": "⿱艮心", + "canonical_ids": "⿱艮心", + "expanded_ids": "⿱艮心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恴", + "codepoint": "U+6074", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6074", + "status": "exact_ids", + "ids": "⿱𣅀心", + "canonical_ids": "⿱𣅀心", + "expanded_ids": "⿱⿱亠日心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "心", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恵", + "codepoint": "U+6075", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6075", + "status": "exact_ids", + "ids": "⿱𤰔心", + "canonical_ids": "⿱𤰔心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恶", + "codepoint": "U+6076", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6076", + "status": "exact_ids", + "ids": "⿱亚心", + "canonical_ids": "⿱亚心", + "expanded_ids": "⿱亚心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亚", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恷", + "codepoint": "U+6077", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6077", + "status": "exact_ids", + "ids": "⿱休心", + "canonical_ids": "⿱休心", + "expanded_ids": "⿱⿰亻木心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恸", + "codepoint": "U+6078", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6078", + "status": "exact_ids", + "ids": "⿰忄动", + "canonical_ids": "⿰忄动", + "expanded_ids": "⿰忄⿰⿱二厶力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "力", + "厶", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恹", + "codepoint": "U+6079", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6079", + "status": "exact_ids", + "ids": "⿰忄厌", + "canonical_ids": "⿰忄厌", + "expanded_ids": "⿰忄⿱厂⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "大", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恺", + "codepoint": "U+607A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-607A", + "status": "exact_ids", + "ids": "⿰忄岂", + "canonical_ids": "⿰忄岂", + "expanded_ids": "⿰忄⿱山己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "己", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恻", + "codepoint": "U+607B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-607B", + "status": "exact_ids", + "ids": "⿰忄则", + "canonical_ids": "⿰忄则", + "expanded_ids": "⿰忄⿰⿻冂人刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "刂", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恼", + "codepoint": "U+607C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-607C", + "status": "exact_ids", + "ids": "⿰忄㐫", + "canonical_ids": "⿰忄㐫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "忄" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恽", + "codepoint": "U+607D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-607D", + "status": "exact_ids", + "ids": "⿰忄军", + "canonical_ids": "⿰忄军", + "expanded_ids": "⿰忄⿱冖车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "忄", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恾", + "codepoint": "U+607E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-607E", + "status": "exact_ids", + "ids": "⿰忄芒", + "canonical_ids": "⿰忄芒", + "expanded_ids": "⿰忄⿱艹⿻亠乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "忄", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "恿", + "codepoint": "U+607F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-607F", + "status": "exact_ids", + "ids": "⿱甬心", + "canonical_ids": "⿱甬心", + "expanded_ids": "⿱⿱龴⿻月丨心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "心", + "月", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悀", + "codepoint": "U+6080", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6080", + "status": "exact_ids", + "ids": "⿰忄甬", + "canonical_ids": "⿰忄甬", + "expanded_ids": "⿰忄⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "忄", + "月", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悁", + "codepoint": "U+6081", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6081", + "status": "exact_ids", + "ids": "⿰忄肙", + "canonical_ids": "⿰忄肙", + "expanded_ids": "⿰忄⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "忄", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悂", + "codepoint": "U+6082", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6082", + "status": "exact_ids", + "ids": "⿰忄坒", + "canonical_ids": "⿰忄坒", + "expanded_ids": "⿰忄⿱⿰匕匕土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "土", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悃", + "codepoint": "U+6083", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6083", + "status": "exact_ids", + "ids": "⿰忄困", + "canonical_ids": "⿰忄困", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "困" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悄", + "codepoint": "U+6084", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6084", + "status": "exact_ids", + "ids": "⿰忄肖", + "canonical_ids": "⿰忄肖", + "expanded_ids": "⿰忄⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "忄", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悅", + "codepoint": "U+6085", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6085", + "status": "exact_ids", + "ids": "⿰忄兌", + "canonical_ids": "⿰忄兌", + "expanded_ids": "⿰忄⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "悦" + ] + }, + { + "character": "悆", + "codepoint": "U+6086", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6086", + "status": "exact_ids", + "ids": "⿱余心", + "canonical_ids": "⿱余心", + "expanded_ids": "⿱⿱⿱人一朩心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "心", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悇", + "codepoint": "U+6087", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6087", + "status": "exact_ids", + "ids": "⿰忄余", + "canonical_ids": "⿰忄余", + "expanded_ids": "⿰忄⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "忄", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悈", + "codepoint": "U+6088", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6088", + "status": "exact_ids", + "ids": "⿰忄戒", + "canonical_ids": "⿰忄戒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "忄" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悉", + "codepoint": "U+6089", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6089", + "status": "exact_ids", + "ids": "⿱釆心", + "canonical_ids": "⿱釆心", + "expanded_ids": "⿱⿱丿⿻木丷心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悊", + "codepoint": "U+608A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-608A", + "status": "exact_ids", + "ids": "⿱折心", + "canonical_ids": "⿱折心", + "expanded_ids": "⿱⿰扌斤心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "扌", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悋", + "codepoint": "U+608B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-608B", + "status": "exact_ids", + "ids": "⿰忄吝", + "canonical_ids": "⿰忄吝", + "expanded_ids": "⿰忄⿱文口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "忄", + "文" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悌", + "codepoint": "U+608C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-608C", + "status": "exact_ids", + "ids": "⿰忄弟", + "canonical_ids": "⿰忄弟", + "expanded_ids": "⿰忄⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悍", + "codepoint": "U+608D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-608D", + "status": "exact_ids", + "ids": "⿰忄旱", + "canonical_ids": "⿰忄旱", + "expanded_ids": "⿰忄⿱日⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "忄", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悎", + "codepoint": "U+608E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-608E", + "status": "exact_ids", + "ids": "⿰忄告", + "canonical_ids": "⿰忄告", + "expanded_ids": "⿰忄⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "忄", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悏", + "codepoint": "U+608F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-608F", + "status": "exact_ids", + "ids": "⿰忄夾", + "canonical_ids": "⿰忄夾", + "expanded_ids": "⿰忄⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悐", + "codepoint": "U+6090", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6090", + "status": "exact_ids", + "ids": "⿱狄心", + "canonical_ids": "⿱狄心", + "expanded_ids": "⿱⿰犭火心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "火", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悑", + "codepoint": "U+6091", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6091", + "status": "exact_ids", + "ids": "⿰忄甫", + "canonical_ids": "⿰忄甫", + "expanded_ids": "⿰忄甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悒", + "codepoint": "U+6092", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6092", + "status": "exact_ids", + "ids": "⿰忄邑", + "canonical_ids": "⿰忄邑", + "expanded_ids": "⿰忄⿱口巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "巴", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悓", + "codepoint": "U+6093", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6093", + "status": "exact_ids", + "ids": "⿰忄見", + "canonical_ids": "⿰忄見", + "expanded_ids": "⿰忄⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "忄", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悔", + "codepoint": "U+6094", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6094", + "status": "exact_ids", + "ids": "⿰忄每", + "canonical_ids": "⿰忄每", + "expanded_ids": "⿰忄⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "忄", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悕", + "codepoint": "U+6095", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6095", + "status": "exact_ids", + "ids": "⿰忄希", + "canonical_ids": "⿰忄希", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "忄" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悖", + "codepoint": "U+6096", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6096", + "status": "exact_ids", + "ids": "⿰忄孛", + "canonical_ids": "⿰忄孛", + "expanded_ids": "⿰忄⿳十冖子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "子", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悗", + "codepoint": "U+6097", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6097", + "status": "exact_ids", + "ids": "⿰忄免", + "canonical_ids": "⿰忄免", + "expanded_ids": "⿰忄免", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "免", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悘", + "codepoint": "U+6098", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6098", + "status": "exact_ids", + "ids": "⿱医心", + "canonical_ids": "⿱医心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "医" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悙", + "codepoint": "U+6099", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6099", + "status": "exact_ids", + "ids": "⿰忄亨", + "canonical_ids": "⿰忄亨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "亨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悚", + "codepoint": "U+609A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-609A", + "status": "exact_ids", + "ids": "⿰忄束", + "canonical_ids": "⿰忄束", + "expanded_ids": "⿰忄⿻木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "忄", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悛", + "codepoint": "U+609B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-609B", + "status": "exact_ids", + "ids": "⿰忄夋", + "canonical_ids": "⿰忄夋", + "expanded_ids": "⿰忄⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悜", + "codepoint": "U+609C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-609C", + "status": "exact_ids", + "ids": "⿰忄呈", + "canonical_ids": "⿰忄呈", + "expanded_ids": "⿰忄⿱口王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "忄", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悝", + "codepoint": "U+609D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-609D", + "status": "exact_ids", + "ids": "⿰忄里", + "canonical_ids": "⿰忄里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悞", + "codepoint": "U+609E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-609E", + "status": "exact_ids", + "ids": "⿰忄吳", + "canonical_ids": "⿰忄吳", + "expanded_ids": "⿰忄⿱口⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "口", + "大", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悟", + "codepoint": "U+609F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-609F", + "status": "exact_ids", + "ids": "⿰忄吾", + "canonical_ids": "⿰忄吾", + "expanded_ids": "⿰忄⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悠", + "codepoint": "U+60A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60A0", + "status": "exact_ids", + "ids": "⿱攸心", + "canonical_ids": "⿱攸心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "攸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悡", + "codepoint": "U+60A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60A1", + "status": "exact_ids", + "ids": "⿱利心", + "canonical_ids": "⿱利心", + "expanded_ids": "⿱⿰⿻丿木刂心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悢", + "codepoint": "U+60A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60A2", + "status": "exact_ids", + "ids": "⿰忄良", + "canonical_ids": "⿰忄良", + "expanded_ids": "⿰忄⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "忄", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "患", + "codepoint": "U+60A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60A3", + "status": "exact_ids", + "ids": "⿱串心", + "canonical_ids": "⿱串心", + "expanded_ids": "⿱⿻⿱口口丨心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悤", + "codepoint": "U+60A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60A4", + "status": "exact_ids", + "ids": "⿱囱心", + "canonical_ids": "⿱囱心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "囱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悥", + "codepoint": "U+60A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60A5", + "status": "exact_ids", + "ids": "⿱言心", + "canonical_ids": "⿱言心", + "expanded_ids": "⿱言心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悦", + "codepoint": "U+60A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60A6", + "status": "exact_ids", + "ids": "⿰忄兌", + "canonical_ids": "⿰忄兌", + "expanded_ids": "⿰忄⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "悅" + ] + }, + { + "character": "悧", + "codepoint": "U+60A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60A7", + "status": "exact_ids", + "ids": "⿰忄利", + "canonical_ids": "⿰忄利", + "expanded_ids": "⿰忄⿰⿻丿木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "忄", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "您", + "codepoint": "U+60A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60A8", + "status": "exact_ids", + "ids": "⿱你心", + "canonical_ids": "⿱你心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "小", + "心" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悩", + "codepoint": "U+60A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60A9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悪", + "codepoint": "U+60AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60AA", + "status": "exact_ids", + "ids": "⿱亜心", + "canonical_ids": "⿱亜心", + "expanded_ids": "⿱亜心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亜", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悫", + "codepoint": "U+60AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60AB", + "status": "exact_ids", + "ids": "⿱壳心", + "canonical_ids": "⿱壳心", + "expanded_ids": "⿱⿳士冖几心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "几", + "士", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悬", + "codepoint": "U+60AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60AC", + "status": "exact_ids", + "ids": "⿱县心", + "canonical_ids": "⿱县心", + "expanded_ids": "⿱⿱且厶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "厶", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悭", + "codepoint": "U+60AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60AD", + "status": "exact_ids", + "ids": "⿰忄坚", + "canonical_ids": "⿰忄坚", + "expanded_ids": "⿰忄⿱⿰⿰丨丨又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "又", + "土", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悮", + "codepoint": "U+60AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60AE", + "status": "exact_ids", + "ids": "⿰忄吴", + "canonical_ids": "⿰忄吴", + "expanded_ids": "⿰忄⿱口⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "大", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悯", + "codepoint": "U+60AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60AF", + "status": "exact_ids", + "ids": "⿰忄闵", + "canonical_ids": "⿰忄闵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "闵" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悰", + "codepoint": "U+60B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60B0", + "status": "exact_ids", + "ids": "⿰忄宗", + "canonical_ids": "⿰忄宗", + "expanded_ids": "⿰忄⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悱", + "codepoint": "U+60B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60B1", + "status": "exact_ids", + "ids": "⿰忄非", + "canonical_ids": "⿰忄非", + "expanded_ids": "⿰忄非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悲", + "codepoint": "U+60B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60B2", + "status": "exact_ids", + "ids": "⿱非心", + "canonical_ids": "⿱非心", + "expanded_ids": "⿱非心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悳", + "codepoint": "U+60B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60B3", + "status": "exact_ids", + "ids": "⿱直心", + "canonical_ids": "⿱直心", + "expanded_ids": "⿱⿱⿱十目乚心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "十", + "心", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "惪" + ] + }, + { + "character": "悴", + "codepoint": "U+60B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60B4", + "status": "exact_ids", + "ids": "⿰忄卒", + "canonical_ids": "⿰忄卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悵", + "codepoint": "U+60B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60B5", + "status": "exact_ids", + "ids": "⿰忄長", + "canonical_ids": "⿰忄長", + "expanded_ids": "⿰忄長", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "長" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悶", + "codepoint": "U+60B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60B6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悷", + "codepoint": "U+60B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60B7", + "status": "exact_ids", + "ids": "⿰忄戾", + "canonical_ids": "⿰忄戾", + "expanded_ids": "⿰忄⿱⿻丿尸⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "大", + "尸", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悸", + "codepoint": "U+60B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60B8", + "status": "exact_ids", + "ids": "⿰忄季", + "canonical_ids": "⿰忄季", + "expanded_ids": "⿰忄⿱⿻丿木子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "子", + "忄", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悹", + "codepoint": "U+60B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60B9", + "status": "exact_ids", + "ids": "⿱官心", + "canonical_ids": "⿱官心", + "expanded_ids": "⿱⿱宀㠯心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "宀", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悺", + "codepoint": "U+60BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60BA", + "status": "exact_ids", + "ids": "⿰忄官", + "canonical_ids": "⿰忄官", + "expanded_ids": "⿰忄⿱宀㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "宀", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悻", + "codepoint": "U+60BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60BB", + "status": "exact_ids", + "ids": "⿰忄幸", + "canonical_ids": "⿰忄幸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "忄" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悼", + "codepoint": "U+60BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60BC", + "status": "exact_ids", + "ids": "⿰忄卓", + "canonical_ids": "⿰忄卓", + "expanded_ids": "⿰忄⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "忄", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悽", + "codepoint": "U+60BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60BD", + "status": "exact_ids", + "ids": "⿰忄妻", + "canonical_ids": "⿰忄妻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "妻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悾", + "codepoint": "U+60BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60BE", + "status": "exact_ids", + "ids": "⿰忄空", + "canonical_ids": "⿰忄空", + "expanded_ids": "⿰忄⿱⿱宀八工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "工", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "悿", + "codepoint": "U+60BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60BF", + "status": "exact_ids", + "ids": "⿰忄忝", + "canonical_ids": "⿰忄忝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "忄" + ], + "unresolved_leaves": [ + "㣺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惀", + "codepoint": "U+60C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60C0", + "status": "exact_ids", + "ids": "⿰忄侖", + "canonical_ids": "⿰忄侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "忄" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惁", + "codepoint": "U+60C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60C1", + "status": "exact_ids", + "ids": "⿱析心", + "canonical_ids": "⿱析心", + "expanded_ids": "⿱⿰木斤心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "斤", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惂", + "codepoint": "U+60C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60C2", + "status": "exact_ids", + "ids": "⿰忄臽", + "canonical_ids": "⿰忄臽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "臼" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惃", + "codepoint": "U+60C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60C3", + "status": "exact_ids", + "ids": "⿰忄昆", + "canonical_ids": "⿰忄昆", + "expanded_ids": "⿰忄⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "忄", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惄", + "codepoint": "U+60C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60C4", + "status": "exact_ids", + "ids": "⿱叔心", + "canonical_ids": "⿱叔心", + "expanded_ids": "⿱⿰⿱上小又心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "又", + "小", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "情", + "codepoint": "U+60C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60C5", + "status": "exact_ids", + "ids": "⿰忄青", + "canonical_ids": "⿰忄青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "月" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惆", + "codepoint": "U+60C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60C6", + "status": "exact_ids", + "ids": "⿰忄周", + "canonical_ids": "⿰忄周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惇", + "codepoint": "U+60C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60C7", + "status": "exact_ids", + "ids": "⿰忄享", + "canonical_ids": "⿰忄享", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惈", + "codepoint": "U+60C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60C8", + "status": "exact_ids", + "ids": "⿰忄果", + "canonical_ids": "⿰忄果", + "expanded_ids": "⿰忄⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惉", + "codepoint": "U+60C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60C9", + "status": "exact_ids", + "ids": "⿱沾心", + "canonical_ids": "⿱沾心", + "expanded_ids": "⿱⿰氵⿱卜口心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "心", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惊", + "codepoint": "U+60CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60CA", + "status": "exact_ids", + "ids": "⿰忄京", + "canonical_ids": "⿰忄京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惋", + "codepoint": "U+60CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60CB", + "status": "exact_ids", + "ids": "⿰忄宛", + "canonical_ids": "⿰忄宛", + "expanded_ids": "⿰忄⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惌", + "codepoint": "U+60CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60CC", + "status": "exact_ids", + "ids": "⿱宀怨", + "canonical_ids": "⿱宀怨", + "expanded_ids": "⿱宀⿱⿰夕㔾心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惍", + "codepoint": "U+60CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60CD", + "status": "exact_ids", + "ids": "⿰忄金", + "canonical_ids": "⿰忄金", + "expanded_ids": "⿰忄金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惎", + "codepoint": "U+60CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60CE", + "status": "exact_ids", + "ids": "⿱其心", + "canonical_ids": "⿱其心", + "expanded_ids": "⿱其心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惏", + "codepoint": "U+60CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60CF", + "status": "exact_ids", + "ids": "⿰忄林", + "canonical_ids": "⿰忄林", + "expanded_ids": "⿰忄⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惐", + "codepoint": "U+60D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60D0", + "status": "exact_ids", + "ids": "⿰忄或", + "canonical_ids": "⿰忄或", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "或" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惑", + "codepoint": "U+60D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60D1", + "status": "exact_ids", + "ids": "⿱或心", + "canonical_ids": "⿱或心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "或" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惒", + "codepoint": "U+60D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60D2", + "status": "exact_ids", + "ids": "⿱和心", + "canonical_ids": "⿱和心", + "expanded_ids": "⿱⿰⿻丿木口心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惓", + "codepoint": "U+60D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60D3", + "status": "exact_ids", + "ids": "⿰忄卷", + "canonical_ids": "⿰忄卷", + "expanded_ids": "⿰忄⿱龹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "忄", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惔", + "codepoint": "U+60D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60D4", + "status": "exact_ids", + "ids": "⿰忄炎", + "canonical_ids": "⿰忄炎", + "expanded_ids": "⿰忄⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惕", + "codepoint": "U+60D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60D5", + "status": "exact_ids", + "ids": "⿰忄易", + "canonical_ids": "⿰忄易", + "expanded_ids": "⿰忄⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "忄", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惖", + "codepoint": "U+60D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60D6", + "status": "exact_ids", + "ids": "⿱易心", + "canonical_ids": "⿱易心", + "expanded_ids": "⿱⿱日勿心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "心", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惗", + "codepoint": "U+60D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60D7", + "status": "exact_ids", + "ids": "⿰忄念", + "canonical_ids": "⿰忄念", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "心", + "忄" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惘", + "codepoint": "U+60D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60D8", + "status": "exact_ids", + "ids": "⿰忄罔", + "canonical_ids": "⿰忄罔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "罔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惙", + "codepoint": "U+60D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60D9", + "status": "exact_ids", + "ids": "⿰忄叕", + "canonical_ids": "⿰忄叕", + "expanded_ids": "⿰忄⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惚", + "codepoint": "U+60DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60DA", + "status": "exact_ids", + "ids": "⿰忄忽", + "canonical_ids": "⿰忄忽", + "expanded_ids": "⿰忄⿱勿心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "心", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惛", + "codepoint": "U+60DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60DB", + "status": "exact_ids", + "ids": "⿰忄昏", + "canonical_ids": "⿰忄昏", + "expanded_ids": "⿰忄⿱氏日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "日", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惜", + "codepoint": "U+60DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60DC", + "status": "exact_ids", + "ids": "⿰忄昔", + "canonical_ids": "⿰忄昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "日" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惝", + "codepoint": "U+60DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60DD", + "status": "exact_ids", + "ids": "⿰忄尚", + "canonical_ids": "⿰忄尚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "忄" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惞", + "codepoint": "U+60DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60DE", + "status": "exact_ids", + "ids": "⿰忄欣", + "canonical_ids": "⿰忄欣", + "expanded_ids": "⿰忄⿰斤欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "斤", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惟", + "codepoint": "U+60DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60DF", + "status": "exact_ids", + "ids": "⿰忄隹", + "canonical_ids": "⿰忄隹", + "expanded_ids": "⿰忄隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惠", + "codepoint": "U+60E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60E0", + "status": "exact_ids", + "ids": "⿱叀心", + "canonical_ids": "⿱叀心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "心" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惡", + "codepoint": "U+60E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60E1", + "status": "exact_ids", + "ids": "⿱亞心", + "canonical_ids": "⿱亞心", + "expanded_ids": "⿱亞心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亞", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惢", + "codepoint": "U+60E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60E2", + "status": "exact_ids", + "ids": "⿱心⿰心心", + "canonical_ids": "⿱心⿰心心", + "expanded_ids": "⿱心⿰心心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惣", + "codepoint": "U+60E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60E3", + "status": "exact_ids", + "ids": "⿱物心", + "canonical_ids": "⿱物心", + "expanded_ids": "⿱⿰牜勿心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "心", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惤", + "codepoint": "U+60E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60E4", + "status": "exact_ids", + "ids": "⿰忄弦", + "canonical_ids": "⿰忄弦", + "expanded_ids": "⿰忄⿰弓⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "弓", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惥", + "codepoint": "U+60E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60E5", + "status": "exact_ids", + "ids": "⿱臾心", + "canonical_ids": "⿱臾心", + "expanded_ids": "⿱⿻人臼心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "心", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惦", + "codepoint": "U+60E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60E6", + "status": "exact_ids", + "ids": "⿰忄店", + "canonical_ids": "⿰忄店", + "expanded_ids": "⿰忄⿱广⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "广", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惧", + "codepoint": "U+60E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60E7", + "status": "exact_ids", + "ids": "⿰忄具", + "canonical_ids": "⿰忄具", + "expanded_ids": "⿰忄⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "忄", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惨", + "codepoint": "U+60E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60E8", + "status": "exact_ids", + "ids": "⿰忄参", + "canonical_ids": "⿰忄参", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "参" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惩", + "codepoint": "U+60E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60E9", + "status": "exact_ids", + "ids": "⿱征心", + "canonical_ids": "⿱征心", + "expanded_ids": "⿱⿰彳⿱一止心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "彳", + "心", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惪", + "codepoint": "U+60EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60EA", + "status": "exact_ids", + "ids": "⿱直心", + "canonical_ids": "⿱直心", + "expanded_ids": "⿱⿱⿱十目乚心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "十", + "心", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "悳" + ] + }, + { + "character": "惫", + "codepoint": "U+60EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60EB", + "status": "exact_ids", + "ids": "⿱备心", + "canonical_ids": "⿱备心", + "expanded_ids": "⿱⿱夂田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夂", + "心", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惬", + "codepoint": "U+60EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60EC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惭", + "codepoint": "U+60ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60ED", + "status": "exact_ids", + "ids": "⿰忄斩", + "canonical_ids": "⿰忄斩", + "expanded_ids": "⿰忄⿰车斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "斤", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惮", + "codepoint": "U+60EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60EE", + "status": "exact_ids", + "ids": "⿰忄单", + "canonical_ids": "⿰忄单", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "单" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惯", + "codepoint": "U+60EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60EF", + "status": "exact_ids", + "ids": "⿰忄贯", + "canonical_ids": "⿰忄贯", + "expanded_ids": "⿰忄⿱毌⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "忄", + "毌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惰", + "codepoint": "U+60F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60F0", + "status": "exact_ids", + "ids": "⿰忄𤯝", + "canonical_ids": "⿰忄𤯝", + "expanded_ids": "⿰忄⿱⿱牛一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "忄", + "月", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惱", + "codepoint": "U+60F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60F1", + "status": "exact_ids", + "ids": "⿰忄𡿺", + "canonical_ids": "⿰忄𡿺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "忄" + ], + "unresolved_leaves": [ + "囟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惲", + "codepoint": "U+60F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60F2", + "status": "exact_ids", + "ids": "⿰忄軍", + "canonical_ids": "⿰忄軍", + "expanded_ids": "⿰忄⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "忄", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "想", + "codepoint": "U+60F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60F3", + "status": "exact_ids", + "ids": "⿱相心", + "canonical_ids": "⿱相心", + "expanded_ids": "⿱⿰木目心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惴", + "codepoint": "U+60F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60F4", + "status": "exact_ids", + "ids": "⿰忄耑", + "canonical_ids": "⿰忄耑", + "expanded_ids": "⿰忄⿱山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "忄", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惵", + "codepoint": "U+60F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60F5", + "status": "exact_ids", + "ids": "⿰忄枼", + "canonical_ids": "⿰忄枼", + "expanded_ids": "⿰忄⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "忄", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惶", + "codepoint": "U+60F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60F6", + "status": "exact_ids", + "ids": "⿰忄皇", + "canonical_ids": "⿰忄皇", + "expanded_ids": "⿰忄⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "忄", + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惷", + "codepoint": "U+60F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60F7", + "status": "exact_ids", + "ids": "⿱春心", + "canonical_ids": "⿱春心", + "expanded_ids": "⿱⿱𡗗日心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "日", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惸", + "codepoint": "U+60F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60F8", + "status": "exact_ids", + "ids": "⿰忄㝁", + "canonical_ids": "⿰忄㝁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "忄" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惹", + "codepoint": "U+60F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60F9", + "status": "exact_ids", + "ids": "⿱若心", + "canonical_ids": "⿱若心", + "expanded_ids": "⿱⿱艹⿱⿻丿一口心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "心", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惺", + "codepoint": "U+60FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60FA", + "status": "exact_ids", + "ids": "⿰忄星", + "canonical_ids": "⿰忄星", + "expanded_ids": "⿰忄⿱日⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "忄", + "日", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惻", + "codepoint": "U+60FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60FB", + "status": "exact_ids", + "ids": "⿰忄則", + "canonical_ids": "⿰忄則", + "expanded_ids": "⿰忄⿰⿱目八刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刂", + "忄", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惼", + "codepoint": "U+60FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60FC", + "status": "exact_ids", + "ids": "⿰忄扁", + "canonical_ids": "⿰忄扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "忄" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惽", + "codepoint": "U+60FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60FD", + "status": "exact_ids", + "ids": "⿰忄昬", + "canonical_ids": "⿰忄昬", + "expanded_ids": "⿰忄⿱民日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "日", + "民" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惾", + "codepoint": "U+60FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60FE", + "status": "exact_ids", + "ids": "⿰忄㚇", + "canonical_ids": "⿰忄㚇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "夊", + "忄" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "惿", + "codepoint": "U+60FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-60FF", + "status": "exact_ids", + "ids": "⿰忄是", + "canonical_ids": "⿰忄是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "日" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愀", + "codepoint": "U+6100", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6100", + "status": "exact_ids", + "ids": "⿰忄秋", + "canonical_ids": "⿰忄秋", + "expanded_ids": "⿰忄⿰⿻丿木火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "忄", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愁", + "codepoint": "U+6101", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6101", + "status": "exact_ids", + "ids": "⿱秋心", + "canonical_ids": "⿱秋心", + "expanded_ids": "⿱⿰⿻丿木火心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愂", + "codepoint": "U+6102", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6102", + "status": "exact_ids", + "ids": "⿱勃心", + "canonical_ids": "⿱勃心", + "expanded_ids": "⿱⿰⿳十冖子力心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "十", + "子", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愃", + "codepoint": "U+6103", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6103", + "status": "exact_ids", + "ids": "⿰忄宣", + "canonical_ids": "⿰忄宣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "忄" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愄", + "codepoint": "U+6104", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6104", + "status": "exact_ids", + "ids": "⿰忄畏", + "canonical_ids": "⿰忄畏", + "expanded_ids": "⿰忄⿱田氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "氏", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愅", + "codepoint": "U+6105", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6105", + "status": "exact_ids", + "ids": "⿰忄革", + "canonical_ids": "⿰忄革", + "expanded_ids": "⿰忄革", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愆", + "codepoint": "U+6106", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6106", + "status": "exact_ids", + "ids": "⿱衍心", + "canonical_ids": "⿱衍心", + "expanded_ids": "⿱⿲彳氵彳心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "心", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愇", + "codepoint": "U+6107", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6107", + "status": "exact_ids", + "ids": "⿰忄韋", + "canonical_ids": "⿰忄韋", + "expanded_ids": "⿰忄韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愈", + "codepoint": "U+6108", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6108", + "status": "exact_ids", + "ids": "⿱俞心", + "canonical_ids": "⿱俞心", + "expanded_ids": "⿱⿱⿱人一⿰月刂心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "心", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愉", + "codepoint": "U+6109", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6109", + "status": "exact_ids", + "ids": "⿰忄俞", + "canonical_ids": "⿰忄俞", + "expanded_ids": "⿰忄⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "忄", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愊", + "codepoint": "U+610A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-610A", + "status": "exact_ids", + "ids": "⿰忄畐", + "canonical_ids": "⿰忄畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愋", + "codepoint": "U+610B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-610B", + "status": "exact_ids", + "ids": "⿰忄爰", + "canonical_ids": "⿰忄爰", + "expanded_ids": "⿰忄⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "忄", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愌", + "codepoint": "U+610C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-610C", + "status": "exact_ids", + "ids": "⿰忄奐", + "canonical_ids": "⿰忄奐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "奐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愍", + "codepoint": "U+610D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-610D", + "status": "exact_ids", + "ids": "⿱敃心", + "canonical_ids": "⿱敃心", + "expanded_ids": "⿱⿰民攵心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "攵", + "民" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愎", + "codepoint": "U+610E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-610E", + "status": "exact_ids", + "ids": "⿰忄复", + "canonical_ids": "⿰忄复", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "复" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "意", + "codepoint": "U+610F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-610F", + "status": "exact_ids", + "ids": "⿱音心", + "canonical_ids": "⿱音心", + "expanded_ids": "⿱⿱立日心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愐", + "codepoint": "U+6110", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6110", + "status": "exact_ids", + "ids": "⿰忄面", + "canonical_ids": "⿰忄面", + "expanded_ids": "⿰忄面", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "面" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愑", + "codepoint": "U+6111", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6111", + "status": "exact_ids", + "ids": "⿰忄勇", + "canonical_ids": "⿰忄勇", + "expanded_ids": "⿰忄⿱⿱龴⿻月丨力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "力", + "忄", + "月", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愒", + "codepoint": "U+6112", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6112", + "status": "exact_ids", + "ids": "⿰忄曷", + "canonical_ids": "⿰忄曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "曰" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愓", + "codepoint": "U+6113", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6113", + "status": "exact_ids", + "ids": "⿰忄昜", + "canonical_ids": "⿰忄昜", + "expanded_ids": "⿰忄⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "忄", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愔", + "codepoint": "U+6114", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6114", + "status": "exact_ids", + "ids": "⿰忄音", + "canonical_ids": "⿰忄音", + "expanded_ids": "⿰忄⿱立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愕", + "codepoint": "U+6115", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6115", + "status": "exact_ids", + "ids": "⿰忄咢", + "canonical_ids": "⿰忄咢", + "expanded_ids": "⿰忄⿱⿰口口⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "口", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愖", + "codepoint": "U+6116", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6116", + "status": "exact_ids", + "ids": "⿰忄甚", + "canonical_ids": "⿰忄甚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "甘" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愗", + "codepoint": "U+6117", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6117", + "status": "exact_ids", + "ids": "⿱敄心", + "canonical_ids": "⿱敄心", + "expanded_ids": "⿱⿰矛攵心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "攵", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愘", + "codepoint": "U+6118", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6118", + "status": "exact_ids", + "ids": "⿰忄客", + "canonical_ids": "⿰忄客", + "expanded_ids": "⿰忄⿱宀⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "宀", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愙", + "codepoint": "U+6119", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6119", + "status": "exact_ids", + "ids": "⿱客心", + "canonical_ids": "⿱客心", + "expanded_ids": "⿱⿱宀⿱夂口心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "宀", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愚", + "codepoint": "U+611A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-611A", + "status": "exact_ids", + "ids": "⿱禺心", + "canonical_ids": "⿱禺心", + "expanded_ids": "⿱⿻田禸心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "田", + "禸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愛", + "codepoint": "U+611B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-611B", + "status": "exact_ids", + "ids": "⿳爫冖𢖻", + "canonical_ids": "⿳爫冖𢖻", + "expanded_ids": "⿳爫冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "夊", + "心", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愜", + "codepoint": "U+611C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-611C", + "status": "exact_ids", + "ids": "⿰忄匧", + "canonical_ids": "⿰忄匧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "匧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愝", + "codepoint": "U+611D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-611D", + "status": "exact_ids", + "ids": "⿰忄匽", + "canonical_ids": "⿰忄匽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "匽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愞", + "codepoint": "U+611E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-611E", + "status": "exact_ids", + "ids": "⿰忄耎", + "canonical_ids": "⿰忄耎", + "expanded_ids": "⿰忄⿱而大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "忄", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "感", + "codepoint": "U+611F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-611F", + "status": "exact_ids", + "ids": "⿱咸心", + "canonical_ids": "⿱咸心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愠", + "codepoint": "U+6120", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6120", + "status": "exact_ids", + "ids": "⿰忄昷", + "canonical_ids": "⿰忄昷", + "expanded_ids": "⿰忄⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "日", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愡", + "codepoint": "U+6121", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6121", + "status": "exact_ids", + "ids": "⿰忄怱", + "canonical_ids": "⿰忄怱", + "expanded_ids": "⿰忄⿱⿻勿丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "勿", + "心", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愢", + "codepoint": "U+6122", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6122", + "status": "exact_ids", + "ids": "⿰忄思", + "canonical_ids": "⿰忄思", + "expanded_ids": "⿰忄⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "忄", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愣", + "codepoint": "U+6123", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6123", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愤", + "codepoint": "U+6124", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6124", + "status": "exact_ids", + "ids": "⿰忄贲", + "canonical_ids": "⿰忄贲", + "expanded_ids": "⿰忄⿱⿱十廾⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "十", + "廾", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愥", + "codepoint": "U+6125", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6125", + "status": "exact_ids", + "ids": "⿰忄英", + "canonical_ids": "⿰忄英", + "expanded_ids": "⿰忄⿱艹⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "忄", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愦", + "codepoint": "U+6126", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6126", + "status": "exact_ids", + "ids": "⿰忄贵", + "canonical_ids": "⿰忄贵", + "expanded_ids": "⿰忄⿱⿱⿻口丨一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "人", + "冂", + "口", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愧", + "codepoint": "U+6127", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6127", + "status": "exact_ids", + "ids": "⿰忄鬼", + "canonical_ids": "⿰忄鬼", + "expanded_ids": "⿰忄鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愨", + "codepoint": "U+6128", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6128", + "status": "exact_ids", + "ids": "⿱𣪊心", + "canonical_ids": "⿱𣪊心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "𣪊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愩", + "codepoint": "U+6129", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6129", + "status": "exact_ids", + "ids": "⿰忄貢", + "canonical_ids": "⿰忄貢", + "expanded_ids": "⿰忄⿱工⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "工", + "忄", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愪", + "codepoint": "U+612A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-612A", + "status": "exact_ids", + "ids": "⿰忄員", + "canonical_ids": "⿰忄員", + "expanded_ids": "⿰忄⿱口⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "忄", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愫", + "codepoint": "U+612B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-612B", + "status": "exact_ids", + "ids": "⿰忄素", + "canonical_ids": "⿰忄素", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "忄" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愬", + "codepoint": "U+612C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-612C", + "status": "exact_ids", + "ids": "⿱朔心", + "canonical_ids": "⿱朔心", + "expanded_ids": "⿱⿰⿱䒑屮月心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "屮", + "心", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愭", + "codepoint": "U+612D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-612D", + "status": "exact_ids", + "ids": "⿰忄耆", + "canonical_ids": "⿰忄耆", + "expanded_ids": "⿰忄⿱⿱⿻土丿匕日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "忄", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愮", + "codepoint": "U+612E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-612E", + "status": "exact_ids", + "ids": "⿰忄䍃", + "canonical_ids": "⿰忄䍃", + "expanded_ids": "⿰忄⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "爪", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愯", + "codepoint": "U+612F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-612F", + "status": "exact_ids", + "ids": "⿰忄隻", + "canonical_ids": "⿰忄隻", + "expanded_ids": "⿰忄⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "忄", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愰", + "codepoint": "U+6130", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6130", + "status": "exact_ids", + "ids": "⿰忄晃", + "canonical_ids": "⿰忄晃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "忄", + "日" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愱", + "codepoint": "U+6131", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6131", + "status": "exact_ids", + "ids": "⿰忄疾", + "canonical_ids": "⿰忄疾", + "expanded_ids": "⿰忄⿱⿰冫广⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "冫", + "大", + "广", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愲", + "codepoint": "U+6132", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6132", + "status": "exact_ids", + "ids": "⿰忄骨", + "canonical_ids": "⿰忄骨", + "expanded_ids": "⿰忄⿱冎月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "忄", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愳", + "codepoint": "U+6133", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6133", + "status": "exact_ids", + "ids": "⿱⿰目目心", + "canonical_ids": "⿱⿰目目心", + "expanded_ids": "⿱⿰目目心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愴", + "codepoint": "U+6134", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6134", + "status": "exact_ids", + "ids": "⿰忄倉", + "canonical_ids": "⿰忄倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愵", + "codepoint": "U+6135", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6135", + "status": "exact_ids", + "ids": "⿰忄弱", + "canonical_ids": "⿰忄弱", + "expanded_ids": "⿰忄⿰⿱弓二⿱弓二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "弓", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愶", + "codepoint": "U+6136", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6136", + "status": "exact_ids", + "ids": "⿰忄脅", + "canonical_ids": "⿰忄脅", + "expanded_ids": "⿰忄⿱⿱力⿰力力月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "忄", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愷", + "codepoint": "U+6137", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6137", + "status": "exact_ids", + "ids": "⿰忄豈", + "canonical_ids": "⿰忄豈", + "expanded_ids": "⿰忄⿱山豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "忄", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愸", + "codepoint": "U+6138", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6138", + "status": "exact_ids", + "ids": "⿱勑心", + "canonical_ids": "⿱勑心", + "expanded_ids": "⿱⿰⿻木⿰人人力心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "力", + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愹", + "codepoint": "U+6139", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6139", + "status": "exact_ids", + "ids": "⿰忄容", + "canonical_ids": "⿰忄容", + "expanded_ids": "⿰忄⿱宀⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愺", + "codepoint": "U+613A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-613A", + "status": "exact_ids", + "ids": "⿰忄草", + "canonical_ids": "⿰忄草", + "expanded_ids": "⿰忄⿱艹⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "忄", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愻", + "codepoint": "U+613B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-613B", + "status": "exact_ids", + "ids": "⿱孫心", + "canonical_ids": "⿱孫心", + "expanded_ids": "⿱⿰子⿱丿⿱幺小心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "子", + "小", + "幺", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愼", + "codepoint": "U+613C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-613C", + "status": "exact_ids", + "ids": "⿰忄眞", + "canonical_ids": "⿰忄眞", + "expanded_ids": "⿰忄⿻匕⿱⿱一儿目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "匕", + "忄", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愽", + "codepoint": "U+613D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-613D", + "status": "exact_ids", + "ids": "⿰忄尃", + "canonical_ids": "⿰忄尃", + "expanded_ids": "⿰忄⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "忄", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愾", + "codepoint": "U+613E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-613E", + "status": "exact_ids", + "ids": "⿰忄氣", + "canonical_ids": "⿰忄氣", + "expanded_ids": "⿰忄⿱气⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "忄", + "木", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "愿", + "codepoint": "U+613F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-613F", + "status": "exact_ids", + "ids": "⿱原心", + "canonical_ids": "⿱原心", + "expanded_ids": "⿱⿱厂⿱⿻日丶小心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "小", + "心", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慀", + "codepoint": "U+6140", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6140", + "status": "exact_ids", + "ids": "⿰忄奚", + "canonical_ids": "⿰忄奚", + "expanded_ids": "⿰忄⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "幺", + "忄", + "爪" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慁", + "codepoint": "U+6141", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6141", + "status": "exact_ids", + "ids": "⿱圂心", + "canonical_ids": "⿱圂心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "圂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慂", + "codepoint": "U+6142", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6142", + "status": "exact_ids", + "ids": "⿱涌心", + "canonical_ids": "⿱涌心", + "expanded_ids": "⿱⿰氵⿱龴⿻月丨心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "心", + "月", + "氵", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慃", + "codepoint": "U+6143", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6143", + "status": "exact_ids", + "ids": "⿰忄翁", + "canonical_ids": "⿰忄翁", + "expanded_ids": "⿰忄⿱⿱八厶⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "八", + "厶", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慄", + "codepoint": "U+6144", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6144", + "status": "exact_ids", + "ids": "⿰忄栗", + "canonical_ids": "⿰忄栗", + "expanded_ids": "⿰忄⿱覀木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "木", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慅", + "codepoint": "U+6145", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6145", + "status": "exact_ids", + "ids": "⿰忄蚤", + "canonical_ids": "⿰忄蚤", + "expanded_ids": "⿰忄⿱⿻又丶虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "又", + "忄", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慆", + "codepoint": "U+6146", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6146", + "status": "exact_ids", + "ids": "⿰忄舀", + "canonical_ids": "⿰忄舀", + "expanded_ids": "⿰忄⿱爫臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "爫", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慇", + "codepoint": "U+6147", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6147", + "status": "exact_ids", + "ids": "⿱殷心", + "canonical_ids": "⿱殷心", + "expanded_ids": "⿱⿰㐆⿱几又心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㐆", + "几", + "又", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慈", + "codepoint": "U+6148", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6148", + "status": "exact_ids", + "ids": "⿱兹心", + "canonical_ids": "⿱兹心", + "expanded_ids": "⿱⿱䒑⿰幺幺心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "幺", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慉", + "codepoint": "U+6149", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6149", + "status": "exact_ids", + "ids": "⿰忄畜", + "canonical_ids": "⿰忄畜", + "expanded_ids": "⿰忄⿱⿱亠幺田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "忄", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慊", + "codepoint": "U+614A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-614A", + "status": "exact_ids", + "ids": "⿰忄兼", + "canonical_ids": "⿰忄兼", + "expanded_ids": "⿰忄兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "態", + "codepoint": "U+614B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-614B", + "status": "exact_ids", + "ids": "⿱能心", + "canonical_ids": "⿱能心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "能" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慌", + "codepoint": "U+614C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-614C", + "status": "exact_ids", + "ids": "⿰忄荒", + "canonical_ids": "⿰忄荒", + "expanded_ids": "⿰忄⿱艹⿱⿻亠乚川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "川", + "忄", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慍", + "codepoint": "U+614D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-614D", + "status": "exact_ids", + "ids": "⿰忄𥁕", + "canonical_ids": "⿰忄𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "皿" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慎", + "codepoint": "U+614E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-614E", + "status": "exact_ids", + "ids": "⿰忄真", + "canonical_ids": "⿰忄真", + "expanded_ids": "⿰忄⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "忄", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慏", + "codepoint": "U+614F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-614F", + "status": "exact_ids", + "ids": "⿰忄冥", + "canonical_ids": "⿰忄冥", + "expanded_ids": "⿰忄⿱冖⿱日⿱亠八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "忄", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慐", + "codepoint": "U+6150", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6150", + "status": "exact_ids", + "ids": "⿱貢心", + "canonical_ids": "⿱貢心", + "expanded_ids": "⿱⿱工⿱目八心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "工", + "心", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慑", + "codepoint": "U+6151", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6151", + "status": "exact_ids", + "ids": "⿰忄聂", + "canonical_ids": "⿰忄聂", + "expanded_ids": "⿰忄⿱耳⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "忄", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慒", + "codepoint": "U+6152", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6152", + "status": "exact_ids", + "ids": "⿰忄曹", + "canonical_ids": "⿰忄曹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "曹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慓", + "codepoint": "U+6153", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6153", + "status": "exact_ids", + "ids": "⿰忄票", + "canonical_ids": "⿰忄票", + "expanded_ids": "⿰忄⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "忄", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慔", + "codepoint": "U+6154", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6154", + "status": "exact_ids", + "ids": "⿰忄莫", + "canonical_ids": "⿰忄莫", + "expanded_ids": "⿰忄⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "忄", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慕", + "codepoint": "U+6155", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6155", + "status": "exact_ids", + "ids": "⿱莫㣺", + "canonical_ids": "⿱莫㣺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "艹" + ], + "unresolved_leaves": [ + "㣺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慖", + "codepoint": "U+6156", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6156", + "status": "exact_ids", + "ids": "⿰忄國", + "canonical_ids": "⿰忄國", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "國" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慗", + "codepoint": "U+6157", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6157", + "status": "exact_ids", + "ids": "⿱敕心", + "canonical_ids": "⿱敕心", + "expanded_ids": "⿱⿰⿻木口攵心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "心", + "攵", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慘", + "codepoint": "U+6158", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6158", + "status": "exact_ids", + "ids": "⿰忄參", + "canonical_ids": "⿰忄參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慙", + "codepoint": "U+6159", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6159", + "status": "exact_ids", + "ids": "⿱斬心", + "canonical_ids": "⿱斬心", + "expanded_ids": "⿱⿰車斤心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "斤", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慚", + "codepoint": "U+615A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-615A", + "status": "exact_ids", + "ids": "⿰忄斬", + "canonical_ids": "⿰忄斬", + "expanded_ids": "⿰忄⿰車斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "斤", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慛", + "codepoint": "U+615B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-615B", + "status": "exact_ids", + "ids": "⿰忄崔", + "canonical_ids": "⿰忄崔", + "expanded_ids": "⿰忄⿱山隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "忄", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慜", + "codepoint": "U+615C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-615C", + "status": "exact_ids", + "ids": "⿱敏心", + "canonical_ids": "⿱敏心", + "expanded_ids": "⿱⿰⿱⿻丿一母攵心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "心", + "攵", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慝", + "codepoint": "U+615D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-615D", + "status": "exact_ids", + "ids": "⿱匿心", + "canonical_ids": "⿱匿心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "匿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慞", + "codepoint": "U+615E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-615E", + "status": "exact_ids", + "ids": "⿰忄章", + "canonical_ids": "⿰忄章", + "expanded_ids": "⿰忄⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "忄", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慟", + "codepoint": "U+615F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-615F", + "status": "exact_ids", + "ids": "⿰忄動", + "canonical_ids": "⿰忄動", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "力", + "十", + "忄" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慠", + "codepoint": "U+6160", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6160", + "status": "exact_ids", + "ids": "⿰忄敖", + "canonical_ids": "⿰忄敖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慡", + "codepoint": "U+6161", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6161", + "status": "exact_ids", + "ids": "⿰忄爽", + "canonical_ids": "⿰忄爽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "忄" + ], + "unresolved_leaves": [ + "㸚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慢", + "codepoint": "U+6162", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6162", + "status": "exact_ids", + "ids": "⿰忄曼", + "canonical_ids": "⿰忄曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慣", + "codepoint": "U+6163", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6163", + "status": "exact_ids", + "ids": "⿰忄貫", + "canonical_ids": "⿰忄貫", + "expanded_ids": "⿰忄⿱毌⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "忄", + "毌", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慤", + "codepoint": "U+6164", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6164", + "status": "exact_ids", + "ids": "⿱殼心", + "canonical_ids": "⿱殼心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "殼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慥", + "codepoint": "U+6165", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6165", + "status": "exact_ids", + "ids": "⿰忄造", + "canonical_ids": "⿰忄造", + "expanded_ids": "⿰忄⿰辶⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "忄", + "牛", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慦", + "codepoint": "U+6166", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6166", + "status": "exact_ids", + "ids": "⿱救心", + "canonical_ids": "⿱救心", + "expanded_ids": "⿱⿰求攵心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "攵", + "求" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慧", + "codepoint": "U+6167", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6167", + "status": "exact_ids", + "ids": "⿱彗心", + "canonical_ids": "⿱彗心", + "expanded_ids": "⿱⿱⿰丰丰彐心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "彐", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慨", + "codepoint": "U+6168", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6168", + "status": "exact_ids", + "ids": "⿰忄既", + "canonical_ids": "⿰忄既", + "expanded_ids": "⿰忄⿰艮旡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "旡", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慩", + "codepoint": "U+6169", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6169", + "status": "exact_ids", + "ids": "⿰忄連", + "canonical_ids": "⿰忄連", + "expanded_ids": "⿰忄⿰辶車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "車", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慪", + "codepoint": "U+616A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-616A", + "status": "exact_ids", + "ids": "⿰忄區", + "canonical_ids": "⿰忄區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慫", + "codepoint": "U+616B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-616B", + "status": "exact_ids", + "ids": "⿱從心", + "canonical_ids": "⿱從心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "從" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慬", + "codepoint": "U+616C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-616C", + "status": "exact_ids", + "ids": "⿰忄堇", + "canonical_ids": "⿰忄堇", + "expanded_ids": "⿰忄堇", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慭", + "codepoint": "U+616D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-616D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慮", + "codepoint": "U+616E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-616E", + "status": "exact_ids", + "ids": "⿱虍思", + "canonical_ids": "⿱虍思", + "expanded_ids": "⿱虍⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "田", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慯", + "codepoint": "U+616F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-616F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慰", + "codepoint": "U+6170", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6170", + "status": "exact_ids", + "ids": "⿱尉心", + "canonical_ids": "⿱尉心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "尉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慱", + "codepoint": "U+6171", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6171", + "status": "exact_ids", + "ids": "⿰忄專", + "canonical_ids": "⿰忄專", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "寸", + "忄" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慲", + "codepoint": "U+6172", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6172", + "status": "exact_ids", + "ids": "⿰忄㒼", + "canonical_ids": "⿰忄㒼", + "expanded_ids": "⿰忄⿱艹⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "忄", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慳", + "codepoint": "U+6173", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6173", + "status": "exact_ids", + "ids": "⿰忄堅", + "canonical_ids": "⿰忄堅", + "expanded_ids": "⿰忄⿱⿰臣又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "土", + "忄", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慴", + "codepoint": "U+6174", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6174", + "status": "exact_ids", + "ids": "⿰忄習", + "canonical_ids": "⿰忄習", + "expanded_ids": "⿰忄⿱⿰习习⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "习", + "忄", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慵", + "codepoint": "U+6175", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6175", + "status": "exact_ids", + "ids": "⿰忄庸", + "canonical_ids": "⿰忄庸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "庸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慶", + "codepoint": "U+6176", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6176", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慷", + "codepoint": "U+6177", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6177", + "status": "exact_ids", + "ids": "⿰忄康", + "canonical_ids": "⿰忄康", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "忄" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慸", + "codepoint": "U+6178", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6178", + "status": "exact_ids", + "ids": "⿱帶心", + "canonical_ids": "⿱帶心", + "expanded_ids": "⿱⿳卌冖⿻冂丨心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "卌", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慹", + "codepoint": "U+6179", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6179", + "status": "exact_ids", + "ids": "⿱執心", + "canonical_ids": "⿱執心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "土", + "心" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慺", + "codepoint": "U+617A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-617A", + "status": "exact_ids", + "ids": "⿰忄婁", + "canonical_ids": "⿰忄婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慻", + "codepoint": "U+617B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-617B", + "status": "exact_ids", + "ids": "⿰忄眷", + "canonical_ids": "⿰忄眷", + "expanded_ids": "⿰忄⿱龹目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "目", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慼", + "codepoint": "U+617C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-617C", + "status": "exact_ids", + "ids": "⿱戚心", + "canonical_ids": "⿱戚心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "戚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慽", + "codepoint": "U+617D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-617D", + "status": "exact_ids", + "ids": "⿰忄戚", + "canonical_ids": "⿰忄戚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "戚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慾", + "codepoint": "U+617E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-617E", + "status": "exact_ids", + "ids": "⿱欲心", + "canonical_ids": "⿱欲心", + "expanded_ids": "⿱⿰⿱八⿱八口欠心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "心", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "慿", + "codepoint": "U+617F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-617F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憀", + "codepoint": "U+6180", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6180", + "status": "exact_ids", + "ids": "⿰忄翏", + "canonical_ids": "⿰忄翏", + "expanded_ids": "⿰忄⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憁", + "codepoint": "U+6181", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6181", + "status": "exact_ids", + "ids": "⿰忄悤", + "canonical_ids": "⿰忄悤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "忄" + ], + "unresolved_leaves": [ + "囱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憂", + "codepoint": "U+6182", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6182", + "status": "exact_ids", + "ids": "⿳百冖𢖻", + "canonical_ids": "⿳百冖𢖻", + "expanded_ids": "⿳⿻一⿻日丶冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "冖", + "夊", + "心", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憃", + "codepoint": "U+6183", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6183", + "status": "exact_ids", + "ids": "⿱舂心", + "canonical_ids": "⿱舂心", + "expanded_ids": "⿱⿱𡗗臼心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "臼", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憄", + "codepoint": "U+6184", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6184", + "status": "exact_ids", + "ids": "⿱徝心", + "canonical_ids": "⿱徝心", + "expanded_ids": "⿱⿰彳⿱⿱十目乚心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "十", + "彳", + "心", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憅", + "codepoint": "U+6185", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6185", + "status": "exact_ids", + "ids": "⿱動心", + "canonical_ids": "⿱動心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "力", + "十", + "心" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憆", + "codepoint": "U+6186", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6186", + "status": "exact_ids", + "ids": "⿰忄堂", + "canonical_ids": "⿰忄堂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "忄" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憇", + "codepoint": "U+6187", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6187", + "status": "exact_ids", + "ids": "⿱甜心", + "canonical_ids": "⿱甜心", + "expanded_ids": "⿱⿰⿱⿱丿十口甘心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "心", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憈", + "codepoint": "U+6188", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6188", + "status": "exact_ids", + "ids": "⿰忄虚", + "canonical_ids": "⿰忄虚", + "expanded_ids": "⿰忄⿱虍业", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "忄", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憉", + "codepoint": "U+6189", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6189", + "status": "exact_ids", + "ids": "⿰忄彭", + "canonical_ids": "⿰忄彭", + "expanded_ids": "⿰忄⿰⿱十豆彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "彡", + "忄", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憊", + "codepoint": "U+618A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-618A", + "status": "exact_ids", + "ids": "⿱備心", + "canonical_ids": "⿱備心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "備" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憋", + "codepoint": "U+618B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-618B", + "status": "exact_ids", + "ids": "⿱敝心", + "canonical_ids": "⿱敝心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "攵" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憌", + "codepoint": "U+618C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-618C", + "status": "exact_ids", + "ids": "⿱鈞心", + "canonical_ids": "⿱鈞心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "金" + ], + "unresolved_leaves": [ + "匀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憍", + "codepoint": "U+618D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-618D", + "status": "exact_ids", + "ids": "⿰忄喬", + "canonical_ids": "⿰忄喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "忄" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憎", + "codepoint": "U+618E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-618E", + "status": "exact_ids", + "ids": "⿰忄曽", + "canonical_ids": "⿰忄曽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "曽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憏", + "codepoint": "U+618F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-618F", + "status": "exact_ids", + "ids": "⿰忄祭", + "canonical_ids": "⿰忄祭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憐", + "codepoint": "U+6190", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6190", + "status": "exact_ids", + "ids": "⿰忄粦", + "canonical_ids": "⿰忄粦", + "expanded_ids": "⿰忄⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "忄", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憑", + "codepoint": "U+6191", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6191", + "status": "exact_ids", + "ids": "⿱馮心", + "canonical_ids": "⿱馮心", + "expanded_ids": "⿱⿰冫馬心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "心", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憒", + "codepoint": "U+6192", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6192", + "status": "exact_ids", + "ids": "⿰忄貴", + "canonical_ids": "⿰忄貴", + "expanded_ids": "⿰忄⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "忄", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憓", + "codepoint": "U+6193", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6193", + "status": "exact_ids", + "ids": "⿰忄惠", + "canonical_ids": "⿰忄惠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "心", + "忄" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憔", + "codepoint": "U+6194", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6194", + "status": "exact_ids", + "ids": "⿰忄焦", + "canonical_ids": "⿰忄焦", + "expanded_ids": "⿰忄⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "灬", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憕", + "codepoint": "U+6195", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6195", + "status": "exact_ids", + "ids": "⿰忄登", + "canonical_ids": "⿰忄登", + "expanded_ids": "⿰忄⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "癶", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憖", + "codepoint": "U+6196", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6196", + "status": "exact_ids", + "ids": "⿱猌心", + "canonical_ids": "⿱猌心", + "expanded_ids": "⿱⿰⿻木⿰人人⿻大丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "大", + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憗", + "codepoint": "U+6197", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6197", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憘", + "codepoint": "U+6198", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6198", + "status": "exact_ids", + "ids": "⿰忄喜", + "canonical_ids": "⿰忄喜", + "expanded_ids": "⿰忄⿱⿱十豆口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "忄", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憙", + "codepoint": "U+6199", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6199", + "status": "exact_ids", + "ids": "⿱喜心", + "canonical_ids": "⿱喜心", + "expanded_ids": "⿱⿱⿱十豆口心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "心", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憚", + "codepoint": "U+619A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-619A", + "status": "exact_ids", + "ids": "⿰忄單", + "canonical_ids": "⿰忄單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憛", + "codepoint": "U+619B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-619B", + "status": "exact_ids", + "ids": "⿰忄覃", + "canonical_ids": "⿰忄覃", + "expanded_ids": "⿰忄⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "忄", + "日", + "襾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憜", + "codepoint": "U+619C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-619C", + "status": "exact_ids", + "ids": "⿰忄隋", + "canonical_ids": "⿰忄隋", + "expanded_ids": "⿰忄⿰阝⿱⿱牛一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "忄", + "月", + "牛", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憝", + "codepoint": "U+619D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-619D", + "status": "exact_ids", + "ids": "⿱敦心", + "canonical_ids": "⿱敦心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "攵" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憞", + "codepoint": "U+619E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-619E", + "status": "exact_ids", + "ids": "⿰忄敦", + "canonical_ids": "⿰忄敦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "攵" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憟", + "codepoint": "U+619F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-619F", + "status": "exact_ids", + "ids": "⿰忄粟", + "canonical_ids": "⿰忄粟", + "expanded_ids": "⿰忄⿱覀⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "忄", + "木", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憠", + "codepoint": "U+61A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61A0", + "status": "exact_ids", + "ids": "⿱厥心", + "canonical_ids": "⿱厥心", + "expanded_ids": "⿱⿱厂⿰⿱䒑屮欠心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "厂", + "屮", + "心", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憡", + "codepoint": "U+61A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61A1", + "status": "exact_ids", + "ids": "⿰忄策", + "canonical_ids": "⿰忄策", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "忄", + "木" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憢", + "codepoint": "U+61A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61A2", + "status": "exact_ids", + "ids": "⿰忄堯", + "canonical_ids": "⿰忄堯", + "expanded_ids": "⿰忄⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憣", + "codepoint": "U+61A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61A3", + "status": "exact_ids", + "ids": "⿰忄番", + "canonical_ids": "⿰忄番", + "expanded_ids": "⿰忄⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "忄", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憤", + "codepoint": "U+61A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61A4", + "status": "exact_ids", + "ids": "⿰忄賁", + "canonical_ids": "⿰忄賁", + "expanded_ids": "⿰忄⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "廾", + "忄", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憥", + "codepoint": "U+61A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61A5", + "status": "exact_ids", + "ids": "⿱勞心", + "canonical_ids": "⿱勞心", + "expanded_ids": "⿱⿳⿰火火冖力心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "心", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憦", + "codepoint": "U+61A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61A6", + "status": "exact_ids", + "ids": "⿰忄勞", + "canonical_ids": "⿰忄勞", + "expanded_ids": "⿰忄⿳⿰火火冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "忄", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憧", + "codepoint": "U+61A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61A7", + "status": "exact_ids", + "ids": "⿰忄童", + "canonical_ids": "⿰忄童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憨", + "codepoint": "U+61A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61A8", + "status": "exact_ids", + "ids": "⿱敢心", + "canonical_ids": "⿱敢心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "敢" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憩", + "codepoint": "U+61A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61A9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憪", + "codepoint": "U+61AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61AA", + "status": "exact_ids", + "ids": "⿰忄閒", + "canonical_ids": "⿰忄閒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "閒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憫", + "codepoint": "U+61AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61AB", + "status": "exact_ids", + "ids": "⿰忄閔", + "canonical_ids": "⿰忄閔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "閔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憬", + "codepoint": "U+61AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61AC", + "status": "exact_ids", + "ids": "⿰忄景", + "canonical_ids": "⿰忄景", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "日" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憭", + "codepoint": "U+61AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61AD", + "status": "exact_ids", + "ids": "⿰忄尞", + "canonical_ids": "⿰忄尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "忄" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憮", + "codepoint": "U+61AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61AE", + "status": "exact_ids", + "ids": "⿰忄無", + "canonical_ids": "⿰忄無", + "expanded_ids": "⿰忄無", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "無" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憯", + "codepoint": "U+61AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61AF", + "status": "exact_ids", + "ids": "⿰忄朁", + "canonical_ids": "⿰忄朁", + "expanded_ids": "⿰忄⿱⿰旡旡曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "旡", + "曰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憰", + "codepoint": "U+61B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61B0", + "status": "exact_ids", + "ids": "⿰忄矞", + "canonical_ids": "⿰忄矞", + "expanded_ids": "⿰忄⿱矛⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "忄", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憱", + "codepoint": "U+61B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61B1", + "status": "exact_ids", + "ids": "⿰忄就", + "canonical_ids": "⿰忄就", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "忄" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憲", + "codepoint": "U+61B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61B2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憳", + "codepoint": "U+61B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61B3", + "status": "exact_ids", + "ids": "⿰忄尋", + "canonical_ids": "⿰忄尋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "尋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憴", + "codepoint": "U+61B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61B4", + "status": "exact_ids", + "ids": "⿰忄黽", + "canonical_ids": "⿰忄黽", + "expanded_ids": "⿰忄黽", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "黽" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憵", + "codepoint": "U+61B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61B5", + "status": "exact_ids", + "ids": "⿱辟心", + "canonical_ids": "⿱辟心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "心", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憶", + "codepoint": "U+61B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61B6", + "status": "exact_ids", + "ids": "⿰忄意", + "canonical_ids": "⿰忄意", + "expanded_ids": "⿰忄⿱⿱立日心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "忄", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憷", + "codepoint": "U+61B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61B7", + "status": "exact_ids", + "ids": "⿰忄楚", + "canonical_ids": "⿰忄楚", + "expanded_ids": "⿰忄⿱⿰木木疋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "木", + "疋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憸", + "codepoint": "U+61B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61B8", + "status": "exact_ids", + "ids": "⿰忄僉", + "canonical_ids": "⿰忄僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憹", + "codepoint": "U+61B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61B9", + "status": "exact_ids", + "ids": "⿰忄農", + "canonical_ids": "⿰忄農", + "expanded_ids": "⿰忄⿱曲辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "曲", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憺", + "codepoint": "U+61BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61BA", + "status": "exact_ids", + "ids": "⿰忄詹", + "canonical_ids": "⿰忄詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憻", + "codepoint": "U+61BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61BB", + "status": "exact_ids", + "ids": "⿰忄亶", + "canonical_ids": "⿰忄亶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "忄", + "日" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憼", + "codepoint": "U+61BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61BC", + "status": "exact_ids", + "ids": "⿱敬心", + "canonical_ids": "⿱敬心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "攵", + "艹" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憽", + "codepoint": "U+61BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61BD", + "status": "exact_ids", + "ids": "⿰忄葱", + "canonical_ids": "⿰忄葱", + "expanded_ids": "⿰忄⿱艹⿱⿻勿丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "勿", + "心", + "忄", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憾", + "codepoint": "U+61BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61BE", + "status": "exact_ids", + "ids": "⿰忄感", + "canonical_ids": "⿰忄感", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "忄" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "憿", + "codepoint": "U+61BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61BF", + "status": "exact_ids", + "ids": "⿰忄敫", + "canonical_ids": "⿰忄敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懀", + "codepoint": "U+61C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61C0", + "status": "exact_ids", + "ids": "⿰忄會", + "canonical_ids": "⿰忄會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "曰" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懁", + "codepoint": "U+61C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61C1", + "status": "exact_ids", + "ids": "⿰忄睘", + "canonical_ids": "⿰忄睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懂", + "codepoint": "U+61C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61C2", + "status": "exact_ids", + "ids": "⿰忄董", + "canonical_ids": "⿰忄董", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "忄", + "艹" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懃", + "codepoint": "U+61C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61C3", + "status": "exact_ids", + "ids": "⿱勤心", + "canonical_ids": "⿱勤心", + "expanded_ids": "⿱⿰堇力心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "堇", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懄", + "codepoint": "U+61C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61C4", + "status": "exact_ids", + "ids": "⿰忄勤", + "canonical_ids": "⿰忄勤", + "expanded_ids": "⿰忄⿰堇力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "堇", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懅", + "codepoint": "U+61C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61C5", + "status": "exact_ids", + "ids": "⿰忄豦", + "canonical_ids": "⿰忄豦", + "expanded_ids": "⿰忄⿱虍豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "虍", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懆", + "codepoint": "U+61C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61C6", + "status": "exact_ids", + "ids": "⿰忄喿", + "canonical_ids": "⿰忄喿", + "expanded_ids": "⿰忄⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "忄", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懇", + "codepoint": "U+61C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61C7", + "status": "exact_ids", + "ids": "⿱貇心", + "canonical_ids": "⿱貇心", + "expanded_ids": "⿱⿰豸艮心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "艮", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懈", + "codepoint": "U+61C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61C8", + "status": "exact_ids", + "ids": "⿰忄解", + "canonical_ids": "⿰忄解", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "解" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "應", + "codepoint": "U+61C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61C9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懊", + "codepoint": "U+61CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61CA", + "status": "exact_ids", + "ids": "⿰忄奧", + "canonical_ids": "⿰忄奧", + "expanded_ids": "⿰忄⿱⿱宀⿱丿⿻木丷大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "大", + "宀", + "忄", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懋", + "codepoint": "U+61CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61CB", + "status": "exact_ids", + "ids": "⿱楙心", + "canonical_ids": "⿱楙心", + "expanded_ids": "⿱⿲木矛木心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "木", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懌", + "codepoint": "U+61CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61CC", + "status": "exact_ids", + "ids": "⿰忄睪", + "canonical_ids": "⿰忄睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "忄", + "罒" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懍", + "codepoint": "U+61CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61CD", + "status": "exact_ids", + "ids": "⿰忄稟", + "canonical_ids": "⿰忄稟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亠", + "忄", + "木" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懎", + "codepoint": "U+61CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61CE", + "status": "exact_ids", + "ids": "⿰忄嗇", + "canonical_ids": "⿰忄嗇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "忄" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懏", + "codepoint": "U+61CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61CF", + "status": "exact_ids", + "ids": "⿰忄雋", + "canonical_ids": "⿰忄雋", + "expanded_ids": "⿰忄⿱隹弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "忄", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懐", + "codepoint": "U+61D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61D0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懑", + "codepoint": "U+61D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61D1", + "status": "exact_ids", + "ids": "⿱满心", + "canonical_ids": "⿱满心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "满" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懒", + "codepoint": "U+61D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61D2", + "status": "exact_ids", + "ids": "⿰忄赖", + "canonical_ids": "⿰忄赖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "忄", + "木" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懓", + "codepoint": "U+61D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61D3", + "status": "exact_ids", + "ids": "⿰忄愛", + "canonical_ids": "⿰忄愛", + "expanded_ids": "⿰忄⿳爫冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "夊", + "心", + "忄", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懔", + "codepoint": "U+61D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61D4", + "status": "exact_ids", + "ids": "⿰忄禀", + "canonical_ids": "⿰忄禀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "禀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懕", + "codepoint": "U+61D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61D5", + "status": "exact_ids", + "ids": "⿱厭心", + "canonical_ids": "⿱厭心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "大", + "心", + "月" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懖", + "codepoint": "U+61D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61D6", + "status": "exact_ids", + "ids": "⿱銛心", + "canonical_ids": "⿱銛心", + "expanded_ids": "⿱⿰金⿱⿱丿十口心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "心", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懗", + "codepoint": "U+61D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61D7", + "status": "exact_ids", + "ids": "⿰忄赫", + "canonical_ids": "⿰忄赫", + "expanded_ids": "⿰忄⿰赤赤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "赤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懘", + "codepoint": "U+61D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61D8", + "status": "exact_ids", + "ids": "⿱滯心", + "canonical_ids": "⿱滯心", + "expanded_ids": "⿱⿰氵⿳卌冖⿻冂丨心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "卌", + "心", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懙", + "codepoint": "U+61D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61D9", + "status": "exact_ids", + "ids": "⿰忄與", + "canonical_ids": "⿰忄與", + "expanded_ids": "⿰忄與", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "與" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懚", + "codepoint": "U+61DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61DA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懛", + "codepoint": "U+61DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61DB", + "status": "exact_ids", + "ids": "⿰忄臺", + "canonical_ids": "⿰忄臺", + "expanded_ids": "⿰忄⿳⿱士口冖⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冖", + "厶", + "口", + "土", + "士", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 251, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懜", + "codepoint": "U+61DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61DC", + "status": "exact_ids", + "ids": "⿰忄夢", + "canonical_ids": "⿰忄夢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "夢" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懝", + "codepoint": "U+61DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61DD", + "status": "exact_ids", + "ids": "⿰忄疑", + "canonical_ids": "⿰忄疑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "疑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懞", + "codepoint": "U+61DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61DE", + "status": "exact_ids", + "ids": "⿰忄蒙", + "canonical_ids": "⿰忄蒙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "艹", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懟", + "codepoint": "U+61DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61DF", + "status": "exact_ids", + "ids": "⿱對心", + "canonical_ids": "⿱對心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "寸", + "心" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懠", + "codepoint": "U+61E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61E0", + "status": "exact_ids", + "ids": "⿰忄齊", + "canonical_ids": "⿰忄齊", + "expanded_ids": "⿰忄齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懡", + "codepoint": "U+61E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61E1", + "status": "exact_ids", + "ids": "⿰忄麽", + "canonical_ids": "⿰忄麽", + "expanded_ids": "⿰忄⿱⿱广⿰木木⿱丿厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厶", + "广", + "忄", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懢", + "codepoint": "U+61E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61E2", + "status": "exact_ids", + "ids": "⿰忄監", + "canonical_ids": "⿰忄監", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懣", + "codepoint": "U+61E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61E3", + "status": "exact_ids", + "ids": "⿱滿心", + "canonical_ids": "⿱滿心", + "expanded_ids": "⿱⿰氵⿱艹⿻⿱一⿻冂丨⿰入入心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "心", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 300, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懤", + "codepoint": "U+61E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61E4", + "status": "exact_ids", + "ids": "⿰忄壽", + "canonical_ids": "⿰忄壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懥", + "codepoint": "U+61E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61E5", + "status": "exact_ids", + "ids": "⿰忄疐", + "canonical_ids": "⿰忄疐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "疐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懦", + "codepoint": "U+61E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61E6", + "status": "exact_ids", + "ids": "⿰忄需", + "canonical_ids": "⿰忄需", + "expanded_ids": "⿰忄⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懧", + "codepoint": "U+61E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61E7", + "status": "exact_ids", + "ids": "⿰忄寧", + "canonical_ids": "⿰忄寧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "忄" + ], + "unresolved_leaves": [ + "寍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懨", + "codepoint": "U+61E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61E8", + "status": "exact_ids", + "ids": "⿰忄厭", + "canonical_ids": "⿰忄厭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "大", + "忄", + "月" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懩", + "codepoint": "U+61E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61E9", + "status": "exact_ids", + "ids": "⿰忄養", + "canonical_ids": "⿰忄養", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "養" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懪", + "codepoint": "U+61EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61EA", + "status": "exact_ids", + "ids": "⿰忄暴", + "canonical_ids": "⿰忄暴", + "expanded_ids": "⿰忄⿱日⿱⿱廿廾氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "忄", + "日", + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懫", + "codepoint": "U+61EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61EB", + "status": "exact_ids", + "ids": "⿰忄質", + "canonical_ids": "⿰忄質", + "expanded_ids": "⿰忄⿱⿰斤斤⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "忄", + "斤", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懬", + "codepoint": "U+61EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61EC", + "status": "exact_ids", + "ids": "⿱廣心", + "canonical_ids": "⿱廣心", + "expanded_ids": "⿱⿱广黄心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "心", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懭", + "codepoint": "U+61ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61ED", + "status": "exact_ids", + "ids": "⿰忄廣", + "canonical_ids": "⿰忄廣", + "expanded_ids": "⿰忄⿱广黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "忄", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懮", + "codepoint": "U+61EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61EE", + "status": "exact_ids", + "ids": "⿰忄憂", + "canonical_ids": "⿰忄憂", + "expanded_ids": "⿰忄⿳⿻一⿻日丶冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "冖", + "夊", + "心", + "忄", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 251, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懯", + "codepoint": "U+61EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61EF", + "status": "exact_ids", + "ids": "⿱敷心", + "canonical_ids": "⿱敷心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "敷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懰", + "codepoint": "U+61F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61F0", + "status": "exact_ids", + "ids": "⿰忄劉", + "canonical_ids": "⿰忄劉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "忄" + ], + "unresolved_leaves": [ + "𨥫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懱", + "codepoint": "U+61F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61F1", + "status": "exact_ids", + "ids": "⿰忄蔑", + "canonical_ids": "⿰忄蔑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "目", + "艹" + ], + "unresolved_leaves": [ + "戌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懲", + "codepoint": "U+61F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61F2", + "status": "exact_ids", + "ids": "⿱徵心", + "canonical_ids": "⿱徵心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "徵" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懳", + "codepoint": "U+61F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61F3", + "status": "exact_ids", + "ids": "⿰忄慧", + "canonical_ids": "⿰忄慧", + "expanded_ids": "⿰忄⿱⿱⿰丰丰彐心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "彐", + "心", + "忄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懴", + "codepoint": "U+61F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61F4", + "status": "exact_ids", + "ids": "⿰忄韯", + "canonical_ids": "⿰忄韯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "韯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懵", + "codepoint": "U+61F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61F5", + "status": "exact_ids", + "ids": "⿰忄瞢", + "canonical_ids": "⿰忄瞢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "瞢" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懶", + "codepoint": "U+61F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61F6", + "status": "exact_ids", + "ids": "⿰忄賴", + "canonical_ids": "⿰忄賴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "賴" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懷", + "codepoint": "U+61F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61F7", + "status": "exact_ids", + "ids": "⿰忄褱", + "canonical_ids": "⿰忄褱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "褱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懸", + "codepoint": "U+61F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61F8", + "status": "exact_ids", + "ids": "⿱縣心", + "canonical_ids": "⿱縣心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "幺", + "心" + ], + "unresolved_leaves": [ + "県" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懹", + "codepoint": "U+61F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61F9", + "status": "exact_ids", + "ids": "⿰忄襄", + "canonical_ids": "⿰忄襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懺", + "codepoint": "U+61FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61FA", + "status": "exact_ids", + "ids": "⿰忄韱", + "canonical_ids": "⿰忄韱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄" + ], + "unresolved_leaves": [ + "韱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懻", + "codepoint": "U+61FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61FB", + "status": "exact_ids", + "ids": "⿰忄冀", + "canonical_ids": "⿰忄冀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "忄", + "田" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懼", + "codepoint": "U+61FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61FC", + "status": "exact_ids", + "ids": "⿰忄瞿", + "canonical_ids": "⿰忄瞿", + "expanded_ids": "⿰忄⿱⿰目目隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懽", + "codepoint": "U+61FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61FD", + "status": "exact_ids", + "ids": "⿰忄雚", + "canonical_ids": "⿰忄雚", + "expanded_ids": "⿰忄⿱艹⿱⿰口口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "忄", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懾", + "codepoint": "U+61FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61FE", + "status": "exact_ids", + "ids": "⿰忄聶", + "canonical_ids": "⿰忄聶", + "expanded_ids": "⿰忄⿱耳⿰耳耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "懿", + "codepoint": "U+61FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-61FF", + "status": "exact_ids", + "ids": "⿰壹恣", + "canonical_ids": "⿰壹恣", + "expanded_ids": "⿰⿳土冖豆⿱⿰冫欠心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "冫", + "土", + "心", + "欠", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戀", + "codepoint": "U+6200", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6200", + "status": "exact_ids", + "ids": "⿱䜌心", + "canonical_ids": "⿱䜌心", + "expanded_ids": "⿱⿲⿱幺小言⿱幺小心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "心", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戁", + "codepoint": "U+6201", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6201", + "status": "exact_ids", + "ids": "⿱難心", + "canonical_ids": "⿱難心", + "expanded_ids": "⿱⿰堇隹心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "心", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戂", + "codepoint": "U+6202", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6202", + "status": "exact_ids", + "ids": "⿰忄靡", + "canonical_ids": "⿰忄靡", + "expanded_ids": "⿰忄⿱⿱广⿰木木非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "忄", + "木", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戃", + "codepoint": "U+6203", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6203", + "status": "exact_ids", + "ids": "⿰忄黨", + "canonical_ids": "⿰忄黨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "忄", + "黑" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戄", + "codepoint": "U+6204", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6204", + "status": "exact_ids", + "ids": "⿰忄矍", + "canonical_ids": "⿰忄矍", + "expanded_ids": "⿰忄⿱⿰目目⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "忄", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戅", + "codepoint": "U+6205", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6205", + "status": "exact_ids", + "ids": "⿱贑心", + "canonical_ids": "⿱贑心", + "expanded_ids": "⿱⿰⿱立⿱日十⿱工⿱目八心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "工", + "心", + "日", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戆", + "codepoint": "U+6206", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6206", + "status": "exact_ids", + "ids": "⿱赣心", + "canonical_ids": "⿱赣心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "赣" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戇", + "codepoint": "U+6207", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6207", + "status": "exact_ids", + "ids": "⿱贛心", + "canonical_ids": "⿱贛心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "贛" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戈", + "codepoint": "U+6208", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6208", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戉", + "codepoint": "U+6209", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6209", + "status": "exact_ids", + "ids": "⿻乚戈", + "canonical_ids": "⿻乚戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戊", + "codepoint": "U+620A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-620A", + "status": "exact_ids", + "ids": "⿻丿戈", + "canonical_ids": "⿻丿戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戋", + "codepoint": "U+620B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-620B", + "status": "exact_ids", + "ids": "⿻一戈", + "canonical_ids": "⿻一戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戌", + "codepoint": "U+620C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-620C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戍", + "codepoint": "U+620D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-620D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戎", + "codepoint": "U+620E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-620E", + "status": "exact_ids", + "ids": "⿰𠂇戈", + "canonical_ids": "⿰𠂇戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戏", + "codepoint": "U+620F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-620F", + "status": "exact_ids", + "ids": "⿰又戈", + "canonical_ids": "⿰又戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "成", + "codepoint": "U+6210", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6210", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "我", + "codepoint": "U+6211", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6211", + "status": "exact_ids", + "ids": "⿻千戈", + "canonical_ids": "⿻千戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戒", + "codepoint": "U+6212", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6212", + "status": "exact_ids", + "ids": "⿰廾戈", + "canonical_ids": "⿰廾戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戓", + "codepoint": "U+6213", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6213", + "status": "exact_ids", + "ids": "⿰口戈", + "canonical_ids": "⿰口戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戔", + "codepoint": "U+6214", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6214", + "status": "exact_ids", + "ids": "⿱戈戈", + "canonical_ids": "⿱戈戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戕", + "codepoint": "U+6215", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6215", + "status": "exact_ids", + "ids": "⿰爿戈", + "canonical_ids": "⿰爿戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爿" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "或", + "codepoint": "U+6216", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6216", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戗", + "codepoint": "U+6217", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6217", + "status": "exact_ids", + "ids": "⿰仓戈", + "canonical_ids": "⿰仓戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "人" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "战", + "codepoint": "U+6218", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6218", + "status": "exact_ids", + "ids": "⿰占戈", + "canonical_ids": "⿰占戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戙", + "codepoint": "U+6219", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6219", + "status": "exact_ids", + "ids": "⿰同戈", + "canonical_ids": "⿰同戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "同", + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戚", + "codepoint": "U+621A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-621A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戛", + "codepoint": "U+621B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-621B", + "status": "exact_ids", + "ids": "⿱𦣻戈", + "canonical_ids": "⿱𦣻戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "目" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戜", + "codepoint": "U+621C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-621C", + "status": "exact_ids", + "ids": "⿰呈戈", + "canonical_ids": "⿰呈戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "王" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戝", + "codepoint": "U+621D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-621D", + "status": "exact_ids", + "ids": "⿰貝戈", + "canonical_ids": "⿰貝戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戞", + "codepoint": "U+621E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-621E", + "status": "exact_ids", + "ids": "⿳百冖戈", + "canonical_ids": "⿳百冖戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "冖", + "日" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戟", + "codepoint": "U+621F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-621F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戠", + "codepoint": "U+6220", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6220", + "status": "exact_ids", + "ids": "⿰音戈", + "canonical_ids": "⿰音戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "立" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戡", + "codepoint": "U+6221", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6221", + "status": "exact_ids", + "ids": "⿰甚戈", + "canonical_ids": "⿰甚戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甘" + ], + "unresolved_leaves": [ + "匹", + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戢", + "codepoint": "U+6222", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6222", + "status": "exact_ids", + "ids": "⿰咠戈", + "canonical_ids": "⿰咠戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "耳" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戣", + "codepoint": "U+6223", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6223", + "status": "exact_ids", + "ids": "⿰癸戈", + "canonical_ids": "⿰癸戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "癶" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戤", + "codepoint": "U+6224", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6224", + "status": "exact_ids", + "ids": "⿰盈戈", + "canonical_ids": "⿰盈戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "又", + "皿" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戥", + "codepoint": "U+6225", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6225", + "status": "exact_ids", + "ids": "⿰星戈", + "canonical_ids": "⿰星戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "牛" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戦", + "codepoint": "U+6226", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6226", + "status": "exact_ids", + "ids": "⿰単戈", + "canonical_ids": "⿰単戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "単", + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戧", + "codepoint": "U+6227", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6227", + "status": "exact_ids", + "ids": "⿰倉戈", + "canonical_ids": "⿰倉戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "倉", + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戨", + "codepoint": "U+6228", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6228", + "status": "exact_ids", + "ids": "⿰哥戈", + "canonical_ids": "⿰哥戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戩", + "codepoint": "U+6229", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6229", + "status": "exact_ids", + "ids": "⿰晉戈", + "canonical_ids": "⿰晉戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "戈", + "晉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "截", + "codepoint": "U+622A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-622A", + "status": "exact_ids", + "ids": "⿰隹𢦏", + "canonical_ids": "⿰隹𢦏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "隹" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戫", + "codepoint": "U+622B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-622B", + "status": "exact_ids", + "ids": "⿰有或", + "canonical_ids": "⿰有或", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "月" + ], + "unresolved_leaves": [ + "或" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戬", + "codepoint": "U+622C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-622C", + "status": "exact_ids", + "ids": "⿰晋戈", + "canonical_ids": "⿰晋戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亚", + "日" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戭", + "codepoint": "U+622D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-622D", + "status": "exact_ids", + "ids": "⿰寅戈", + "canonical_ids": "⿰寅戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "寅", + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戮", + "codepoint": "U+622E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-622E", + "status": "exact_ids", + "ids": "⿰翏戈", + "canonical_ids": "⿰翏戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戯", + "codepoint": "U+622F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-622F", + "status": "exact_ids", + "ids": "⿰虚戈", + "canonical_ids": "⿰虚戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "虍" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戰", + "codepoint": "U+6230", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6230", + "status": "exact_ids", + "ids": "⿰單戈", + "canonical_ids": "⿰單戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "單", + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戱", + "codepoint": "U+6231", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6231", + "status": "exact_ids", + "ids": "⿰虛戈", + "canonical_ids": "⿰虛戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "戈", + "虛" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戲", + "codepoint": "U+6232", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6232", + "status": "exact_ids", + "ids": "⿰䖒戈", + "canonical_ids": "⿰䖒戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "䖒", + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戳", + "codepoint": "U+6233", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6233", + "status": "exact_ids", + "ids": "⿰翟戈", + "canonical_ids": "⿰翟戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "隹" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戴", + "codepoint": "U+6234", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6234", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戵", + "codepoint": "U+6235", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6235", + "status": "exact_ids", + "ids": "⿰瞿戈", + "canonical_ids": "⿰瞿戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "隹" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戶", + "codepoint": "U+6236", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6236", + "status": "exact_ids", + "ids": "⿻丿尸", + "canonical_ids": "⿻丿尸", + "expanded_ids": "⿻丿尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "户", + "codepoint": "U+6237", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6237", + "status": "exact_ids", + "ids": "⿻丶尸", + "canonical_ids": "⿻丶尸", + "expanded_ids": "⿻丶尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戸", + "codepoint": "U+6238", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6238", + "status": "exact_ids", + "ids": "⿻一尸", + "canonical_ids": "⿻一尸", + "expanded_ids": "⿻一尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戹", + "codepoint": "U+6239", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6239", + "status": "exact_ids", + "ids": "⿱户乙", + "canonical_ids": "⿱户乙", + "expanded_ids": "⿱⿻丶尸乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乙", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戺", + "codepoint": "U+623A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-623A", + "status": "exact_ids", + "ids": "⿰戶巳", + "canonical_ids": "⿰戶巳", + "expanded_ids": "⿰⿻丿尸巳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "尸", + "巳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戻", + "codepoint": "U+623B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-623B", + "status": "exact_ids", + "ids": "⿱戸大", + "canonical_ids": "⿱戸大", + "expanded_ids": "⿱⿻一尸大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戼", + "codepoint": "U+623C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-623C", + "status": "leaf_self_fallback", + "ids": "戼", + "canonical_ids": "戼", + "expanded_ids": "戼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "戼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戽", + "codepoint": "U+623D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-623D", + "status": "exact_ids", + "ids": "⿱戶斗", + "canonical_ids": "⿱戶斗", + "expanded_ids": "⿱⿻丿尸斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "尸", + "斗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "戾", + "codepoint": "U+623E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-623E", + "status": "exact_ids", + "ids": "⿱戶犬", + "canonical_ids": "⿱戶犬", + "expanded_ids": "⿱⿻丿尸⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "大", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "房", + "codepoint": "U+623F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-623F", + "status": "exact_ids", + "ids": "⿱戸方", + "canonical_ids": "⿱戸方", + "expanded_ids": "⿱⿻一尸方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "所", + "codepoint": "U+6240", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6240", + "status": "exact_ids", + "ids": "⿰戸斤", + "canonical_ids": "⿰戸斤", + "expanded_ids": "⿰⿻一尸斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扁", + "codepoint": "U+6241", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6241", + "status": "exact_ids", + "ids": "⿱戸𠕁", + "canonical_ids": "⿱戸𠕁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扂", + "codepoint": "U+6242", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6242", + "status": "exact_ids", + "ids": "⿱戶占", + "canonical_ids": "⿱戶占", + "expanded_ids": "⿱⿻丿尸⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "卜", + "口", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扃", + "codepoint": "U+6243", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6243", + "status": "exact_ids", + "ids": "⿱戶冋", + "canonical_ids": "⿱戶冋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "尸" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扄", + "codepoint": "U+6244", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6244", + "status": "exact_ids", + "ids": "⿱户向", + "canonical_ids": "⿱户向", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "尸" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扅", + "codepoint": "U+6245", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6245", + "status": "exact_ids", + "ids": "⿱户多", + "canonical_ids": "⿱户多", + "expanded_ids": "⿱⿻丶尸⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "夕", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扆", + "codepoint": "U+6246", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6246", + "status": "exact_ids", + "ids": "⿱戶衣", + "canonical_ids": "⿱戶衣", + "expanded_ids": "⿱⿻丿尸衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "尸", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扇", + "codepoint": "U+6247", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6247", + "status": "exact_ids", + "ids": "⿱戸羽", + "canonical_ids": "⿱戸羽", + "expanded_ids": "⿱⿻一尸⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扈", + "codepoint": "U+6248", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6248", + "status": "exact_ids", + "ids": "⿱戸邑", + "canonical_ids": "⿱戸邑", + "expanded_ids": "⿱⿻一尸⿱口巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "尸", + "巴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扉", + "codepoint": "U+6249", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6249", + "status": "exact_ids", + "ids": "⿱戸非", + "canonical_ids": "⿱戸非", + "expanded_ids": "⿱⿻一尸非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扊", + "codepoint": "U+624A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-624A", + "status": "exact_ids", + "ids": "⿱戶炎", + "canonical_ids": "⿱戶炎", + "expanded_ids": "⿱⿻丿尸⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "尸", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "手", + "codepoint": "U+624B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-624B", + "status": "leaf_self_fallback", + "ids": "手", + "canonical_ids": "手", + "expanded_ids": "手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "手" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扌", + "codepoint": "U+624C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-624C", + "status": "leaf_self_fallback", + "ids": "扌", + "canonical_ids": "扌", + "expanded_ids": "扌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "才", + "codepoint": "U+624D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-624D", + "status": "leaf_self_fallback", + "ids": "才", + "canonical_ids": "才", + "expanded_ids": "才", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "才" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扎", + "codepoint": "U+624E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-624E", + "status": "exact_ids", + "ids": "⿰扌乚", + "canonical_ids": "⿰扌乚", + "expanded_ids": "⿰扌乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扏", + "codepoint": "U+624F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-624F", + "status": "exact_ids", + "ids": "⿰扌九", + "canonical_ids": "⿰扌九", + "expanded_ids": "⿰扌九", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扐", + "codepoint": "U+6250", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6250", + "status": "exact_ids", + "ids": "⿰扌力", + "canonical_ids": "⿰扌力", + "expanded_ids": "⿰扌力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扑", + "codepoint": "U+6251", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6251", + "status": "exact_ids", + "ids": "⿰扌卜", + "canonical_ids": "⿰扌卜", + "expanded_ids": "⿰扌卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扒", + "codepoint": "U+6252", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6252", + "status": "exact_ids", + "ids": "⿰扌八", + "canonical_ids": "⿰扌八", + "expanded_ids": "⿰扌八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "打", + "codepoint": "U+6253", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6253", + "status": "exact_ids", + "ids": "⿰扌丁", + "canonical_ids": "⿰扌丁", + "expanded_ids": "⿰扌⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扔", + "codepoint": "U+6254", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6254", + "status": "exact_ids", + "ids": "⿰扌乃", + "canonical_ids": "⿰扌乃", + "expanded_ids": "⿰扌乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "払", + "codepoint": "U+6255", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6255", + "status": "exact_ids", + "ids": "⿰扌厶", + "canonical_ids": "⿰扌厶", + "expanded_ids": "⿰扌厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扖", + "codepoint": "U+6256", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6256", + "status": "exact_ids", + "ids": "⿰扌入", + "canonical_ids": "⿰扌入", + "expanded_ids": "⿰扌入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扗", + "codepoint": "U+6257", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6257", + "status": "exact_ids", + "ids": "⿰扌土", + "canonical_ids": "⿰扌土", + "expanded_ids": "⿰扌土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "托", + "codepoint": "U+6258", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6258", + "status": "exact_ids", + "ids": "⿰扌乇", + "canonical_ids": "⿰扌乇", + "expanded_ids": "⿰扌⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扙", + "codepoint": "U+6259", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6259", + "status": "exact_ids", + "ids": "⿰扌丈", + "canonical_ids": "⿰扌丈", + "expanded_ids": "⿰扌丈", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丈", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扚", + "codepoint": "U+625A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-625A", + "status": "exact_ids", + "ids": "⿰扌勺", + "canonical_ids": "⿰扌勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扛", + "codepoint": "U+625B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-625B", + "status": "exact_ids", + "ids": "⿰扌工", + "canonical_ids": "⿰扌工", + "expanded_ids": "⿰扌工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扜", + "codepoint": "U+625C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-625C", + "status": "exact_ids", + "ids": "⿰扌于", + "canonical_ids": "⿰扌于", + "expanded_ids": "⿰扌⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扝", + "codepoint": "U+625D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-625D", + "status": "exact_ids", + "ids": "⿰扌亏", + "canonical_ids": "⿰扌亏", + "expanded_ids": "⿰扌⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扞", + "codepoint": "U+625E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-625E", + "status": "exact_ids", + "ids": "⿰扌干", + "canonical_ids": "⿰扌干", + "expanded_ids": "⿰扌⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扟", + "codepoint": "U+625F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-625F", + "status": "exact_ids", + "ids": "⿰扌卂", + "canonical_ids": "⿰扌卂", + "expanded_ids": "⿰扌⿱乁十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乁", + "十", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扠", + "codepoint": "U+6260", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6260", + "status": "exact_ids", + "ids": "⿰扌叉", + "canonical_ids": "⿰扌叉", + "expanded_ids": "⿰扌⿻又丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "又", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扡", + "codepoint": "U+6261", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6261", + "status": "exact_ids", + "ids": "⿰扌也", + "canonical_ids": "⿰扌也", + "expanded_ids": "⿰扌⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扢", + "codepoint": "U+6262", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6262", + "status": "exact_ids", + "ids": "⿰扌乞", + "canonical_ids": "⿰扌乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扣", + "codepoint": "U+6263", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6263", + "status": "exact_ids", + "ids": "⿰扌口", + "canonical_ids": "⿰扌口", + "expanded_ids": "⿰扌口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扤", + "codepoint": "U+6264", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6264", + "status": "exact_ids", + "ids": "⿰扌兀", + "canonical_ids": "⿰扌兀", + "expanded_ids": "⿰扌⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扥", + "codepoint": "U+6265", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6265", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扦", + "codepoint": "U+6266", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6266", + "status": "exact_ids", + "ids": "⿰扌千", + "canonical_ids": "⿰扌千", + "expanded_ids": "⿰扌⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "执", + "codepoint": "U+6267", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6267", + "status": "exact_ids", + "ids": "⿰扌丸", + "canonical_ids": "⿰扌丸", + "expanded_ids": "⿰扌⿻九丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扨", + "codepoint": "U+6268", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6268", + "status": "exact_ids", + "ids": "⿰扌刄", + "canonical_ids": "⿰扌刄", + "expanded_ids": "⿰扌⿻刀乀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乀", + "刀", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扩", + "codepoint": "U+6269", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6269", + "status": "exact_ids", + "ids": "⿰扌广", + "canonical_ids": "⿰扌广", + "expanded_ids": "⿰扌广", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扪", + "codepoint": "U+626A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-626A", + "status": "exact_ids", + "ids": "⿰扌门", + "canonical_ids": "⿰扌门", + "expanded_ids": "⿰扌门", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "门" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扫", + "codepoint": "U+626B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-626B", + "status": "exact_ids", + "ids": "⿰扌彐", + "canonical_ids": "⿰扌彐", + "expanded_ids": "⿰扌彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扬", + "codepoint": "U+626C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-626C", + "status": "exact_ids", + "ids": "⿰扌𠃓", + "canonical_ids": "⿰扌𠃓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "𠃓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扭", + "codepoint": "U+626D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-626D", + "status": "exact_ids", + "ids": "⿰扌丑", + "canonical_ids": "⿰扌丑", + "expanded_ids": "⿰扌丑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扮", + "codepoint": "U+626E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-626E", + "status": "exact_ids", + "ids": "⿰扌分", + "canonical_ids": "⿰扌分", + "expanded_ids": "⿰扌⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扯", + "codepoint": "U+626F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-626F", + "status": "exact_ids", + "ids": "⿰扌止", + "canonical_ids": "⿰扌止", + "expanded_ids": "⿰扌止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扰", + "codepoint": "U+6270", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6270", + "status": "exact_ids", + "ids": "⿰扌尤", + "canonical_ids": "⿰扌尤", + "expanded_ids": "⿰扌尤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扱", + "codepoint": "U+6271", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6271", + "status": "exact_ids", + "ids": "⿰扌及", + "canonical_ids": "⿰扌及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "扌" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扲", + "codepoint": "U+6272", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6272", + "status": "exact_ids", + "ids": "⿰扌今", + "canonical_ids": "⿰扌今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "扌" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扳", + "codepoint": "U+6273", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6273", + "status": "exact_ids", + "ids": "⿰扌反", + "canonical_ids": "⿰扌反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扴", + "codepoint": "U+6274", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6274", + "status": "exact_ids", + "ids": "⿰扌介", + "canonical_ids": "⿰扌介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扵", + "codepoint": "U+6275", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6275", + "status": "exact_ids", + "ids": "⿰扌仒", + "canonical_ids": "⿰扌仒", + "expanded_ids": "⿰扌⿱人冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冫", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扶", + "codepoint": "U+6276", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6276", + "status": "exact_ids", + "ids": "⿰扌夫", + "canonical_ids": "⿰扌夫", + "expanded_ids": "⿰扌⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扷", + "codepoint": "U+6277", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6277", + "status": "exact_ids", + "ids": "⿰扌夭", + "canonical_ids": "⿰扌夭", + "expanded_ids": "⿰扌⿱丿大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扸", + "codepoint": "U+6278", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6278", + "status": "exact_ids", + "ids": "⿰扌片", + "canonical_ids": "⿰扌片", + "expanded_ids": "⿰扌片", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "片" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "批", + "codepoint": "U+6279", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6279", + "status": "exact_ids", + "ids": "⿰扌比", + "canonical_ids": "⿰扌比", + "expanded_ids": "⿰扌⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扺", + "codepoint": "U+627A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-627A", + "status": "exact_ids", + "ids": "⿰扌氏", + "canonical_ids": "⿰扌氏", + "expanded_ids": "⿰扌氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扻", + "codepoint": "U+627B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-627B", + "status": "exact_ids", + "ids": "⿰扌欠", + "canonical_ids": "⿰扌欠", + "expanded_ids": "⿰扌欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扼", + "codepoint": "U+627C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-627C", + "status": "exact_ids", + "ids": "⿰扌厄", + "canonical_ids": "⿰扌厄", + "expanded_ids": "⿰扌⿱厂㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "扽", + "codepoint": "U+627D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-627D", + "status": "exact_ids", + "ids": "⿰扌屯", + "canonical_ids": "⿰扌屯", + "expanded_ids": "⿰扌屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "找", + "codepoint": "U+627E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-627E", + "status": "exact_ids", + "ids": "⿰扌戈", + "canonical_ids": "⿰扌戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "承", + "codepoint": "U+627F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-627F", + "status": "leaf_self_fallback", + "ids": "承", + "canonical_ids": "承", + "expanded_ids": "承", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "承" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "技", + "codepoint": "U+6280", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6280", + "status": "exact_ids", + "ids": "⿰扌支", + "canonical_ids": "⿰扌支", + "expanded_ids": "⿰扌⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抁", + "codepoint": "U+6281", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6281", + "status": "exact_ids", + "ids": "⿰扌允", + "canonical_ids": "⿰扌允", + "expanded_ids": "⿰扌⿱厶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抂", + "codepoint": "U+6282", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6282", + "status": "exact_ids", + "ids": "⿰扌王", + "canonical_ids": "⿰扌王", + "expanded_ids": "⿰扌王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抃", + "codepoint": "U+6283", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6283", + "status": "exact_ids", + "ids": "⿰扌卞", + "canonical_ids": "⿰扌卞", + "expanded_ids": "⿰扌⿱亠卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "卜", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抄", + "codepoint": "U+6284", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6284", + "status": "exact_ids", + "ids": "⿰扌少", + "canonical_ids": "⿰扌少", + "expanded_ids": "⿰扌⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抅", + "codepoint": "U+6285", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6285", + "status": "exact_ids", + "ids": "⿰扌勾", + "canonical_ids": "⿰扌勾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "勾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抆", + "codepoint": "U+6286", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6286", + "status": "exact_ids", + "ids": "⿰扌文", + "canonical_ids": "⿰扌文", + "expanded_ids": "⿰扌文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "文" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抇", + "codepoint": "U+6287", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6287", + "status": "exact_ids", + "ids": "⿰扌日", + "canonical_ids": "⿰扌日", + "expanded_ids": "⿰扌日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抈", + "codepoint": "U+6288", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6288", + "status": "exact_ids", + "ids": "⿰扌月", + "canonical_ids": "⿰扌月", + "expanded_ids": "⿰扌月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抉", + "codepoint": "U+6289", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6289", + "status": "exact_ids", + "ids": "⿰扌夬", + "canonical_ids": "⿰扌夬", + "expanded_ids": "⿰扌⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "大", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "把", + "codepoint": "U+628A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-628A", + "status": "exact_ids", + "ids": "⿰扌巴", + "canonical_ids": "⿰扌巴", + "expanded_ids": "⿰扌巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抋", + "codepoint": "U+628B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-628B", + "status": "exact_ids", + "ids": "⿰扌心", + "canonical_ids": "⿰扌心", + "expanded_ids": "⿰扌心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抌", + "codepoint": "U+628C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-628C", + "status": "exact_ids", + "ids": "⿰扌冘", + "canonical_ids": "⿰扌冘", + "expanded_ids": "⿰扌⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抍", + "codepoint": "U+628D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-628D", + "status": "exact_ids", + "ids": "⿰扌升", + "canonical_ids": "⿰扌升", + "expanded_ids": "⿰扌升", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "升", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抎", + "codepoint": "U+628E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-628E", + "status": "exact_ids", + "ids": "⿰扌云", + "canonical_ids": "⿰扌云", + "expanded_ids": "⿰扌⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抏", + "codepoint": "U+628F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-628F", + "status": "exact_ids", + "ids": "⿰扌元", + "canonical_ids": "⿰扌元", + "expanded_ids": "⿰扌⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抐", + "codepoint": "U+6290", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6290", + "status": "exact_ids", + "ids": "⿰扌内", + "canonical_ids": "⿰扌内", + "expanded_ids": "⿰扌⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抑", + "codepoint": "U+6291", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6291", + "status": "exact_ids", + "ids": "⿰扌卬", + "canonical_ids": "⿰扌卬", + "expanded_ids": "⿰扌⿰匚卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匚", + "卩", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抒", + "codepoint": "U+6292", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6292", + "status": "exact_ids", + "ids": "⿰扌予", + "canonical_ids": "⿰扌予", + "expanded_ids": "⿰扌⿱龴⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "扌", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抓", + "codepoint": "U+6293", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6293", + "status": "exact_ids", + "ids": "⿰扌爪", + "canonical_ids": "⿰扌爪", + "expanded_ids": "⿰扌爪", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "爪" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抔", + "codepoint": "U+6294", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6294", + "status": "exact_ids", + "ids": "⿰扌不", + "canonical_ids": "⿰扌不", + "expanded_ids": "⿰扌不", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "投", + "codepoint": "U+6295", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6295", + "status": "exact_ids", + "ids": "⿰扌殳", + "canonical_ids": "⿰扌殳", + "expanded_ids": "⿰扌⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抖", + "codepoint": "U+6296", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6296", + "status": "exact_ids", + "ids": "⿰扌斗", + "canonical_ids": "⿰扌斗", + "expanded_ids": "⿰扌斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "斗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抗", + "codepoint": "U+6297", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6297", + "status": "exact_ids", + "ids": "⿰扌亢", + "canonical_ids": "⿰扌亢", + "expanded_ids": "⿰扌⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "折", + "codepoint": "U+6298", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6298", + "status": "exact_ids", + "ids": "⿰扌斤", + "canonical_ids": "⿰扌斤", + "expanded_ids": "⿰扌斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抙", + "codepoint": "U+6299", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6299", + "status": "exact_ids", + "ids": "⿰扌手", + "canonical_ids": "⿰扌手", + "expanded_ids": "⿰扌手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "手", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抚", + "codepoint": "U+629A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-629A", + "status": "exact_ids", + "ids": "⿰扌无", + "canonical_ids": "⿰扌无", + "expanded_ids": "⿰扌无", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "无" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抛", + "codepoint": "U+629B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-629B", + "status": "exact_ids", + "ids": "⿰扌𠠵", + "canonical_ids": "⿰扌𠠵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "𠠵" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抜", + "codepoint": "U+629C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-629C", + "status": "exact_ids", + "ids": "⿰扌友", + "canonical_ids": "⿰扌友", + "expanded_ids": "⿰扌⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抝", + "codepoint": "U+629D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-629D", + "status": "exact_ids", + "ids": "⿰扌幻", + "canonical_ids": "⿰扌幻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "扌" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "択", + "codepoint": "U+629E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-629E", + "status": "exact_ids", + "ids": "⿰扌尺", + "canonical_ids": "⿰扌尺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "扌" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抟", + "codepoint": "U+629F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-629F", + "status": "exact_ids", + "ids": "⿰扌专", + "canonical_ids": "⿰扌专", + "expanded_ids": "⿰扌专", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "专", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抠", + "codepoint": "U+62A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62A0", + "status": "exact_ids", + "ids": "⿰扌区", + "canonical_ids": "⿰扌区", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "区" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抡", + "codepoint": "U+62A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62A1", + "status": "exact_ids", + "ids": "⿰扌仑", + "canonical_ids": "⿰扌仑", + "expanded_ids": "⿰扌⿱人匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "匕", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抢", + "codepoint": "U+62A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62A2", + "status": "exact_ids", + "ids": "⿰扌仓", + "canonical_ids": "⿰扌仓", + "expanded_ids": "⿰扌⿱人㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "人", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抣", + "codepoint": "U+62A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62A3", + "status": "exact_ids", + "ids": "⿰扌匀", + "canonical_ids": "⿰扌匀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "匀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "护", + "codepoint": "U+62A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62A4", + "status": "exact_ids", + "ids": "⿰扌户", + "canonical_ids": "⿰扌户", + "expanded_ids": "⿰扌⿻丶尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "尸", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "报", + "codepoint": "U+62A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62A5", + "status": "exact_ids", + "ids": "⿰扌𠬝", + "canonical_ids": "⿰扌𠬝", + "expanded_ids": "⿰扌⿻卩又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "又", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抦", + "codepoint": "U+62A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62A6", + "status": "exact_ids", + "ids": "⿰扌丙", + "canonical_ids": "⿰扌丙", + "expanded_ids": "⿰扌⿱一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抧", + "codepoint": "U+62A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62A7", + "status": "exact_ids", + "ids": "⿰扌只", + "canonical_ids": "⿰扌只", + "expanded_ids": "⿰扌⿱口八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抨", + "codepoint": "U+62A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62A8", + "status": "exact_ids", + "ids": "⿰扌平", + "canonical_ids": "⿰扌平", + "expanded_ids": "⿰扌⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "十", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抩", + "codepoint": "U+62A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62A9", + "status": "exact_ids", + "ids": "⿰扌冉", + "canonical_ids": "⿰扌冉", + "expanded_ids": "⿰扌⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "土", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抪", + "codepoint": "U+62AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62AA", + "status": "exact_ids", + "ids": "⿰扌布", + "canonical_ids": "⿰扌布", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "披", + "codepoint": "U+62AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62AB", + "status": "exact_ids", + "ids": "⿰扌皮", + "canonical_ids": "⿰扌皮", + "expanded_ids": "⿰扌皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抬", + "codepoint": "U+62AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62AC", + "status": "exact_ids", + "ids": "⿰扌台", + "canonical_ids": "⿰扌台", + "expanded_ids": "⿰扌⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抭", + "codepoint": "U+62AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62AD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抮", + "codepoint": "U+62AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62AE", + "status": "exact_ids", + "ids": "⿰扌㐱", + "canonical_ids": "⿰扌㐱", + "expanded_ids": "⿰扌⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "彡", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抯", + "codepoint": "U+62AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62AF", + "status": "exact_ids", + "ids": "⿰扌且", + "canonical_ids": "⿰扌且", + "expanded_ids": "⿰扌且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抰", + "codepoint": "U+62B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62B0", + "status": "exact_ids", + "ids": "⿰扌央", + "canonical_ids": "⿰扌央", + "expanded_ids": "⿰扌⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抱", + "codepoint": "U+62B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62B1", + "status": "exact_ids", + "ids": "⿰扌包", + "canonical_ids": "⿰扌包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抲", + "codepoint": "U+62B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62B2", + "status": "exact_ids", + "ids": "⿰扌可", + "canonical_ids": "⿰扌可", + "expanded_ids": "⿰扌⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抳", + "codepoint": "U+62B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62B3", + "status": "exact_ids", + "ids": "⿰扌尼", + "canonical_ids": "⿰扌尼", + "expanded_ids": "⿰扌⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "尸", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抴", + "codepoint": "U+62B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62B4", + "status": "exact_ids", + "ids": "⿰扌世", + "canonical_ids": "⿰扌世", + "expanded_ids": "⿰扌世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抵", + "codepoint": "U+62B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62B5", + "status": "exact_ids", + "ids": "⿰扌氐", + "canonical_ids": "⿰扌氐", + "expanded_ids": "⿰扌⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "扌", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抶", + "codepoint": "U+62B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62B6", + "status": "exact_ids", + "ids": "⿰扌失", + "canonical_ids": "⿰扌失", + "expanded_ids": "⿰扌⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抷", + "codepoint": "U+62B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62B7", + "status": "exact_ids", + "ids": "⿰扌丕", + "canonical_ids": "⿰扌丕", + "expanded_ids": "⿰扌⿱不一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抸", + "codepoint": "U+62B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62B8", + "status": "exact_ids", + "ids": "⿰扌乏", + "canonical_ids": "⿰扌乏", + "expanded_ids": "⿰扌⿱丿之", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "之", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抹", + "codepoint": "U+62B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62B9", + "status": "exact_ids", + "ids": "⿰扌末", + "canonical_ids": "⿰扌末", + "expanded_ids": "⿰扌⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "扌", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "抺" + ] + }, + { + "character": "抺", + "codepoint": "U+62BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62BA", + "status": "exact_ids", + "ids": "⿰扌未", + "canonical_ids": "⿰扌未", + "expanded_ids": "⿰扌⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "扌", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "抹" + ] + }, + { + "character": "抻", + "codepoint": "U+62BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62BB", + "status": "exact_ids", + "ids": "⿰扌申", + "canonical_ids": "⿰扌申", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "押", + "codepoint": "U+62BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62BC", + "status": "exact_ids", + "ids": "⿰扌甲", + "canonical_ids": "⿰扌甲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "甲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抽", + "codepoint": "U+62BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62BD", + "status": "exact_ids", + "ids": "⿰扌由", + "canonical_ids": "⿰扌由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抾", + "codepoint": "U+62BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62BE", + "status": "exact_ids", + "ids": "⿰扌去", + "canonical_ids": "⿰扌去", + "expanded_ids": "⿰扌⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "抿", + "codepoint": "U+62BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62BF", + "status": "exact_ids", + "ids": "⿰扌民", + "canonical_ids": "⿰扌民", + "expanded_ids": "⿰扌民", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "民" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拀", + "codepoint": "U+62C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62C0", + "status": "exact_ids", + "ids": "⿰扌兄", + "canonical_ids": "⿰扌兄", + "expanded_ids": "⿰扌⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拁", + "codepoint": "U+62C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62C1", + "status": "exact_ids", + "ids": "⿰扌加", + "canonical_ids": "⿰扌加", + "expanded_ids": "⿰扌⿰力口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拂", + "codepoint": "U+62C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62C2", + "status": "exact_ids", + "ids": "⿰扌弗", + "canonical_ids": "⿰扌弗", + "expanded_ids": "⿰扌⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "弓", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拃", + "codepoint": "U+62C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62C3", + "status": "exact_ids", + "ids": "⿰扌乍", + "canonical_ids": "⿰扌乍", + "expanded_ids": "⿰扌乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拄", + "codepoint": "U+62C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62C4", + "status": "exact_ids", + "ids": "⿰扌主", + "canonical_ids": "⿰扌主", + "expanded_ids": "⿰扌⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "扌", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "担", + "codepoint": "U+62C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62C5", + "status": "exact_ids", + "ids": "⿰扌旦", + "canonical_ids": "⿰扌旦", + "expanded_ids": "⿰扌⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "扌", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拆", + "codepoint": "U+62C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62C6", + "status": "exact_ids", + "ids": "⿰扌斥", + "canonical_ids": "⿰扌斥", + "expanded_ids": "⿰扌⿻斤丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "扌", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拇", + "codepoint": "U+62C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62C7", + "status": "exact_ids", + "ids": "⿰扌母", + "canonical_ids": "⿰扌母", + "expanded_ids": "⿰扌母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拈", + "codepoint": "U+62C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62C8", + "status": "exact_ids", + "ids": "⿰扌占", + "canonical_ids": "⿰扌占", + "expanded_ids": "⿰扌⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拉", + "codepoint": "U+62C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62C9", + "status": "exact_ids", + "ids": "⿰扌立", + "canonical_ids": "⿰扌立", + "expanded_ids": "⿰扌立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拊", + "codepoint": "U+62CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62CA", + "status": "exact_ids", + "ids": "⿰扌付", + "canonical_ids": "⿰扌付", + "expanded_ids": "⿰扌⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拋", + "codepoint": "U+62CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62CB", + "status": "exact_ids", + "ids": "⿰扌𡯄", + "canonical_ids": "⿰扌𡯄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "𡯄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拌", + "codepoint": "U+62CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62CC", + "status": "exact_ids", + "ids": "⿰扌半", + "canonical_ids": "⿰扌半", + "expanded_ids": "⿰扌半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拍", + "codepoint": "U+62CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62CD", + "status": "exact_ids", + "ids": "⿰扌白", + "canonical_ids": "⿰扌白", + "expanded_ids": "⿰扌⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "扌", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拎", + "codepoint": "U+62CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62CE", + "status": "exact_ids", + "ids": "⿰扌令", + "canonical_ids": "⿰扌令", + "expanded_ids": "⿰扌⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "扌", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拏", + "codepoint": "U+62CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62CF", + "status": "exact_ids", + "ids": "⿱奴手", + "canonical_ids": "⿱奴手", + "expanded_ids": "⿱⿰女又手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "女", + "手" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拐", + "codepoint": "U+62D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62D0", + "status": "exact_ids", + "ids": "⿰扌另", + "canonical_ids": "⿰扌另", + "expanded_ids": "⿰扌⿱口力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拑", + "codepoint": "U+62D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62D1", + "status": "exact_ids", + "ids": "⿰扌甘", + "canonical_ids": "⿰扌甘", + "expanded_ids": "⿰扌甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拒", + "codepoint": "U+62D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62D2", + "status": "exact_ids", + "ids": "⿰扌巨", + "canonical_ids": "⿰扌巨", + "expanded_ids": "⿰扌巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拓", + "codepoint": "U+62D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62D3", + "status": "exact_ids", + "ids": "⿰扌石", + "canonical_ids": "⿰扌石", + "expanded_ids": "⿰扌石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拔", + "codepoint": "U+62D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62D4", + "status": "exact_ids", + "ids": "⿰扌犮", + "canonical_ids": "⿰扌犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拕", + "codepoint": "U+62D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62D5", + "status": "exact_ids", + "ids": "⿰扌它", + "canonical_ids": "⿰扌它", + "expanded_ids": "⿰扌⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拖", + "codepoint": "U+62D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62D6", + "status": "exact_ids", + "ids": "⿰扌㐌", + "canonical_ids": "⿰扌㐌", + "expanded_ids": "⿰扌⿱⿻丿一⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丿", + "乜", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拗", + "codepoint": "U+62D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62D7", + "status": "exact_ids", + "ids": "⿰扌幼", + "canonical_ids": "⿰扌幼", + "expanded_ids": "⿰扌⿰幺力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "幺", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拘", + "codepoint": "U+62D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62D8", + "status": "exact_ids", + "ids": "⿰扌句", + "canonical_ids": "⿰扌句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拙", + "codepoint": "U+62D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62D9", + "status": "exact_ids", + "ids": "⿰扌出", + "canonical_ids": "⿰扌出", + "expanded_ids": "⿰扌⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拚", + "codepoint": "U+62DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62DA", + "status": "exact_ids", + "ids": "⿰扌弁", + "canonical_ids": "⿰扌弁", + "expanded_ids": "⿰扌⿱厶廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "廾", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "招", + "codepoint": "U+62DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62DB", + "status": "exact_ids", + "ids": "⿰扌召", + "canonical_ids": "⿰扌召", + "expanded_ids": "⿰扌⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拜", + "codepoint": "U+62DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62DC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拝", + "codepoint": "U+62DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62DD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拞", + "codepoint": "U+62DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62DE", + "status": "exact_ids", + "ids": "⿰扌丘", + "canonical_ids": "⿰扌丘", + "expanded_ids": "⿰扌丘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拟", + "codepoint": "U+62DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62DF", + "status": "exact_ids", + "ids": "⿰扌以", + "canonical_ids": "⿰扌以", + "expanded_ids": "⿰扌⿰厶人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "厶", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拠", + "codepoint": "U+62E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62E0", + "status": "exact_ids", + "ids": "⿰扌処", + "canonical_ids": "⿰扌処", + "expanded_ids": "⿰扌⿰夂几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "夂", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拡", + "codepoint": "U+62E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62E1", + "status": "exact_ids", + "ids": "⿰扌広", + "canonical_ids": "⿰扌広", + "expanded_ids": "⿰扌⿱广厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "广", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拢", + "codepoint": "U+62E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62E2", + "status": "exact_ids", + "ids": "⿰扌龙", + "canonical_ids": "⿰扌龙", + "expanded_ids": "⿰扌龙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拣", + "codepoint": "U+62E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62E3", + "status": "exact_ids", + "ids": "⿰扌𫠣", + "canonical_ids": "⿰扌𫠣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "𫠣" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拤", + "codepoint": "U+62E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62E4", + "status": "exact_ids", + "ids": "⿰扌卡", + "canonical_ids": "⿰扌卡", + "expanded_ids": "⿰扌⿱上卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "卜", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拥", + "codepoint": "U+62E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62E5", + "status": "exact_ids", + "ids": "⿰扌用", + "canonical_ids": "⿰扌用", + "expanded_ids": "⿰扌⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "扌", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拦", + "codepoint": "U+62E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62E6", + "status": "exact_ids", + "ids": "⿰扌兰", + "canonical_ids": "⿰扌兰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "扌" + ], + "unresolved_leaves": [ + "三" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拧", + "codepoint": "U+62E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62E7", + "status": "exact_ids", + "ids": "⿰扌宁", + "canonical_ids": "⿰扌宁", + "expanded_ids": "⿰扌⿱宀⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "宀", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拨", + "codepoint": "U+62E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62E8", + "status": "exact_ids", + "ids": "⿰扌发", + "canonical_ids": "⿰扌发", + "expanded_ids": "⿰扌发", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "发", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "择", + "codepoint": "U+62E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62E9", + "status": "exact_ids", + "ids": "⿰扌𠬤", + "canonical_ids": "⿰扌𠬤", + "expanded_ids": "⿰扌⿱又⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "又", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拪", + "codepoint": "U+62EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62EA", + "status": "exact_ids", + "ids": "⿰扌西", + "canonical_ids": "⿰扌西", + "expanded_ids": "⿰扌⿻⿱一儿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拫", + "codepoint": "U+62EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62EB", + "status": "exact_ids", + "ids": "⿰扌艮", + "canonical_ids": "⿰扌艮", + "expanded_ids": "⿰扌艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "括", + "codepoint": "U+62EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62EC", + "status": "exact_ids", + "ids": "⿰扌舌", + "canonical_ids": "⿰扌舌", + "expanded_ids": "⿰扌⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拭", + "codepoint": "U+62ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62ED", + "status": "exact_ids", + "ids": "⿰扌式", + "canonical_ids": "⿰扌式", + "expanded_ids": "⿰扌⿱弋工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "弋", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拮", + "codepoint": "U+62EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62EE", + "status": "exact_ids", + "ids": "⿰扌吉", + "canonical_ids": "⿰扌吉", + "expanded_ids": "⿰扌⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拯", + "codepoint": "U+62EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62EF", + "status": "exact_ids", + "ids": "⿰扌丞", + "canonical_ids": "⿰扌丞", + "expanded_ids": "⿰扌⿱⿱乛水一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乛", + "扌", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拰", + "codepoint": "U+62F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62F0", + "status": "exact_ids", + "ids": "⿰扌任", + "canonical_ids": "⿰扌任", + "expanded_ids": "⿰扌⿰亻⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "士", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拱", + "codepoint": "U+62F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62F1", + "status": "exact_ids", + "ids": "⿰扌共", + "canonical_ids": "⿰扌共", + "expanded_ids": "⿰扌⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拲", + "codepoint": "U+62F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62F2", + "status": "exact_ids", + "ids": "⿱共手", + "canonical_ids": "⿱共手", + "expanded_ids": "⿱⿱廿廾手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "手" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拳", + "codepoint": "U+62F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62F3", + "status": "exact_ids", + "ids": "⿱龹手", + "canonical_ids": "⿱龹手", + "expanded_ids": "⿱龹手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "手", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拴", + "codepoint": "U+62F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62F4", + "status": "exact_ids", + "ids": "⿰扌全", + "canonical_ids": "⿰扌全", + "expanded_ids": "⿰扌⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "扌", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拵", + "codepoint": "U+62F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62F5", + "status": "exact_ids", + "ids": "⿰扌存", + "canonical_ids": "⿰扌存", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "存" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拶", + "codepoint": "U+62F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62F6", + "status": "exact_ids", + "ids": "⿰扌𡿪", + "canonical_ids": "⿰扌𡿪", + "expanded_ids": "⿰扌⿱巛夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "巛", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拷", + "codepoint": "U+62F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62F7", + "status": "exact_ids", + "ids": "⿰扌考", + "canonical_ids": "⿰扌考", + "expanded_ids": "⿰扌⿱⿻土丿丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "丿", + "土", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拸", + "codepoint": "U+62F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62F8", + "status": "exact_ids", + "ids": "⿰扌多", + "canonical_ids": "⿰扌多", + "expanded_ids": "⿰扌⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拹", + "codepoint": "U+62F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62F9", + "status": "exact_ids", + "ids": "⿰扌劦", + "canonical_ids": "⿰扌劦", + "expanded_ids": "⿰扌⿱力⿰力力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拺", + "codepoint": "U+62FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62FA", + "status": "exact_ids", + "ids": "⿰扌朿", + "canonical_ids": "⿰扌朿", + "expanded_ids": "⿰扌⿻木冂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "扌", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拻", + "codepoint": "U+62FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62FB", + "status": "exact_ids", + "ids": "⿰扌灰", + "canonical_ids": "⿰扌灰", + "expanded_ids": "⿰扌⿱厂火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "扌", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拼", + "codepoint": "U+62FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62FC", + "status": "exact_ids", + "ids": "⿰扌并", + "canonical_ids": "⿰扌并", + "expanded_ids": "⿰扌⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拽", + "codepoint": "U+62FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62FD", + "status": "exact_ids", + "ids": "⿰扌曳", + "canonical_ids": "⿰扌曳", + "expanded_ids": "⿰扌曳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "曳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拾", + "codepoint": "U+62FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62FE", + "status": "exact_ids", + "ids": "⿰扌合", + "canonical_ids": "⿰扌合", + "expanded_ids": "⿰扌⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "拿", + "codepoint": "U+62FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-62FF", + "status": "exact_ids", + "ids": "⿱合手", + "canonical_ids": "⿱合手", + "expanded_ids": "⿱⿱⿱人一口手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "手" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挀", + "codepoint": "U+6300", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6300", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "持", + "codepoint": "U+6301", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6301", + "status": "exact_ids", + "ids": "⿰扌寺", + "canonical_ids": "⿰扌寺", + "expanded_ids": "⿰扌⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挂", + "codepoint": "U+6302", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6302", + "status": "exact_ids", + "ids": "⿰扌圭", + "canonical_ids": "⿰扌圭", + "expanded_ids": "⿰扌⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挃", + "codepoint": "U+6303", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6303", + "status": "exact_ids", + "ids": "⿰扌至", + "canonical_ids": "⿰扌至", + "expanded_ids": "⿰扌⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挄", + "codepoint": "U+6304", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6304", + "status": "exact_ids", + "ids": "⿰扌光", + "canonical_ids": "⿰扌光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "扌" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挅", + "codepoint": "U+6305", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6305", + "status": "exact_ids", + "ids": "⿰扌朶", + "canonical_ids": "⿰扌朶", + "expanded_ids": "⿰扌⿱乃木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "扌", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挆", + "codepoint": "U+6306", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6306", + "status": "exact_ids", + "ids": "⿰扌朵", + "canonical_ids": "⿰扌朵", + "expanded_ids": "⿰扌⿱几木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "扌", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "指", + "codepoint": "U+6307", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6307", + "status": "exact_ids", + "ids": "⿰扌旨", + "canonical_ids": "⿰扌旨", + "expanded_ids": "⿰扌⿱匕日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "扌", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挈", + "codepoint": "U+6308", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6308", + "status": "exact_ids", + "ids": "⿱㓞手", + "canonical_ids": "⿱㓞手", + "expanded_ids": "⿱⿰丰刀手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "手" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "按", + "codepoint": "U+6309", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6309", + "status": "exact_ids", + "ids": "⿰扌安", + "canonical_ids": "⿰扌安", + "expanded_ids": "⿰扌⿱宀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挊", + "codepoint": "U+630A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-630A", + "status": "exact_ids", + "ids": "⿰扌𠧗", + "canonical_ids": "⿰扌𠧗", + "expanded_ids": "⿰扌⿱上⿱一卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "上", + "卜", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挋", + "codepoint": "U+630B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-630B", + "status": "exact_ids", + "ids": "⿰扌臣", + "canonical_ids": "⿰扌臣", + "expanded_ids": "⿰扌臣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挌", + "codepoint": "U+630C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-630C", + "status": "exact_ids", + "ids": "⿰扌各", + "canonical_ids": "⿰扌各", + "expanded_ids": "⿰扌⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挍", + "codepoint": "U+630D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-630D", + "status": "exact_ids", + "ids": "⿰扌交", + "canonical_ids": "⿰扌交", + "expanded_ids": "⿰扌⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "扌", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挎", + "codepoint": "U+630E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-630E", + "status": "exact_ids", + "ids": "⿰扌夸", + "canonical_ids": "⿰扌夸", + "expanded_ids": "⿰扌⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挏", + "codepoint": "U+630F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-630F", + "status": "exact_ids", + "ids": "⿰扌同", + "canonical_ids": "⿰扌同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挐", + "codepoint": "U+6310", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6310", + "status": "exact_ids", + "ids": "⿱如手", + "canonical_ids": "⿱如手", + "expanded_ids": "⿱⿰女口手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "手" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挑", + "codepoint": "U+6311", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6311", + "status": "exact_ids", + "ids": "⿰扌兆", + "canonical_ids": "⿰扌兆", + "expanded_ids": "⿰扌兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挒", + "codepoint": "U+6312", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6312", + "status": "exact_ids", + "ids": "⿰扌列", + "canonical_ids": "⿰扌列", + "expanded_ids": "⿰扌⿰⿻夕一刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "夕", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挓", + "codepoint": "U+6313", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6313", + "status": "exact_ids", + "ids": "⿰扌宅", + "canonical_ids": "⿰扌宅", + "expanded_ids": "⿰扌⿱宀⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "宀", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挔", + "codepoint": "U+6314", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6314", + "status": "exact_ids", + "ids": "⿰扌衣", + "canonical_ids": "⿰扌衣", + "expanded_ids": "⿰扌衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挕", + "codepoint": "U+6315", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6315", + "status": "exact_ids", + "ids": "⿰扌耳", + "canonical_ids": "⿰扌耳", + "expanded_ids": "⿰扌耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挖", + "codepoint": "U+6316", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6316", + "status": "exact_ids", + "ids": "⿰扌穵", + "canonical_ids": "⿰扌穵", + "expanded_ids": "⿰扌⿱⿱宀八乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "八", + "宀", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挗", + "codepoint": "U+6317", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6317", + "status": "exact_ids", + "ids": "⿰扌夷", + "canonical_ids": "⿰扌夷", + "expanded_ids": "⿰扌⿻大弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "弓", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挘", + "codepoint": "U+6318", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6318", + "status": "exact_ids", + "ids": "⿰扌劣", + "canonical_ids": "⿰扌劣", + "expanded_ids": "⿰扌⿱⿱小丿力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "力", + "小", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挙", + "codepoint": "U+6319", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6319", + "status": "exact_ids", + "ids": "⿱兴手", + "canonical_ids": "⿱兴手", + "expanded_ids": "⿱兴手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兴", + "手" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挚", + "codepoint": "U+631A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-631A", + "status": "exact_ids", + "ids": "⿱执手", + "canonical_ids": "⿱执手", + "expanded_ids": "⿱⿰扌⿻九丶手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "手", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挛", + "codepoint": "U+631B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-631B", + "status": "exact_ids", + "ids": "⿱亦手", + "canonical_ids": "⿱亦手", + "expanded_ids": "⿱亦手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "手" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挜", + "codepoint": "U+631C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-631C", + "status": "exact_ids", + "ids": "⿰扌亚", + "canonical_ids": "⿰扌亚", + "expanded_ids": "⿰扌亚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亚", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挝", + "codepoint": "U+631D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-631D", + "status": "exact_ids", + "ids": "⿰扌过", + "canonical_ids": "⿰扌过", + "expanded_ids": "⿰扌⿰辶寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "扌", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挞", + "codepoint": "U+631E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-631E", + "status": "exact_ids", + "ids": "⿰扌达", + "canonical_ids": "⿰扌达", + "expanded_ids": "⿰扌⿰辶大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "扌", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挟", + "codepoint": "U+631F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-631F", + "status": "exact_ids", + "ids": "⿰扌夹", + "canonical_ids": "⿰扌夹", + "expanded_ids": "⿰扌⿻⿻一大丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挠", + "codepoint": "U+6320", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6320", + "status": "exact_ids", + "ids": "⿰扌尧", + "canonical_ids": "⿰扌尧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "尧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挡", + "codepoint": "U+6321", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6321", + "status": "exact_ids", + "ids": "⿰扌当", + "canonical_ids": "⿰扌当", + "expanded_ids": "⿰扌⿱小彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "彐", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挢", + "codepoint": "U+6322", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6322", + "status": "exact_ids", + "ids": "⿰扌乔", + "canonical_ids": "⿰扌乔", + "expanded_ids": "⿰扌⿱丿⿱大儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "大", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挣", + "codepoint": "U+6323", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6323", + "status": "exact_ids", + "ids": "⿰扌争", + "canonical_ids": "⿰扌争", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "争" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挤", + "codepoint": "U+6324", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6324", + "status": "exact_ids", + "ids": "⿰扌齐", + "canonical_ids": "⿰扌齐", + "expanded_ids": "⿰扌齐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "齐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挥", + "codepoint": "U+6325", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6325", + "status": "exact_ids", + "ids": "⿰扌军", + "canonical_ids": "⿰扌军", + "expanded_ids": "⿰扌⿱冖车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "扌", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挦", + "codepoint": "U+6326", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6326", + "status": "exact_ids", + "ids": "⿰扌寻", + "canonical_ids": "⿰扌寻", + "expanded_ids": "⿰扌⿱彐寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "彐", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挧", + "codepoint": "U+6327", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6327", + "status": "exact_ids", + "ids": "⿰扌羽", + "canonical_ids": "⿰扌羽", + "expanded_ids": "⿰扌⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挨", + "codepoint": "U+6328", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6328", + "status": "exact_ids", + "ids": "⿰扌矣", + "canonical_ids": "⿰扌矣", + "expanded_ids": "⿰扌⿱厶⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "厶", + "大", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挩", + "codepoint": "U+6329", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6329", + "status": "exact_ids", + "ids": "⿰扌兌", + "canonical_ids": "⿰扌兌", + "expanded_ids": "⿰扌⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "捝" + ] + }, + { + "character": "挪", + "codepoint": "U+632A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-632A", + "status": "exact_ids", + "ids": "⿰扌那", + "canonical_ids": "⿰扌那", + "expanded_ids": "⿰扌⿰⿻冂二阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "冂", + "扌", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挫", + "codepoint": "U+632B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-632B", + "status": "exact_ids", + "ids": "⿰扌坐", + "canonical_ids": "⿰扌坐", + "expanded_ids": "⿰扌⿱⿰人人土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "土", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挬", + "codepoint": "U+632C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-632C", + "status": "exact_ids", + "ids": "⿰扌孛", + "canonical_ids": "⿰扌孛", + "expanded_ids": "⿰扌⿳十冖子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "子", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挭", + "codepoint": "U+632D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-632D", + "status": "exact_ids", + "ids": "⿰扌更", + "canonical_ids": "⿰扌更", + "expanded_ids": "⿰扌更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "更" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挮", + "codepoint": "U+632E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-632E", + "status": "exact_ids", + "ids": "⿰扌弟", + "canonical_ids": "⿰扌弟", + "expanded_ids": "⿰扌⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "振", + "codepoint": "U+632F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-632F", + "status": "exact_ids", + "ids": "⿰扌辰", + "canonical_ids": "⿰扌辰", + "expanded_ids": "⿰扌辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挰", + "codepoint": "U+6330", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6330", + "status": "exact_ids", + "ids": "⿰扌呈", + "canonical_ids": "⿰扌呈", + "expanded_ids": "⿰扌⿱口王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "扌", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挱", + "codepoint": "U+6331", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6331", + "status": "exact_ids", + "ids": "⿰扌沙", + "canonical_ids": "⿰扌沙", + "expanded_ids": "⿰扌⿰氵⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "扌", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挲", + "codepoint": "U+6332", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6332", + "status": "exact_ids", + "ids": "⿱沙手", + "canonical_ids": "⿱沙手", + "expanded_ids": "⿱⿰氵⿱小丿手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "手", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挳", + "codepoint": "U+6333", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6333", + "status": "exact_ids", + "ids": "⿰扌巠", + "canonical_ids": "⿰扌巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挴", + "codepoint": "U+6334", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6334", + "status": "exact_ids", + "ids": "⿰扌每", + "canonical_ids": "⿰扌每", + "expanded_ids": "⿰扌⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "扌", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挵", + "codepoint": "U+6335", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6335", + "status": "exact_ids", + "ids": "⿰扌弄", + "canonical_ids": "⿰扌弄", + "expanded_ids": "⿰扌⿱王廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "扌", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挶", + "codepoint": "U+6336", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6336", + "status": "exact_ids", + "ids": "⿰扌局", + "canonical_ids": "⿰扌局", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "局" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挷", + "codepoint": "U+6337", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6337", + "status": "exact_ids", + "ids": "⿰扌邦", + "canonical_ids": "⿰扌邦", + "expanded_ids": "⿰扌⿰丰阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "扌", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挸", + "codepoint": "U+6338", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6338", + "status": "exact_ids", + "ids": "⿰扌見", + "canonical_ids": "⿰扌見", + "expanded_ids": "⿰扌⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "扌", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挹", + "codepoint": "U+6339", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6339", + "status": "exact_ids", + "ids": "⿰扌邑", + "canonical_ids": "⿰扌邑", + "expanded_ids": "⿰扌⿱口巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "巴", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挺", + "codepoint": "U+633A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-633A", + "status": "exact_ids", + "ids": "⿰扌廷", + "canonical_ids": "⿰扌廷", + "expanded_ids": "⿰扌⿰廴⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "廴", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挻", + "codepoint": "U+633B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-633B", + "status": "exact_ids", + "ids": "⿰扌延", + "canonical_ids": "⿰扌延", + "expanded_ids": "⿰扌⿰廴⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廴", + "扌", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挼", + "codepoint": "U+633C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-633C", + "status": "exact_ids", + "ids": "⿰扌妥", + "canonical_ids": "⿰扌妥", + "expanded_ids": "⿰扌⿱爫女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "扌", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挽", + "codepoint": "U+633D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-633D", + "status": "exact_ids", + "ids": "⿰扌免", + "canonical_ids": "⿰扌免", + "expanded_ids": "⿰扌免", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "免", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挾", + "codepoint": "U+633E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-633E", + "status": "exact_ids", + "ids": "⿰扌夾", + "canonical_ids": "⿰扌夾", + "expanded_ids": "⿰扌⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "挿", + "codepoint": "U+633F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-633F", + "status": "exact_ids", + "ids": "⿰扌𢆍", + "canonical_ids": "⿰扌𢆍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "扌" + ], + "unresolved_leaves": [ + "甲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捀", + "codepoint": "U+6340", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6340", + "status": "exact_ids", + "ids": "⿰扌夆", + "canonical_ids": "⿰扌夆", + "expanded_ids": "⿰扌⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捁", + "codepoint": "U+6341", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6341", + "status": "exact_ids", + "ids": "⿰扌告", + "canonical_ids": "⿰扌告", + "expanded_ids": "⿰扌⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "扌", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捂", + "codepoint": "U+6342", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6342", + "status": "exact_ids", + "ids": "⿰扌吾", + "canonical_ids": "⿰扌吾", + "expanded_ids": "⿰扌⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捃", + "codepoint": "U+6343", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6343", + "status": "exact_ids", + "ids": "⿰扌君", + "canonical_ids": "⿰扌君", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "扌" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捄", + "codepoint": "U+6344", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6344", + "status": "exact_ids", + "ids": "⿰扌求", + "canonical_ids": "⿰扌求", + "expanded_ids": "⿰扌求", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "求" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捅", + "codepoint": "U+6345", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6345", + "status": "exact_ids", + "ids": "⿰扌甬", + "canonical_ids": "⿰扌甬", + "expanded_ids": "⿰扌⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "扌", + "月", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捆", + "codepoint": "U+6346", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6346", + "status": "exact_ids", + "ids": "⿰扌困", + "canonical_ids": "⿰扌困", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "困" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捇", + "codepoint": "U+6347", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6347", + "status": "exact_ids", + "ids": "⿰扌赤", + "canonical_ids": "⿰扌赤", + "expanded_ids": "⿰扌赤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "赤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捈", + "codepoint": "U+6348", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6348", + "status": "exact_ids", + "ids": "⿰扌余", + "canonical_ids": "⿰扌余", + "expanded_ids": "⿰扌⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "扌", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捉", + "codepoint": "U+6349", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6349", + "status": "exact_ids", + "ids": "⿰扌足", + "canonical_ids": "⿰扌足", + "expanded_ids": "⿰扌⿱口龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "扌", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捊", + "codepoint": "U+634A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-634A", + "status": "exact_ids", + "ids": "⿰扌孚", + "canonical_ids": "⿰扌孚", + "expanded_ids": "⿰扌⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "扌", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捋", + "codepoint": "U+634B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-634B", + "status": "exact_ids", + "ids": "⿰扌寽", + "canonical_ids": "⿰扌寽", + "expanded_ids": "⿰扌⿱爫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "扌", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捌", + "codepoint": "U+634C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-634C", + "status": "exact_ids", + "ids": "⿰扌别", + "canonical_ids": "⿰扌别", + "expanded_ids": "⿰扌⿰⿱口力刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "力", + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捍", + "codepoint": "U+634D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-634D", + "status": "exact_ids", + "ids": "⿰扌旱", + "canonical_ids": "⿰扌旱", + "expanded_ids": "⿰扌⿱日⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "扌", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捎", + "codepoint": "U+634E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-634E", + "status": "exact_ids", + "ids": "⿰扌肖", + "canonical_ids": "⿰扌肖", + "expanded_ids": "⿰扌⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "扌", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捏", + "codepoint": "U+634F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-634F", + "status": "exact_ids", + "ids": "⿰扌圼", + "canonical_ids": "⿰扌圼", + "expanded_ids": "⿰扌⿱日土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "扌", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捐", + "codepoint": "U+6350", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6350", + "status": "exact_ids", + "ids": "⿰扌肙", + "canonical_ids": "⿰扌肙", + "expanded_ids": "⿰扌⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "扌", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捑", + "codepoint": "U+6351", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6351", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捒", + "codepoint": "U+6352", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6352", + "status": "exact_ids", + "ids": "⿰扌束", + "canonical_ids": "⿰扌束", + "expanded_ids": "⿰扌⿻木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "扌", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捓", + "codepoint": "U+6353", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6353", + "status": "exact_ids", + "ids": "⿰扌邪", + "canonical_ids": "⿰扌邪", + "expanded_ids": "⿰扌⿰牙阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "牙", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捔", + "codepoint": "U+6354", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6354", + "status": "exact_ids", + "ids": "⿰扌角", + "canonical_ids": "⿰扌角", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "扌", + "月" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捕", + "codepoint": "U+6355", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6355", + "status": "exact_ids", + "ids": "⿰扌甫", + "canonical_ids": "⿰扌甫", + "expanded_ids": "⿰扌甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捖", + "codepoint": "U+6356", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6356", + "status": "exact_ids", + "ids": "⿰扌完", + "canonical_ids": "⿰扌完", + "expanded_ids": "⿰扌⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "宀", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捗", + "codepoint": "U+6357", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6357", + "status": "exact_ids", + "ids": "⿰扌步", + "canonical_ids": "⿰扌步", + "expanded_ids": "⿰扌⿱止𣥂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "止", + "𣥂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捘", + "codepoint": "U+6358", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6358", + "status": "exact_ids", + "ids": "⿰扌夋", + "canonical_ids": "⿰扌夋", + "expanded_ids": "⿰扌⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捙", + "codepoint": "U+6359", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6359", + "status": "exact_ids", + "ids": "⿰扌車", + "canonical_ids": "⿰扌車", + "expanded_ids": "⿰扌車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捚", + "codepoint": "U+635A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-635A", + "status": "exact_ids", + "ids": "⿰扌里", + "canonical_ids": "⿰扌里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捛", + "codepoint": "U+635B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-635B", + "status": "exact_ids", + "ids": "⿰扌吕", + "canonical_ids": "⿰扌吕", + "expanded_ids": "⿰扌⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捜", + "codepoint": "U+635C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-635C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捝", + "codepoint": "U+635D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-635D", + "status": "exact_ids", + "ids": "⿰扌兌", + "canonical_ids": "⿰扌兌", + "expanded_ids": "⿰扌⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "挩" + ] + }, + { + "character": "捞", + "codepoint": "U+635E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-635E", + "status": "exact_ids", + "ids": "⿰扌劳", + "canonical_ids": "⿰扌劳", + "expanded_ids": "⿰扌⿳艹冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "扌", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "损", + "codepoint": "U+635F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-635F", + "status": "exact_ids", + "ids": "⿰扌员", + "canonical_ids": "⿰扌员", + "expanded_ids": "⿰扌⿱口⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捠", + "codepoint": "U+6360", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6360", + "status": "exact_ids", + "ids": "⿰扌兵", + "canonical_ids": "⿰扌兵", + "expanded_ids": "⿰扌⿱丘八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "八", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捡", + "codepoint": "U+6361", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6361", + "status": "exact_ids", + "ids": "⿰扌佥", + "canonical_ids": "⿰扌佥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "佥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "换", + "codepoint": "U+6362", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6362", + "status": "exact_ids", + "ids": "⿰扌奂", + "canonical_ids": "⿰扌奂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "扌" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捣", + "codepoint": "U+6363", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6363", + "status": "exact_ids", + "ids": "⿰扌岛", + "canonical_ids": "⿰扌岛", + "expanded_ids": "⿰扌⿱乌山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乌", + "山", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捤", + "codepoint": "U+6364", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6364", + "status": "exact_ids", + "ids": "⿰扌尾", + "canonical_ids": "⿰扌尾", + "expanded_ids": "⿰扌⿱尸毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "扌", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捥", + "codepoint": "U+6365", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6365", + "status": "exact_ids", + "ids": "⿰扌宛", + "canonical_ids": "⿰扌宛", + "expanded_ids": "⿰扌⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捦", + "codepoint": "U+6366", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6366", + "status": "exact_ids", + "ids": "⿰扌金", + "canonical_ids": "⿰扌金", + "expanded_ids": "⿰扌金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捧", + "codepoint": "U+6367", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6367", + "status": "exact_ids", + "ids": "⿰扌奉", + "canonical_ids": "⿰扌奉", + "expanded_ids": "⿰扌⿱𡗗⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "扌", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捨", + "codepoint": "U+6368", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6368", + "status": "exact_ids", + "ids": "⿰扌舍", + "canonical_ids": "⿰扌舍", + "expanded_ids": "⿰扌⿱⿱人一⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "十", + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捩", + "codepoint": "U+6369", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6369", + "status": "exact_ids", + "ids": "⿰扌戻", + "canonical_ids": "⿰扌戻", + "expanded_ids": "⿰扌⿱⿻一尸大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "尸", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捪", + "codepoint": "U+636A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-636A", + "status": "exact_ids", + "ids": "⿰扌昏", + "canonical_ids": "⿰扌昏", + "expanded_ids": "⿰扌⿱氏日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "日", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捫", + "codepoint": "U+636B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-636B", + "status": "exact_ids", + "ids": "⿰扌門", + "canonical_ids": "⿰扌門", + "expanded_ids": "⿰扌門", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "門" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捬", + "codepoint": "U+636C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-636C", + "status": "exact_ids", + "ids": "⿰扌府", + "canonical_ids": "⿰扌府", + "expanded_ids": "⿰扌⿱广⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "广", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捭", + "codepoint": "U+636D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-636D", + "status": "exact_ids", + "ids": "⿰扌卑", + "canonical_ids": "⿰扌卑", + "expanded_ids": "⿰扌卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "据", + "codepoint": "U+636E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-636E", + "status": "exact_ids", + "ids": "⿰扌居", + "canonical_ids": "⿰扌居", + "expanded_ids": "⿰扌⿱尸⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "尸", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捯", + "codepoint": "U+636F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-636F", + "status": "exact_ids", + "ids": "⿰扌到", + "canonical_ids": "⿰扌到", + "expanded_ids": "⿰扌⿰⿱⿱一厶土刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "厶", + "土", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捰", + "codepoint": "U+6370", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6370", + "status": "exact_ids", + "ids": "⿰扌果", + "canonical_ids": "⿰扌果", + "expanded_ids": "⿰扌⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捱", + "codepoint": "U+6371", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6371", + "status": "exact_ids", + "ids": "⿰扌厓", + "canonical_ids": "⿰扌厓", + "expanded_ids": "⿰扌⿱厂⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "土", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捲", + "codepoint": "U+6372", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6372", + "status": "exact_ids", + "ids": "⿰扌巻", + "canonical_ids": "⿰扌巻", + "expanded_ids": "⿰扌⿱龹己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "扌", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捳", + "codepoint": "U+6373", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6373", + "status": "exact_ids", + "ids": "⿰扌岳", + "canonical_ids": "⿰扌岳", + "expanded_ids": "⿰扌⿱丘山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "山", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捴", + "codepoint": "U+6374", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6374", + "status": "exact_ids", + "ids": "⿰扌忩", + "canonical_ids": "⿰扌忩", + "expanded_ids": "⿰扌⿱⿱八厶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "心", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捵", + "codepoint": "U+6375", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6375", + "status": "exact_ids", + "ids": "⿰扌典", + "canonical_ids": "⿰扌典", + "expanded_ids": "⿰扌典", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "典", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捶", + "codepoint": "U+6376", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6376", + "status": "exact_ids", + "ids": "⿰扌垂", + "canonical_ids": "⿰扌垂", + "expanded_ids": "⿰扌垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "垂", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捷", + "codepoint": "U+6377", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6377", + "status": "exact_ids", + "ids": "⿰扌疌", + "canonical_ids": "⿰扌疌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "疌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捸", + "codepoint": "U+6378", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6378", + "status": "exact_ids", + "ids": "⿰扌隶", + "canonical_ids": "⿰扌隶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捹", + "codepoint": "U+6379", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6379", + "status": "exact_ids", + "ids": "⿰扌奔", + "canonical_ids": "⿰扌奔", + "expanded_ids": "⿰扌⿱大⿱十廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "大", + "廾", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捺", + "codepoint": "U+637A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-637A", + "status": "exact_ids", + "ids": "⿰扌奈", + "canonical_ids": "⿰扌奈", + "expanded_ids": "⿰扌⿱大⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "大", + "小", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捻", + "codepoint": "U+637B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-637B", + "status": "exact_ids", + "ids": "⿰扌念", + "canonical_ids": "⿰扌念", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "心", + "扌" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捼", + "codepoint": "U+637C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-637C", + "status": "exact_ids", + "ids": "⿰扌委", + "canonical_ids": "⿰扌委", + "expanded_ids": "⿰扌⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "扌", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捽", + "codepoint": "U+637D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-637D", + "status": "exact_ids", + "ids": "⿰扌卒", + "canonical_ids": "⿰扌卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捾", + "codepoint": "U+637E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-637E", + "status": "exact_ids", + "ids": "⿰扌官", + "canonical_ids": "⿰扌官", + "expanded_ids": "⿰扌⿱宀㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "宀", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "捿", + "codepoint": "U+637F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-637F", + "status": "exact_ids", + "ids": "⿰扌妻", + "canonical_ids": "⿰扌妻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "妻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掀", + "codepoint": "U+6380", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6380", + "status": "exact_ids", + "ids": "⿰扌欣", + "canonical_ids": "⿰扌欣", + "expanded_ids": "⿰扌⿰斤欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "斤", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掁", + "codepoint": "U+6381", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6381", + "status": "exact_ids", + "ids": "⿰扌長", + "canonical_ids": "⿰扌長", + "expanded_ids": "⿰扌長", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "長" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掂", + "codepoint": "U+6382", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6382", + "status": "exact_ids", + "ids": "⿰扌店", + "canonical_ids": "⿰扌店", + "expanded_ids": "⿰扌⿱广⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "广", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掃", + "codepoint": "U+6383", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6383", + "status": "exact_ids", + "ids": "⿰扌帚", + "canonical_ids": "⿰扌帚", + "expanded_ids": "⿰扌⿳彐冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "彐", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掄", + "codepoint": "U+6384", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6384", + "status": "exact_ids", + "ids": "⿰扌侖", + "canonical_ids": "⿰扌侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "扌" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掅", + "codepoint": "U+6385", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6385", + "status": "exact_ids", + "ids": "⿰扌青", + "canonical_ids": "⿰扌青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "月" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掆", + "codepoint": "U+6386", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6386", + "status": "exact_ids", + "ids": "⿰扌岡", + "canonical_ids": "⿰扌岡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "岡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掇", + "codepoint": "U+6387", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6387", + "status": "exact_ids", + "ids": "⿰扌叕", + "canonical_ids": "⿰扌叕", + "expanded_ids": "⿰扌⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "授", + "codepoint": "U+6388", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6388", + "status": "exact_ids", + "ids": "⿰扌受", + "canonical_ids": "⿰扌受", + "expanded_ids": "⿰扌⿳爫冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "又", + "扌", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掉", + "codepoint": "U+6389", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6389", + "status": "exact_ids", + "ids": "⿰扌卓", + "canonical_ids": "⿰扌卓", + "expanded_ids": "⿰扌⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "扌", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掊", + "codepoint": "U+638A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-638A", + "status": "exact_ids", + "ids": "⿰扌咅", + "canonical_ids": "⿰扌咅", + "expanded_ids": "⿰扌⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "扌", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掋", + "codepoint": "U+638B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-638B", + "status": "exact_ids", + "ids": "⿰扌底", + "canonical_ids": "⿰扌底", + "expanded_ids": "⿰扌⿱广⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "广", + "扌", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掌", + "codepoint": "U+638C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-638C", + "status": "exact_ids", + "ids": "⿱尚手", + "canonical_ids": "⿱尚手", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "手" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掍", + "codepoint": "U+638D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-638D", + "status": "exact_ids", + "ids": "⿰扌昆", + "canonical_ids": "⿰扌昆", + "expanded_ids": "⿰扌⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "扌", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掎", + "codepoint": "U+638E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-638E", + "status": "exact_ids", + "ids": "⿰扌奇", + "canonical_ids": "⿰扌奇", + "expanded_ids": "⿰扌⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掏", + "codepoint": "U+638F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-638F", + "status": "exact_ids", + "ids": "⿰扌匋", + "canonical_ids": "⿰扌匋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "匋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掐", + "codepoint": "U+6390", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6390", + "status": "exact_ids", + "ids": "⿰扌臽", + "canonical_ids": "⿰扌臽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "臼" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掑", + "codepoint": "U+6391", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6391", + "status": "exact_ids", + "ids": "⿰扌其", + "canonical_ids": "⿰扌其", + "expanded_ids": "⿰扌其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "排", + "codepoint": "U+6392", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6392", + "status": "exact_ids", + "ids": "⿰扌非", + "canonical_ids": "⿰扌非", + "expanded_ids": "⿰扌非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掓", + "codepoint": "U+6393", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6393", + "status": "exact_ids", + "ids": "⿰扌叔", + "canonical_ids": "⿰扌叔", + "expanded_ids": "⿰扌⿰⿱上小又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "又", + "小", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掔", + "codepoint": "U+6394", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6394", + "status": "exact_ids", + "ids": "⿱臤手", + "canonical_ids": "⿱臤手", + "expanded_ids": "⿱⿰臣又手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "手", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掕", + "codepoint": "U+6395", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6395", + "status": "exact_ids", + "ids": "⿰扌夌", + "canonical_ids": "⿰扌夌", + "expanded_ids": "⿰扌⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掖", + "codepoint": "U+6396", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6396", + "status": "exact_ids", + "ids": "⿰扌夜", + "canonical_ids": "⿰扌夜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "夜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掗", + "codepoint": "U+6397", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6397", + "status": "exact_ids", + "ids": "⿰扌亞", + "canonical_ids": "⿰扌亞", + "expanded_ids": "⿰扌亞", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亞", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掘", + "codepoint": "U+6398", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6398", + "status": "exact_ids", + "ids": "⿰扌屈", + "canonical_ids": "⿰扌屈", + "expanded_ids": "⿰扌⿱尸⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "尸", + "屮", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掙", + "codepoint": "U+6399", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6399", + "status": "exact_ids", + "ids": "⿰扌爭", + "canonical_ids": "⿰扌爭", + "expanded_ids": "⿰扌⿱爫肀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "爫", + "肀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掚", + "codepoint": "U+639A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-639A", + "status": "exact_ids", + "ids": "⿰扌兩", + "canonical_ids": "⿰扌兩", + "expanded_ids": "⿰扌⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掛", + "codepoint": "U+639B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-639B", + "status": "exact_ids", + "ids": "⿰扌卦", + "canonical_ids": "⿰扌卦", + "expanded_ids": "⿰扌⿰⿱土土卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "土", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掜", + "codepoint": "U+639C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-639C", + "status": "exact_ids", + "ids": "⿰扌兒", + "canonical_ids": "⿰扌兒", + "expanded_ids": "⿰扌⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "扌", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掝", + "codepoint": "U+639D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-639D", + "status": "exact_ids", + "ids": "⿰扌或", + "canonical_ids": "⿰扌或", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "或" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掞", + "codepoint": "U+639E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-639E", + "status": "exact_ids", + "ids": "⿰扌炎", + "canonical_ids": "⿰扌炎", + "expanded_ids": "⿰扌⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掟", + "codepoint": "U+639F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-639F", + "status": "exact_ids", + "ids": "⿰扌定", + "canonical_ids": "⿰扌定", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "扌" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掠", + "codepoint": "U+63A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63A0", + "status": "exact_ids", + "ids": "⿰扌京", + "canonical_ids": "⿰扌京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "採", + "codepoint": "U+63A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63A1", + "status": "exact_ids", + "ids": "⿰扌采", + "canonical_ids": "⿰扌采", + "expanded_ids": "⿰扌⿱爫木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "木", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "探", + "codepoint": "U+63A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63A2", + "status": "exact_ids", + "ids": "⿰扌罙", + "canonical_ids": "⿰扌罙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "木" + ], + "unresolved_leaves": [ + "⺳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掣", + "codepoint": "U+63A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63A3", + "status": "exact_ids", + "ids": "⿱制手", + "canonical_ids": "⿱制手", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "手" + ], + "unresolved_leaves": [ + "制" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掤", + "codepoint": "U+63A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63A4", + "status": "exact_ids", + "ids": "⿰扌朋", + "canonical_ids": "⿰扌朋", + "expanded_ids": "⿰扌⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "接", + "codepoint": "U+63A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63A5", + "status": "exact_ids", + "ids": "⿰扌妾", + "canonical_ids": "⿰扌妾", + "expanded_ids": "⿰扌⿱立女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "扌", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掦", + "codepoint": "U+63A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63A6", + "status": "exact_ids", + "ids": "⿰扌易", + "canonical_ids": "⿰扌易", + "expanded_ids": "⿰扌⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "扌", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "控", + "codepoint": "U+63A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63A7", + "status": "exact_ids", + "ids": "⿰扌空", + "canonical_ids": "⿰扌空", + "expanded_ids": "⿰扌⿱⿱宀八工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "工", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "推", + "codepoint": "U+63A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63A8", + "status": "exact_ids", + "ids": "⿰扌隹", + "canonical_ids": "⿰扌隹", + "expanded_ids": "⿰扌隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掩", + "codepoint": "U+63A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63A9", + "status": "exact_ids", + "ids": "⿰扌奄", + "canonical_ids": "⿰扌奄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "扌" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "措", + "codepoint": "U+63AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63AA", + "status": "exact_ids", + "ids": "⿰扌昔", + "canonical_ids": "⿰扌昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "日" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掫", + "codepoint": "U+63AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63AB", + "status": "exact_ids", + "ids": "⿰扌取", + "canonical_ids": "⿰扌取", + "expanded_ids": "⿰扌⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "扌", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掬", + "codepoint": "U+63AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63AC", + "status": "exact_ids", + "ids": "⿰扌匊", + "canonical_ids": "⿰扌匊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "匊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掭", + "codepoint": "U+63AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63AD", + "status": "exact_ids", + "ids": "⿰扌忝", + "canonical_ids": "⿰扌忝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "扌" + ], + "unresolved_leaves": [ + "㣺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掮", + "codepoint": "U+63AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63AE", + "status": "exact_ids", + "ids": "⿰扌肩", + "canonical_ids": "⿰扌肩", + "expanded_ids": "⿰扌⿱⿻一尸月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "扌", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掯", + "codepoint": "U+63AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63AF", + "status": "exact_ids", + "ids": "⿰扌肯", + "canonical_ids": "⿰扌肯", + "expanded_ids": "⿰扌⿱止月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "月", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掰", + "codepoint": "U+63B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63B0", + "status": "exact_ids", + "ids": "⿲手分手", + "canonical_ids": "⿲手分手", + "expanded_ids": "⿲手⿱八刀手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "手" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掱", + "codepoint": "U+63B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63B1", + "status": "exact_ids", + "ids": "⿱手⿰手手", + "canonical_ids": "⿱手⿰手手", + "expanded_ids": "⿱手⿰手手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "手" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掲", + "codepoint": "U+63B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63B2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掳", + "codepoint": "U+63B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63B3", + "status": "exact_ids", + "ids": "⿰扌虏", + "canonical_ids": "⿰扌虏", + "expanded_ids": "⿰扌⿱虍力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "扌", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掴", + "codepoint": "U+63B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63B4", + "status": "exact_ids", + "ids": "⿰扌国", + "canonical_ids": "⿰扌国", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "国" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掵", + "codepoint": "U+63B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63B5", + "status": "exact_ids", + "ids": "⿰扌命", + "canonical_ids": "⿰扌命", + "expanded_ids": "⿰扌⿱⿱人一⿰口卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "卩", + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掶", + "codepoint": "U+63B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63B6", + "status": "exact_ids", + "ids": "⿰扌庚", + "canonical_ids": "⿰扌庚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "庚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掷", + "codepoint": "U+63B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63B7", + "status": "exact_ids", + "ids": "⿰扌郑", + "canonical_ids": "⿰扌郑", + "expanded_ids": "⿰扌⿰⿱丷⿻一大阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "扌", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掸", + "codepoint": "U+63B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63B8", + "status": "exact_ids", + "ids": "⿰扌单", + "canonical_ids": "⿰扌单", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "单" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掹", + "codepoint": "U+63B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63B9", + "status": "exact_ids", + "ids": "⿰扌孟", + "canonical_ids": "⿰扌孟", + "expanded_ids": "⿰扌⿱子皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "扌", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掺", + "codepoint": "U+63BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63BA", + "status": "exact_ids", + "ids": "⿰扌参", + "canonical_ids": "⿰扌参", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "参" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掻", + "codepoint": "U+63BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63BB", + "status": "exact_ids", + "ids": "⿰扌𧈡", + "canonical_ids": "⿰扌𧈡", + "expanded_ids": "⿰扌⿱又虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "扌", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掼", + "codepoint": "U+63BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63BC", + "status": "exact_ids", + "ids": "⿰扌贯", + "canonical_ids": "⿰扌贯", + "expanded_ids": "⿰扌⿱毌⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "扌", + "毌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掽", + "codepoint": "U+63BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63BD", + "status": "exact_ids", + "ids": "⿰扌並", + "canonical_ids": "⿰扌並", + "expanded_ids": "⿰扌⿱丷亚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亚", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掾", + "codepoint": "U+63BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63BE", + "status": "exact_ids", + "ids": "⿰扌彖", + "canonical_ids": "⿰扌彖", + "expanded_ids": "⿰扌⿱彑𧰨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "扌", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "掿", + "codepoint": "U+63BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63BF", + "status": "exact_ids", + "ids": "⿰扌若", + "canonical_ids": "⿰扌若", + "expanded_ids": "⿰扌⿱艹⿱⿻丿一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "扌", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揀", + "codepoint": "U+63C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63C0", + "status": "exact_ids", + "ids": "⿰扌柬", + "canonical_ids": "⿰扌柬", + "expanded_ids": "⿰扌柬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "柬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揁", + "codepoint": "U+63C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63C1", + "status": "exact_ids", + "ids": "⿰扌貞", + "canonical_ids": "⿰扌貞", + "expanded_ids": "⿰扌⿱卜⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "卜", + "扌", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揂", + "codepoint": "U+63C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63C2", + "status": "exact_ids", + "ids": "⿰扌酋", + "canonical_ids": "⿰扌酋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "扌" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揃", + "codepoint": "U+63C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63C3", + "status": "exact_ids", + "ids": "⿰扌前", + "canonical_ids": "⿰扌前", + "expanded_ids": "⿰扌⿱止⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "扌", + "月", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揄", + "codepoint": "U+63C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63C4", + "status": "exact_ids", + "ids": "⿰扌兪", + "canonical_ids": "⿰扌兪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "兪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揅", + "codepoint": "U+63C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63C5", + "status": "exact_ids", + "ids": "⿱研手", + "canonical_ids": "⿱研手", + "expanded_ids": "⿱⿰石⿱一廾手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廾", + "手", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揆", + "codepoint": "U+63C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63C6", + "status": "exact_ids", + "ids": "⿰扌癸", + "canonical_ids": "⿰扌癸", + "expanded_ids": "⿰扌⿱癶⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "扌", + "癶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揇", + "codepoint": "U+63C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63C7", + "status": "exact_ids", + "ids": "⿰扌南", + "canonical_ids": "⿰扌南", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "南" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揈", + "codepoint": "U+63C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63C8", + "status": "exact_ids", + "ids": "⿰扌訇", + "canonical_ids": "⿰扌訇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "訇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揉", + "codepoint": "U+63C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63C9", + "status": "exact_ids", + "ids": "⿰扌柔", + "canonical_ids": "⿰扌柔", + "expanded_ids": "⿰扌⿱矛木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "木", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揊", + "codepoint": "U+63CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63CA", + "status": "exact_ids", + "ids": "⿰扌畐", + "canonical_ids": "⿰扌畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揋", + "codepoint": "U+63CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63CB", + "status": "exact_ids", + "ids": "⿰扌畏", + "canonical_ids": "⿰扌畏", + "expanded_ids": "⿰扌⿱田氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "氏", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揌", + "codepoint": "U+63CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63CC", + "status": "exact_ids", + "ids": "⿰扌思", + "canonical_ids": "⿰扌思", + "expanded_ids": "⿰扌⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "扌", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揍", + "codepoint": "U+63CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63CD", + "status": "exact_ids", + "ids": "⿰扌奏", + "canonical_ids": "⿰扌奏", + "expanded_ids": "⿰扌⿱𡗗⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "扌", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揎", + "codepoint": "U+63CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63CE", + "status": "exact_ids", + "ids": "⿰扌宣", + "canonical_ids": "⿰扌宣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "扌" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "描", + "codepoint": "U+63CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63CF", + "status": "exact_ids", + "ids": "⿰扌苗", + "canonical_ids": "⿰扌苗", + "expanded_ids": "⿰扌⿱艹田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "提", + "codepoint": "U+63D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63D0", + "status": "exact_ids", + "ids": "⿰扌是", + "canonical_ids": "⿰扌是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "日" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揑", + "codepoint": "U+63D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63D1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "插", + "codepoint": "U+63D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63D2", + "status": "exact_ids", + "ids": "⿰扌臿", + "canonical_ids": "⿰扌臿", + "expanded_ids": "⿰扌⿱⿱丿十臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "扌", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揓", + "codepoint": "U+63D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63D3", + "status": "exact_ids", + "ids": "⿰扌施", + "canonical_ids": "⿰扌施", + "expanded_ids": "⿰扌⿰⿰方人⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "人", + "扌", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揔", + "codepoint": "U+63D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63D4", + "status": "exact_ids", + "ids": "⿰扌怱", + "canonical_ids": "⿰扌怱", + "expanded_ids": "⿰扌⿱⿻勿丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "勿", + "心", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揕", + "codepoint": "U+63D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63D5", + "status": "exact_ids", + "ids": "⿰扌甚", + "canonical_ids": "⿰扌甚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "甘" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揖", + "codepoint": "U+63D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63D6", + "status": "exact_ids", + "ids": "⿰扌咠", + "canonical_ids": "⿰扌咠", + "expanded_ids": "⿰扌⿱口耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "扌", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揗", + "codepoint": "U+63D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63D7", + "status": "exact_ids", + "ids": "⿰扌盾", + "canonical_ids": "⿰扌盾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "扌", + "目" + ], + "unresolved_leaves": [ + "⺁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揘", + "codepoint": "U+63D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63D8", + "status": "exact_ids", + "ids": "⿰扌皇", + "canonical_ids": "⿰扌皇", + "expanded_ids": "⿰扌⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "扌", + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揙", + "codepoint": "U+63D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63D9", + "status": "exact_ids", + "ids": "⿰扌扁", + "canonical_ids": "⿰扌扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "扌" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揚", + "codepoint": "U+63DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63DA", + "status": "exact_ids", + "ids": "⿰扌昜", + "canonical_ids": "⿰扌昜", + "expanded_ids": "⿰扌⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "扌", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "換", + "codepoint": "U+63DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63DB", + "status": "exact_ids", + "ids": "⿰扌奐", + "canonical_ids": "⿰扌奐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "奐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揜", + "codepoint": "U+63DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63DC", + "status": "exact_ids", + "ids": "⿰扌弇", + "canonical_ids": "⿰扌弇", + "expanded_ids": "⿰扌⿱⿱⿱人一口廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "廾", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揝", + "codepoint": "U+63DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63DD", + "status": "exact_ids", + "ids": "⿰扌昝", + "canonical_ids": "⿰扌昝", + "expanded_ids": "⿰扌⿱⿰夂卜日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "夂", + "扌", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揞", + "codepoint": "U+63DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63DE", + "status": "exact_ids", + "ids": "⿰扌音", + "canonical_ids": "⿰扌音", + "expanded_ids": "⿰扌⿱立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揟", + "codepoint": "U+63DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63DF", + "status": "exact_ids", + "ids": "⿰扌胥", + "canonical_ids": "⿰扌胥", + "expanded_ids": "⿰扌⿱疋月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "月", + "疋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揠", + "codepoint": "U+63E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63E0", + "status": "exact_ids", + "ids": "⿰扌匽", + "canonical_ids": "⿰扌匽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "匽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "握", + "codepoint": "U+63E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63E1", + "status": "exact_ids", + "ids": "⿰扌屋", + "canonical_ids": "⿰扌屋", + "expanded_ids": "⿰扌⿱尸⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "尸", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揢", + "codepoint": "U+63E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63E2", + "status": "exact_ids", + "ids": "⿰扌客", + "canonical_ids": "⿰扌客", + "expanded_ids": "⿰扌⿱宀⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "宀", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揣", + "codepoint": "U+63E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63E3", + "status": "exact_ids", + "ids": "⿰扌耑", + "canonical_ids": "⿰扌耑", + "expanded_ids": "⿰扌⿱山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "扌", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揤", + "codepoint": "U+63E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63E4", + "status": "exact_ids", + "ids": "⿰扌即", + "canonical_ids": "⿰扌即", + "expanded_ids": "⿰扌⿰艮卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "扌", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揥", + "codepoint": "U+63E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63E5", + "status": "exact_ids", + "ids": "⿰扌帝", + "canonical_ids": "⿰扌帝", + "expanded_ids": "⿰扌⿳⿱亠八冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揦", + "codepoint": "U+63E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63E6", + "status": "exact_ids", + "ids": "⿰扌剌", + "canonical_ids": "⿰扌剌", + "expanded_ids": "⿰扌⿰⿻木口刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "口", + "扌", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揧", + "codepoint": "U+63E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63E7", + "status": "exact_ids", + "ids": "⿱剌手", + "canonical_ids": "⿱剌手", + "expanded_ids": "⿱⿰⿻木口刂手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "口", + "手", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揨", + "codepoint": "U+63E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63E8", + "status": "exact_ids", + "ids": "⿰扌亭", + "canonical_ids": "⿰扌亭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "亭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揩", + "codepoint": "U+63E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63E9", + "status": "exact_ids", + "ids": "⿰扌皆", + "canonical_ids": "⿰扌皆", + "expanded_ids": "⿰扌⿱⿰匕匕⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "扌", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揪", + "codepoint": "U+63EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63EA", + "status": "exact_ids", + "ids": "⿰扌秋", + "canonical_ids": "⿰扌秋", + "expanded_ids": "⿰扌⿰⿻丿木火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "扌", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揫", + "codepoint": "U+63EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63EB", + "status": "exact_ids", + "ids": "⿱秋手", + "canonical_ids": "⿱秋手", + "expanded_ids": "⿱⿰⿻丿木火手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "手", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揬", + "codepoint": "U+63EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63EC", + "status": "exact_ids", + "ids": "⿰扌突", + "canonical_ids": "⿰扌突", + "expanded_ids": "⿰扌⿱⿱宀八⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "八", + "大", + "宀", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揭", + "codepoint": "U+63ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63ED", + "status": "exact_ids", + "ids": "⿰扌曷", + "canonical_ids": "⿰扌曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "曰" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揮", + "codepoint": "U+63EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63EE", + "status": "exact_ids", + "ids": "⿰扌軍", + "canonical_ids": "⿰扌軍", + "expanded_ids": "⿰扌⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "扌", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揯", + "codepoint": "U+63EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63EF", + "status": "exact_ids", + "ids": "⿰扌恆", + "canonical_ids": "⿰扌恆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "扌" + ], + "unresolved_leaves": [ + "亙" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揰", + "codepoint": "U+63F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63F0", + "status": "exact_ids", + "ids": "⿰扌重", + "canonical_ids": "⿰扌重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "扌" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揱", + "codepoint": "U+63F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63F1", + "status": "exact_ids", + "ids": "⿱削手", + "canonical_ids": "⿱削手", + "expanded_ids": "⿱⿰⿱小月刂手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "小", + "手", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揲", + "codepoint": "U+63F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63F2", + "status": "exact_ids", + "ids": "⿰扌枼", + "canonical_ids": "⿰扌枼", + "expanded_ids": "⿰扌⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "扌", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揳", + "codepoint": "U+63F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63F3", + "status": "exact_ids", + "ids": "⿰扌契", + "canonical_ids": "⿰扌契", + "expanded_ids": "⿰扌⿱⿰丰刀大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "大", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "援", + "codepoint": "U+63F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63F4", + "status": "exact_ids", + "ids": "⿰扌爰", + "canonical_ids": "⿰扌爰", + "expanded_ids": "⿰扌⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "扌", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揵", + "codepoint": "U+63F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63F5", + "status": "exact_ids", + "ids": "⿰扌建", + "canonical_ids": "⿰扌建", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廴", + "扌" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揶", + "codepoint": "U+63F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63F6", + "status": "exact_ids", + "ids": "⿰扌耶", + "canonical_ids": "⿰扌耶", + "expanded_ids": "⿰扌⿰耳阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "耳", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揷", + "codepoint": "U+63F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63F7", + "status": "exact_ids", + "ids": "⿰扌𦥛", + "canonical_ids": "⿰扌𦥛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "𦥛" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揸", + "codepoint": "U+63F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63F8", + "status": "exact_ids", + "ids": "⿰扌查", + "canonical_ids": "⿰扌查", + "expanded_ids": "⿰扌⿱木⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "扌", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揹", + "codepoint": "U+63F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63F9", + "status": "exact_ids", + "ids": "⿰扌背", + "canonical_ids": "⿰扌背", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "月" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揺", + "codepoint": "U+63FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63FA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揻", + "codepoint": "U+63FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63FB", + "status": "exact_ids", + "ids": "⿰扌威", + "canonical_ids": "⿰扌威", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "威" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揼", + "codepoint": "U+63FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63FC", + "status": "exact_ids", + "ids": "⿰扌泵", + "canonical_ids": "⿰扌泵", + "expanded_ids": "⿰扌⿱石水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "水", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揽", + "codepoint": "U+63FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63FD", + "status": "exact_ids", + "ids": "⿰扌览", + "canonical_ids": "⿰扌览", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "览" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揾", + "codepoint": "U+63FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63FE", + "status": "exact_ids", + "ids": "⿰扌昷", + "canonical_ids": "⿰扌昷", + "expanded_ids": "⿰扌⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "日", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "揿", + "codepoint": "U+63FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-63FF", + "status": "exact_ids", + "ids": "⿰扌钦", + "canonical_ids": "⿰扌钦", + "expanded_ids": "⿰扌⿰钅欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "欠", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搀", + "codepoint": "U+6400", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6400", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搁", + "codepoint": "U+6401", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6401", + "status": "exact_ids", + "ids": "⿰扌阁", + "canonical_ids": "⿰扌阁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "阁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搂", + "codepoint": "U+6402", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6402", + "status": "exact_ids", + "ids": "⿰扌娄", + "canonical_ids": "⿰扌娄", + "expanded_ids": "⿰扌⿱⿻木丷女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "女", + "扌", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搃", + "codepoint": "U+6403", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6403", + "status": "exact_ids", + "ids": "⿰扌总", + "canonical_ids": "⿰扌总", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "扌" + ], + "unresolved_leaves": [ + "𠮦" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搄", + "codepoint": "U+6404", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6404", + "status": "exact_ids", + "ids": "⿰扌恒", + "canonical_ids": "⿰扌恒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "扌" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搅", + "codepoint": "U+6405", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6405", + "status": "exact_ids", + "ids": "⿰扌觉", + "canonical_ids": "⿰扌觉", + "expanded_ids": "⿰扌⿳小冖⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂", + "冖", + "小", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搆", + "codepoint": "U+6406", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6406", + "status": "exact_ids", + "ids": "⿰扌冓", + "canonical_ids": "⿰扌冓", + "expanded_ids": "⿰扌⿱井⿱一⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "井", + "冂", + "土", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搇", + "codepoint": "U+6407", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6407", + "status": "exact_ids", + "ids": "⿰扌衾", + "canonical_ids": "⿰扌衾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "扌", + "衣" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搈", + "codepoint": "U+6408", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6408", + "status": "exact_ids", + "ids": "⿰扌容", + "canonical_ids": "⿰扌容", + "expanded_ids": "⿰扌⿱宀⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搉", + "codepoint": "U+6409", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6409", + "status": "exact_ids", + "ids": "⿰扌隺", + "canonical_ids": "⿰扌隺", + "expanded_ids": "⿰扌⿻冖隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "扌", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搊", + "codepoint": "U+640A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-640A", + "status": "exact_ids", + "ids": "⿰扌芻", + "canonical_ids": "⿰扌芻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "芻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搋", + "codepoint": "U+640B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-640B", + "status": "exact_ids", + "ids": "⿰扌虒", + "canonical_ids": "⿰扌虒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "虒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搌", + "codepoint": "U+640C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-640C", + "status": "exact_ids", + "ids": "⿰扌展", + "canonical_ids": "⿰扌展", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "展" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "損", + "codepoint": "U+640D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-640D", + "status": "exact_ids", + "ids": "⿰扌員", + "canonical_ids": "⿰扌員", + "expanded_ids": "⿰扌⿱口⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "扌", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搎", + "codepoint": "U+640E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-640E", + "status": "exact_ids", + "ids": "⿰扌孫", + "canonical_ids": "⿰扌孫", + "expanded_ids": "⿰扌⿰子⿱丿⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "子", + "小", + "幺", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搏", + "codepoint": "U+640F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-640F", + "status": "exact_ids", + "ids": "⿰扌尃", + "canonical_ids": "⿰扌尃", + "expanded_ids": "⿰扌⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "扌", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搐", + "codepoint": "U+6410", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6410", + "status": "exact_ids", + "ids": "⿰扌畜", + "canonical_ids": "⿰扌畜", + "expanded_ids": "⿰扌⿱⿱亠幺田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "扌", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搑", + "codepoint": "U+6411", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6411", + "status": "exact_ids", + "ids": "⿰扌茸", + "canonical_ids": "⿰扌茸", + "expanded_ids": "⿰扌⿱艹耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "耳", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搒", + "codepoint": "U+6412", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6412", + "status": "exact_ids", + "ids": "⿰扌旁", + "canonical_ids": "⿰扌旁", + "expanded_ids": "⿰扌⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "扌", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搓", + "codepoint": "U+6413", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6413", + "status": "exact_ids", + "ids": "⿰扌差", + "canonical_ids": "⿰扌差", + "expanded_ids": "⿰扌⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "扌", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搔", + "codepoint": "U+6414", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6414", + "status": "exact_ids", + "ids": "⿰扌蚤", + "canonical_ids": "⿰扌蚤", + "expanded_ids": "⿰扌⿱⿻又丶虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "又", + "扌", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搕", + "codepoint": "U+6415", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6415", + "status": "exact_ids", + "ids": "⿰扌盍", + "canonical_ids": "⿰扌盍", + "expanded_ids": "⿰扌⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "扌", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搖", + "codepoint": "U+6416", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6416", + "status": "exact_ids", + "ids": "⿰扌䍃", + "canonical_ids": "⿰扌䍃", + "expanded_ids": "⿰扌⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "爪", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "摇" + ] + }, + { + "character": "搗", + "codepoint": "U+6417", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6417", + "status": "exact_ids", + "ids": "⿰扌島", + "canonical_ids": "⿰扌島", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "島" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搘", + "codepoint": "U+6418", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6418", + "status": "exact_ids", + "ids": "⿰扌耆", + "canonical_ids": "⿰扌耆", + "expanded_ids": "⿰扌⿱⿱⿻土丿匕日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "扌", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搙", + "codepoint": "U+6419", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6419", + "status": "exact_ids", + "ids": "⿰扌辱", + "canonical_ids": "⿰扌辱", + "expanded_ids": "⿰扌⿱辰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "扌", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搚", + "codepoint": "U+641A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-641A", + "status": "exact_ids", + "ids": "⿰扌脅", + "canonical_ids": "⿰扌脅", + "expanded_ids": "⿰扌⿱⿱力⿰力力月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "扌", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搛", + "codepoint": "U+641B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-641B", + "status": "exact_ids", + "ids": "⿰扌兼", + "canonical_ids": "⿰扌兼", + "expanded_ids": "⿰扌兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搜", + "codepoint": "U+641C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-641C", + "status": "exact_ids", + "ids": "⿰扌叟", + "canonical_ids": "⿰扌叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "扌" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搝", + "codepoint": "U+641D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-641D", + "status": "exact_ids", + "ids": "⿰扌臭", + "canonical_ids": "⿰扌臭", + "expanded_ids": "⿰扌⿱⿻目丶⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "扌", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搞", + "codepoint": "U+641E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-641E", + "status": "exact_ids", + "ids": "⿰扌高", + "canonical_ids": "⿰扌高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搟", + "codepoint": "U+641F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-641F", + "status": "exact_ids", + "ids": "⿰扌軒", + "canonical_ids": "⿰扌軒", + "expanded_ids": "⿰扌⿰車⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "扌", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搠", + "codepoint": "U+6420", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6420", + "status": "exact_ids", + "ids": "⿰扌朔", + "canonical_ids": "⿰扌朔", + "expanded_ids": "⿰扌⿰⿱䒑屮月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "屮", + "扌", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搡", + "codepoint": "U+6421", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6421", + "status": "exact_ids", + "ids": "⿰扌桑", + "canonical_ids": "⿰扌桑", + "expanded_ids": "⿰扌⿱⿱又⿰又又木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "扌", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搢", + "codepoint": "U+6422", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6422", + "status": "exact_ids", + "ids": "⿰扌晉", + "canonical_ids": "⿰扌晉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "晉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搣", + "codepoint": "U+6423", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6423", + "status": "exact_ids", + "ids": "⿰扌烕", + "canonical_ids": "⿰扌烕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "烕" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搤", + "codepoint": "U+6424", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6424", + "status": "exact_ids", + "ids": "⿰扌益", + "canonical_ids": "⿰扌益", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搥", + "codepoint": "U+6425", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6425", + "status": "exact_ids", + "ids": "⿰扌追", + "canonical_ids": "⿰扌追", + "expanded_ids": "⿰扌⿰辶⿱丿㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "丿", + "扌", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搦", + "codepoint": "U+6426", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6426", + "status": "exact_ids", + "ids": "⿰扌弱", + "canonical_ids": "⿰扌弱", + "expanded_ids": "⿰扌⿰⿱弓二⿱弓二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "弓", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搧", + "codepoint": "U+6427", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6427", + "status": "exact_ids", + "ids": "⿰扌扇", + "canonical_ids": "⿰扌扇", + "expanded_ids": "⿰扌⿱⿻一尸⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "尸", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搨", + "codepoint": "U+6428", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6428", + "status": "exact_ids", + "ids": "⿰扌𦐇", + "canonical_ids": "⿰扌𦐇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "扌" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搩", + "codepoint": "U+6429", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6429", + "status": "exact_ids", + "ids": "⿰扌桀", + "canonical_ids": "⿰扌桀", + "expanded_ids": "⿰扌⿱⿰夕⿻丨二木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夕", + "扌", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搪", + "codepoint": "U+642A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-642A", + "status": "exact_ids", + "ids": "⿰扌唐", + "canonical_ids": "⿰扌唐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搫", + "codepoint": "U+642B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-642B", + "status": "exact_ids", + "ids": "⿱般手", + "canonical_ids": "⿱般手", + "expanded_ids": "⿱⿰舟⿱几又手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "手", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搬", + "codepoint": "U+642C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-642C", + "status": "exact_ids", + "ids": "⿰扌般", + "canonical_ids": "⿰扌般", + "expanded_ids": "⿰扌⿰舟⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "扌", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搭", + "codepoint": "U+642D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-642D", + "status": "exact_ids", + "ids": "⿰扌荅", + "canonical_ids": "⿰扌荅", + "expanded_ids": "⿰扌⿱艹⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "扌", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搮", + "codepoint": "U+642E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-642E", + "status": "exact_ids", + "ids": "⿰扌栗", + "canonical_ids": "⿰扌栗", + "expanded_ids": "⿰扌⿱覀木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "木", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搯", + "codepoint": "U+642F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-642F", + "status": "exact_ids", + "ids": "⿰扌舀", + "canonical_ids": "⿰扌舀", + "expanded_ids": "⿰扌⿱爫臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "爫", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搰", + "codepoint": "U+6430", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6430", + "status": "exact_ids", + "ids": "⿰扌骨", + "canonical_ids": "⿰扌骨", + "expanded_ids": "⿰扌⿱冎月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "扌", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搱", + "codepoint": "U+6431", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6431", + "status": "exact_ids", + "ids": "⿰扌屖", + "canonical_ids": "⿰扌屖", + "expanded_ids": "⿰扌⿱尸⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "尸", + "扌", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搲", + "codepoint": "U+6432", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6432", + "status": "exact_ids", + "ids": "⿰扌窊", + "canonical_ids": "⿰扌窊", + "expanded_ids": "⿰扌⿱⿱宀八瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "扌", + "瓜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搳", + "codepoint": "U+6433", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6433", + "status": "exact_ids", + "ids": "⿰扌害", + "canonical_ids": "⿰扌害", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "害" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搴", + "codepoint": "U+6434", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6434", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搵", + "codepoint": "U+6435", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6435", + "status": "exact_ids", + "ids": "⿰扌𥁕", + "canonical_ids": "⿰扌𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "皿" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搶", + "codepoint": "U+6436", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6436", + "status": "exact_ids", + "ids": "⿰扌倉", + "canonical_ids": "⿰扌倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搷", + "codepoint": "U+6437", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6437", + "status": "exact_ids", + "ids": "⿰扌真", + "canonical_ids": "⿰扌真", + "expanded_ids": "⿰扌⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "扌", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搸", + "codepoint": "U+6438", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6438", + "status": "exact_ids", + "ids": "⿰扌秦", + "canonical_ids": "⿰扌秦", + "expanded_ids": "⿰扌⿱𡗗⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "扌", + "木", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搹", + "codepoint": "U+6439", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6439", + "status": "exact_ids", + "ids": "⿰扌鬲", + "canonical_ids": "⿰扌鬲", + "expanded_ids": "⿰扌鬲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "携", + "codepoint": "U+643A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-643A", + "status": "exact_ids", + "ids": "⿰扌隽", + "canonical_ids": "⿰扌隽", + "expanded_ids": "⿰扌⿱隹乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "扌", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搻", + "codepoint": "U+643B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-643B", + "status": "exact_ids", + "ids": "⿱合𢪒", + "canonical_ids": "⿱合𢪒", + "expanded_ids": "⿱⿱⿱人一口⿰手手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "手" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搼", + "codepoint": "U+643C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-643C", + "status": "exact_ids", + "ids": "⿰扌拳", + "canonical_ids": "⿰扌拳", + "expanded_ids": "⿰扌⿱龹手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "手", + "扌", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搽", + "codepoint": "U+643D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-643D", + "status": "exact_ids", + "ids": "⿰扌茶", + "canonical_ids": "⿰扌茶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "茶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搾", + "codepoint": "U+643E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-643E", + "status": "exact_ids", + "ids": "⿰扌窄", + "canonical_ids": "⿰扌窄", + "expanded_ids": "⿰扌⿱⿱宀八乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "八", + "宀", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "搿", + "codepoint": "U+643F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-643F", + "status": "exact_ids", + "ids": "⿲扌合扌", + "canonical_ids": "⿲扌合扌", + "expanded_ids": "⿲扌⿱⿱人一口扌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摀", + "codepoint": "U+6440", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6440", + "status": "exact_ids", + "ids": "⿰扌烏", + "canonical_ids": "⿰扌烏", + "expanded_ids": "⿰扌烏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "烏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摁", + "codepoint": "U+6441", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6441", + "status": "exact_ids", + "ids": "⿰扌恩", + "canonical_ids": "⿰扌恩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "扌" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摂", + "codepoint": "U+6442", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6442", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摃", + "codepoint": "U+6443", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6443", + "status": "exact_ids", + "ids": "⿰扌貢", + "canonical_ids": "⿰扌貢", + "expanded_ids": "⿰扌⿱工⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "工", + "扌", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摄", + "codepoint": "U+6444", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6444", + "status": "exact_ids", + "ids": "⿰扌聂", + "canonical_ids": "⿰扌聂", + "expanded_ids": "⿰扌⿱耳⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "扌", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摅", + "codepoint": "U+6445", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6445", + "status": "exact_ids", + "ids": "⿰扌虑", + "canonical_ids": "⿰扌虑", + "expanded_ids": "⿰扌⿱虍心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "扌", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摆", + "codepoint": "U+6446", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6446", + "status": "exact_ids", + "ids": "⿰扌罢", + "canonical_ids": "⿰扌罢", + "expanded_ids": "⿰扌⿱罒⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "扌", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摇", + "codepoint": "U+6447", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6447", + "status": "exact_ids", + "ids": "⿰扌䍃", + "canonical_ids": "⿰扌䍃", + "expanded_ids": "⿰扌⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "爪", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "搖" + ] + }, + { + "character": "摈", + "codepoint": "U+6448", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6448", + "status": "exact_ids", + "ids": "⿰扌宾", + "canonical_ids": "⿰扌宾", + "expanded_ids": "⿰扌⿱宀⿱丘八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "八", + "宀", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摉", + "codepoint": "U+6449", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6449", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摊", + "codepoint": "U+644A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-644A", + "status": "exact_ids", + "ids": "⿰扌难", + "canonical_ids": "⿰扌难", + "expanded_ids": "⿰扌⿰又隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "扌", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摋", + "codepoint": "U+644B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-644B", + "status": "exact_ids", + "ids": "⿰扌殺", + "canonical_ids": "⿰扌殺", + "expanded_ids": "⿰扌⿰⿱乂朩⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "几", + "又", + "扌", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摌", + "codepoint": "U+644C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-644C", + "status": "exact_ids", + "ids": "⿰扌産", + "canonical_ids": "⿰扌産", + "expanded_ids": "⿰扌⿱⿱⿱亠八厂⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "八", + "厂", + "扌", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摍", + "codepoint": "U+644D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-644D", + "status": "exact_ids", + "ids": "⿰扌宿", + "canonical_ids": "⿰扌宿", + "expanded_ids": "⿰扌⿱宀⿰亻⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "亻", + "宀", + "扌", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摎", + "codepoint": "U+644E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-644E", + "status": "exact_ids", + "ids": "⿰扌翏", + "canonical_ids": "⿰扌翏", + "expanded_ids": "⿰扌⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摏", + "codepoint": "U+644F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-644F", + "status": "exact_ids", + "ids": "⿰扌舂", + "canonical_ids": "⿰扌舂", + "expanded_ids": "⿰扌⿱𡗗臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "臼", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摐", + "codepoint": "U+6450", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6450", + "status": "exact_ids", + "ids": "⿰扌從", + "canonical_ids": "⿰扌從", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "從" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摑", + "codepoint": "U+6451", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6451", + "status": "exact_ids", + "ids": "⿰扌國", + "canonical_ids": "⿰扌國", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "國" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摒", + "codepoint": "U+6452", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6452", + "status": "exact_ids", + "ids": "⿰扌屏", + "canonical_ids": "⿰扌屏", + "expanded_ids": "⿰扌⿱尸⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "尸", + "廾", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摓", + "codepoint": "U+6453", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6453", + "status": "exact_ids", + "ids": "⿰扌逢", + "canonical_ids": "⿰扌逢", + "expanded_ids": "⿰扌⿰辶⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "扌", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摔", + "codepoint": "U+6454", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6454", + "status": "exact_ids", + "ids": "⿰扌率", + "canonical_ids": "⿰扌率", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "率" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摕", + "codepoint": "U+6455", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6455", + "status": "exact_ids", + "ids": "⿰扌帶", + "canonical_ids": "⿰扌帶", + "expanded_ids": "⿰扌⿳卌冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "卌", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摖", + "codepoint": "U+6456", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6456", + "status": "exact_ids", + "ids": "⿰扌祭", + "canonical_ids": "⿰扌祭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摗", + "codepoint": "U+6457", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6457", + "status": "exact_ids", + "ids": "⿰扌欶", + "canonical_ids": "⿰扌欶", + "expanded_ids": "⿰扌⿰⿻木口欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "扌", + "木", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摘", + "codepoint": "U+6458", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6458", + "status": "exact_ids", + "ids": "⿰扌啇", + "canonical_ids": "⿰扌啇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摙", + "codepoint": "U+6459", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6459", + "status": "exact_ids", + "ids": "⿰扌連", + "canonical_ids": "⿰扌連", + "expanded_ids": "⿰扌⿰辶車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "車", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摚", + "codepoint": "U+645A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-645A", + "status": "exact_ids", + "ids": "⿰扌堂", + "canonical_ids": "⿰扌堂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "扌" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摛", + "codepoint": "U+645B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-645B", + "status": "exact_ids", + "ids": "⿰扌离", + "canonical_ids": "⿰扌离", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "扌", + "禸" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摜", + "codepoint": "U+645C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-645C", + "status": "exact_ids", + "ids": "⿰扌貫", + "canonical_ids": "⿰扌貫", + "expanded_ids": "⿰扌⿱毌⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "扌", + "毌", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摝", + "codepoint": "U+645D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-645D", + "status": "exact_ids", + "ids": "⿰扌鹿", + "canonical_ids": "⿰扌鹿", + "expanded_ids": "⿰扌鹿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摞", + "codepoint": "U+645E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-645E", + "status": "exact_ids", + "ids": "⿰扌累", + "canonical_ids": "⿰扌累", + "expanded_ids": "⿰扌⿱田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "扌", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摟", + "codepoint": "U+645F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-645F", + "status": "exact_ids", + "ids": "⿰扌婁", + "canonical_ids": "⿰扌婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摠", + "codepoint": "U+6460", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6460", + "status": "exact_ids", + "ids": "⿰扌悤", + "canonical_ids": "⿰扌悤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "扌" + ], + "unresolved_leaves": [ + "囱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摡", + "codepoint": "U+6461", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6461", + "status": "exact_ids", + "ids": "⿰扌既", + "canonical_ids": "⿰扌既", + "expanded_ids": "⿰扌⿰艮旡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "旡", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摢", + "codepoint": "U+6462", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6462", + "status": "exact_ids", + "ids": "⿰扌虖", + "canonical_ids": "⿰扌虖", + "expanded_ids": "⿰扌⿱虍乎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乎", + "扌", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摣", + "codepoint": "U+6463", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6463", + "status": "exact_ids", + "ids": "⿰扌虘", + "canonical_ids": "⿰扌虘", + "expanded_ids": "⿰扌⿱虍且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "扌", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摤", + "codepoint": "U+6464", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6464", + "status": "exact_ids", + "ids": "⿰扌爽", + "canonical_ids": "⿰扌爽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "扌" + ], + "unresolved_leaves": [ + "㸚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摥", + "codepoint": "U+6465", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6465", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摦", + "codepoint": "U+6466", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6466", + "status": "exact_ids", + "ids": "⿰扌瓠", + "canonical_ids": "⿰扌瓠", + "expanded_ids": "⿰扌⿰⿱大⿱一丂瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "扌", + "瓜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摧", + "codepoint": "U+6467", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6467", + "status": "exact_ids", + "ids": "⿰扌崔", + "canonical_ids": "⿰扌崔", + "expanded_ids": "⿰扌⿱山隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "扌", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摨", + "codepoint": "U+6468", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6468", + "status": "exact_ids", + "ids": "⿰扌犀", + "canonical_ids": "⿰扌犀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "犀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摩", + "codepoint": "U+6469", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6469", + "status": "exact_ids", + "ids": "⿱麻手", + "canonical_ids": "⿱麻手", + "expanded_ids": "⿱⿱广⿰木木手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "手", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摪", + "codepoint": "U+646A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-646A", + "status": "exact_ids", + "ids": "⿰扌將", + "canonical_ids": "⿰扌將", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "將" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摫", + "codepoint": "U+646B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-646B", + "status": "exact_ids", + "ids": "⿰扌規", + "canonical_ids": "⿰扌規", + "expanded_ids": "⿰扌⿰⿻一大⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "大", + "扌", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摬", + "codepoint": "U+646C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-646C", + "status": "exact_ids", + "ids": "⿰扌竟", + "canonical_ids": "⿰扌竟", + "expanded_ids": "⿰扌⿱立⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "扌", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摭", + "codepoint": "U+646D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-646D", + "status": "exact_ids", + "ids": "⿰扌庶", + "canonical_ids": "⿰扌庶", + "expanded_ids": "⿰扌⿱广⿱廿火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "廿", + "扌", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摮", + "codepoint": "U+646E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-646E", + "status": "exact_ids", + "ids": "⿱敖手", + "canonical_ids": "⿱敖手", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "手" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摯", + "codepoint": "U+646F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-646F", + "status": "exact_ids", + "ids": "⿱執手", + "canonical_ids": "⿱執手", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "土", + "手" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摰", + "codepoint": "U+6470", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6470", + "status": "exact_ids", + "ids": "⿱埶手", + "canonical_ids": "⿱埶手", + "expanded_ids": "⿱⿰⿱⿱土儿土⿻九丶手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "儿", + "土", + "手" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摱", + "codepoint": "U+6471", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6471", + "status": "exact_ids", + "ids": "⿰扌曼", + "canonical_ids": "⿰扌曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摲", + "codepoint": "U+6472", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6472", + "status": "exact_ids", + "ids": "⿰扌斬", + "canonical_ids": "⿰扌斬", + "expanded_ids": "⿰扌⿰車斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "斤", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摳", + "codepoint": "U+6473", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6473", + "status": "exact_ids", + "ids": "⿰扌區", + "canonical_ids": "⿰扌區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摴", + "codepoint": "U+6474", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6474", + "status": "exact_ids", + "ids": "⿰扌雩", + "canonical_ids": "⿰扌雩", + "expanded_ids": "⿰扌⿱雨⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "扌", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摵", + "codepoint": "U+6475", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6475", + "status": "exact_ids", + "ids": "⿰扌戚", + "canonical_ids": "⿰扌戚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "戚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摶", + "codepoint": "U+6476", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6476", + "status": "exact_ids", + "ids": "⿰扌專", + "canonical_ids": "⿰扌專", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "寸", + "扌" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摷", + "codepoint": "U+6477", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6477", + "status": "exact_ids", + "ids": "⿰扌巢", + "canonical_ids": "⿰扌巢", + "expanded_ids": "⿰扌⿱巛⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "扌", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摸", + "codepoint": "U+6478", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6478", + "status": "exact_ids", + "ids": "⿰扌莫", + "canonical_ids": "⿰扌莫", + "expanded_ids": "⿰扌⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "扌", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摹", + "codepoint": "U+6479", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6479", + "status": "exact_ids", + "ids": "⿱莫手", + "canonical_ids": "⿱莫手", + "expanded_ids": "⿱⿱艹⿱日大手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "手", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摺", + "codepoint": "U+647A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-647A", + "status": "exact_ids", + "ids": "⿰扌習", + "canonical_ids": "⿰扌習", + "expanded_ids": "⿰扌⿱⿰习习⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "习", + "扌", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摻", + "codepoint": "U+647B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-647B", + "status": "exact_ids", + "ids": "⿰扌參", + "canonical_ids": "⿰扌參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摼", + "codepoint": "U+647C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-647C", + "status": "exact_ids", + "ids": "⿰扌堅", + "canonical_ids": "⿰扌堅", + "expanded_ids": "⿰扌⿱⿰臣又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "土", + "扌", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摽", + "codepoint": "U+647D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-647D", + "status": "exact_ids", + "ids": "⿰扌票", + "canonical_ids": "⿰扌票", + "expanded_ids": "⿰扌⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "扌", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摾", + "codepoint": "U+647E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-647E", + "status": "exact_ids", + "ids": "⿰扌强", + "canonical_ids": "⿰扌强", + "expanded_ids": "⿰扌⿰弓⿱口虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "弓", + "扌", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "摿", + "codepoint": "U+647F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-647F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撀", + "codepoint": "U+6480", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6480", + "status": "exact_ids", + "ids": "⿱殸手", + "canonical_ids": "⿱殸手", + "expanded_ids": "⿱⿰⿱士⿻尸丨⿱几又手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "几", + "又", + "士", + "尸", + "手" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撁", + "codepoint": "U+6481", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6481", + "status": "exact_ids", + "ids": "⿰扌牽", + "canonical_ids": "⿰扌牽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "牽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撂", + "codepoint": "U+6482", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6482", + "status": "exact_ids", + "ids": "⿰扌畧", + "canonical_ids": "⿰扌畧", + "expanded_ids": "⿰扌⿱田⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "扌", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撃", + "codepoint": "U+6483", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6483", + "status": "exact_ids", + "ids": "⿱軗手", + "canonical_ids": "⿱軗手", + "expanded_ids": "⿱⿰車⿱几又手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "手", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撄", + "codepoint": "U+6484", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6484", + "status": "exact_ids", + "ids": "⿰扌婴", + "canonical_ids": "⿰扌婴", + "expanded_ids": "⿰扌⿱⿰⿻冂人⿻冂人女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "女", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撅", + "codepoint": "U+6485", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6485", + "status": "exact_ids", + "ids": "⿰扌厥", + "canonical_ids": "⿰扌厥", + "expanded_ids": "⿰扌⿱厂⿰⿱䒑屮欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "厂", + "屮", + "扌", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撆", + "codepoint": "U+6486", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6486", + "status": "exact_ids", + "ids": "⿱敝手", + "canonical_ids": "⿱敝手", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "手", + "攵" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撇", + "codepoint": "U+6487", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6487", + "status": "exact_ids", + "ids": "⿰扌敝", + "canonical_ids": "⿰扌敝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "攵" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撈", + "codepoint": "U+6488", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6488", + "status": "exact_ids", + "ids": "⿰扌勞", + "canonical_ids": "⿰扌勞", + "expanded_ids": "⿰扌⿳⿰火火冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "扌", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撉", + "codepoint": "U+6489", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6489", + "status": "exact_ids", + "ids": "⿱敦手", + "canonical_ids": "⿱敦手", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "手", + "攵" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撊", + "codepoint": "U+648A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-648A", + "status": "exact_ids", + "ids": "⿰扌閒", + "canonical_ids": "⿰扌閒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "閒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撋", + "codepoint": "U+648B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-648B", + "status": "exact_ids", + "ids": "⿰扌閏", + "canonical_ids": "⿰扌閏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "閏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撌", + "codepoint": "U+648C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-648C", + "status": "exact_ids", + "ids": "⿰扌貴", + "canonical_ids": "⿰扌貴", + "expanded_ids": "⿰扌⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "扌", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撍", + "codepoint": "U+648D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-648D", + "status": "exact_ids", + "ids": "⿰扌朁", + "canonical_ids": "⿰扌朁", + "expanded_ids": "⿰扌⿱⿰旡旡曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "旡", + "曰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撎", + "codepoint": "U+648E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-648E", + "status": "exact_ids", + "ids": "⿰扌壹", + "canonical_ids": "⿰扌壹", + "expanded_ids": "⿰扌⿳土冖豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "土", + "扌", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撏", + "codepoint": "U+648F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-648F", + "status": "exact_ids", + "ids": "⿰扌尋", + "canonical_ids": "⿰扌尋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "尋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撐", + "codepoint": "U+6490", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6490", + "status": "exact_ids", + "ids": "⿰扌牚", + "canonical_ids": "⿰扌牚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "扌", + "牙" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撑", + "codepoint": "U+6491", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6491", + "status": "exact_ids", + "ids": "⿰扌掌", + "canonical_ids": "⿰扌掌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "手", + "扌" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撒", + "codepoint": "U+6492", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6492", + "status": "exact_ids", + "ids": "⿰扌散", + "canonical_ids": "⿰扌散", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "散" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撓", + "codepoint": "U+6493", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6493", + "status": "exact_ids", + "ids": "⿰扌堯", + "canonical_ids": "⿰扌堯", + "expanded_ids": "⿰扌⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撔", + "codepoint": "U+6494", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6494", + "status": "exact_ids", + "ids": "⿰扌景", + "canonical_ids": "⿰扌景", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "日" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撕", + "codepoint": "U+6495", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6495", + "status": "exact_ids", + "ids": "⿰扌斯", + "canonical_ids": "⿰扌斯", + "expanded_ids": "⿰扌⿰其斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "扌", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撖", + "codepoint": "U+6496", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6496", + "status": "exact_ids", + "ids": "⿰扌敢", + "canonical_ids": "⿰扌敢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "敢" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撗", + "codepoint": "U+6497", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6497", + "status": "exact_ids", + "ids": "⿰扌黄", + "canonical_ids": "⿰扌黄", + "expanded_ids": "⿰扌黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撘", + "codepoint": "U+6498", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6498", + "status": "exact_ids", + "ids": "⿰扌答", + "canonical_ids": "⿰扌答", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "扌" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撙", + "codepoint": "U+6499", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6499", + "status": "exact_ids", + "ids": "⿰扌尊", + "canonical_ids": "⿰扌尊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "寸", + "扌" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撚", + "codepoint": "U+649A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-649A", + "status": "exact_ids", + "ids": "⿰扌然", + "canonical_ids": "⿰扌然", + "expanded_ids": "⿰扌⿱⿰月⿻大丶灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "扌", + "月", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撛", + "codepoint": "U+649B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-649B", + "status": "exact_ids", + "ids": "⿰扌粦", + "canonical_ids": "⿰扌粦", + "expanded_ids": "⿰扌⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "扌", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撜", + "codepoint": "U+649C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-649C", + "status": "exact_ids", + "ids": "⿰扌登", + "canonical_ids": "⿰扌登", + "expanded_ids": "⿰扌⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "癶", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撝", + "codepoint": "U+649D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-649D", + "status": "exact_ids", + "ids": "⿰扌爲", + "canonical_ids": "⿰扌爲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "爲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撞", + "codepoint": "U+649E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-649E", + "status": "exact_ids", + "ids": "⿰扌童", + "canonical_ids": "⿰扌童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撟", + "codepoint": "U+649F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-649F", + "status": "exact_ids", + "ids": "⿰扌喬", + "canonical_ids": "⿰扌喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "扌" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撠", + "codepoint": "U+64A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64A0", + "status": "exact_ids", + "ids": "⿰扌戟", + "canonical_ids": "⿰扌戟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "戟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撡", + "codepoint": "U+64A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64A1", + "status": "exact_ids", + "ids": "⿰扌叅", + "canonical_ids": "⿰扌叅", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "厶", + "扌" + ], + "unresolved_leaves": [ + "㣺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撢", + "codepoint": "U+64A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64A2", + "status": "exact_ids", + "ids": "⿰扌覃", + "canonical_ids": "⿰扌覃", + "expanded_ids": "⿰扌⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "扌", + "日", + "襾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撣", + "codepoint": "U+64A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64A3", + "status": "exact_ids", + "ids": "⿰扌單", + "canonical_ids": "⿰扌單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撤", + "codepoint": "U+64A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64A4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撥", + "codepoint": "U+64A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64A5", + "status": "exact_ids", + "ids": "⿰扌發", + "canonical_ids": "⿰扌發", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "發" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撦", + "codepoint": "U+64A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64A6", + "status": "exact_ids", + "ids": "⿰扌奢", + "canonical_ids": "⿰扌奢", + "expanded_ids": "⿰扌⿱大⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "大", + "扌", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撧", + "codepoint": "U+64A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64A7", + "status": "exact_ids", + "ids": "⿰扌絶", + "canonical_ids": "⿰扌絶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "巴", + "幺", + "扌" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撨", + "codepoint": "U+64A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64A8", + "status": "exact_ids", + "ids": "⿰扌焦", + "canonical_ids": "⿰扌焦", + "expanded_ids": "⿰扌⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "灬", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撩", + "codepoint": "U+64A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64A9", + "status": "exact_ids", + "ids": "⿰扌尞", + "canonical_ids": "⿰扌尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "扌" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撪", + "codepoint": "U+64AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64AA", + "status": "exact_ids", + "ids": "⿰扌軬", + "canonical_ids": "⿰扌軬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "軬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撫", + "codepoint": "U+64AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64AB", + "status": "exact_ids", + "ids": "⿰扌無", + "canonical_ids": "⿰扌無", + "expanded_ids": "⿰扌無", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "無" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撬", + "codepoint": "U+64AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64AC", + "status": "exact_ids", + "ids": "⿰扌毳", + "canonical_ids": "⿰扌毳", + "expanded_ids": "⿰扌⿱毛⿰毛毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "播", + "codepoint": "U+64AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64AD", + "status": "exact_ids", + "ids": "⿰扌番", + "canonical_ids": "⿰扌番", + "expanded_ids": "⿰扌⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "扌", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撮", + "codepoint": "U+64AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64AE", + "status": "exact_ids", + "ids": "⿰扌最", + "canonical_ids": "⿰扌最", + "expanded_ids": "⿰扌⿱曰⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "扌", + "曰", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撯", + "codepoint": "U+64AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64AF", + "status": "exact_ids", + "ids": "⿰扌着", + "canonical_ids": "⿰扌着", + "expanded_ids": "⿰扌⿱羊目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "目", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撰", + "codepoint": "U+64B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64B0", + "status": "exact_ids", + "ids": "⿰扌巽", + "canonical_ids": "⿰扌巽", + "expanded_ids": "⿰扌⿱⿰己己⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "廾", + "廿", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撱", + "codepoint": "U+64B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64B1", + "status": "exact_ids", + "ids": "⿰扌隋", + "canonical_ids": "⿰扌隋", + "expanded_ids": "⿰扌⿰阝⿱⿱牛一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "扌", + "月", + "牛", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撲", + "codepoint": "U+64B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64B2", + "status": "exact_ids", + "ids": "⿰扌菐", + "canonical_ids": "⿰扌菐", + "expanded_ids": "⿰扌⿱业⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "儿", + "扌", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撳", + "codepoint": "U+64B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64B3", + "status": "exact_ids", + "ids": "⿰扌欽", + "canonical_ids": "⿰扌欽", + "expanded_ids": "⿰扌⿰金欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "欠", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撴", + "codepoint": "U+64B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64B4", + "status": "exact_ids", + "ids": "⿰扌敦", + "canonical_ids": "⿰扌敦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "攵" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撵", + "codepoint": "U+64B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64B5", + "status": "exact_ids", + "ids": "⿰扌辇", + "canonical_ids": "⿰扌辇", + "expanded_ids": "⿰扌⿱⿰⿻一大⿻一大车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "扌", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撶", + "codepoint": "U+64B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64B6", + "status": "exact_ids", + "ids": "⿰扌華", + "canonical_ids": "⿰扌華", + "expanded_ids": "⿰扌⿱艹𠦒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "艹", + "𠦒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撷", + "codepoint": "U+64B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64B7", + "status": "exact_ids", + "ids": "⿰扌颉", + "canonical_ids": "⿰扌颉", + "expanded_ids": "⿰扌⿰⿱士口⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "口", + "士", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撸", + "codepoint": "U+64B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64B8", + "status": "exact_ids", + "ids": "⿰扌鲁", + "canonical_ids": "⿰扌鲁", + "expanded_ids": "⿰扌⿱鱼日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "日", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撹", + "codepoint": "U+64B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64B9", + "status": "exact_ids", + "ids": "⿰扌覚", + "canonical_ids": "⿰扌覚", + "expanded_ids": "⿰扌⿳小冖⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "小", + "扌", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撺", + "codepoint": "U+64BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64BA", + "status": "exact_ids", + "ids": "⿰扌窜", + "canonical_ids": "⿰扌窜", + "expanded_ids": "⿰扌⿱⿱宀八⿻⿱口口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "八", + "口", + "宀", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撻", + "codepoint": "U+64BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64BB", + "status": "exact_ids", + "ids": "⿰扌達", + "canonical_ids": "⿰扌達", + "expanded_ids": "⿰扌⿰辶⿱土羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "扌", + "羊", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撼", + "codepoint": "U+64BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64BC", + "status": "exact_ids", + "ids": "⿰扌感", + "canonical_ids": "⿰扌感", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "扌" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撽", + "codepoint": "U+64BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64BD", + "status": "exact_ids", + "ids": "⿰扌敫", + "canonical_ids": "⿰扌敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撾", + "codepoint": "U+64BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64BE", + "status": "exact_ids", + "ids": "⿰扌過", + "canonical_ids": "⿰扌過", + "expanded_ids": "⿰扌⿰辶⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "扌", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "撿", + "codepoint": "U+64BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64BF", + "status": "exact_ids", + "ids": "⿰扌僉", + "canonical_ids": "⿰扌僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擀", + "codepoint": "U+64C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64C0", + "status": "exact_ids", + "ids": "⿰扌幹", + "canonical_ids": "⿰扌幹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "幹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擁", + "codepoint": "U+64C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64C1", + "status": "exact_ids", + "ids": "⿰扌雍", + "canonical_ids": "⿰扌雍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "雍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擂", + "codepoint": "U+64C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64C2", + "status": "exact_ids", + "ids": "⿰扌雷", + "canonical_ids": "⿰扌雷", + "expanded_ids": "⿰扌⿱雨田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "田", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擃", + "codepoint": "U+64C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64C3", + "status": "exact_ids", + "ids": "⿰扌農", + "canonical_ids": "⿰扌農", + "expanded_ids": "⿰扌⿱曲辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "曲", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擄", + "codepoint": "U+64C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64C4", + "status": "exact_ids", + "ids": "⿰扌虜", + "canonical_ids": "⿰扌虜", + "expanded_ids": "⿰扌⿱虍⿱田力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "扌", + "田", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擅", + "codepoint": "U+64C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64C5", + "status": "exact_ids", + "ids": "⿰扌亶", + "canonical_ids": "⿰扌亶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "扌", + "日" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擆", + "codepoint": "U+64C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64C6", + "status": "exact_ids", + "ids": "⿰扌著", + "canonical_ids": "⿰扌著", + "expanded_ids": "⿰扌⿱艹⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "扌", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擇", + "codepoint": "U+64C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64C7", + "status": "exact_ids", + "ids": "⿰扌睪", + "canonical_ids": "⿰扌睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "扌", + "罒" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擈", + "codepoint": "U+64C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64C8", + "status": "exact_ids", + "ids": "⿰扌業", + "canonical_ids": "⿰扌業", + "expanded_ids": "⿰扌⿱业⿻羊八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "八", + "扌", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擉", + "codepoint": "U+64C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64C9", + "status": "exact_ids", + "ids": "⿰扌蜀", + "canonical_ids": "⿰扌蜀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "罒" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擊", + "codepoint": "U+64CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64CA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擋", + "codepoint": "U+64CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64CB", + "status": "exact_ids", + "ids": "⿰扌當", + "canonical_ids": "⿰扌當", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "扌", + "田" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擌", + "codepoint": "U+64CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64CC", + "status": "exact_ids", + "ids": "⿰扌筴", + "canonical_ids": "⿰扌筴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "扌" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "操", + "codepoint": "U+64CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64CD", + "status": "exact_ids", + "ids": "⿰扌喿", + "canonical_ids": "⿰扌喿", + "expanded_ids": "⿰扌⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "扌", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擎", + "codepoint": "U+64CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64CE", + "status": "exact_ids", + "ids": "⿱敬手", + "canonical_ids": "⿱敬手", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "手", + "攵", + "艹" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擏", + "codepoint": "U+64CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64CF", + "status": "exact_ids", + "ids": "⿰扌敬", + "canonical_ids": "⿰扌敬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "攵", + "艹" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擐", + "codepoint": "U+64D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64D0", + "status": "exact_ids", + "ids": "⿰扌睘", + "canonical_ids": "⿰扌睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擑", + "codepoint": "U+64D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64D1", + "status": "exact_ids", + "ids": "⿰扌戢", + "canonical_ids": "⿰扌戢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "扌", + "耳" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擒", + "codepoint": "U+64D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64D2", + "status": "exact_ids", + "ids": "⿰扌禽", + "canonical_ids": "⿰扌禽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "人", + "扌", + "禸" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擓", + "codepoint": "U+64D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64D3", + "status": "exact_ids", + "ids": "⿰扌匯", + "canonical_ids": "⿰扌匯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "匯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擔", + "codepoint": "U+64D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64D4", + "status": "exact_ids", + "ids": "⿰扌詹", + "canonical_ids": "⿰扌詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擕", + "codepoint": "U+64D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64D5", + "status": "exact_ids", + "ids": "⿰扌雋", + "canonical_ids": "⿰扌雋", + "expanded_ids": "⿰扌⿱隹弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "扌", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擖", + "codepoint": "U+64D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64D6", + "status": "exact_ids", + "ids": "⿰扌葛", + "canonical_ids": "⿰扌葛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "曰", + "艹" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擗", + "codepoint": "U+64D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64D7", + "status": "exact_ids", + "ids": "⿰扌辟", + "canonical_ids": "⿰扌辟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "扌", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擘", + "codepoint": "U+64D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64D8", + "status": "exact_ids", + "ids": "⿱辟手", + "canonical_ids": "⿱辟手", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "手", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擙", + "codepoint": "U+64D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64D9", + "status": "exact_ids", + "ids": "⿰扌奧", + "canonical_ids": "⿰扌奧", + "expanded_ids": "⿰扌⿱⿱宀⿱丿⿻木丷大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "大", + "宀", + "扌", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "據", + "codepoint": "U+64DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64DA", + "status": "exact_ids", + "ids": "⿰扌豦", + "canonical_ids": "⿰扌豦", + "expanded_ids": "⿰扌⿱虍豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "虍", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擛", + "codepoint": "U+64DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64DB", + "status": "exact_ids", + "ids": "⿰扌葉", + "canonical_ids": "⿰扌葉", + "expanded_ids": "⿰扌⿱艹⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "扌", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擜", + "codepoint": "U+64DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64DC", + "status": "exact_ids", + "ids": "⿰扌献", + "canonical_ids": "⿰扌献", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "扌" + ], + "unresolved_leaves": [ + "南" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擝", + "codepoint": "U+64DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64DD", + "status": "exact_ids", + "ids": "⿰扌盟", + "canonical_ids": "⿰扌盟", + "expanded_ids": "⿰扌⿱⿰日月皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "日", + "月", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擞", + "codepoint": "U+64DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64DE", + "status": "exact_ids", + "ids": "⿰扌数", + "canonical_ids": "⿰扌数", + "expanded_ids": "⿰扌⿰⿱⿻木丷女攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "女", + "扌", + "攵", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擟", + "codepoint": "U+64DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64DF", + "status": "exact_ids", + "ids": "⿰扌爾", + "canonical_ids": "⿰扌爾", + "expanded_ids": "⿰扌爾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "爾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擠", + "codepoint": "U+64E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64E0", + "status": "exact_ids", + "ids": "⿰扌齊", + "canonical_ids": "⿰扌齊", + "expanded_ids": "⿰扌齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擡", + "codepoint": "U+64E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64E1", + "status": "exact_ids", + "ids": "⿰扌臺", + "canonical_ids": "⿰扌臺", + "expanded_ids": "⿰扌⿳⿱士口冖⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冖", + "厶", + "口", + "土", + "士", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 251, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擢", + "codepoint": "U+64E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64E2", + "status": "exact_ids", + "ids": "⿰扌翟", + "canonical_ids": "⿰扌翟", + "expanded_ids": "⿰扌⿱⿰习习隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "扌", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擣", + "codepoint": "U+64E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64E3", + "status": "exact_ids", + "ids": "⿰扌壽", + "canonical_ids": "⿰扌壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擤", + "codepoint": "U+64E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64E4", + "status": "exact_ids", + "ids": "⿰扌鼻", + "canonical_ids": "⿰扌鼻", + "expanded_ids": "⿰扌⿱⿻目丶⿱田丌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "丶", + "扌", + "田", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擥", + "codepoint": "U+64E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64E5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擦", + "codepoint": "U+64E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64E6", + "status": "exact_ids", + "ids": "⿰扌察", + "canonical_ids": "⿰扌察", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "扌" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擧", + "codepoint": "U+64E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64E7", + "status": "exact_ids", + "ids": "⿱與手", + "canonical_ids": "⿱與手", + "expanded_ids": "⿱與手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "手", + "與" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擨", + "codepoint": "U+64E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64E8", + "status": "exact_ids", + "ids": "⿰扌歋", + "canonical_ids": "⿰扌歋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "欠" + ], + "unresolved_leaves": [ + "虒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擩", + "codepoint": "U+64E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64E9", + "status": "exact_ids", + "ids": "⿰扌需", + "canonical_ids": "⿰扌需", + "expanded_ids": "⿰扌⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擪", + "codepoint": "U+64EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64EA", + "status": "exact_ids", + "ids": "⿱厭手", + "canonical_ids": "⿱厭手", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "大", + "手", + "月" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擫", + "codepoint": "U+64EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64EB", + "status": "exact_ids", + "ids": "⿰扌厭", + "canonical_ids": "⿰扌厭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "大", + "扌", + "月" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擬", + "codepoint": "U+64EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64EC", + "status": "exact_ids", + "ids": "⿰扌疑", + "canonical_ids": "⿰扌疑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "疑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擭", + "codepoint": "U+64ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64ED", + "status": "exact_ids", + "ids": "⿰扌蒦", + "canonical_ids": "⿰扌蒦", + "expanded_ids": "⿰扌⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "扌", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擮", + "codepoint": "U+64EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64EE", + "status": "exact_ids", + "ids": "⿰扌截", + "canonical_ids": "⿰扌截", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "扌", + "隹" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擯", + "codepoint": "U+64EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64EF", + "status": "exact_ids", + "ids": "⿰扌賓", + "canonical_ids": "⿰扌賓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擰", + "codepoint": "U+64F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64F0", + "status": "exact_ids", + "ids": "⿰扌寧", + "canonical_ids": "⿰扌寧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "扌" + ], + "unresolved_leaves": [ + "寍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擱", + "codepoint": "U+64F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64F1", + "status": "exact_ids", + "ids": "⿰扌閣", + "canonical_ids": "⿰扌閣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "閣" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擲", + "codepoint": "U+64F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64F2", + "status": "exact_ids", + "ids": "⿰扌鄭", + "canonical_ids": "⿰扌鄭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "大", + "扌", + "阝" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擳", + "codepoint": "U+64F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64F3", + "status": "exact_ids", + "ids": "⿰扌節", + "canonical_ids": "⿰扌節", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "扌", + "艮" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擴", + "codepoint": "U+64F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64F4", + "status": "exact_ids", + "ids": "⿰扌廣", + "canonical_ids": "⿰扌廣", + "expanded_ids": "⿰扌⿱广黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "扌", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擵", + "codepoint": "U+64F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64F5", + "status": "exact_ids", + "ids": "⿰扌摩", + "canonical_ids": "⿰扌摩", + "expanded_ids": "⿰扌⿱⿱广⿰木木手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "手", + "扌", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擶", + "codepoint": "U+64F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64F6", + "status": "exact_ids", + "ids": "⿰扌箭", + "canonical_ids": "⿰扌箭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "扌", + "月", + "止" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擷", + "codepoint": "U+64F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64F7", + "status": "exact_ids", + "ids": "⿰扌頡", + "canonical_ids": "⿰扌頡", + "expanded_ids": "⿰扌⿰⿱士口⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "口", + "士", + "扌", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擸", + "codepoint": "U+64F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64F8", + "status": "exact_ids", + "ids": "⿰扌巤", + "canonical_ids": "⿰扌巤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "巤" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擹", + "codepoint": "U+64F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64F9", + "status": "exact_ids", + "ids": "⿰扌歎", + "canonical_ids": "⿰扌歎", + "expanded_ids": "⿰扌⿰堇欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "扌", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擺", + "codepoint": "U+64FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64FA", + "status": "exact_ids", + "ids": "⿰扌罷", + "canonical_ids": "⿰扌罷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "罒" + ], + "unresolved_leaves": [ + "能" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擻", + "codepoint": "U+64FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64FB", + "status": "exact_ids", + "ids": "⿰扌數", + "canonical_ids": "⿰扌數", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "攵" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擼", + "codepoint": "U+64FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64FC", + "status": "exact_ids", + "ids": "⿰扌魯", + "canonical_ids": "⿰扌魯", + "expanded_ids": "⿰扌⿱魚日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "日", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擽", + "codepoint": "U+64FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64FD", + "status": "exact_ids", + "ids": "⿰扌樂", + "canonical_ids": "⿰扌樂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "樂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擾", + "codepoint": "U+64FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64FE", + "status": "exact_ids", + "ids": "⿰扌憂", + "canonical_ids": "⿰扌憂", + "expanded_ids": "⿰扌⿳⿻一⿻日丶冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "冖", + "夊", + "心", + "扌", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 251, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "擿", + "codepoint": "U+64FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-64FF", + "status": "exact_ids", + "ids": "⿰扌適", + "canonical_ids": "⿰扌適", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "辶" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攀", + "codepoint": "U+6500", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6500", + "status": "exact_ids", + "ids": "⿱樊手", + "canonical_ids": "⿱樊手", + "expanded_ids": "⿱⿱⿲木⿱乂乂木大手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "大", + "手", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攁", + "codepoint": "U+6501", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6501", + "status": "exact_ids", + "ids": "⿰扌養", + "canonical_ids": "⿰扌養", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "養" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攂", + "codepoint": "U+6502", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6502", + "status": "exact_ids", + "ids": "⿰扌畾", + "canonical_ids": "⿰扌畾", + "expanded_ids": "⿰扌⿱田⿰田田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攃", + "codepoint": "U+6503", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6503", + "status": "exact_ids", + "ids": "⿰扌蔡", + "canonical_ids": "⿰扌蔡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "艹" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攄", + "codepoint": "U+6504", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6504", + "status": "exact_ids", + "ids": "⿰扌慮", + "canonical_ids": "⿰扌慮", + "expanded_ids": "⿰扌⿱虍⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "扌", + "田", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攅", + "codepoint": "U+6505", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6505", + "status": "exact_ids", + "ids": "⿰扌賛", + "canonical_ids": "⿰扌賛", + "expanded_ids": "⿰扌⿱⿰⿻一大⿻一大⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "大", + "扌", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攆", + "codepoint": "U+6506", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6506", + "status": "exact_ids", + "ids": "⿰扌輦", + "canonical_ids": "⿰扌輦", + "expanded_ids": "⿰扌⿱⿰⿻一大⿻一大車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "扌", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攇", + "codepoint": "U+6507", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6507", + "status": "exact_ids", + "ids": "⿰扌憲", + "canonical_ids": "⿰扌憲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "憲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攈", + "codepoint": "U+6508", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6508", + "status": "exact_ids", + "ids": "⿰扌麇", + "canonical_ids": "⿰扌麇", + "expanded_ids": "⿰扌⿱鹿⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "扌", + "木", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攉", + "codepoint": "U+6509", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6509", + "status": "exact_ids", + "ids": "⿰扌霍", + "canonical_ids": "⿰扌霍", + "expanded_ids": "⿰扌⿱雨隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "隹", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攊", + "codepoint": "U+650A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-650A", + "status": "exact_ids", + "ids": "⿰扌歷", + "canonical_ids": "⿰扌歷", + "expanded_ids": "⿰扌⿱⿱厂⿰⿻丿木⿻丿木止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厂", + "扌", + "木", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攋", + "codepoint": "U+650B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-650B", + "status": "exact_ids", + "ids": "⿰扌賴", + "canonical_ids": "⿰扌賴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "賴" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攌", + "codepoint": "U+650C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-650C", + "status": "exact_ids", + "ids": "⿰扌圜", + "canonical_ids": "⿰扌圜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "圜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攍", + "codepoint": "U+650D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-650D", + "status": "exact_ids", + "ids": "⿰扌嬴", + "canonical_ids": "⿰扌嬴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "嬴" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攎", + "codepoint": "U+650E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-650E", + "status": "exact_ids", + "ids": "⿰扌盧", + "canonical_ids": "⿰扌盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "皿" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攏", + "codepoint": "U+650F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-650F", + "status": "exact_ids", + "ids": "⿰扌龍", + "canonical_ids": "⿰扌龍", + "expanded_ids": "⿰扌龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攐", + "codepoint": "U+6510", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6510", + "status": "exact_ids", + "ids": "⿰扌褰", + "canonical_ids": "⿰扌褰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "褰" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攑", + "codepoint": "U+6511", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6511", + "status": "exact_ids", + "ids": "⿰扌舉", + "canonical_ids": "⿰扌舉", + "expanded_ids": "⿰扌⿱與⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "扌", + "與" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攒", + "codepoint": "U+6512", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6512", + "status": "exact_ids", + "ids": "⿰扌赞", + "canonical_ids": "⿰扌赞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "赞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攓", + "codepoint": "U+6513", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6513", + "status": "exact_ids", + "ids": "⿰扌蹇", + "canonical_ids": "⿰扌蹇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "蹇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攔", + "codepoint": "U+6514", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6514", + "status": "exact_ids", + "ids": "⿰扌闌", + "canonical_ids": "⿰扌闌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攕", + "codepoint": "U+6515", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6515", + "status": "exact_ids", + "ids": "⿰扌韱", + "canonical_ids": "⿰扌韱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "韱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攖", + "codepoint": "U+6516", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6516", + "status": "exact_ids", + "ids": "⿰扌嬰", + "canonical_ids": "⿰扌嬰", + "expanded_ids": "⿰扌⿱⿰⿱目八⿱目八女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "女", + "扌", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攗", + "codepoint": "U+6517", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6517", + "status": "exact_ids", + "ids": "⿰扌麋", + "canonical_ids": "⿰扌麋", + "expanded_ids": "⿰扌⿱鹿⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "扌", + "木", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攘", + "codepoint": "U+6518", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6518", + "status": "exact_ids", + "ids": "⿰扌襄", + "canonical_ids": "⿰扌襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攙", + "codepoint": "U+6519", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6519", + "status": "exact_ids", + "ids": "⿰扌毚", + "canonical_ids": "⿰扌毚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "毚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攚", + "codepoint": "U+651A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-651A", + "status": "exact_ids", + "ids": "⿰扌營", + "canonical_ids": "⿰扌營", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "扌", + "火" + ], + "unresolved_leaves": [ + "呂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攛", + "codepoint": "U+651B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-651B", + "status": "exact_ids", + "ids": "⿰扌竄", + "canonical_ids": "⿰扌竄", + "expanded_ids": "⿰扌⿱⿱宀八鼠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "扌", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攜", + "codepoint": "U+651C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-651C", + "status": "exact_ids", + "ids": "⿰扌巂", + "canonical_ids": "⿰扌巂", + "expanded_ids": "⿰扌⿱⿱山隹⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "山", + "扌", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攝", + "codepoint": "U+651D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-651D", + "status": "exact_ids", + "ids": "⿰扌聶", + "canonical_ids": "⿰扌聶", + "expanded_ids": "⿰扌⿱耳⿰耳耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攞", + "codepoint": "U+651E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-651E", + "status": "exact_ids", + "ids": "⿰扌羅", + "canonical_ids": "⿰扌羅", + "expanded_ids": "⿰扌⿱罒⿰⿻幺小隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "扌", + "罒", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攟", + "codepoint": "U+651F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-651F", + "status": "exact_ids", + "ids": "⿰扌麕", + "canonical_ids": "⿰扌麕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "鹿" + ], + "unresolved_leaves": [ + "囷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攠", + "codepoint": "U+6520", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6520", + "status": "exact_ids", + "ids": "⿰扌靡", + "canonical_ids": "⿰扌靡", + "expanded_ids": "⿰扌⿱⿱广⿰木木非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "扌", + "木", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攡", + "codepoint": "U+6521", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6521", + "status": "exact_ids", + "ids": "⿰扌離", + "canonical_ids": "⿰扌離", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "扌", + "禸", + "隹" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攢", + "codepoint": "U+6522", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6522", + "status": "exact_ids", + "ids": "⿰扌贊", + "canonical_ids": "⿰扌贊", + "expanded_ids": "⿰扌⿱⿰⿱牛儿⿱牛儿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "扌", + "牛", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攣", + "codepoint": "U+6523", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6523", + "status": "exact_ids", + "ids": "⿱䜌手", + "canonical_ids": "⿱䜌手", + "expanded_ids": "⿱⿲⿱幺小言⿱幺小手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "手", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攤", + "codepoint": "U+6524", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6524", + "status": "exact_ids", + "ids": "⿰扌難", + "canonical_ids": "⿰扌難", + "expanded_ids": "⿰扌⿰堇隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "扌", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攥", + "codepoint": "U+6525", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6525", + "status": "exact_ids", + "ids": "⿰扌纂", + "canonical_ids": "⿰扌纂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "纂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攦", + "codepoint": "U+6526", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6526", + "status": "exact_ids", + "ids": "⿰扌麗", + "canonical_ids": "⿰扌麗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "鹿" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攧", + "codepoint": "U+6527", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6527", + "status": "exact_ids", + "ids": "⿰扌顛", + "canonical_ids": "⿰扌顛", + "expanded_ids": "⿰扌⿰⿱十⿻⿱目八一⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "十", + "扌", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 336, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攨", + "codepoint": "U+6528", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6528", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攩", + "codepoint": "U+6529", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6529", + "status": "exact_ids", + "ids": "⿰扌黨", + "canonical_ids": "⿰扌黨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "扌", + "黑" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攪", + "codepoint": "U+652A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-652A", + "status": "exact_ids", + "ids": "⿰扌覺", + "canonical_ids": "⿰扌覺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "覺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攫", + "codepoint": "U+652B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-652B", + "status": "exact_ids", + "ids": "⿰扌矍", + "canonical_ids": "⿰扌矍", + "expanded_ids": "⿰扌⿱⿰目目⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "扌", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攬", + "codepoint": "U+652C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-652C", + "status": "exact_ids", + "ids": "⿰扌覽", + "canonical_ids": "⿰扌覽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "覽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攭", + "codepoint": "U+652D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-652D", + "status": "exact_ids", + "ids": "⿰扌蠡", + "canonical_ids": "⿰扌蠡", + "expanded_ids": "⿰扌⿱⿱彑𧰨⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "扌", + "虫", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 194, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攮", + "codepoint": "U+652E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-652E", + "status": "exact_ids", + "ids": "⿰扌囊", + "canonical_ids": "⿰扌囊", + "expanded_ids": "⿰扌囊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "囊", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "支", + "codepoint": "U+652F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-652F", + "status": "exact_ids", + "ids": "⿱十又", + "canonical_ids": "⿱十又", + "expanded_ids": "⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攰", + "codepoint": "U+6530", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6530", + "status": "exact_ids", + "ids": "⿰支力", + "canonical_ids": "⿰支力", + "expanded_ids": "⿰⿱十又力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "十", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攱", + "codepoint": "U+6531", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6531", + "status": "exact_ids", + "ids": "⿰立支", + "canonical_ids": "⿰立支", + "expanded_ids": "⿰立⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攲", + "codepoint": "U+6532", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6532", + "status": "exact_ids", + "ids": "⿰奇支", + "canonical_ids": "⿰奇支", + "expanded_ids": "⿰⿱大⿰口⿱一亅⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "十", + "又", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攳", + "codepoint": "U+6533", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6533", + "status": "exact_ids", + "ids": "⿰支尋", + "canonical_ids": "⿰支尋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又" + ], + "unresolved_leaves": [ + "尋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攴", + "codepoint": "U+6534", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6534", + "status": "exact_ids", + "ids": "⿱卜又", + "canonical_ids": "⿱卜又", + "expanded_ids": "⿱卜又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攵", + "codepoint": "U+6535", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6535", + "status": "leaf_self_fallback", + "ids": "攵", + "canonical_ids": "攵", + "expanded_ids": "攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "收", + "codepoint": "U+6536", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6536", + "status": "exact_ids", + "ids": "⿰丩攵", + "canonical_ids": "⿰丩攵", + "expanded_ids": "⿰⿰丨丨攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攷", + "codepoint": "U+6537", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6537", + "status": "exact_ids", + "ids": "⿰丂攵", + "canonical_ids": "⿰丂攵", + "expanded_ids": "⿰丂攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攸", + "codepoint": "U+6538", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6538", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "改", + "codepoint": "U+6539", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6539", + "status": "exact_ids", + "ids": "⿰己攵", + "canonical_ids": "⿰己攵", + "expanded_ids": "⿰己攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攺", + "codepoint": "U+653A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-653A", + "status": "exact_ids", + "ids": "⿰巳攵", + "canonical_ids": "⿰巳攵", + "expanded_ids": "⿰巳攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巳", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攻", + "codepoint": "U+653B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-653B", + "status": "exact_ids", + "ids": "⿰工攵", + "canonical_ids": "⿰工攵", + "expanded_ids": "⿰工攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攼", + "codepoint": "U+653C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-653C", + "status": "exact_ids", + "ids": "⿰干攵", + "canonical_ids": "⿰干攵", + "expanded_ids": "⿰⿱一十攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "攽", + "codepoint": "U+653D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-653D", + "status": "exact_ids", + "ids": "⿰分攵", + "canonical_ids": "⿰分攵", + "expanded_ids": "⿰⿱八刀攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "放", + "codepoint": "U+653E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-653E", + "status": "exact_ids", + "ids": "⿰方攵", + "canonical_ids": "⿰方攵", + "expanded_ids": "⿰方攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "政", + "codepoint": "U+653F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-653F", + "status": "exact_ids", + "ids": "⿰正攵", + "canonical_ids": "⿰正攵", + "expanded_ids": "⿰⿱一止攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "攵", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敀", + "codepoint": "U+6540", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6540", + "status": "exact_ids", + "ids": "⿰白攵", + "canonical_ids": "⿰白攵", + "expanded_ids": "⿰⿻日丶攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "攵", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敁", + "codepoint": "U+6541", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6541", + "status": "exact_ids", + "ids": "⿰占攴", + "canonical_ids": "⿰占攴", + "expanded_ids": "⿰⿱卜口⿱卜又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "又", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敂", + "codepoint": "U+6542", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6542", + "status": "exact_ids", + "ids": "⿰句攵", + "canonical_ids": "⿰句攵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敃", + "codepoint": "U+6543", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6543", + "status": "exact_ids", + "ids": "⿰民攵", + "canonical_ids": "⿰民攵", + "expanded_ids": "⿰民攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "民" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敄", + "codepoint": "U+6544", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6544", + "status": "exact_ids", + "ids": "⿰矛攵", + "canonical_ids": "⿰矛攵", + "expanded_ids": "⿰矛攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "故", + "codepoint": "U+6545", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6545", + "status": "exact_ids", + "ids": "⿰古攵", + "canonical_ids": "⿰古攵", + "expanded_ids": "⿰⿻十口攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敆", + "codepoint": "U+6546", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6546", + "status": "exact_ids", + "ids": "⿰合攴", + "canonical_ids": "⿰合攴", + "expanded_ids": "⿰⿱⿱人一口⿱卜又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "卜", + "又", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敇", + "codepoint": "U+6547", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6547", + "status": "exact_ids", + "ids": "⿰朿攵", + "canonical_ids": "⿰朿攵", + "expanded_ids": "⿰⿻木冂攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "攵", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "效", + "codepoint": "U+6548", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6548", + "status": "exact_ids", + "ids": "⿰交攵", + "canonical_ids": "⿰交攵", + "expanded_ids": "⿰⿱亠父攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "攵", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敉", + "codepoint": "U+6549", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6549", + "status": "exact_ids", + "ids": "⿰米攵", + "canonical_ids": "⿰米攵", + "expanded_ids": "⿰⿻木丷攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "攵", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敊", + "codepoint": "U+654A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-654A", + "status": "exact_ids", + "ids": "⿰尗攴", + "canonical_ids": "⿰尗攴", + "expanded_ids": "⿰⿱上小⿱卜又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "卜", + "又", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敋", + "codepoint": "U+654B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-654B", + "status": "exact_ids", + "ids": "⿰各攵", + "canonical_ids": "⿰各攵", + "expanded_ids": "⿰⿱夂口攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敌", + "codepoint": "U+654C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-654C", + "status": "exact_ids", + "ids": "⿰舌攵", + "canonical_ids": "⿰舌攵", + "expanded_ids": "⿰⿱⿱丿十口攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敍", + "codepoint": "U+654D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-654D", + "status": "exact_ids", + "ids": "⿰余攴", + "canonical_ids": "⿰余攴", + "expanded_ids": "⿰⿱⿱人一朩⿱卜又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "卜", + "又", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敎", + "codepoint": "U+654E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-654E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敏", + "codepoint": "U+654F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-654F", + "status": "exact_ids", + "ids": "⿰每攵", + "canonical_ids": "⿰每攵", + "expanded_ids": "⿰⿱⿻丿一母攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "攵", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敐", + "codepoint": "U+6550", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6550", + "status": "exact_ids", + "ids": "⿰辰攵", + "canonical_ids": "⿰辰攵", + "expanded_ids": "⿰辰攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "救", + "codepoint": "U+6551", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6551", + "status": "exact_ids", + "ids": "⿰求攵", + "canonical_ids": "⿰求攵", + "expanded_ids": "⿰求攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "求" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敒", + "codepoint": "U+6552", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6552", + "status": "exact_ids", + "ids": "⿰伸攵", + "canonical_ids": "⿰伸攵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "攵" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敓", + "codepoint": "U+6553", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6553", + "status": "exact_ids", + "ids": "⿰兌攵", + "canonical_ids": "⿰兌攵", + "expanded_ids": "⿰⿱八⿱口儿攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "敚" + ] + }, + { + "character": "敔", + "codepoint": "U+6554", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6554", + "status": "exact_ids", + "ids": "⿰吾攵", + "canonical_ids": "⿰吾攵", + "expanded_ids": "⿰⿱五口攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敕", + "codepoint": "U+6555", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6555", + "status": "exact_ids", + "ids": "⿰束攵", + "canonical_ids": "⿰束攵", + "expanded_ids": "⿰⿻木口攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "攵", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敖", + "codepoint": "U+6556", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6556", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敗", + "codepoint": "U+6557", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6557", + "status": "exact_ids", + "ids": "⿰貝攵", + "canonical_ids": "⿰貝攵", + "expanded_ids": "⿰⿱目八攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "攵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敘", + "codepoint": "U+6558", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6558", + "status": "exact_ids", + "ids": "⿰余攵", + "canonical_ids": "⿰余攵", + "expanded_ids": "⿰⿱⿱人一朩攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "攵", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "教", + "codepoint": "U+6559", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6559", + "status": "exact_ids", + "ids": "⿰孝攵", + "canonical_ids": "⿰孝攵", + "expanded_ids": "⿰⿱⿻土丿子攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "子", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敚", + "codepoint": "U+655A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-655A", + "status": "exact_ids", + "ids": "⿰兌攵", + "canonical_ids": "⿰兌攵", + "expanded_ids": "⿰⿱八⿱口儿攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "敓" + ] + }, + { + "character": "敛", + "codepoint": "U+655B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-655B", + "status": "exact_ids", + "ids": "⿰佥攵", + "canonical_ids": "⿰佥攵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵" + ], + "unresolved_leaves": [ + "佥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敜", + "codepoint": "U+655C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-655C", + "status": "exact_ids", + "ids": "⿰念攵", + "canonical_ids": "⿰念攵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "心", + "攵" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敝", + "codepoint": "U+655D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-655D", + "status": "exact_ids", + "ids": "⿰㡀攵", + "canonical_ids": "⿰㡀攵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敞", + "codepoint": "U+655E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-655E", + "status": "exact_ids", + "ids": "⿰尚攵", + "canonical_ids": "⿰尚攵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "攵" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敟", + "codepoint": "U+655F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-655F", + "status": "exact_ids", + "ids": "⿰典攵", + "canonical_ids": "⿰典攵", + "expanded_ids": "⿰典攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "典", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敠", + "codepoint": "U+6560", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6560", + "status": "exact_ids", + "ids": "⿰叕攴", + "canonical_ids": "⿰叕攴", + "expanded_ids": "⿰⿱⿰又又⿰又又⿱卜又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敡", + "codepoint": "U+6561", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6561", + "status": "exact_ids", + "ids": "⿰易攴", + "canonical_ids": "⿰易攴", + "expanded_ids": "⿰⿱日勿⿱卜又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "卜", + "又", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敢", + "codepoint": "U+6562", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6562", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "散", + "codepoint": "U+6563", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6563", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敤", + "codepoint": "U+6564", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6564", + "status": "exact_ids", + "ids": "⿰果攴", + "canonical_ids": "⿰果攴", + "expanded_ids": "⿰⿻田木⿱卜又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "又", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敥", + "codepoint": "U+6565", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6565", + "status": "exact_ids", + "ids": "⿰炎攴", + "canonical_ids": "⿰炎攴", + "expanded_ids": "⿰⿱火火⿱卜又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "又", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敦", + "codepoint": "U+6566", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6566", + "status": "exact_ids", + "ids": "⿰享攵", + "canonical_ids": "⿰享攵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敧", + "codepoint": "U+6567", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6567", + "status": "exact_ids", + "ids": "⿰奇攴", + "canonical_ids": "⿰奇攴", + "expanded_ids": "⿰⿱大⿰口⿱一亅⿱卜又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "卜", + "又", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敨", + "codepoint": "U+6568", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6568", + "status": "exact_ids", + "ids": "⿰咅攵", + "canonical_ids": "⿰咅攵", + "expanded_ids": "⿰⿱立口攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "攵", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敩", + "codepoint": "U+6569", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6569", + "status": "exact_ids", + "ids": "⿰学攵", + "canonical_ids": "⿰学攵", + "expanded_ids": "⿰⿳小冖子攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "子", + "小", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敪", + "codepoint": "U+656A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-656A", + "status": "exact_ids", + "ids": "⿰叕攵", + "canonical_ids": "⿰叕攵", + "expanded_ids": "⿰⿱⿰又又⿰又又攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敫", + "codepoint": "U+656B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-656B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敬", + "codepoint": "U+656C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-656C", + "status": "exact_ids", + "ids": "⿰苟攵", + "canonical_ids": "⿰苟攵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "艹" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敭", + "codepoint": "U+656D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-656D", + "status": "exact_ids", + "ids": "⿰昜攵", + "canonical_ids": "⿰昜攵", + "expanded_ids": "⿰⿱⿱日一勿攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "攵", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敮", + "codepoint": "U+656E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-656E", + "status": "exact_ids", + "ids": "⿰臿攴", + "canonical_ids": "⿰臿攴", + "expanded_ids": "⿰⿱⿱丿十臼⿱卜又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "卜", + "又", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敯", + "codepoint": "U+656F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-656F", + "status": "exact_ids", + "ids": "⿰昬攴", + "canonical_ids": "⿰昬攴", + "expanded_ids": "⿰⿱民日⿱卜又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "又", + "日", + "民" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "数", + "codepoint": "U+6570", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6570", + "status": "exact_ids", + "ids": "⿰娄攵", + "canonical_ids": "⿰娄攵", + "expanded_ids": "⿰⿱⿻木丷女攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "女", + "攵", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敱", + "codepoint": "U+6571", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6571", + "status": "exact_ids", + "ids": "⿰豈攴", + "canonical_ids": "⿰豈攴", + "expanded_ids": "⿰⿱山豆⿱卜又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "又", + "山", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敲", + "codepoint": "U+6572", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6572", + "status": "exact_ids", + "ids": "⿰高攴", + "canonical_ids": "⿰高攴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "又" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敳", + "codepoint": "U+6573", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6573", + "status": "exact_ids", + "ids": "⿰豈攵", + "canonical_ids": "⿰豈攵", + "expanded_ids": "⿰⿱山豆攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "攵", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "整", + "codepoint": "U+6574", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6574", + "status": "exact_ids", + "ids": "⿱敕正", + "canonical_ids": "⿱敕正", + "expanded_ids": "⿱⿰⿻木口攵⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "攵", + "木", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敵", + "codepoint": "U+6575", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6575", + "status": "exact_ids", + "ids": "⿰啇攵", + "canonical_ids": "⿰啇攵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敶", + "codepoint": "U+6576", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6576", + "status": "exact_ids", + "ids": "⿰陳攵", + "canonical_ids": "⿰陳攵", + "expanded_ids": "⿰⿰阝⿻木日攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "日", + "木", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敷", + "codepoint": "U+6577", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6577", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "數", + "codepoint": "U+6578", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6578", + "status": "exact_ids", + "ids": "⿰婁攵", + "canonical_ids": "⿰婁攵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敹", + "codepoint": "U+6579", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6579", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敺", + "codepoint": "U+657A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-657A", + "status": "exact_ids", + "ids": "⿰區攴", + "canonical_ids": "⿰區攴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "又" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敻", + "codepoint": "U+657B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-657B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敼", + "codepoint": "U+657C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-657C", + "status": "exact_ids", + "ids": "⿰喜攴", + "canonical_ids": "⿰喜攴", + "expanded_ids": "⿰⿱⿱十豆口⿱卜又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "又", + "口", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敽", + "codepoint": "U+657D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-657D", + "status": "exact_ids", + "ids": "⿰喬攴", + "canonical_ids": "⿰喬攴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "卜", + "又", + "口", + "大" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敾", + "codepoint": "U+657E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-657E", + "status": "exact_ids", + "ids": "⿰善攵", + "canonical_ids": "⿰善攵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵" + ], + "unresolved_leaves": [ + "善" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "敿", + "codepoint": "U+657F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-657F", + "status": "exact_ids", + "ids": "⿰喬攵", + "canonical_ids": "⿰喬攵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "攵" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斀", + "codepoint": "U+6580", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6580", + "status": "exact_ids", + "ids": "⿰蜀攴", + "canonical_ids": "⿰蜀攴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "又", + "罒" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斁", + "codepoint": "U+6581", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6581", + "status": "exact_ids", + "ids": "⿰睪攵", + "canonical_ids": "⿰睪攵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "攵", + "罒" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斂", + "codepoint": "U+6582", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6582", + "status": "exact_ids", + "ids": "⿰僉攵", + "canonical_ids": "⿰僉攵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斃", + "codepoint": "U+6583", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6583", + "status": "exact_ids", + "ids": "⿱敝死", + "canonical_ids": "⿱敝死", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "匕", + "夕", + "攵" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斄", + "codepoint": "U+6584", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6584", + "status": "exact_ids", + "ids": "⿱𠩺來", + "canonical_ids": "⿱𠩺來", + "expanded_ids": "⿱⿱⿰⿻木冂攵厂⿻木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "厂", + "攵", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斅", + "codepoint": "U+6585", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6585", + "status": "exact_ids", + "ids": "⿰學攴", + "canonical_ids": "⿰學攴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "卜", + "又", + "子" + ], + "unresolved_leaves": [ + "𦥯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斆", + "codepoint": "U+6586", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6586", + "status": "exact_ids", + "ids": "⿰學攵", + "canonical_ids": "⿰學攵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "子", + "攵" + ], + "unresolved_leaves": [ + "𦥯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "文", + "codepoint": "U+6587", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6587", + "status": "leaf_self_fallback", + "ids": "文", + "canonical_ids": "文", + "expanded_ids": "文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斈", + "codepoint": "U+6588", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6588", + "status": "exact_ids", + "ids": "⿱文子", + "canonical_ids": "⿱文子", + "expanded_ids": "⿱文子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "文" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斉", + "codepoint": "U+6589", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6589", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斊", + "codepoint": "U+658A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-658A", + "status": "exact_ids", + "ids": "⿱文耳", + "canonical_ids": "⿱文耳", + "expanded_ids": "⿱文耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斋", + "codepoint": "U+658B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-658B", + "status": "exact_ids", + "ids": "⿱文而", + "canonical_ids": "⿱文而", + "expanded_ids": "⿱文而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斌", + "codepoint": "U+658C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-658C", + "status": "exact_ids", + "ids": "⿰文武", + "canonical_ids": "⿰文武", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文" + ], + "unresolved_leaves": [ + "武" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斍", + "codepoint": "U+658D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-658D", + "status": "exact_ids", + "ids": "⿱文見", + "canonical_ids": "⿱文見", + "expanded_ids": "⿱文⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "文", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斎", + "codepoint": "U+658E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-658E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斏", + "codepoint": "U+658F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-658F", + "status": "exact_ids", + "ids": "⿰文良", + "canonical_ids": "⿰文良", + "expanded_ids": "⿰文⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "文", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斐", + "codepoint": "U+6590", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6590", + "status": "exact_ids", + "ids": "⿱非文", + "canonical_ids": "⿱非文", + "expanded_ids": "⿱非文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斑", + "codepoint": "U+6591", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6591", + "status": "exact_ids", + "ids": "⿲王文王", + "canonical_ids": "⿲王文王", + "expanded_ids": "⿲王文王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斒", + "codepoint": "U+6592", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6592", + "status": "exact_ids", + "ids": "⿰文扁", + "canonical_ids": "⿰文扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "文" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斓", + "codepoint": "U+6593", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6593", + "status": "exact_ids", + "ids": "⿰文阑", + "canonical_ids": "⿰文阑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文" + ], + "unresolved_leaves": [ + "阑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斔", + "codepoint": "U+6594", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6594", + "status": "exact_ids", + "ids": "⿰蚉臾", + "canonical_ids": "⿰蚉臾", + "expanded_ids": "⿰⿱文虫⿻人臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "文", + "臼", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斕", + "codepoint": "U+6595", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6595", + "status": "exact_ids", + "ids": "⿰文闌", + "canonical_ids": "⿰文闌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斖", + "codepoint": "U+6596", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6596", + "status": "exact_ids", + "ids": "⿱文舋", + "canonical_ids": "⿱文舋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文" + ], + "unresolved_leaves": [ + "舋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斗", + "codepoint": "U+6597", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6597", + "status": "leaf_self_fallback", + "ids": "斗", + "canonical_ids": "斗", + "expanded_ids": "斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斘", + "codepoint": "U+6598", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6598", + "status": "exact_ids", + "ids": "⿰夕斗", + "canonical_ids": "⿰夕斗", + "expanded_ids": "⿰夕斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "斗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "料", + "codepoint": "U+6599", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6599", + "status": "exact_ids", + "ids": "⿰米斗", + "canonical_ids": "⿰米斗", + "expanded_ids": "⿰⿻木丷斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "斗", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斚", + "codepoint": "U+659A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-659A", + "status": "exact_ids", + "ids": "⿳厸冖斗", + "canonical_ids": "⿳厸冖斗", + "expanded_ids": "⿳⿰厶厶冖斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "厶", + "斗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斛", + "codepoint": "U+659B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-659B", + "status": "exact_ids", + "ids": "⿰角斗", + "canonical_ids": "⿰角斗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "斗", + "月" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斜", + "codepoint": "U+659C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-659C", + "status": "exact_ids", + "ids": "⿰余斗", + "canonical_ids": "⿰余斗", + "expanded_ids": "⿰⿱⿱人一朩斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "斗", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斝", + "codepoint": "U+659D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-659D", + "status": "exact_ids", + "ids": "⿳吅冖斗", + "canonical_ids": "⿳吅冖斗", + "expanded_ids": "⿳⿰口口冖斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "口", + "斗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斞", + "codepoint": "U+659E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-659E", + "status": "exact_ids", + "ids": "⿰臾斗", + "canonical_ids": "⿰臾斗", + "expanded_ids": "⿰⿻人臼斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "斗", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斟", + "codepoint": "U+659F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-659F", + "status": "exact_ids", + "ids": "⿰甚斗", + "canonical_ids": "⿰甚斗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斗", + "甘" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斠", + "codepoint": "U+65A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65A0", + "status": "exact_ids", + "ids": "⿰冓斗", + "canonical_ids": "⿰冓斗", + "expanded_ids": "⿰⿱井⿱一⿻冂土斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "井", + "冂", + "土", + "斗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斡", + "codepoint": "U+65A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65A1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斢", + "codepoint": "U+65A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65A2", + "status": "exact_ids", + "ids": "⿰黄斗", + "canonical_ids": "⿰黄斗", + "expanded_ids": "⿰黄斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斗", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斣", + "codepoint": "U+65A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65A3", + "status": "exact_ids", + "ids": "⿰蜀斗", + "canonical_ids": "⿰蜀斗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斗", + "罒" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斤", + "codepoint": "U+65A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65A4", + "status": "leaf_self_fallback", + "ids": "斤", + "canonical_ids": "斤", + "expanded_ids": "斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斥", + "codepoint": "U+65A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65A5", + "status": "exact_ids", + "ids": "⿻斤丶", + "canonical_ids": "⿻斤丶", + "expanded_ids": "⿻斤丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斦", + "codepoint": "U+65A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65A6", + "status": "exact_ids", + "ids": "⿰斤斤", + "canonical_ids": "⿰斤斤", + "expanded_ids": "⿰斤斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斧", + "codepoint": "U+65A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65A7", + "status": "exact_ids", + "ids": "⿱父斤", + "canonical_ids": "⿱父斤", + "expanded_ids": "⿱父斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斨", + "codepoint": "U+65A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65A8", + "status": "exact_ids", + "ids": "⿰爿斤", + "canonical_ids": "⿰爿斤", + "expanded_ids": "⿰爿斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "爿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斩", + "codepoint": "U+65A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65A9", + "status": "exact_ids", + "ids": "⿰车斤", + "canonical_ids": "⿰车斤", + "expanded_ids": "⿰车斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斪", + "codepoint": "U+65AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65AA", + "status": "exact_ids", + "ids": "⿰句斤", + "canonical_ids": "⿰句斤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斫", + "codepoint": "U+65AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65AB", + "status": "exact_ids", + "ids": "⿰石斤", + "canonical_ids": "⿰石斤", + "expanded_ids": "⿰石斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斬", + "codepoint": "U+65AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65AC", + "status": "exact_ids", + "ids": "⿰車斤", + "canonical_ids": "⿰車斤", + "expanded_ids": "⿰車斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "断", + "codepoint": "U+65AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65AD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斮", + "codepoint": "U+65AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65AE", + "status": "exact_ids", + "ids": "⿰昔斤", + "canonical_ids": "⿰昔斤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "日" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斯", + "codepoint": "U+65AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65AF", + "status": "exact_ids", + "ids": "⿰其斤", + "canonical_ids": "⿰其斤", + "expanded_ids": "⿰其斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "新", + "codepoint": "U+65B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65B0", + "status": "exact_ids", + "ids": "⿰亲斤", + "canonical_ids": "⿰亲斤", + "expanded_ids": "⿰⿱立朩斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "朩", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斱", + "codepoint": "U+65B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65B1", + "status": "exact_ids", + "ids": "⿰者斤", + "canonical_ids": "⿰者斤", + "expanded_ids": "⿰⿱⿻土丿日斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "斤", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斲", + "codepoint": "U+65B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65B2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斳", + "codepoint": "U+65B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65B3", + "status": "exact_ids", + "ids": "⿰堇斤", + "canonical_ids": "⿰堇斤", + "expanded_ids": "⿰堇斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斴", + "codepoint": "U+65B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65B4", + "status": "exact_ids", + "ids": "⿰粦斤", + "canonical_ids": "⿰粦斤", + "expanded_ids": "⿰⿱⿻木丷⿰夕⿻丨二斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "斤", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斵", + "codepoint": "U+65B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65B5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斶", + "codepoint": "U+65B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65B6", + "status": "exact_ids", + "ids": "⿰斤蜀", + "canonical_ids": "⿰斤蜀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "罒" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斷", + "codepoint": "U+65B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65B7", + "status": "exact_ids", + "ids": "⿰㡭斤", + "canonical_ids": "⿰㡭斤", + "expanded_ids": "⿰⿱⿰𠃊⿰幺幺⿰𠃊⿰幺幺斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "斤", + "𠃊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 272, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斸", + "codepoint": "U+65B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65B8", + "status": "exact_ids", + "ids": "⿰屬斤", + "canonical_ids": "⿰屬斤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤" + ], + "unresolved_leaves": [ + "屬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "方", + "codepoint": "U+65B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65B9", + "status": "leaf_self_fallback", + "ids": "方", + "canonical_ids": "方", + "expanded_ids": "方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斺", + "codepoint": "U+65BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65BA", + "status": "exact_ids", + "ids": "⿰方介", + "canonical_ids": "⿰方介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斻", + "codepoint": "U+65BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65BB", + "status": "exact_ids", + "ids": "⿰㫃几", + "canonical_ids": "⿰㫃几", + "expanded_ids": "⿰⿰方人几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "几", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "於", + "codepoint": "U+65BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65BC", + "status": "exact_ids", + "ids": "⿰方仒", + "canonical_ids": "⿰方仒", + "expanded_ids": "⿰方⿱人冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冫", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "施", + "codepoint": "U+65BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65BD", + "status": "exact_ids", + "ids": "⿰㫃也", + "canonical_ids": "⿰㫃也", + "expanded_ids": "⿰⿰方人⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "人", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斾", + "codepoint": "U+65BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65BE", + "status": "exact_ids", + "ids": "⿰㫃巾", + "canonical_ids": "⿰㫃巾", + "expanded_ids": "⿰⿰方人⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "人", + "冂", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "斿", + "codepoint": "U+65BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65BF", + "status": "exact_ids", + "ids": "⿰㫃子", + "canonical_ids": "⿰㫃子", + "expanded_ids": "⿰⿰方人子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "子", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旀", + "codepoint": "U+65C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65C0", + "status": "exact_ids", + "ids": "⿰方厼", + "canonical_ids": "⿰方厼", + "expanded_ids": "⿰方⿱厶小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "小", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旁", + "codepoint": "U+65C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65C1", + "status": "exact_ids", + "ids": "⿳六冖方", + "canonical_ids": "⿳六冖方", + "expanded_ids": "⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旂", + "codepoint": "U+65C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65C2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旃", + "codepoint": "U+65C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65C3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旄", + "codepoint": "U+65C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65C4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旅", + "codepoint": "U+65C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65C5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旆", + "codepoint": "U+65C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65C6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旇", + "codepoint": "U+65C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65C7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旈", + "codepoint": "U+65C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65C8", + "status": "exact_ids", + "ids": "⿰方㐬", + "canonical_ids": "⿰方㐬", + "expanded_ids": "⿰方⿱亠⿱厶川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "厶", + "川", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旉", + "codepoint": "U+65C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65C9", + "status": "exact_ids", + "ids": "⿱甫方", + "canonical_ids": "⿱甫方", + "expanded_ids": "⿱甫方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旊", + "codepoint": "U+65CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65CA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旋", + "codepoint": "U+65CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65CB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旌", + "codepoint": "U+65CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65CC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旍", + "codepoint": "U+65CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65CD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旎", + "codepoint": "U+65CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65CE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "族", + "codepoint": "U+65CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65CF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旐", + "codepoint": "U+65D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65D0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旑", + "codepoint": "U+65D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65D1", + "status": "exact_ids", + "ids": "⿰方奇", + "canonical_ids": "⿰方奇", + "expanded_ids": "⿰方⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旒", + "codepoint": "U+65D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65D2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旓", + "codepoint": "U+65D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65D3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旔", + "codepoint": "U+65D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65D4", + "status": "exact_ids", + "ids": "⿰方建", + "canonical_ids": "⿰方建", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廴", + "方" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旕", + "codepoint": "U+65D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65D5", + "status": "exact_ids", + "ids": "⿱於叱", + "canonical_ids": "⿱於叱", + "expanded_ids": "⿱⿰方⿱人冫⿰口七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "人", + "冫", + "口", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旖", + "codepoint": "U+65D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65D6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旗", + "codepoint": "U+65D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65D7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旘", + "codepoint": "U+65D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65D8", + "status": "exact_ids", + "ids": "⿰方戠", + "canonical_ids": "⿰方戠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "日", + "立" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旙", + "codepoint": "U+65D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65D9", + "status": "exact_ids", + "ids": "⿰方番", + "canonical_ids": "⿰方番", + "expanded_ids": "⿰方⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "方", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旚", + "codepoint": "U+65DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65DA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旛", + "codepoint": "U+65DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65DB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旜", + "codepoint": "U+65DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65DC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旝", + "codepoint": "U+65DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65DD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旞", + "codepoint": "U+65DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65DE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旟", + "codepoint": "U+65DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65DF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "无", + "codepoint": "U+65E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65E0", + "status": "leaf_self_fallback", + "ids": "无", + "canonical_ids": "无", + "expanded_ids": "无", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "无" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旡", + "codepoint": "U+65E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65E1", + "status": "leaf_self_fallback", + "ids": "旡", + "canonical_ids": "旡", + "expanded_ids": "旡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "旡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "既", + "codepoint": "U+65E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65E2", + "status": "exact_ids", + "ids": "⿰艮旡", + "canonical_ids": "⿰艮旡", + "expanded_ids": "⿰艮旡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "旡", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旣", + "codepoint": "U+65E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65E3", + "status": "exact_ids", + "ids": "⿰皀旡", + "canonical_ids": "⿰皀旡", + "expanded_ids": "⿰⿱⿻日丶匕旡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "旡", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旤", + "codepoint": "U+65E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65E4", + "status": "exact_ids", + "ids": "⿰咼旡", + "canonical_ids": "⿰咼旡", + "expanded_ids": "⿰⿱冎口旡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "旡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "日", + "codepoint": "U+65E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65E5", + "status": "leaf_self_fallback", + "ids": "日", + "canonical_ids": "日", + "expanded_ids": "日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旦", + "codepoint": "U+65E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65E6", + "status": "exact_ids", + "ids": "⿱日一", + "canonical_ids": "⿱日一", + "expanded_ids": "⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旧", + "codepoint": "U+65E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65E7", + "status": "exact_ids", + "ids": "⿰丨日", + "canonical_ids": "⿰丨日", + "expanded_ids": "⿰丨日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旨", + "codepoint": "U+65E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65E8", + "status": "exact_ids", + "ids": "⿱匕日", + "canonical_ids": "⿱匕日", + "expanded_ids": "⿱匕日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "早", + "codepoint": "U+65E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65E9", + "status": "exact_ids", + "ids": "⿱日十", + "canonical_ids": "⿱日十", + "expanded_ids": "⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旪", + "codepoint": "U+65EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65EA", + "status": "exact_ids", + "ids": "⿰日十", + "canonical_ids": "⿰日十", + "expanded_ids": "⿰日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旫", + "codepoint": "U+65EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65EB", + "status": "exact_ids", + "ids": "⿰日刀", + "canonical_ids": "⿰日刀", + "expanded_ids": "⿰日刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旬", + "codepoint": "U+65EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65EC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旭", + "codepoint": "U+65ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65ED", + "status": "exact_ids", + "ids": "⿰九日", + "canonical_ids": "⿰九日", + "expanded_ids": "⿰九日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旮", + "codepoint": "U+65EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65EE", + "status": "exact_ids", + "ids": "⿱九日", + "canonical_ids": "⿱九日", + "expanded_ids": "⿱九日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旯", + "codepoint": "U+65EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65EF", + "status": "exact_ids", + "ids": "⿱日九", + "canonical_ids": "⿱日九", + "expanded_ids": "⿱日九", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旰", + "codepoint": "U+65F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65F0", + "status": "exact_ids", + "ids": "⿰日干", + "canonical_ids": "⿰日干", + "expanded_ids": "⿰日⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旱", + "codepoint": "U+65F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65F1", + "status": "exact_ids", + "ids": "⿱日干", + "canonical_ids": "⿱日干", + "expanded_ids": "⿱日⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旲", + "codepoint": "U+65F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65F2", + "status": "exact_ids", + "ids": "⿱日大", + "canonical_ids": "⿱日大", + "expanded_ids": "⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旳", + "codepoint": "U+65F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65F3", + "status": "exact_ids", + "ids": "⿰日勺", + "canonical_ids": "⿰日勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旴", + "codepoint": "U+65F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65F4", + "status": "exact_ids", + "ids": "⿰日于", + "canonical_ids": "⿰日于", + "expanded_ids": "⿰日⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旵", + "codepoint": "U+65F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65F5", + "status": "exact_ids", + "ids": "⿱日山", + "canonical_ids": "⿱日山", + "expanded_ids": "⿱日山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "时", + "codepoint": "U+65F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65F6", + "status": "exact_ids", + "ids": "⿰日寸", + "canonical_ids": "⿰日寸", + "expanded_ids": "⿰日寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旷", + "codepoint": "U+65F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65F7", + "status": "exact_ids", + "ids": "⿰日广", + "canonical_ids": "⿰日广", + "expanded_ids": "⿰日广", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旸", + "codepoint": "U+65F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65F8", + "status": "exact_ids", + "ids": "⿰日𠃓", + "canonical_ids": "⿰日𠃓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "𠃓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旹", + "codepoint": "U+65F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65F9", + "status": "exact_ids", + "ids": "⿱㞢日", + "canonical_ids": "⿱㞢日", + "expanded_ids": "⿱⿱屮一日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "屮", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旺", + "codepoint": "U+65FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65FA", + "status": "exact_ids", + "ids": "⿰日王", + "canonical_ids": "⿰日王", + "expanded_ids": "⿰日王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旻", + "codepoint": "U+65FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65FB", + "status": "exact_ids", + "ids": "⿱日文", + "canonical_ids": "⿱日文", + "expanded_ids": "⿱日文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旼", + "codepoint": "U+65FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65FC", + "status": "exact_ids", + "ids": "⿰日文", + "canonical_ids": "⿰日文", + "expanded_ids": "⿰日文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旽", + "codepoint": "U+65FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65FD", + "status": "exact_ids", + "ids": "⿰日屯", + "canonical_ids": "⿰日屯", + "expanded_ids": "⿰日屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旾", + "codepoint": "U+65FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65FE", + "status": "exact_ids", + "ids": "⿱屯日", + "canonical_ids": "⿱屯日", + "expanded_ids": "⿱屯日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "旿", + "codepoint": "U+65FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-65FF", + "status": "exact_ids", + "ids": "⿰日午", + "canonical_ids": "⿰日午", + "expanded_ids": "⿰日⿱⿻丿一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "十", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昀", + "codepoint": "U+6600", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6600", + "status": "exact_ids", + "ids": "⿰日匀", + "canonical_ids": "⿰日匀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "匀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昁", + "codepoint": "U+6601", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6601", + "status": "exact_ids", + "ids": "⿰日巿", + "canonical_ids": "⿰日巿", + "expanded_ids": "⿰日⿻⿻冂丨一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昂", + "codepoint": "U+6602", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6602", + "status": "exact_ids", + "ids": "⿱日卬", + "canonical_ids": "⿱日卬", + "expanded_ids": "⿱日⿰匚卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匚", + "卩", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昃", + "codepoint": "U+6603", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6603", + "status": "exact_ids", + "ids": "⿱日仄", + "canonical_ids": "⿱日仄", + "expanded_ids": "⿱日⿱厂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "厂", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昄", + "codepoint": "U+6604", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6604", + "status": "exact_ids", + "ids": "⿰日反", + "canonical_ids": "⿰日反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昅", + "codepoint": "U+6605", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6605", + "status": "exact_ids", + "ids": "⿰日及", + "canonical_ids": "⿰日及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "日" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昆", + "codepoint": "U+6606", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6606", + "status": "exact_ids", + "ids": "⿱日比", + "canonical_ids": "⿱日比", + "expanded_ids": "⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昇", + "codepoint": "U+6607", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6607", + "status": "exact_ids", + "ids": "⿱日升", + "canonical_ids": "⿱日升", + "expanded_ids": "⿱日升", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "升", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昈", + "codepoint": "U+6608", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6608", + "status": "exact_ids", + "ids": "⿰日戶", + "canonical_ids": "⿰日戶", + "expanded_ids": "⿰日⿻丿尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "尸", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昉", + "codepoint": "U+6609", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6609", + "status": "exact_ids", + "ids": "⿰日方", + "canonical_ids": "⿰日方", + "expanded_ids": "⿰日方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昊", + "codepoint": "U+660A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-660A", + "status": "exact_ids", + "ids": "⿱日天", + "canonical_ids": "⿱日天", + "expanded_ids": "⿱日⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昋", + "codepoint": "U+660B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-660B", + "status": "exact_ids", + "ids": "⿱夭日", + "canonical_ids": "⿱夭日", + "expanded_ids": "⿱⿱丿大日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昌", + "codepoint": "U+660C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-660C", + "status": "exact_ids", + "ids": "⿱日日", + "canonical_ids": "⿱日日", + "expanded_ids": "⿱日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昍", + "codepoint": "U+660D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-660D", + "status": "exact_ids", + "ids": "⿰日日", + "canonical_ids": "⿰日日", + "expanded_ids": "⿰日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "明", + "codepoint": "U+660E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-660E", + "status": "exact_ids", + "ids": "⿰日月", + "canonical_ids": "⿰日月", + "expanded_ids": "⿰日月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昏", + "codepoint": "U+660F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-660F", + "status": "exact_ids", + "ids": "⿱氏日", + "canonical_ids": "⿱氏日", + "expanded_ids": "⿱氏日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昐", + "codepoint": "U+6610", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6610", + "status": "exact_ids", + "ids": "⿰日分", + "canonical_ids": "⿰日分", + "expanded_ids": "⿰日⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昑", + "codepoint": "U+6611", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6611", + "status": "exact_ids", + "ids": "⿰日今", + "canonical_ids": "⿰日今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "日" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昒", + "codepoint": "U+6612", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6612", + "status": "exact_ids", + "ids": "⿰日勿", + "canonical_ids": "⿰日勿", + "expanded_ids": "⿰日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "易", + "codepoint": "U+6613", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6613", + "status": "exact_ids", + "ids": "⿱日勿", + "canonical_ids": "⿱日勿", + "expanded_ids": "⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昔", + "codepoint": "U+6614", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6614", + "status": "exact_ids", + "ids": "⿱龷日", + "canonical_ids": "⿱龷日", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昕", + "codepoint": "U+6615", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6615", + "status": "exact_ids", + "ids": "⿰日斤", + "canonical_ids": "⿰日斤", + "expanded_ids": "⿰日斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昖", + "codepoint": "U+6616", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6616", + "status": "exact_ids", + "ids": "⿰日公", + "canonical_ids": "⿰日公", + "expanded_ids": "⿰日⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昗", + "codepoint": "U+6617", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6617", + "status": "exact_ids", + "ids": "⿱日六", + "canonical_ids": "⿱日六", + "expanded_ids": "⿱日⿱亠八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昘", + "codepoint": "U+6618", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6618", + "status": "exact_ids", + "ids": "⿱日方", + "canonical_ids": "⿱日方", + "expanded_ids": "⿱日方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昙", + "codepoint": "U+6619", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6619", + "status": "exact_ids", + "ids": "⿱日云", + "canonical_ids": "⿱日云", + "expanded_ids": "⿱日⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昚", + "codepoint": "U+661A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-661A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昛", + "codepoint": "U+661B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-661B", + "status": "exact_ids", + "ids": "⿰日巨", + "canonical_ids": "⿰日巨", + "expanded_ids": "⿰日巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昜", + "codepoint": "U+661C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-661C", + "status": "exact_ids", + "ids": "⿱旦勿", + "canonical_ids": "⿱旦勿", + "expanded_ids": "⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昝", + "codepoint": "U+661D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-661D", + "status": "exact_ids", + "ids": "⿱处日", + "canonical_ids": "⿱处日", + "expanded_ids": "⿱⿰夂卜日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "夂", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昞", + "codepoint": "U+661E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-661E", + "status": "exact_ids", + "ids": "⿰日丙", + "canonical_ids": "⿰日丙", + "expanded_ids": "⿰日⿱一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "星", + "codepoint": "U+661F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-661F", + "status": "exact_ids", + "ids": "⿱日生", + "canonical_ids": "⿱日生", + "expanded_ids": "⿱日⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "映", + "codepoint": "U+6620", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6620", + "status": "exact_ids", + "ids": "⿰日央", + "canonical_ids": "⿰日央", + "expanded_ids": "⿰日⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昡", + "codepoint": "U+6621", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6621", + "status": "exact_ids", + "ids": "⿰日玄", + "canonical_ids": "⿰日玄", + "expanded_ids": "⿰日⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昢", + "codepoint": "U+6622", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6622", + "status": "exact_ids", + "ids": "⿰日出", + "canonical_ids": "⿰日出", + "expanded_ids": "⿰日⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昣", + "codepoint": "U+6623", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6623", + "status": "exact_ids", + "ids": "⿰日㐱", + "canonical_ids": "⿰日㐱", + "expanded_ids": "⿰日⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "彡", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昤", + "codepoint": "U+6624", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6624", + "status": "exact_ids", + "ids": "⿰日令", + "canonical_ids": "⿰日令", + "expanded_ids": "⿰日⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "日", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "春", + "codepoint": "U+6625", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6625", + "status": "exact_ids", + "ids": "⿱𡗗日", + "canonical_ids": "⿱𡗗日", + "expanded_ids": "⿱𡗗日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 76, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昦", + "codepoint": "U+6626", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6626", + "status": "exact_ids", + "ids": "⿱日夰", + "canonical_ids": "⿱日夰", + "expanded_ids": "⿱日⿱大儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "大", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昧", + "codepoint": "U+6627", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6627", + "status": "exact_ids", + "ids": "⿰日未", + "canonical_ids": "⿰日未", + "expanded_ids": "⿰日⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "昩" + ] + }, + { + "character": "昨", + "codepoint": "U+6628", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6628", + "status": "exact_ids", + "ids": "⿰日乍", + "canonical_ids": "⿰日乍", + "expanded_ids": "⿰日乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昩", + "codepoint": "U+6629", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6629", + "status": "exact_ids", + "ids": "⿰日末", + "canonical_ids": "⿰日末", + "expanded_ids": "⿰日⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "昧" + ] + }, + { + "character": "昪", + "codepoint": "U+662A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-662A", + "status": "exact_ids", + "ids": "⿱日弁", + "canonical_ids": "⿱日弁", + "expanded_ids": "⿱日⿱厶廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "廾", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昫", + "codepoint": "U+662B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-662B", + "status": "exact_ids", + "ids": "⿰日句", + "canonical_ids": "⿰日句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昬", + "codepoint": "U+662C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-662C", + "status": "exact_ids", + "ids": "⿱民日", + "canonical_ids": "⿱民日", + "expanded_ids": "⿱民日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "民" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昭", + "codepoint": "U+662D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-662D", + "status": "exact_ids", + "ids": "⿰日召", + "canonical_ids": "⿰日召", + "expanded_ids": "⿰日⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昮", + "codepoint": "U+662E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-662E", + "status": "exact_ids", + "ids": "⿱日功", + "canonical_ids": "⿱日功", + "expanded_ids": "⿱日⿰工力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "工", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "是", + "codepoint": "U+662F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-662F", + "status": "exact_ids", + "ids": "⿱日𤴓", + "canonical_ids": "⿱日𤴓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昰", + "codepoint": "U+6630", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6630", + "status": "exact_ids", + "ids": "⿱日正", + "canonical_ids": "⿱日正", + "expanded_ids": "⿱日⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昱", + "codepoint": "U+6631", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6631", + "status": "exact_ids", + "ids": "⿱日立", + "canonical_ids": "⿱日立", + "expanded_ids": "⿱日立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昲", + "codepoint": "U+6632", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6632", + "status": "exact_ids", + "ids": "⿰日弗", + "canonical_ids": "⿰日弗", + "expanded_ids": "⿰日⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "弓", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昳", + "codepoint": "U+6633", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6633", + "status": "exact_ids", + "ids": "⿰日失", + "canonical_ids": "⿰日失", + "expanded_ids": "⿰日⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昴", + "codepoint": "U+6634", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6634", + "status": "exact_ids", + "ids": "⿱日卯", + "canonical_ids": "⿱日卯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "卯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昵", + "codepoint": "U+6635", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6635", + "status": "exact_ids", + "ids": "⿰日尼", + "canonical_ids": "⿰日尼", + "expanded_ids": "⿰日⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "尸", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昶", + "codepoint": "U+6636", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6636", + "status": "exact_ids", + "ids": "⿰永日", + "canonical_ids": "⿰永日", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "永" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昷", + "codepoint": "U+6637", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6637", + "status": "exact_ids", + "ids": "⿱日皿", + "canonical_ids": "⿱日皿", + "expanded_ids": "⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昸", + "codepoint": "U+6638", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6638", + "status": "exact_ids", + "ids": "⿰日冬", + "canonical_ids": "⿰日冬", + "expanded_ids": "⿰日⿱夂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "夂", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昹", + "codepoint": "U+6639", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6639", + "status": "exact_ids", + "ids": "⿰日永", + "canonical_ids": "⿰日永", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "永" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昺", + "codepoint": "U+663A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-663A", + "status": "exact_ids", + "ids": "⿱日丙", + "canonical_ids": "⿱日丙", + "expanded_ids": "⿱日⿱一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昻", + "codepoint": "U+663B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-663B", + "status": "exact_ids", + "ids": "⿱日卭", + "canonical_ids": "⿱日卭", + "expanded_ids": "⿱日⿰工卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "工", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昼", + "codepoint": "U+663C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-663C", + "status": "exact_ids", + "ids": "⿱尺旦", + "canonical_ids": "⿱尺旦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "日" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昽", + "codepoint": "U+663D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-663D", + "status": "exact_ids", + "ids": "⿰日龙", + "canonical_ids": "⿰日龙", + "expanded_ids": "⿰日龙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "显", + "codepoint": "U+663E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-663E", + "status": "exact_ids", + "ids": "⿱日业", + "canonical_ids": "⿱日业", + "expanded_ids": "⿱日业", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "昿", + "codepoint": "U+663F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-663F", + "status": "exact_ids", + "ids": "⿰日広", + "canonical_ids": "⿰日広", + "expanded_ids": "⿰日⿱广厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "广", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晀", + "codepoint": "U+6640", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6640", + "status": "exact_ids", + "ids": "⿰日兆", + "canonical_ids": "⿰日兆", + "expanded_ids": "⿰日兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晁", + "codepoint": "U+6641", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6641", + "status": "exact_ids", + "ids": "⿱日兆", + "canonical_ids": "⿱日兆", + "expanded_ids": "⿱日兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "時", + "codepoint": "U+6642", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6642", + "status": "exact_ids", + "ids": "⿰日寺", + "canonical_ids": "⿰日寺", + "expanded_ids": "⿰日⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晃", + "codepoint": "U+6643", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6643", + "status": "exact_ids", + "ids": "⿱日光", + "canonical_ids": "⿱日光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "日" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晄", + "codepoint": "U+6644", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6644", + "status": "exact_ids", + "ids": "⿰日光", + "canonical_ids": "⿰日光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "日" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晅", + "codepoint": "U+6645", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6645", + "status": "exact_ids", + "ids": "⿰日亘", + "canonical_ids": "⿰日亘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晆", + "codepoint": "U+6646", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6646", + "status": "exact_ids", + "ids": "⿰日圭", + "canonical_ids": "⿰日圭", + "expanded_ids": "⿰日⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晇", + "codepoint": "U+6647", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6647", + "status": "exact_ids", + "ids": "⿰日夸", + "canonical_ids": "⿰日夸", + "expanded_ids": "⿰日⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晈", + "codepoint": "U+6648", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6648", + "status": "exact_ids", + "ids": "⿰日交", + "canonical_ids": "⿰日交", + "expanded_ids": "⿰日⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "日", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晉", + "codepoint": "U+6649", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6649", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晊", + "codepoint": "U+664A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-664A", + "status": "exact_ids", + "ids": "⿰日至", + "canonical_ids": "⿰日至", + "expanded_ids": "⿰日⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晋", + "codepoint": "U+664B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-664B", + "status": "exact_ids", + "ids": "⿱亚日", + "canonical_ids": "⿱亚日", + "expanded_ids": "⿱亚日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亚", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晌", + "codepoint": "U+664C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-664C", + "status": "exact_ids", + "ids": "⿰日向", + "canonical_ids": "⿰日向", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晍", + "codepoint": "U+664D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-664D", + "status": "exact_ids", + "ids": "⿰日同", + "canonical_ids": "⿰日同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晎", + "codepoint": "U+664E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-664E", + "status": "exact_ids", + "ids": "⿰日共", + "canonical_ids": "⿰日共", + "expanded_ids": "⿰日⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晏", + "codepoint": "U+664F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-664F", + "status": "exact_ids", + "ids": "⿱日安", + "canonical_ids": "⿱日安", + "expanded_ids": "⿱日⿱宀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晐", + "codepoint": "U+6650", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6650", + "status": "exact_ids", + "ids": "⿰日亥", + "canonical_ids": "⿰日亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晑", + "codepoint": "U+6651", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6651", + "status": "exact_ids", + "ids": "⿱日向", + "canonical_ids": "⿱日向", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晒", + "codepoint": "U+6652", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6652", + "status": "exact_ids", + "ids": "⿰日西", + "canonical_ids": "⿰日西", + "expanded_ids": "⿰日⿻⿱一儿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晓", + "codepoint": "U+6653", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6653", + "status": "exact_ids", + "ids": "⿰日尧", + "canonical_ids": "⿰日尧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "尧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晔", + "codepoint": "U+6654", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6654", + "status": "exact_ids", + "ids": "⿰日华", + "canonical_ids": "⿰日华", + "expanded_ids": "⿰日⿱⿰亻匕十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "十", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晕", + "codepoint": "U+6655", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6655", + "status": "exact_ids", + "ids": "⿳日冖车", + "canonical_ids": "⿳日冖车", + "expanded_ids": "⿳日冖车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "日", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 101, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晖", + "codepoint": "U+6656", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6656", + "status": "exact_ids", + "ids": "⿰日军", + "canonical_ids": "⿰日军", + "expanded_ids": "⿰日⿱冖车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "日", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晗", + "codepoint": "U+6657", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6657", + "status": "exact_ids", + "ids": "⿰日含", + "canonical_ids": "⿰日含", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "日" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晘", + "codepoint": "U+6658", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6658", + "status": "exact_ids", + "ids": "⿰日旱", + "canonical_ids": "⿰日旱", + "expanded_ids": "⿰日⿱日⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晙", + "codepoint": "U+6659", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6659", + "status": "exact_ids", + "ids": "⿰日夋", + "canonical_ids": "⿰日夋", + "expanded_ids": "⿰日⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晚", + "codepoint": "U+665A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-665A", + "status": "exact_ids", + "ids": "⿰日免", + "canonical_ids": "⿰日免", + "expanded_ids": "⿰日免", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "免", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "晩" + ] + }, + { + "character": "晛", + "codepoint": "U+665B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-665B", + "status": "exact_ids", + "ids": "⿰日見", + "canonical_ids": "⿰日見", + "expanded_ids": "⿰日⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "日", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晜", + "codepoint": "U+665C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-665C", + "status": "exact_ids", + "ids": "⿱日弟", + "canonical_ids": "⿱日弟", + "expanded_ids": "⿱日⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晝", + "codepoint": "U+665D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-665D", + "status": "exact_ids", + "ids": "⿱聿旦", + "canonical_ids": "⿱聿旦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晞", + "codepoint": "U+665E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-665E", + "status": "exact_ids", + "ids": "⿰日希", + "canonical_ids": "⿰日希", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "日" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晟", + "codepoint": "U+665F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-665F", + "status": "exact_ids", + "ids": "⿱日成", + "canonical_ids": "⿱日成", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "成" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晠", + "codepoint": "U+6660", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6660", + "status": "exact_ids", + "ids": "⿰日成", + "canonical_ids": "⿰日成", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "成" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晡", + "codepoint": "U+6661", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6661", + "status": "exact_ids", + "ids": "⿰日甫", + "canonical_ids": "⿰日甫", + "expanded_ids": "⿰日甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晢", + "codepoint": "U+6662", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6662", + "status": "exact_ids", + "ids": "⿱折日", + "canonical_ids": "⿱折日", + "expanded_ids": "⿱⿰扌斤日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "斤", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晣", + "codepoint": "U+6663", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6663", + "status": "exact_ids", + "ids": "⿰日折", + "canonical_ids": "⿰日折", + "expanded_ids": "⿰日⿰扌斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "斤", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晤", + "codepoint": "U+6664", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6664", + "status": "exact_ids", + "ids": "⿰日吾", + "canonical_ids": "⿰日吾", + "expanded_ids": "⿰日⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晥", + "codepoint": "U+6665", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6665", + "status": "exact_ids", + "ids": "⿰日完", + "canonical_ids": "⿰日完", + "expanded_ids": "⿰日⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "宀", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晦", + "codepoint": "U+6666", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6666", + "status": "exact_ids", + "ids": "⿰日每", + "canonical_ids": "⿰日每", + "expanded_ids": "⿰日⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "日", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晧", + "codepoint": "U+6667", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6667", + "status": "exact_ids", + "ids": "⿰日告", + "canonical_ids": "⿰日告", + "expanded_ids": "⿰日⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "日", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晨", + "codepoint": "U+6668", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6668", + "status": "exact_ids", + "ids": "⿱日辰", + "canonical_ids": "⿱日辰", + "expanded_ids": "⿱日辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晩", + "codepoint": "U+6669", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6669", + "status": "exact_ids", + "ids": "⿰日免", + "canonical_ids": "⿰日免", + "expanded_ids": "⿰日免", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "免", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "晚" + ] + }, + { + "character": "晪", + "codepoint": "U+666A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-666A", + "status": "exact_ids", + "ids": "⿰日典", + "canonical_ids": "⿰日典", + "expanded_ids": "⿰日典", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "典", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晫", + "codepoint": "U+666B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-666B", + "status": "exact_ids", + "ids": "⿰日卓", + "canonical_ids": "⿰日卓", + "expanded_ids": "⿰日⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晬", + "codepoint": "U+666C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-666C", + "status": "exact_ids", + "ids": "⿰日卒", + "canonical_ids": "⿰日卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晭", + "codepoint": "U+666D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-666D", + "status": "exact_ids", + "ids": "⿰日周", + "canonical_ids": "⿰日周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "普", + "codepoint": "U+666E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-666E", + "status": "exact_ids", + "ids": "⿱並日", + "canonical_ids": "⿱並日", + "expanded_ids": "⿱⿱丷亚日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亚", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "景", + "codepoint": "U+666F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-666F", + "status": "exact_ids", + "ids": "⿱日京", + "canonical_ids": "⿱日京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晰", + "codepoint": "U+6670", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6670", + "status": "exact_ids", + "ids": "⿰日析", + "canonical_ids": "⿰日析", + "expanded_ids": "⿰日⿰木斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晱", + "codepoint": "U+6671", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6671", + "status": "exact_ids", + "ids": "⿰日炎", + "canonical_ids": "⿰日炎", + "expanded_ids": "⿰日⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晲", + "codepoint": "U+6672", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6672", + "status": "exact_ids", + "ids": "⿰日兒", + "canonical_ids": "⿰日兒", + "expanded_ids": "⿰日⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "日", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晳", + "codepoint": "U+6673", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6673", + "status": "exact_ids", + "ids": "⿱析日", + "canonical_ids": "⿱析日", + "expanded_ids": "⿱⿰木斤日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晴", + "codepoint": "U+6674", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6674", + "status": "exact_ids", + "ids": "⿰日青", + "canonical_ids": "⿰日青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "月" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晵", + "codepoint": "U+6675", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6675", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晶", + "codepoint": "U+6676", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6676", + "status": "exact_ids", + "ids": "⿱日⿰日日", + "canonical_ids": "⿱日⿰日日", + "expanded_ids": "⿱日⿰日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晷", + "codepoint": "U+6677", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6677", + "status": "exact_ids", + "ids": "⿱日咎", + "canonical_ids": "⿱日咎", + "expanded_ids": "⿱日⿱⿰夂卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "夂", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晸", + "codepoint": "U+6678", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6678", + "status": "exact_ids", + "ids": "⿱日政", + "canonical_ids": "⿱日政", + "expanded_ids": "⿱日⿰⿱一止攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "攵", + "日", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晹", + "codepoint": "U+6679", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6679", + "status": "exact_ids", + "ids": "⿰日易", + "canonical_ids": "⿰日易", + "expanded_ids": "⿰日⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "智", + "codepoint": "U+667A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-667A", + "status": "exact_ids", + "ids": "⿱知日", + "canonical_ids": "⿱知日", + "expanded_ids": "⿱⿰⿱⿻丿一大口日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "大", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晻", + "codepoint": "U+667B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-667B", + "status": "exact_ids", + "ids": "⿰日奄", + "canonical_ids": "⿰日奄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晼", + "codepoint": "U+667C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-667C", + "status": "exact_ids", + "ids": "⿰日宛", + "canonical_ids": "⿰日宛", + "expanded_ids": "⿰日⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晽", + "codepoint": "U+667D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-667D", + "status": "exact_ids", + "ids": "⿰日林", + "canonical_ids": "⿰日林", + "expanded_ids": "⿰日⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晾", + "codepoint": "U+667E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-667E", + "status": "exact_ids", + "ids": "⿰日京", + "canonical_ids": "⿰日京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "晿", + "codepoint": "U+667F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-667F", + "status": "exact_ids", + "ids": "⿰日昌", + "canonical_ids": "⿰日昌", + "expanded_ids": "⿰日⿱日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暀", + "codepoint": "U+6680", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6680", + "status": "exact_ids", + "ids": "⿰日往", + "canonical_ids": "⿰日往", + "expanded_ids": "⿰日⿰彳⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "彳", + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暁", + "codepoint": "U+6681", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6681", + "status": "exact_ids", + "ids": "⿰日尭", + "canonical_ids": "⿰日尭", + "expanded_ids": "⿰日⿱⿱十廾⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "十", + "廾", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暂", + "codepoint": "U+6682", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6682", + "status": "exact_ids", + "ids": "⿱斩日", + "canonical_ids": "⿱斩日", + "expanded_ids": "⿱⿰车斤日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "日", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暃", + "codepoint": "U+6683", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6683", + "status": "exact_ids", + "ids": "⿱日非", + "canonical_ids": "⿱日非", + "expanded_ids": "⿱日非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暄", + "codepoint": "U+6684", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6684", + "status": "exact_ids", + "ids": "⿰日宣", + "canonical_ids": "⿰日宣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "日" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暅", + "codepoint": "U+6685", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6685", + "status": "exact_ids", + "ids": "⿰日恒", + "canonical_ids": "⿰日恒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "日" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暆", + "codepoint": "U+6686", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6686", + "status": "exact_ids", + "ids": "⿰日施", + "canonical_ids": "⿰日施", + "expanded_ids": "⿰日⿰⿰方人⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "人", + "方", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暇", + "codepoint": "U+6687", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6687", + "status": "exact_ids", + "ids": "⿰日叚", + "canonical_ids": "⿰日叚", + "expanded_ids": "⿰日叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暈", + "codepoint": "U+6688", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6688", + "status": "exact_ids", + "ids": "⿳日冖車", + "canonical_ids": "⿳日冖車", + "expanded_ids": "⿳日冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "日", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 101, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暉", + "codepoint": "U+6689", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6689", + "status": "exact_ids", + "ids": "⿰日軍", + "canonical_ids": "⿰日軍", + "expanded_ids": "⿰日⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "日", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暊", + "codepoint": "U+668A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-668A", + "status": "exact_ids", + "ids": "⿰日頁", + "canonical_ids": "⿰日頁", + "expanded_ids": "⿰日⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "日", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暋", + "codepoint": "U+668B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-668B", + "status": "exact_ids", + "ids": "⿱敃日", + "canonical_ids": "⿱敃日", + "expanded_ids": "⿱⿰民攵日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "日", + "民" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暌", + "codepoint": "U+668C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-668C", + "status": "exact_ids", + "ids": "⿰日癸", + "canonical_ids": "⿰日癸", + "expanded_ids": "⿰日⿱癶⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "日", + "癶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暍", + "codepoint": "U+668D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-668D", + "status": "exact_ids", + "ids": "⿰日曷", + "canonical_ids": "⿰日曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "曰" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暎", + "codepoint": "U+668E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-668E", + "status": "exact_ids", + "ids": "⿰日英", + "canonical_ids": "⿰日英", + "expanded_ids": "⿰日⿱艹⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暏", + "codepoint": "U+668F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-668F", + "status": "exact_ids", + "ids": "⿰日者", + "canonical_ids": "⿰日者", + "expanded_ids": "⿰日⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暐", + "codepoint": "U+6690", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6690", + "status": "exact_ids", + "ids": "⿰日韋", + "canonical_ids": "⿰日韋", + "expanded_ids": "⿰日韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暑", + "codepoint": "U+6691", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6691", + "status": "exact_ids", + "ids": "⿱日者", + "canonical_ids": "⿱日者", + "expanded_ids": "⿱日⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暒", + "codepoint": "U+6692", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6692", + "status": "exact_ids", + "ids": "⿰日星", + "canonical_ids": "⿰日星", + "expanded_ids": "⿰日⿱日⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暓", + "codepoint": "U+6693", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6693", + "status": "exact_ids", + "ids": "⿱敄日", + "canonical_ids": "⿱敄日", + "expanded_ids": "⿱⿰矛攵日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "日", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暔", + "codepoint": "U+6694", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6694", + "status": "exact_ids", + "ids": "⿰日南", + "canonical_ids": "⿰日南", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "南" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暕", + "codepoint": "U+6695", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6695", + "status": "exact_ids", + "ids": "⿰日柬", + "canonical_ids": "⿰日柬", + "expanded_ids": "⿰日柬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "柬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暖", + "codepoint": "U+6696", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6696", + "status": "exact_ids", + "ids": "⿰日爰", + "canonical_ids": "⿰日爰", + "expanded_ids": "⿰日⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "日", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暗", + "codepoint": "U+6697", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6697", + "status": "exact_ids", + "ids": "⿰日音", + "canonical_ids": "⿰日音", + "expanded_ids": "⿰日⿱立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暘", + "codepoint": "U+6698", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6698", + "status": "exact_ids", + "ids": "⿰日昜", + "canonical_ids": "⿰日昜", + "expanded_ids": "⿰日⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暙", + "codepoint": "U+6699", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6699", + "status": "exact_ids", + "ids": "⿰日春", + "canonical_ids": "⿰日春", + "expanded_ids": "⿰日⿱𡗗日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暚", + "codepoint": "U+669A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-669A", + "status": "exact_ids", + "ids": "⿰日䍃", + "canonical_ids": "⿰日䍃", + "expanded_ids": "⿰日⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "爪", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暛", + "codepoint": "U+669B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-669B", + "status": "exact_ids", + "ids": "⿰日差", + "canonical_ids": "⿰日差", + "expanded_ids": "⿰日⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "日", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暜", + "codepoint": "U+669C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-669C", + "status": "exact_ids", + "ids": "⿱⿰立立日", + "canonical_ids": "⿱⿰立立日", + "expanded_ids": "⿱⿰立立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暝", + "codepoint": "U+669D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-669D", + "status": "exact_ids", + "ids": "⿰日冥", + "canonical_ids": "⿰日冥", + "expanded_ids": "⿰日⿱冖⿱日⿱亠八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暞", + "codepoint": "U+669E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-669E", + "status": "exact_ids", + "ids": "⿰日臬", + "canonical_ids": "⿰日臬", + "expanded_ids": "⿰日⿱⿻目丶木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暟", + "codepoint": "U+669F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-669F", + "status": "exact_ids", + "ids": "⿰日豈", + "canonical_ids": "⿰日豈", + "expanded_ids": "⿰日⿱山豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "日", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暠", + "codepoint": "U+66A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66A0", + "status": "exact_ids", + "ids": "⿱日高", + "canonical_ids": "⿱日高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暡", + "codepoint": "U+66A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66A1", + "status": "exact_ids", + "ids": "⿰日翁", + "canonical_ids": "⿰日翁", + "expanded_ids": "⿰日⿱⿱八厶⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "八", + "厶", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暢", + "codepoint": "U+66A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66A2", + "status": "exact_ids", + "ids": "⿰申昜", + "canonical_ids": "⿰申昜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暣", + "codepoint": "U+66A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66A3", + "status": "exact_ids", + "ids": "⿰日氣", + "canonical_ids": "⿰日氣", + "expanded_ids": "⿰日⿱气⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "日", + "木", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暤", + "codepoint": "U+66A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66A4", + "status": "exact_ids", + "ids": "⿰日皋", + "canonical_ids": "⿰日皋", + "expanded_ids": "⿰日⿱⿻日丶⿱大十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "十", + "大", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暥", + "codepoint": "U+66A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66A5", + "status": "exact_ids", + "ids": "⿰日晏", + "canonical_ids": "⿰日晏", + "expanded_ids": "⿰日⿱日⿱宀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暦", + "codepoint": "U+66A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66A6", + "status": "exact_ids", + "ids": "⿱𠩵日", + "canonical_ids": "⿱𠩵日", + "expanded_ids": "⿱⿱厂⿰木木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暧", + "codepoint": "U+66A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66A7", + "status": "exact_ids", + "ids": "⿰日爱", + "canonical_ids": "⿰日爱", + "expanded_ids": "⿰日⿳爫冖⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "冖", + "又", + "日", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暨", + "codepoint": "U+66A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66A8", + "status": "exact_ids", + "ids": "⿱既旦", + "canonical_ids": "⿱既旦", + "expanded_ids": "⿱⿰艮旡⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "旡", + "日", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暩", + "codepoint": "U+66A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66A9", + "status": "exact_ids", + "ids": "⿰日祭", + "canonical_ids": "⿰日祭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暪", + "codepoint": "U+66AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66AA", + "status": "exact_ids", + "ids": "⿰日㒼", + "canonical_ids": "⿰日㒼", + "expanded_ids": "⿰日⿱艹⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暫", + "codepoint": "U+66AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66AB", + "status": "exact_ids", + "ids": "⿱斬日", + "canonical_ids": "⿱斬日", + "expanded_ids": "⿱⿰車斤日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "日", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暬", + "codepoint": "U+66AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66AC", + "status": "exact_ids", + "ids": "⿱埶日", + "canonical_ids": "⿱埶日", + "expanded_ids": "⿱⿰⿱⿱土儿土⿻九丶日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "儿", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暭", + "codepoint": "U+66AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66AD", + "status": "exact_ids", + "ids": "⿰日皐", + "canonical_ids": "⿰日皐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "皐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暮", + "codepoint": "U+66AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66AE", + "status": "exact_ids", + "ids": "⿱莫日", + "canonical_ids": "⿱莫日", + "expanded_ids": "⿱⿱艹⿱日大日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暯", + "codepoint": "U+66AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66AF", + "status": "exact_ids", + "ids": "⿰日莫", + "canonical_ids": "⿰日莫", + "expanded_ids": "⿰日⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暰", + "codepoint": "U+66B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66B0", + "status": "exact_ids", + "ids": "⿰日從", + "canonical_ids": "⿰日從", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "從" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暱", + "codepoint": "U+66B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66B1", + "status": "exact_ids", + "ids": "⿰日匿", + "canonical_ids": "⿰日匿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "匿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暲", + "codepoint": "U+66B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66B2", + "status": "exact_ids", + "ids": "⿰日章", + "canonical_ids": "⿰日章", + "expanded_ids": "⿰日⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暳", + "codepoint": "U+66B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66B3", + "status": "exact_ids", + "ids": "⿰日彗", + "canonical_ids": "⿰日彗", + "expanded_ids": "⿰日⿱⿰丰丰彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "彐", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暴", + "codepoint": "U+66B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66B4", + "status": "exact_ids", + "ids": "⿱日㳟", + "canonical_ids": "⿱日㳟", + "expanded_ids": "⿱日⿱⿱廿廾氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "日", + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暵", + "codepoint": "U+66B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66B5", + "status": "exact_ids", + "ids": "⿰日𦰩", + "canonical_ids": "⿰日𦰩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "𦰩" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暶", + "codepoint": "U+66B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66B6", + "status": "exact_ids", + "ids": "⿰日旋", + "canonical_ids": "⿰日旋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "旋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暷", + "codepoint": "U+66B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66B7", + "status": "exact_ids", + "ids": "⿰日專", + "canonical_ids": "⿰日專", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "寸", + "日" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暸", + "codepoint": "U+66B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66B8", + "status": "exact_ids", + "ids": "⿰日尞", + "canonical_ids": "⿰日尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "日" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暹", + "codepoint": "U+66B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66B9", + "status": "exact_ids", + "ids": "⿰進日", + "canonical_ids": "⿰進日", + "expanded_ids": "⿰⿰辶隹日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "辶", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暺", + "codepoint": "U+66BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66BA", + "status": "exact_ids", + "ids": "⿰日單", + "canonical_ids": "⿰日單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暻", + "codepoint": "U+66BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66BB", + "status": "exact_ids", + "ids": "⿰日景", + "canonical_ids": "⿰日景", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暼", + "codepoint": "U+66BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66BC", + "status": "exact_ids", + "ids": "⿱敝日", + "canonical_ids": "⿱敝日", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "日" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暽", + "codepoint": "U+66BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66BD", + "status": "exact_ids", + "ids": "⿰日粦", + "canonical_ids": "⿰日粦", + "expanded_ids": "⿰日⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暾", + "codepoint": "U+66BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66BE", + "status": "exact_ids", + "ids": "⿰日敦", + "canonical_ids": "⿰日敦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "日" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "暿", + "codepoint": "U+66BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66BF", + "status": "exact_ids", + "ids": "⿰日喜", + "canonical_ids": "⿰日喜", + "expanded_ids": "⿰日⿱⿱十豆口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "日", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曀", + "codepoint": "U+66C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66C0", + "status": "exact_ids", + "ids": "⿰日壹", + "canonical_ids": "⿰日壹", + "expanded_ids": "⿰日⿳土冖豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "土", + "日", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曁", + "codepoint": "U+66C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66C1", + "status": "exact_ids", + "ids": "⿱旣旦", + "canonical_ids": "⿱旣旦", + "expanded_ids": "⿱⿰⿱⿻日丶匕旡⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "匕", + "旡", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曂", + "codepoint": "U+66C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66C2", + "status": "exact_ids", + "ids": "⿰日黄", + "canonical_ids": "⿰日黄", + "expanded_ids": "⿰日黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曃", + "codepoint": "U+66C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66C3", + "status": "exact_ids", + "ids": "⿰日逮", + "canonical_ids": "⿰日逮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "辶" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曄", + "codepoint": "U+66C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66C4", + "status": "exact_ids", + "ids": "⿰日華", + "canonical_ids": "⿰日華", + "expanded_ids": "⿰日⿱艹𠦒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "艹", + "𠦒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曅", + "codepoint": "U+66C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66C5", + "status": "exact_ids", + "ids": "⿱日華", + "canonical_ids": "⿱日華", + "expanded_ids": "⿱日⿱艹𠦒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "艹", + "𠦒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曆", + "codepoint": "U+66C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66C6", + "status": "exact_ids", + "ids": "⿱厤日", + "canonical_ids": "⿱厤日", + "expanded_ids": "⿱⿱厂⿰⿻丿木⿻丿木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厂", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曇", + "codepoint": "U+66C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66C7", + "status": "exact_ids", + "ids": "⿱日雲", + "canonical_ids": "⿱日雲", + "expanded_ids": "⿱日⿱雨⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "日", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曈", + "codepoint": "U+66C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66C8", + "status": "exact_ids", + "ids": "⿰日童", + "canonical_ids": "⿰日童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曉", + "codepoint": "U+66C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66C9", + "status": "exact_ids", + "ids": "⿰日堯", + "canonical_ids": "⿰日堯", + "expanded_ids": "⿰日⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曊", + "codepoint": "U+66CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66CA", + "status": "exact_ids", + "ids": "⿰日費", + "canonical_ids": "⿰日費", + "expanded_ids": "⿰日⿱⿻弓刂⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刂", + "弓", + "日", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曋", + "codepoint": "U+66CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66CB", + "status": "exact_ids", + "ids": "⿰日覃", + "canonical_ids": "⿰日覃", + "expanded_ids": "⿰日⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "襾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曌", + "codepoint": "U+66CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66CC", + "status": "exact_ids", + "ids": "⿱明空", + "canonical_ids": "⿱明空", + "expanded_ids": "⿱⿰日月⿱⿱宀八工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "工", + "日", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曍", + "codepoint": "U+66CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66CD", + "status": "exact_ids", + "ids": "⿰日臯", + "canonical_ids": "⿰日臯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "臯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曎", + "codepoint": "U+66CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66CE", + "status": "exact_ids", + "ids": "⿰日睪", + "canonical_ids": "⿰日睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "日", + "罒" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曏", + "codepoint": "U+66CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66CF", + "status": "exact_ids", + "ids": "⿱日鄉", + "canonical_ids": "⿱日鄉", + "expanded_ids": "⿱日⿰乡⿰⿻丶艮阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乡", + "日", + "艮", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曐", + "codepoint": "U+66D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66D0", + "status": "exact_ids", + "ids": "⿱晶生", + "canonical_ids": "⿱晶生", + "expanded_ids": "⿱⿱日⿰日日⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曑", + "codepoint": "U+66D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66D1", + "status": "exact_ids", + "ids": "⿱晶㐱", + "canonical_ids": "⿱晶㐱", + "expanded_ids": "⿱⿱日⿰日日⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "彡", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曒", + "codepoint": "U+66D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66D2", + "status": "exact_ids", + "ids": "⿰日敫", + "canonical_ids": "⿰日敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曓", + "codepoint": "U+66D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66D3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曔", + "codepoint": "U+66D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66D4", + "status": "exact_ids", + "ids": "⿰日敬", + "canonical_ids": "⿰日敬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "日", + "艹" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曕", + "codepoint": "U+66D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66D5", + "status": "exact_ids", + "ids": "⿰日詹", + "canonical_ids": "⿰日詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曖", + "codepoint": "U+66D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66D6", + "status": "exact_ids", + "ids": "⿰日愛", + "canonical_ids": "⿰日愛", + "expanded_ids": "⿰日⿳爫冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "夊", + "心", + "日", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曗", + "codepoint": "U+66D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66D7", + "status": "exact_ids", + "ids": "⿰日業", + "canonical_ids": "⿰日業", + "expanded_ids": "⿰日⿱业⿻羊八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "八", + "日", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曘", + "codepoint": "U+66D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66D8", + "status": "exact_ids", + "ids": "⿰日需", + "canonical_ids": "⿰日需", + "expanded_ids": "⿰日⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曙", + "codepoint": "U+66D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66D9", + "status": "exact_ids", + "ids": "⿰日署", + "canonical_ids": "⿰日署", + "expanded_ids": "⿰日⿱罒⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曚", + "codepoint": "U+66DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66DA", + "status": "exact_ids", + "ids": "⿰日蒙", + "canonical_ids": "⿰日蒙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "艹", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曛", + "codepoint": "U+66DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66DB", + "status": "exact_ids", + "ids": "⿰日熏", + "canonical_ids": "⿰日熏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "熏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曜", + "codepoint": "U+66DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66DC", + "status": "exact_ids", + "ids": "⿰日翟", + "canonical_ids": "⿰日翟", + "expanded_ids": "⿰日⿱⿰习习隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "日", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曝", + "codepoint": "U+66DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66DD", + "status": "exact_ids", + "ids": "⿰日暴", + "canonical_ids": "⿰日暴", + "expanded_ids": "⿰日⿱日⿱⿱廿廾氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "日", + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曞", + "codepoint": "U+66DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66DE", + "status": "exact_ids", + "ids": "⿰日厲", + "canonical_ids": "⿰日厲", + "expanded_ids": "⿰日⿱厂⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "日", + "田", + "禸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曟", + "codepoint": "U+66DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66DF", + "status": "exact_ids", + "ids": "⿱晶辰", + "canonical_ids": "⿱晶辰", + "expanded_ids": "⿱⿱日⿰日日辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曠", + "codepoint": "U+66E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66E0", + "status": "exact_ids", + "ids": "⿰日廣", + "canonical_ids": "⿰日廣", + "expanded_ids": "⿰日⿱广黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "日", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曡", + "codepoint": "U+66E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66E1", + "status": "exact_ids", + "ids": "⿳晶冖且", + "canonical_ids": "⿳晶冖且", + "expanded_ids": "⿳⿱日⿰日日冖且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "冖", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曢", + "codepoint": "U+66E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66E2", + "status": "exact_ids", + "ids": "⿰日寮", + "canonical_ids": "⿰日寮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "小", + "日" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曣", + "codepoint": "U+66E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66E3", + "status": "exact_ids", + "ids": "⿰日燕", + "canonical_ids": "⿰日燕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "燕" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曤", + "codepoint": "U+66E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66E4", + "status": "exact_ids", + "ids": "⿰日霍", + "canonical_ids": "⿰日霍", + "expanded_ids": "⿰日⿱雨隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "隹", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曥", + "codepoint": "U+66E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66E5", + "status": "exact_ids", + "ids": "⿰日盧", + "canonical_ids": "⿰日盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "皿" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曦", + "codepoint": "U+66E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66E6", + "status": "exact_ids", + "ids": "⿰日羲", + "canonical_ids": "⿰日羲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "羲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曧", + "codepoint": "U+66E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66E7", + "status": "exact_ids", + "ids": "⿱日融", + "canonical_ids": "⿱日融", + "expanded_ids": "⿱日⿰鬲虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "虫", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曨", + "codepoint": "U+66E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66E8", + "status": "exact_ids", + "ids": "⿰日龍", + "canonical_ids": "⿰日龍", + "expanded_ids": "⿰日龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曩", + "codepoint": "U+66E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66E9", + "status": "exact_ids", + "ids": "⿱日襄", + "canonical_ids": "⿱日襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曪", + "codepoint": "U+66EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66EA", + "status": "exact_ids", + "ids": "⿰日羅", + "canonical_ids": "⿰日羅", + "expanded_ids": "⿰日⿱罒⿰⿻幺小隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "日", + "罒", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曫", + "codepoint": "U+66EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66EB", + "status": "exact_ids", + "ids": "⿱䜌日", + "canonical_ids": "⿱䜌日", + "expanded_ids": "⿱⿲⿱幺小言⿱幺小日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "日", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曬", + "codepoint": "U+66EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66EC", + "status": "exact_ids", + "ids": "⿰日麗", + "canonical_ids": "⿰日麗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "鹿" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曭", + "codepoint": "U+66ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66ED", + "status": "exact_ids", + "ids": "⿰日黨", + "canonical_ids": "⿰日黨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "日", + "黑" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曮", + "codepoint": "U+66EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66EE", + "status": "exact_ids", + "ids": "⿰日嚴", + "canonical_ids": "⿰日嚴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "日" + ], + "unresolved_leaves": [ + "𠪚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曯", + "codepoint": "U+66EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66EF", + "status": "exact_ids", + "ids": "⿰日屬", + "canonical_ids": "⿰日屬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "屬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曰", + "codepoint": "U+66F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66F0", + "status": "leaf_self_fallback", + "ids": "曰", + "canonical_ids": "曰", + "expanded_ids": "曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曱", + "codepoint": "U+66F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66F1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曲", + "codepoint": "U+66F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66F2", + "status": "leaf_self_fallback", + "ids": "曲", + "canonical_ids": "曲", + "expanded_ids": "曲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曳", + "codepoint": "U+66F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66F3", + "status": "leaf_self_fallback", + "ids": "曳", + "canonical_ids": "曳", + "expanded_ids": "曳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "更", + "codepoint": "U+66F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66F4", + "status": "leaf_self_fallback", + "ids": "更", + "canonical_ids": "更", + "expanded_ids": "更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "更" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曵", + "codepoint": "U+66F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66F5", + "status": "exact_ids", + "ids": "⿻曳丶", + "canonical_ids": "⿻曳丶", + "expanded_ids": "⿻曳丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "曳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曶", + "codepoint": "U+66F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66F6", + "status": "exact_ids", + "ids": "⿱勿曰", + "canonical_ids": "⿱勿曰", + "expanded_ids": "⿱勿曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "曰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曷", + "codepoint": "U+66F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66F7", + "status": "exact_ids", + "ids": "⿱曰匃", + "canonical_ids": "⿱曰匃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "書", + "codepoint": "U+66F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66F8", + "status": "exact_ids", + "ids": "⿱聿曰", + "canonical_ids": "⿱聿曰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曹", + "codepoint": "U+66F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66F9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曺", + "codepoint": "U+66FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66FA", + "status": "exact_ids", + "ids": "⿱𤰔曰", + "canonical_ids": "⿱𤰔曰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曻", + "codepoint": "U+66FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66FB", + "status": "exact_ids", + "ids": "⿱曰舛", + "canonical_ids": "⿱曰舛", + "expanded_ids": "⿱曰⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夕", + "曰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曼", + "codepoint": "U+66FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66FC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曽", + "codepoint": "U+66FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66FD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "曾", + "codepoint": "U+66FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66FE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "替", + "codepoint": "U+66FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-66FF", + "status": "exact_ids", + "ids": "⿱⿰夫夫曰", + "canonical_ids": "⿱⿰夫夫曰", + "expanded_ids": "⿱⿰⿻一大⿻一大曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "曰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "最", + "codepoint": "U+6700", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6700", + "status": "exact_ids", + "ids": "⿱曰取", + "canonical_ids": "⿱曰取", + "expanded_ids": "⿱曰⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "曰", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朁", + "codepoint": "U+6701", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6701", + "status": "exact_ids", + "ids": "⿱⿰旡旡曰", + "canonical_ids": "⿱⿰旡旡曰", + "expanded_ids": "⿱⿰旡旡曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "旡", + "曰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朂", + "codepoint": "U+6702", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6702", + "status": "exact_ids", + "ids": "⿱曰𦔳", + "canonical_ids": "⿱曰𦔳", + "expanded_ids": "⿱曰⿰耳力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "曰", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "會", + "codepoint": "U+6703", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6703", + "status": "exact_ids", + "ids": "⿱曾曰", + "canonical_ids": "⿱曾曰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朄", + "codepoint": "U+6704", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6704", + "status": "exact_ids", + "ids": "⿰申柬", + "canonical_ids": "⿰申柬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "柬" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朅", + "codepoint": "U+6705", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6705", + "status": "exact_ids", + "ids": "⿰去曷", + "canonical_ids": "⿰去曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "曰" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朆", + "codepoint": "U+6706", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6706", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朇", + "codepoint": "U+6707", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6707", + "status": "exact_ids", + "ids": "⿰會卑", + "canonical_ids": "⿰會卑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "曰" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "月", + "codepoint": "U+6708", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6708", + "status": "leaf_self_fallback", + "ids": "月", + "canonical_ids": "月", + "expanded_ids": "月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "有", + "codepoint": "U+6709", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6709", + "status": "exact_ids", + "ids": "⿱𠂇月", + "canonical_ids": "⿱𠂇月", + "expanded_ids": "⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朊", + "codepoint": "U+670A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-670A", + "status": "exact_ids", + "ids": "⿰月元", + "canonical_ids": "⿰月元", + "expanded_ids": "⿰月⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朋", + "codepoint": "U+670B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-670B", + "status": "exact_ids", + "ids": "⿰月月", + "canonical_ids": "⿰月月", + "expanded_ids": "⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朌", + "codepoint": "U+670C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-670C", + "status": "exact_ids", + "ids": "⿰月分", + "canonical_ids": "⿰月分", + "expanded_ids": "⿰月⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "肦" + ] + }, + { + "character": "服", + "codepoint": "U+670D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-670D", + "status": "exact_ids", + "ids": "⿰月𠬝", + "canonical_ids": "⿰月𠬝", + "expanded_ids": "⿰月⿻卩又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "又", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朎", + "codepoint": "U+670E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-670E", + "status": "exact_ids", + "ids": "⿰月令", + "canonical_ids": "⿰月令", + "expanded_ids": "⿰月⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "月", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朏", + "codepoint": "U+670F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-670F", + "status": "exact_ids", + "ids": "⿰月出", + "canonical_ids": "⿰月出", + "expanded_ids": "⿰月⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朐", + "codepoint": "U+6710", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6710", + "status": "exact_ids", + "ids": "⿰月句", + "canonical_ids": "⿰月句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朑", + "codepoint": "U+6711", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6711", + "status": "exact_ids", + "ids": "⿰月世", + "canonical_ids": "⿰月世", + "expanded_ids": "⿰月世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朒", + "codepoint": "U+6712", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6712", + "status": "exact_ids", + "ids": "⿰月肉", + "canonical_ids": "⿰月肉", + "expanded_ids": "⿰月⿻冂⿱人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朓", + "codepoint": "U+6713", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6713", + "status": "exact_ids", + "ids": "⿰月兆", + "canonical_ids": "⿰月兆", + "expanded_ids": "⿰月兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朔", + "codepoint": "U+6714", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6714", + "status": "exact_ids", + "ids": "⿰屰月", + "canonical_ids": "⿰屰月", + "expanded_ids": "⿰⿱䒑屮月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "屮", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朕", + "codepoint": "U+6715", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6715", + "status": "exact_ids", + "ids": "⿰月关", + "canonical_ids": "⿰月关", + "expanded_ids": "⿰月⿱丷⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朖", + "codepoint": "U+6716", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6716", + "status": "exact_ids", + "ids": "⿰月良", + "canonical_ids": "⿰月良", + "expanded_ids": "⿰月⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "月", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朗", + "codepoint": "U+6717", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6717", + "status": "exact_ids", + "ids": "⿰良月", + "canonical_ids": "⿰良月", + "expanded_ids": "⿰⿻丶艮月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "月", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朘", + "codepoint": "U+6718", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6718", + "status": "exact_ids", + "ids": "⿰月夋", + "canonical_ids": "⿰月夋", + "expanded_ids": "⿰月⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "脧" + ] + }, + { + "character": "朙", + "codepoint": "U+6719", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6719", + "status": "exact_ids", + "ids": "⿰囧月", + "canonical_ids": "⿰囧月", + "expanded_ids": "⿰囧月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "囧", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朚", + "codepoint": "U+671A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-671A", + "status": "exact_ids", + "ids": "⿱亡明", + "canonical_ids": "⿱亡明", + "expanded_ids": "⿱⿻亠乚⿰日月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "日", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "望", + "codepoint": "U+671B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-671B", + "status": "exact_ids", + "ids": "⿱𣍢王", + "canonical_ids": "⿱𣍢王", + "expanded_ids": "⿱⿰⿻亠乚月王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "月", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朜", + "codepoint": "U+671C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-671C", + "status": "exact_ids", + "ids": "⿰月享", + "canonical_ids": "⿰月享", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朝", + "codepoint": "U+671D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-671D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朞", + "codepoint": "U+671E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-671E", + "status": "exact_ids", + "ids": "⿱其月", + "canonical_ids": "⿱其月", + "expanded_ids": "⿱其月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "期", + "codepoint": "U+671F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-671F", + "status": "exact_ids", + "ids": "⿰其月", + "canonical_ids": "⿰其月", + "expanded_ids": "⿰其月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朠", + "codepoint": "U+6720", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6720", + "status": "exact_ids", + "ids": "⿰月英", + "canonical_ids": "⿰月英", + "expanded_ids": "⿰月⿱艹⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "月", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朡", + "codepoint": "U+6721", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6721", + "status": "exact_ids", + "ids": "⿰月㚇", + "canonical_ids": "⿰月㚇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "夊", + "月" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朢", + "codepoint": "U+6722", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6722", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朣", + "codepoint": "U+6723", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6723", + "status": "exact_ids", + "ids": "⿰月童", + "canonical_ids": "⿰月童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朤", + "codepoint": "U+6724", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6724", + "status": "exact_ids", + "ids": "⿱⿰月月⿰月月", + "canonical_ids": "⿱⿰月月⿰月月", + "expanded_ids": "⿱⿰月月⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朥", + "codepoint": "U+6725", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6725", + "status": "exact_ids", + "ids": "⿰月勞", + "canonical_ids": "⿰月勞", + "expanded_ids": "⿰月⿳⿰火火冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "月", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朦", + "codepoint": "U+6726", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6726", + "status": "exact_ids", + "ids": "⿰月蒙", + "canonical_ids": "⿰月蒙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "艹", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朧", + "codepoint": "U+6727", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6727", + "status": "exact_ids", + "ids": "⿰月龍", + "canonical_ids": "⿰月龍", + "expanded_ids": "⿰月龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "木", + "codepoint": "U+6728", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6728", + "status": "leaf_self_fallback", + "ids": "木", + "canonical_ids": "木", + "expanded_ids": "木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朩", + "codepoint": "U+6729", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6729", + "status": "leaf_self_fallback", + "ids": "朩", + "canonical_ids": "朩", + "expanded_ids": "朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "未", + "codepoint": "U+672A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-672A", + "status": "exact_ids", + "ids": "⿻木一", + "canonical_ids": "⿻木一", + "expanded_ids": "⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "末", + "本" + ] + }, + { + "character": "末", + "codepoint": "U+672B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-672B", + "status": "exact_ids", + "ids": "⿻木一", + "canonical_ids": "⿻木一", + "expanded_ids": "⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "未", + "本" + ] + }, + { + "character": "本", + "codepoint": "U+672C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-672C", + "status": "exact_ids", + "ids": "⿻木一", + "canonical_ids": "⿻木一", + "expanded_ids": "⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "未", + "末" + ] + }, + { + "character": "札", + "codepoint": "U+672D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-672D", + "status": "exact_ids", + "ids": "⿰木乚", + "canonical_ids": "⿰木乚", + "expanded_ids": "⿰木乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朮", + "codepoint": "U+672E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-672E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "术", + "codepoint": "U+672F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-672F", + "status": "exact_ids", + "ids": "⿻木丶", + "canonical_ids": "⿻木丶", + "expanded_ids": "⿻木丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朰", + "codepoint": "U+6730", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6730", + "status": "exact_ids", + "ids": "⿱木乙", + "canonical_ids": "⿱木乙", + "expanded_ids": "⿱木乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朱", + "codepoint": "U+6731", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6731", + "status": "exact_ids", + "ids": "⿻丿未", + "canonical_ids": "⿻丿未", + "expanded_ids": "⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朲", + "codepoint": "U+6732", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6732", + "status": "exact_ids", + "ids": "⿰木人", + "canonical_ids": "⿰木人", + "expanded_ids": "⿰木人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朳", + "codepoint": "U+6733", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6733", + "status": "exact_ids", + "ids": "⿰木八", + "canonical_ids": "⿰木八", + "expanded_ids": "⿰木八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朴", + "codepoint": "U+6734", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6734", + "status": "exact_ids", + "ids": "⿰木卜", + "canonical_ids": "⿰木卜", + "expanded_ids": "⿰木卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朵", + "codepoint": "U+6735", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6735", + "status": "exact_ids", + "ids": "⿱几木", + "canonical_ids": "⿱几木", + "expanded_ids": "⿱几木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朶", + "codepoint": "U+6736", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6736", + "status": "exact_ids", + "ids": "⿱乃木", + "canonical_ids": "⿱乃木", + "expanded_ids": "⿱乃木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朷", + "codepoint": "U+6737", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6737", + "status": "exact_ids", + "ids": "⿰木刀", + "canonical_ids": "⿰木刀", + "expanded_ids": "⿰木刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朸", + "codepoint": "U+6738", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6738", + "status": "exact_ids", + "ids": "⿰木力", + "canonical_ids": "⿰木力", + "expanded_ids": "⿰木力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朹", + "codepoint": "U+6739", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6739", + "status": "exact_ids", + "ids": "⿰木九", + "canonical_ids": "⿰木九", + "expanded_ids": "⿰木九", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "机", + "codepoint": "U+673A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-673A", + "status": "exact_ids", + "ids": "⿰木几", + "canonical_ids": "⿰木几", + "expanded_ids": "⿰木几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朻", + "codepoint": "U+673B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-673B", + "status": "exact_ids", + "ids": "⿰木丩", + "canonical_ids": "⿰木丩", + "expanded_ids": "⿰木⿰丨丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朼", + "codepoint": "U+673C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-673C", + "status": "exact_ids", + "ids": "⿰木匕", + "canonical_ids": "⿰木匕", + "expanded_ids": "⿰木匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朽", + "codepoint": "U+673D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-673D", + "status": "exact_ids", + "ids": "⿰木丂", + "canonical_ids": "⿰木丂", + "expanded_ids": "⿰木丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朾", + "codepoint": "U+673E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-673E", + "status": "exact_ids", + "ids": "⿰木丁", + "canonical_ids": "⿰木丁", + "expanded_ids": "⿰木⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "朿", + "codepoint": "U+673F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-673F", + "status": "exact_ids", + "ids": "⿻木冂", + "canonical_ids": "⿻木冂", + "expanded_ids": "⿻木冂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杀", + "codepoint": "U+6740", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6740", + "status": "exact_ids", + "ids": "⿱乂朩", + "canonical_ids": "⿱乂朩", + "expanded_ids": "⿱乂朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杁", + "codepoint": "U+6741", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6741", + "status": "exact_ids", + "ids": "⿰木入", + "canonical_ids": "⿰木入", + "expanded_ids": "⿰木入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杂", + "codepoint": "U+6742", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6742", + "status": "exact_ids", + "ids": "⿱九朩", + "canonical_ids": "⿱九朩", + "expanded_ids": "⿱九朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "权", + "codepoint": "U+6743", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6743", + "status": "exact_ids", + "ids": "⿰木又", + "canonical_ids": "⿰木又", + "expanded_ids": "⿰木又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杄", + "codepoint": "U+6744", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6744", + "status": "exact_ids", + "ids": "⿰木千", + "canonical_ids": "⿰木千", + "expanded_ids": "⿰木⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杅", + "codepoint": "U+6745", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6745", + "status": "exact_ids", + "ids": "⿰木于", + "canonical_ids": "⿰木于", + "expanded_ids": "⿰木⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杆", + "codepoint": "U+6746", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6746", + "status": "exact_ids", + "ids": "⿰木干", + "canonical_ids": "⿰木干", + "expanded_ids": "⿰木⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杇", + "codepoint": "U+6747", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6747", + "status": "exact_ids", + "ids": "⿰木亏", + "canonical_ids": "⿰木亏", + "expanded_ids": "⿰木⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杈", + "codepoint": "U+6748", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6748", + "status": "exact_ids", + "ids": "⿰木叉", + "canonical_ids": "⿰木叉", + "expanded_ids": "⿰木⿻又丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "又", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杉", + "codepoint": "U+6749", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6749", + "status": "exact_ids", + "ids": "⿰木彡", + "canonical_ids": "⿰木彡", + "expanded_ids": "⿰木彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杊", + "codepoint": "U+674A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-674A", + "status": "exact_ids", + "ids": "⿰木川", + "canonical_ids": "⿰木川", + "expanded_ids": "⿰木川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "川", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杋", + "codepoint": "U+674B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-674B", + "status": "exact_ids", + "ids": "⿰木凡", + "canonical_ids": "⿰木凡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杌", + "codepoint": "U+674C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-674C", + "status": "exact_ids", + "ids": "⿰木兀", + "canonical_ids": "⿰木兀", + "expanded_ids": "⿰木⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杍", + "codepoint": "U+674D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-674D", + "status": "exact_ids", + "ids": "⿰木子", + "canonical_ids": "⿰木子", + "expanded_ids": "⿰木子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "李", + "codepoint": "U+674E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-674E", + "status": "exact_ids", + "ids": "⿱木子", + "canonical_ids": "⿱木子", + "expanded_ids": "⿱木子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杏", + "codepoint": "U+674F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-674F", + "status": "exact_ids", + "ids": "⿱木口", + "canonical_ids": "⿱木口", + "expanded_ids": "⿱木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "材", + "codepoint": "U+6750", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6750", + "status": "exact_ids", + "ids": "⿰木才", + "canonical_ids": "⿰木才", + "expanded_ids": "⿰木才", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "才", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "村", + "codepoint": "U+6751", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6751", + "status": "exact_ids", + "ids": "⿰木寸", + "canonical_ids": "⿰木寸", + "expanded_ids": "⿰木寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杒", + "codepoint": "U+6752", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6752", + "status": "exact_ids", + "ids": "⿰木刃", + "canonical_ids": "⿰木刃", + "expanded_ids": "⿰木⿻刀丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杓", + "codepoint": "U+6753", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6753", + "status": "exact_ids", + "ids": "⿰木勺", + "canonical_ids": "⿰木勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杔", + "codepoint": "U+6754", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6754", + "status": "exact_ids", + "ids": "⿰木乇", + "canonical_ids": "⿰木乇", + "expanded_ids": "⿰木⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杕", + "codepoint": "U+6755", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6755", + "status": "exact_ids", + "ids": "⿰木大", + "canonical_ids": "⿰木大", + "expanded_ids": "⿰木大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杖", + "codepoint": "U+6756", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6756", + "status": "exact_ids", + "ids": "⿰木丈", + "canonical_ids": "⿰木丈", + "expanded_ids": "⿰木丈", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丈", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杗", + "codepoint": "U+6757", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6757", + "status": "exact_ids", + "ids": "⿱亡木", + "canonical_ids": "⿱亡木", + "expanded_ids": "⿱⿻亠乚木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杘", + "codepoint": "U+6758", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6758", + "status": "exact_ids", + "ids": "⿱尸木", + "canonical_ids": "⿱尸木", + "expanded_ids": "⿱尸木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杙", + "codepoint": "U+6759", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6759", + "status": "exact_ids", + "ids": "⿰木弋", + "canonical_ids": "⿰木弋", + "expanded_ids": "⿰木弋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弋", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杚", + "codepoint": "U+675A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-675A", + "status": "exact_ids", + "ids": "⿰木乞", + "canonical_ids": "⿰木乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杛", + "codepoint": "U+675B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-675B", + "status": "exact_ids", + "ids": "⿰木弓", + "canonical_ids": "⿰木弓", + "expanded_ids": "⿰木弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杜", + "codepoint": "U+675C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-675C", + "status": "exact_ids", + "ids": "⿰木土", + "canonical_ids": "⿰木土", + "expanded_ids": "⿰木土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杝", + "codepoint": "U+675D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-675D", + "status": "exact_ids", + "ids": "⿰木也", + "canonical_ids": "⿰木也", + "expanded_ids": "⿰木⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杞", + "codepoint": "U+675E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-675E", + "status": "exact_ids", + "ids": "⿰木己", + "canonical_ids": "⿰木己", + "expanded_ids": "⿰木己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "束", + "codepoint": "U+675F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-675F", + "status": "exact_ids", + "ids": "⿻木口", + "canonical_ids": "⿻木口", + "expanded_ids": "⿻木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杠", + "codepoint": "U+6760", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6760", + "status": "exact_ids", + "ids": "⿰木工", + "canonical_ids": "⿰木工", + "expanded_ids": "⿰木工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "条", + "codepoint": "U+6761", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6761", + "status": "exact_ids", + "ids": "⿱夂木", + "canonical_ids": "⿱夂木", + "expanded_ids": "⿱夂木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杢", + "codepoint": "U+6762", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6762", + "status": "exact_ids", + "ids": "⿱木工", + "canonical_ids": "⿱木工", + "expanded_ids": "⿱木工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杣", + "codepoint": "U+6763", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6763", + "status": "exact_ids", + "ids": "⿰木山", + "canonical_ids": "⿰木山", + "expanded_ids": "⿰木山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杤", + "codepoint": "U+6764", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6764", + "status": "exact_ids", + "ids": "⿰木万", + "canonical_ids": "⿰木万", + "expanded_ids": "⿰木万", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "万", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "来", + "codepoint": "U+6765", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6765", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杦", + "codepoint": "U+6766", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6766", + "status": "exact_ids", + "ids": "⿰木久", + "canonical_ids": "⿰木久", + "expanded_ids": "⿰木久", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "久", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杧", + "codepoint": "U+6767", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6767", + "status": "exact_ids", + "ids": "⿰木亡", + "canonical_ids": "⿰木亡", + "expanded_ids": "⿰木⿻亠乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杨", + "codepoint": "U+6768", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6768", + "status": "exact_ids", + "ids": "⿰木𠃓", + "canonical_ids": "⿰木𠃓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "𠃓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杩", + "codepoint": "U+6769", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6769", + "status": "exact_ids", + "ids": "⿰木马", + "canonical_ids": "⿰木马", + "expanded_ids": "⿰木马", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杪", + "codepoint": "U+676A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-676A", + "status": "exact_ids", + "ids": "⿰木少", + "canonical_ids": "⿰木少", + "expanded_ids": "⿰木⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杫", + "codepoint": "U+676B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-676B", + "status": "exact_ids", + "ids": "⿰木止", + "canonical_ids": "⿰木止", + "expanded_ids": "⿰木止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杬", + "codepoint": "U+676C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-676C", + "status": "exact_ids", + "ids": "⿰木元", + "canonical_ids": "⿰木元", + "expanded_ids": "⿰木⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杭", + "codepoint": "U+676D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-676D", + "status": "exact_ids", + "ids": "⿰木亢", + "canonical_ids": "⿰木亢", + "expanded_ids": "⿰木⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杮", + "codepoint": "U+676E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-676E", + "status": "exact_ids", + "ids": "⿰木巿", + "canonical_ids": "⿰木巿", + "expanded_ids": "⿰木⿻⿻冂丨一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杯", + "codepoint": "U+676F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-676F", + "status": "exact_ids", + "ids": "⿰木不", + "canonical_ids": "⿰木不", + "expanded_ids": "⿰木不", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杰", + "codepoint": "U+6770", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6770", + "status": "exact_ids", + "ids": "⿱木灬", + "canonical_ids": "⿱木灬", + "expanded_ids": "⿱木灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "東", + "codepoint": "U+6771", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6771", + "status": "exact_ids", + "ids": "⿻木日", + "canonical_ids": "⿻木日", + "expanded_ids": "⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杲", + "codepoint": "U+6772", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6772", + "status": "exact_ids", + "ids": "⿱日木", + "canonical_ids": "⿱日木", + "expanded_ids": "⿱日木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杳", + "codepoint": "U+6773", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6773", + "status": "exact_ids", + "ids": "⿱木日", + "canonical_ids": "⿱木日", + "expanded_ids": "⿱木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杴", + "codepoint": "U+6774", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6774", + "status": "exact_ids", + "ids": "⿰木欠", + "canonical_ids": "⿰木欠", + "expanded_ids": "⿰木欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杵", + "codepoint": "U+6775", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6775", + "status": "exact_ids", + "ids": "⿰木午", + "canonical_ids": "⿰木午", + "expanded_ids": "⿰木⿱⿻丿一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "十", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杶", + "codepoint": "U+6776", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6776", + "status": "exact_ids", + "ids": "⿰木屯", + "canonical_ids": "⿰木屯", + "expanded_ids": "⿰木屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杷", + "codepoint": "U+6777", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6777", + "status": "exact_ids", + "ids": "⿰木巴", + "canonical_ids": "⿰木巴", + "expanded_ids": "⿰木巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杸", + "codepoint": "U+6778", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6778", + "status": "exact_ids", + "ids": "⿰木殳", + "canonical_ids": "⿰木殳", + "expanded_ids": "⿰木⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杹", + "codepoint": "U+6779", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6779", + "status": "exact_ids", + "ids": "⿰木化", + "canonical_ids": "⿰木化", + "expanded_ids": "⿰木⿰亻匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杺", + "codepoint": "U+677A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-677A", + "status": "exact_ids", + "ids": "⿰木心", + "canonical_ids": "⿰木心", + "expanded_ids": "⿰木心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杻", + "codepoint": "U+677B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-677B", + "status": "exact_ids", + "ids": "⿰木丑", + "canonical_ids": "⿰木丑", + "expanded_ids": "⿰木丑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杼", + "codepoint": "U+677C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-677C", + "status": "exact_ids", + "ids": "⿰木予", + "canonical_ids": "⿰木予", + "expanded_ids": "⿰木⿱龴⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "木", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "杽", + "codepoint": "U+677D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-677D", + "status": "exact_ids", + "ids": "⿰木手", + "canonical_ids": "⿰木手", + "expanded_ids": "⿰木手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "手", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "松", + "codepoint": "U+677E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-677E", + "status": "exact_ids", + "ids": "⿰木公", + "canonical_ids": "⿰木公", + "expanded_ids": "⿰木⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "板", + "codepoint": "U+677F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-677F", + "status": "exact_ids", + "ids": "⿰木反", + "canonical_ids": "⿰木反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枀", + "codepoint": "U+6780", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6780", + "status": "exact_ids", + "ids": "⿱公木", + "canonical_ids": "⿱公木", + "expanded_ids": "⿱⿱八厶木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "极", + "codepoint": "U+6781", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6781", + "status": "exact_ids", + "ids": "⿰木及", + "canonical_ids": "⿰木及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "木" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枂", + "codepoint": "U+6782", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6782", + "status": "exact_ids", + "ids": "⿰木月", + "canonical_ids": "⿰木月", + "expanded_ids": "⿰木月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枃", + "codepoint": "U+6783", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6783", + "status": "exact_ids", + "ids": "⿰木匀", + "canonical_ids": "⿰木匀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "匀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "构", + "codepoint": "U+6784", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6784", + "status": "exact_ids", + "ids": "⿰木勾", + "canonical_ids": "⿰木勾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "勾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枅", + "codepoint": "U+6785", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6785", + "status": "exact_ids", + "ids": "⿰木开", + "canonical_ids": "⿰木开", + "expanded_ids": "⿰木⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廾", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枆", + "codepoint": "U+6786", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6786", + "status": "exact_ids", + "ids": "⿰木毛", + "canonical_ids": "⿰木毛", + "expanded_ids": "⿰木毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枇", + "codepoint": "U+6787", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6787", + "status": "exact_ids", + "ids": "⿰木比", + "canonical_ids": "⿰木比", + "expanded_ids": "⿰木⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枈", + "codepoint": "U+6788", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6788", + "status": "exact_ids", + "ids": "⿱比木", + "canonical_ids": "⿱比木", + "expanded_ids": "⿱⿰匕匕木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枉", + "codepoint": "U+6789", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6789", + "status": "exact_ids", + "ids": "⿰木王", + "canonical_ids": "⿰木王", + "expanded_ids": "⿰木王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枊", + "codepoint": "U+678A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-678A", + "status": "exact_ids", + "ids": "⿰木卬", + "canonical_ids": "⿰木卬", + "expanded_ids": "⿰木⿰匚卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匚", + "卩", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枋", + "codepoint": "U+678B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-678B", + "status": "exact_ids", + "ids": "⿰木方", + "canonical_ids": "⿰木方", + "expanded_ids": "⿰木方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枌", + "codepoint": "U+678C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-678C", + "status": "exact_ids", + "ids": "⿰木分", + "canonical_ids": "⿰木分", + "expanded_ids": "⿰木⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枍", + "codepoint": "U+678D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-678D", + "status": "exact_ids", + "ids": "⿰木兮", + "canonical_ids": "⿰木兮", + "expanded_ids": "⿰木⿱八丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "八", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枎", + "codepoint": "U+678E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-678E", + "status": "exact_ids", + "ids": "⿰木夫", + "canonical_ids": "⿰木夫", + "expanded_ids": "⿰木⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枏", + "codepoint": "U+678F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-678F", + "status": "exact_ids", + "ids": "⿰木冄", + "canonical_ids": "⿰木冄", + "expanded_ids": "⿰木⿻冂二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "冂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "析", + "codepoint": "U+6790", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6790", + "status": "exact_ids", + "ids": "⿰木斤", + "canonical_ids": "⿰木斤", + "expanded_ids": "⿰木斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枑", + "codepoint": "U+6791", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6791", + "status": "exact_ids", + "ids": "⿰木互", + "canonical_ids": "⿰木互", + "expanded_ids": "⿰木⿱一彑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "彑", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枒", + "codepoint": "U+6792", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6792", + "status": "exact_ids", + "ids": "⿰木牙", + "canonical_ids": "⿰木牙", + "expanded_ids": "⿰木牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "牙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枓", + "codepoint": "U+6793", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6793", + "status": "exact_ids", + "ids": "⿰木斗", + "canonical_ids": "⿰木斗", + "expanded_ids": "⿰木斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斗", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枔", + "codepoint": "U+6794", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6794", + "status": "exact_ids", + "ids": "⿰木今", + "canonical_ids": "⿰木今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "木" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枕", + "codepoint": "U+6795", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6795", + "status": "exact_ids", + "ids": "⿰木冘", + "canonical_ids": "⿰木冘", + "expanded_ids": "⿰木⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枖", + "codepoint": "U+6796", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6796", + "status": "exact_ids", + "ids": "⿰木夭", + "canonical_ids": "⿰木夭", + "expanded_ids": "⿰木⿱丿大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "林", + "codepoint": "U+6797", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6797", + "status": "exact_ids", + "ids": "⿰木木", + "canonical_ids": "⿰木木", + "expanded_ids": "⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枘", + "codepoint": "U+6798", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6798", + "status": "exact_ids", + "ids": "⿰木內", + "canonical_ids": "⿰木內", + "expanded_ids": "⿰木⿻冂入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "冂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枙", + "codepoint": "U+6799", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6799", + "status": "exact_ids", + "ids": "⿰木厄", + "canonical_ids": "⿰木厄", + "expanded_ids": "⿰木⿱厂㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枚", + "codepoint": "U+679A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-679A", + "status": "exact_ids", + "ids": "⿰木攵", + "canonical_ids": "⿰木攵", + "expanded_ids": "⿰木攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枛", + "codepoint": "U+679B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-679B", + "status": "exact_ids", + "ids": "⿰木爪", + "canonical_ids": "⿰木爪", + "expanded_ids": "⿰木爪", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "爪" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "果", + "codepoint": "U+679C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-679C", + "status": "exact_ids", + "ids": "⿻田木", + "canonical_ids": "⿻田木", + "expanded_ids": "⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枝", + "codepoint": "U+679D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-679D", + "status": "exact_ids", + "ids": "⿰木支", + "canonical_ids": "⿰木支", + "expanded_ids": "⿰木⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枞", + "codepoint": "U+679E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-679E", + "status": "exact_ids", + "ids": "⿰木从", + "canonical_ids": "⿰木从", + "expanded_ids": "⿰木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枟", + "codepoint": "U+679F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-679F", + "status": "exact_ids", + "ids": "⿰木云", + "canonical_ids": "⿰木云", + "expanded_ids": "⿰木⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枠", + "codepoint": "U+67A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67A0", + "status": "exact_ids", + "ids": "⿰木卆", + "canonical_ids": "⿰木卆", + "expanded_ids": "⿰木⿱九十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "十", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枡", + "codepoint": "U+67A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67A1", + "status": "exact_ids", + "ids": "⿰木升", + "canonical_ids": "⿰木升", + "expanded_ids": "⿰木升", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "升", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枢", + "codepoint": "U+67A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67A2", + "status": "exact_ids", + "ids": "⿰木区", + "canonical_ids": "⿰木区", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "区" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枣", + "codepoint": "U+67A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67A3", + "status": "exact_ids", + "ids": "⿱朿冫", + "canonical_ids": "⿱朿冫", + "expanded_ids": "⿱⿻木冂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "冫", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枤", + "codepoint": "U+67A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67A4", + "status": "exact_ids", + "ids": "⿰木犬", + "canonical_ids": "⿰木犬", + "expanded_ids": "⿰木⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枥", + "codepoint": "U+67A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67A5", + "status": "exact_ids", + "ids": "⿰木历", + "canonical_ids": "⿰木历", + "expanded_ids": "⿰木⿱厂力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "厂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枦", + "codepoint": "U+67A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67A6", + "status": "exact_ids", + "ids": "⿰木戸", + "canonical_ids": "⿰木戸", + "expanded_ids": "⿰木⿻一尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枧", + "codepoint": "U+67A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67A7", + "status": "exact_ids", + "ids": "⿰木见", + "canonical_ids": "⿰木见", + "expanded_ids": "⿰木⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枨", + "codepoint": "U+67A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67A8", + "status": "exact_ids", + "ids": "⿰木长", + "canonical_ids": "⿰木长", + "expanded_ids": "⿰木长", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "长" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枩", + "codepoint": "U+67A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67A9", + "status": "exact_ids", + "ids": "⿱木公", + "canonical_ids": "⿱木公", + "expanded_ids": "⿱木⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枪", + "codepoint": "U+67AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67AA", + "status": "exact_ids", + "ids": "⿰木仓", + "canonical_ids": "⿰木仓", + "expanded_ids": "⿰木⿱人㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "人", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枫", + "codepoint": "U+67AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67AB", + "status": "exact_ids", + "ids": "⿰木风", + "canonical_ids": "⿰木风", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "风" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枬", + "codepoint": "U+67AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67AC", + "status": "exact_ids", + "ids": "⿰木丹", + "canonical_ids": "⿰木丹", + "expanded_ids": "⿰木丹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丹", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "栴" + ] + }, + { + "character": "枭", + "codepoint": "U+67AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67AD", + "status": "exact_ids", + "ids": "⿱乌木", + "canonical_ids": "⿱乌木", + "expanded_ids": "⿱乌木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乌", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枮", + "codepoint": "U+67AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67AE", + "status": "exact_ids", + "ids": "⿰木占", + "canonical_ids": "⿰木占", + "expanded_ids": "⿰木⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枯", + "codepoint": "U+67AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67AF", + "status": "exact_ids", + "ids": "⿰木古", + "canonical_ids": "⿰木古", + "expanded_ids": "⿰木⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枰", + "codepoint": "U+67B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67B0", + "status": "exact_ids", + "ids": "⿰木平", + "canonical_ids": "⿰木平", + "expanded_ids": "⿰木⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "十", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枱", + "codepoint": "U+67B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67B1", + "status": "exact_ids", + "ids": "⿰木台", + "canonical_ids": "⿰木台", + "expanded_ids": "⿰木⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枲", + "codepoint": "U+67B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67B2", + "status": "exact_ids", + "ids": "⿱厶呆", + "canonical_ids": "⿱厶呆", + "expanded_ids": "⿱厶⿱口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枳", + "codepoint": "U+67B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67B3", + "status": "exact_ids", + "ids": "⿰木只", + "canonical_ids": "⿰木只", + "expanded_ids": "⿰木⿱口八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枴", + "codepoint": "U+67B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67B4", + "status": "exact_ids", + "ids": "⿰木叧", + "canonical_ids": "⿰木叧", + "expanded_ids": "⿰木⿱口刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枵", + "codepoint": "U+67B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67B5", + "status": "exact_ids", + "ids": "⿰木号", + "canonical_ids": "⿰木号", + "expanded_ids": "⿰木⿱口丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "架", + "codepoint": "U+67B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67B6", + "status": "exact_ids", + "ids": "⿱加木", + "canonical_ids": "⿱加木", + "expanded_ids": "⿱⿰力口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枷", + "codepoint": "U+67B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67B7", + "status": "exact_ids", + "ids": "⿰木加", + "canonical_ids": "⿰木加", + "expanded_ids": "⿰木⿰力口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枸", + "codepoint": "U+67B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67B8", + "status": "exact_ids", + "ids": "⿰木句", + "canonical_ids": "⿰木句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枹", + "codepoint": "U+67B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67B9", + "status": "exact_ids", + "ids": "⿰木包", + "canonical_ids": "⿰木包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枺", + "codepoint": "U+67BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67BA", + "status": "exact_ids", + "ids": "⿰木末", + "canonical_ids": "⿰木末", + "expanded_ids": "⿰木⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枻", + "codepoint": "U+67BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67BB", + "status": "exact_ids", + "ids": "⿰木世", + "canonical_ids": "⿰木世", + "expanded_ids": "⿰木世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枼", + "codepoint": "U+67BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67BC", + "status": "exact_ids", + "ids": "⿱世木", + "canonical_ids": "⿱世木", + "expanded_ids": "⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枽", + "codepoint": "U+67BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67BD", + "status": "exact_ids", + "ids": "⿱卋木", + "canonical_ids": "⿱卋木", + "expanded_ids": "⿱⿱十廿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "廿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枾", + "codepoint": "U+67BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67BE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "枿", + "codepoint": "U+67BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67BF", + "status": "exact_ids", + "ids": "⿰木卉", + "canonical_ids": "⿰木卉", + "expanded_ids": "⿰木⿱十廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "廾", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柀", + "codepoint": "U+67C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67C0", + "status": "exact_ids", + "ids": "⿰木皮", + "canonical_ids": "⿰木皮", + "expanded_ids": "⿰木皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柁", + "codepoint": "U+67C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67C1", + "status": "exact_ids", + "ids": "⿰木它", + "canonical_ids": "⿰木它", + "expanded_ids": "⿰木⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柂", + "codepoint": "U+67C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67C2", + "status": "exact_ids", + "ids": "⿰木㐌", + "canonical_ids": "⿰木㐌", + "expanded_ids": "⿰木⿱⿻丿一⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丿", + "乜", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柃", + "codepoint": "U+67C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67C3", + "status": "exact_ids", + "ids": "⿰木令", + "canonical_ids": "⿰木令", + "expanded_ids": "⿰木⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "木", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柄", + "codepoint": "U+67C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67C4", + "status": "exact_ids", + "ids": "⿰木丙", + "canonical_ids": "⿰木丙", + "expanded_ids": "⿰木⿱一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柅", + "codepoint": "U+67C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67C5", + "status": "exact_ids", + "ids": "⿰木尼", + "canonical_ids": "⿰木尼", + "expanded_ids": "⿰木⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "尸", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柆", + "codepoint": "U+67C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67C6", + "status": "exact_ids", + "ids": "⿰木立", + "canonical_ids": "⿰木立", + "expanded_ids": "⿰木立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柇", + "codepoint": "U+67C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67C7", + "status": "exact_ids", + "ids": "⿰木禾", + "canonical_ids": "⿰木禾", + "expanded_ids": "⿰木⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柈", + "codepoint": "U+67C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67C8", + "status": "exact_ids", + "ids": "⿰木半", + "canonical_ids": "⿰木半", + "expanded_ids": "⿰木半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柉", + "codepoint": "U+67C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67C9", + "status": "exact_ids", + "ids": "⿰木乏", + "canonical_ids": "⿰木乏", + "expanded_ids": "⿰木⿱丿之", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "之", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柊", + "codepoint": "U+67CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67CA", + "status": "exact_ids", + "ids": "⿰木冬", + "canonical_ids": "⿰木冬", + "expanded_ids": "⿰木⿱夂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "夂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柋", + "codepoint": "U+67CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67CB", + "status": "exact_ids", + "ids": "⿱代木", + "canonical_ids": "⿱代木", + "expanded_ids": "⿱⿰亻弋木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "弋", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柌", + "codepoint": "U+67CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67CC", + "status": "exact_ids", + "ids": "⿰木司", + "canonical_ids": "⿰木司", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "司" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柍", + "codepoint": "U+67CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67CD", + "status": "exact_ids", + "ids": "⿰木央", + "canonical_ids": "⿰木央", + "expanded_ids": "⿰木⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柎", + "codepoint": "U+67CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67CE", + "status": "exact_ids", + "ids": "⿰木付", + "canonical_ids": "⿰木付", + "expanded_ids": "⿰木⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柏", + "codepoint": "U+67CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67CF", + "status": "exact_ids", + "ids": "⿰木白", + "canonical_ids": "⿰木白", + "expanded_ids": "⿰木⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "某", + "codepoint": "U+67D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67D0", + "status": "exact_ids", + "ids": "⿱甘木", + "canonical_ids": "⿱甘木", + "expanded_ids": "⿱甘木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柑", + "codepoint": "U+67D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67D1", + "status": "exact_ids", + "ids": "⿰木甘", + "canonical_ids": "⿰木甘", + "expanded_ids": "⿰木甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柒", + "codepoint": "U+67D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67D2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "染", + "codepoint": "U+67D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67D3", + "status": "exact_ids", + "ids": "⿱氿木", + "canonical_ids": "⿱氿木", + "expanded_ids": "⿱⿰氵九木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柔", + "codepoint": "U+67D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67D4", + "status": "exact_ids", + "ids": "⿱矛木", + "canonical_ids": "⿱矛木", + "expanded_ids": "⿱矛木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柕", + "codepoint": "U+67D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67D5", + "status": "exact_ids", + "ids": "⿰木矛", + "canonical_ids": "⿰木矛", + "expanded_ids": "⿰木矛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柖", + "codepoint": "U+67D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67D6", + "status": "exact_ids", + "ids": "⿰木召", + "canonical_ids": "⿰木召", + "expanded_ids": "⿰木⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柗", + "codepoint": "U+67D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67D7", + "status": "exact_ids", + "ids": "⿰木㕣", + "canonical_ids": "⿰木㕣", + "expanded_ids": "⿰木⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柘", + "codepoint": "U+67D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67D8", + "status": "exact_ids", + "ids": "⿰木石", + "canonical_ids": "⿰木石", + "expanded_ids": "⿰木石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柙", + "codepoint": "U+67D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67D9", + "status": "exact_ids", + "ids": "⿰木甲", + "canonical_ids": "⿰木甲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "甲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柚", + "codepoint": "U+67DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67DA", + "status": "exact_ids", + "ids": "⿰木由", + "canonical_ids": "⿰木由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柛", + "codepoint": "U+67DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67DB", + "status": "exact_ids", + "ids": "⿰木申", + "canonical_ids": "⿰木申", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柜", + "codepoint": "U+67DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67DC", + "status": "exact_ids", + "ids": "⿰木巨", + "canonical_ids": "⿰木巨", + "expanded_ids": "⿰木巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柝", + "codepoint": "U+67DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67DD", + "status": "exact_ids", + "ids": "⿰木斥", + "canonical_ids": "⿰木斥", + "expanded_ids": "⿰木⿻斤丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "斤", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柞", + "codepoint": "U+67DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67DE", + "status": "exact_ids", + "ids": "⿰木乍", + "canonical_ids": "⿰木乍", + "expanded_ids": "⿰木乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柟", + "codepoint": "U+67DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67DF", + "status": "exact_ids", + "ids": "⿰木冉", + "canonical_ids": "⿰木冉", + "expanded_ids": "⿰木⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柠", + "codepoint": "U+67E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67E0", + "status": "exact_ids", + "ids": "⿰木宁", + "canonical_ids": "⿰木宁", + "expanded_ids": "⿰木⿱宀⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柡", + "codepoint": "U+67E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67E1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柢", + "codepoint": "U+67E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67E2", + "status": "exact_ids", + "ids": "⿰木氐", + "canonical_ids": "⿰木氐", + "expanded_ids": "⿰木⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "木", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柣", + "codepoint": "U+67E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67E3", + "status": "exact_ids", + "ids": "⿰木失", + "canonical_ids": "⿰木失", + "expanded_ids": "⿰木⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柤", + "codepoint": "U+67E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67E4", + "status": "exact_ids", + "ids": "⿰木且", + "canonical_ids": "⿰木且", + "expanded_ids": "⿰木且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "查", + "codepoint": "U+67E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67E5", + "status": "exact_ids", + "ids": "⿱木旦", + "canonical_ids": "⿱木旦", + "expanded_ids": "⿱木⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柦", + "codepoint": "U+67E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67E6", + "status": "exact_ids", + "ids": "⿰木旦", + "canonical_ids": "⿰木旦", + "expanded_ids": "⿰木⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柧", + "codepoint": "U+67E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67E7", + "status": "exact_ids", + "ids": "⿰木瓜", + "canonical_ids": "⿰木瓜", + "expanded_ids": "⿰木瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "瓜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柨", + "codepoint": "U+67E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67E8", + "status": "exact_ids", + "ids": "⿰木布", + "canonical_ids": "⿰木布", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柩", + "codepoint": "U+67E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67E9", + "status": "exact_ids", + "ids": "⿰木匛", + "canonical_ids": "⿰木匛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "匛" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柪", + "codepoint": "U+67EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67EA", + "status": "exact_ids", + "ids": "⿰木幼", + "canonical_ids": "⿰木幼", + "expanded_ids": "⿰木⿰幺力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "幺", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柫", + "codepoint": "U+67EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67EB", + "status": "exact_ids", + "ids": "⿰木弗", + "canonical_ids": "⿰木弗", + "expanded_ids": "⿰木⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "弓", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柬", + "codepoint": "U+67EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67EC", + "status": "leaf_self_fallback", + "ids": "柬", + "canonical_ids": "柬", + "expanded_ids": "柬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "柬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柭", + "codepoint": "U+67ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67ED", + "status": "exact_ids", + "ids": "⿰木犮", + "canonical_ids": "⿰木犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柮", + "codepoint": "U+67EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67EE", + "status": "exact_ids", + "ids": "⿰木出", + "canonical_ids": "⿰木出", + "expanded_ids": "⿰木⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柯", + "codepoint": "U+67EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67EF", + "status": "exact_ids", + "ids": "⿰木可", + "canonical_ids": "⿰木可", + "expanded_ids": "⿰木⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柰", + "codepoint": "U+67F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67F0", + "status": "exact_ids", + "ids": "⿱木示", + "canonical_ids": "⿱木示", + "expanded_ids": "⿱木⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柱", + "codepoint": "U+67F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67F1", + "status": "exact_ids", + "ids": "⿰木主", + "canonical_ids": "⿰木主", + "expanded_ids": "⿰木⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "木", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柲", + "codepoint": "U+67F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67F2", + "status": "exact_ids", + "ids": "⿰木必", + "canonical_ids": "⿰木必", + "expanded_ids": "⿰木⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柳", + "codepoint": "U+67F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67F3", + "status": "exact_ids", + "ids": "⿰木卯", + "canonical_ids": "⿰木卯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "卯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柴", + "codepoint": "U+67F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67F4", + "status": "exact_ids", + "ids": "⿱此木", + "canonical_ids": "⿱此木", + "expanded_ids": "⿱⿰止匕木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "木", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柵", + "codepoint": "U+67F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67F5", + "status": "exact_ids", + "ids": "⿰木冊", + "canonical_ids": "⿰木冊", + "expanded_ids": "⿰木⿻冂廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "廾", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柶", + "codepoint": "U+67F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67F6", + "status": "exact_ids", + "ids": "⿰木四", + "canonical_ids": "⿰木四", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "四" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柷", + "codepoint": "U+67F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67F7", + "status": "exact_ids", + "ids": "⿰木兄", + "canonical_ids": "⿰木兄", + "expanded_ids": "⿰木⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柸", + "codepoint": "U+67F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67F8", + "status": "exact_ids", + "ids": "⿰木丕", + "canonical_ids": "⿰木丕", + "expanded_ids": "⿰木⿱不一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柹", + "codepoint": "U+67F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67F9", + "status": "exact_ids", + "ids": "⿰木𠂔", + "canonical_ids": "⿰木𠂔", + "expanded_ids": "⿰木𠂔", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "𠂔" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 76, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柺", + "codepoint": "U+67FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67FA", + "status": "exact_ids", + "ids": "⿰木另", + "canonical_ids": "⿰木另", + "expanded_ids": "⿰木⿱口力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "査", + "codepoint": "U+67FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67FB", + "status": "exact_ids", + "ids": "⿱木且", + "canonical_ids": "⿱木且", + "expanded_ids": "⿱木且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柼", + "codepoint": "U+67FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67FC", + "status": "exact_ids", + "ids": "⿰木穴", + "canonical_ids": "⿰木穴", + "expanded_ids": "⿰木⿱宀八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柽", + "codepoint": "U+67FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67FD", + "status": "exact_ids", + "ids": "⿰木圣", + "canonical_ids": "⿰木圣", + "expanded_ids": "⿰木⿱又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柾", + "codepoint": "U+67FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67FE", + "status": "exact_ids", + "ids": "⿰木正", + "canonical_ids": "⿰木正", + "expanded_ids": "⿰木⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "柿", + "codepoint": "U+67FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-67FF", + "status": "exact_ids", + "ids": "⿰木市", + "canonical_ids": "⿰木市", + "expanded_ids": "⿰木⿱亠⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "冂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栀", + "codepoint": "U+6800", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6800", + "status": "exact_ids", + "ids": "⿰木卮", + "canonical_ids": "⿰木卮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "卮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栁", + "codepoint": "U+6801", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6801", + "status": "exact_ids", + "ids": "⿰木夘", + "canonical_ids": "⿰木夘", + "expanded_ids": "⿰木⿰夕卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "夕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栂", + "codepoint": "U+6802", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6802", + "status": "exact_ids", + "ids": "⿰木母", + "canonical_ids": "⿰木母", + "expanded_ids": "⿰木母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栃", + "codepoint": "U+6803", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6803", + "status": "exact_ids", + "ids": "⿰木厉", + "canonical_ids": "⿰木厉", + "expanded_ids": "⿰木⿱厂万", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "万", + "厂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栄", + "codepoint": "U+6804", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6804", + "status": "exact_ids", + "ids": "⿳小冖木", + "canonical_ids": "⿳小冖木", + "expanded_ids": "⿳小冖木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "小", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栅", + "codepoint": "U+6805", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6805", + "status": "exact_ids", + "ids": "⿰木册", + "canonical_ids": "⿰木册", + "expanded_ids": "⿰木册", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "册", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栆", + "codepoint": "U+6806", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6806", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "标", + "codepoint": "U+6807", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6807", + "status": "exact_ids", + "ids": "⿰木示", + "canonical_ids": "⿰木示", + "expanded_ids": "⿰木⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栈", + "codepoint": "U+6808", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6808", + "status": "exact_ids", + "ids": "⿰木戋", + "canonical_ids": "⿰木戋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栉", + "codepoint": "U+6809", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6809", + "status": "exact_ids", + "ids": "⿰木节", + "canonical_ids": "⿰木节", + "expanded_ids": "⿰木⿱艹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栊", + "codepoint": "U+680A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-680A", + "status": "exact_ids", + "ids": "⿰木龙", + "canonical_ids": "⿰木龙", + "expanded_ids": "⿰木龙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栋", + "codepoint": "U+680B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-680B", + "status": "exact_ids", + "ids": "⿰木东", + "canonical_ids": "⿰木东", + "expanded_ids": "⿰木东", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "东", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栌", + "codepoint": "U+680C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-680C", + "status": "exact_ids", + "ids": "⿰木卢", + "canonical_ids": "⿰木卢", + "expanded_ids": "⿰木⿱卜尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "尸", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栍", + "codepoint": "U+680D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-680D", + "status": "exact_ids", + "ids": "⿰木生", + "canonical_ids": "⿰木生", + "expanded_ids": "⿰木⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栎", + "codepoint": "U+680E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-680E", + "status": "exact_ids", + "ids": "⿰木乐", + "canonical_ids": "⿰木乐", + "expanded_ids": "⿰木乐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乐", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栏", + "codepoint": "U+680F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-680F", + "status": "exact_ids", + "ids": "⿰木兰", + "canonical_ids": "⿰木兰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "三" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栐", + "codepoint": "U+6810", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6810", + "status": "exact_ids", + "ids": "⿰木永", + "canonical_ids": "⿰木永", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "永" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "树", + "codepoint": "U+6811", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6811", + "status": "exact_ids", + "ids": "⿰木对", + "canonical_ids": "⿰木对", + "expanded_ids": "⿰木⿰又寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "寸", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栒", + "codepoint": "U+6812", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6812", + "status": "exact_ids", + "ids": "⿰木旬", + "canonical_ids": "⿰木旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栓", + "codepoint": "U+6813", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6813", + "status": "exact_ids", + "ids": "⿰木全", + "canonical_ids": "⿰木全", + "expanded_ids": "⿰木⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "木", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栔", + "codepoint": "U+6814", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6814", + "status": "exact_ids", + "ids": "⿱㓞木", + "canonical_ids": "⿱㓞木", + "expanded_ids": "⿱⿰丰刀木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栕", + "codepoint": "U+6815", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6815", + "status": "exact_ids", + "ids": "⿰木臣", + "canonical_ids": "⿰木臣", + "expanded_ids": "⿰木臣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栖", + "codepoint": "U+6816", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6816", + "status": "exact_ids", + "ids": "⿰木西", + "canonical_ids": "⿰木西", + "expanded_ids": "⿰木⿻⿱一儿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栗", + "codepoint": "U+6817", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6817", + "status": "exact_ids", + "ids": "⿱覀木", + "canonical_ids": "⿱覀木", + "expanded_ids": "⿱覀木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栘", + "codepoint": "U+6818", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6818", + "status": "exact_ids", + "ids": "⿰木多", + "canonical_ids": "⿰木多", + "expanded_ids": "⿰木⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栙", + "codepoint": "U+6819", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6819", + "status": "exact_ids", + "ids": "⿰木夅", + "canonical_ids": "⿰木夅", + "expanded_ids": "⿰木⿱夂⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栚", + "codepoint": "U+681A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-681A", + "status": "exact_ids", + "ids": "⿰木关", + "canonical_ids": "⿰木关", + "expanded_ids": "⿰木⿱丷⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栛", + "codepoint": "U+681B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-681B", + "status": "exact_ids", + "ids": "⿰木劦", + "canonical_ids": "⿰木劦", + "expanded_ids": "⿰木⿱力⿰力力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栜", + "codepoint": "U+681C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-681C", + "status": "exact_ids", + "ids": "⿰木朿", + "canonical_ids": "⿰木朿", + "expanded_ids": "⿰木⿻木冂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栝", + "codepoint": "U+681D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-681D", + "status": "exact_ids", + "ids": "⿰木舌", + "canonical_ids": "⿰木舌", + "expanded_ids": "⿰木⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栞", + "codepoint": "U+681E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-681E", + "status": "exact_ids", + "ids": "⿱⿰干干木", + "canonical_ids": "⿱⿰干干木", + "expanded_ids": "⿱⿰⿱一十⿱一十木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栟", + "codepoint": "U+681F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-681F", + "status": "exact_ids", + "ids": "⿰木并", + "canonical_ids": "⿰木并", + "expanded_ids": "⿰木⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栠", + "codepoint": "U+6820", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6820", + "status": "exact_ids", + "ids": "⿱任木", + "canonical_ids": "⿱任木", + "expanded_ids": "⿱⿰亻⿱丿士木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "士", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "校", + "codepoint": "U+6821", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6821", + "status": "exact_ids", + "ids": "⿰木交", + "canonical_ids": "⿰木交", + "expanded_ids": "⿰木⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "木", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栢", + "codepoint": "U+6822", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6822", + "status": "exact_ids", + "ids": "⿰木百", + "canonical_ids": "⿰木百", + "expanded_ids": "⿰木⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栣", + "codepoint": "U+6823", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6823", + "status": "exact_ids", + "ids": "⿰木任", + "canonical_ids": "⿰木任", + "expanded_ids": "⿰木⿰亻⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "士", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栤", + "codepoint": "U+6824", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6824", + "status": "exact_ids", + "ids": "⿰木冰", + "canonical_ids": "⿰木冰", + "expanded_ids": "⿰木⿰冫水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "木", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栥", + "codepoint": "U+6825", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6825", + "status": "exact_ids", + "ids": "⿱次木", + "canonical_ids": "⿱次木", + "expanded_ids": "⿱⿰冫欠木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "木", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栦", + "codepoint": "U+6826", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6826", + "status": "exact_ids", + "ids": "⿰木州", + "canonical_ids": "⿰木州", + "expanded_ids": "⿰木州", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "州", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栧", + "codepoint": "U+6827", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6827", + "status": "exact_ids", + "ids": "⿰木曳", + "canonical_ids": "⿰木曳", + "expanded_ids": "⿰木曳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曳", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栨", + "codepoint": "U+6828", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6828", + "status": "exact_ids", + "ids": "⿰木次", + "canonical_ids": "⿰木次", + "expanded_ids": "⿰木⿰冫欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "木", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栩", + "codepoint": "U+6829", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6829", + "status": "exact_ids", + "ids": "⿰木羽", + "canonical_ids": "⿰木羽", + "expanded_ids": "⿰木⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "株", + "codepoint": "U+682A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-682A", + "status": "exact_ids", + "ids": "⿰木朱", + "canonical_ids": "⿰木朱", + "expanded_ids": "⿰木⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栫", + "codepoint": "U+682B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-682B", + "status": "exact_ids", + "ids": "⿰木存", + "canonical_ids": "⿰木存", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "存" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栬", + "codepoint": "U+682C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-682C", + "status": "exact_ids", + "ids": "⿰木色", + "canonical_ids": "⿰木色", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "木" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栭", + "codepoint": "U+682D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-682D", + "status": "exact_ids", + "ids": "⿰木而", + "canonical_ids": "⿰木而", + "expanded_ids": "⿰木而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栮", + "codepoint": "U+682E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-682E", + "status": "exact_ids", + "ids": "⿰木耳", + "canonical_ids": "⿰木耳", + "expanded_ids": "⿰木耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栯", + "codepoint": "U+682F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-682F", + "status": "exact_ids", + "ids": "⿰木有", + "canonical_ids": "⿰木有", + "expanded_ids": "⿰木⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栰", + "codepoint": "U+6830", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6830", + "status": "exact_ids", + "ids": "⿰木伐", + "canonical_ids": "⿰木伐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "木" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栱", + "codepoint": "U+6831", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6831", + "status": "exact_ids", + "ids": "⿰木共", + "canonical_ids": "⿰木共", + "expanded_ids": "⿰木⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栲", + "codepoint": "U+6832", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6832", + "status": "exact_ids", + "ids": "⿰木考", + "canonical_ids": "⿰木考", + "expanded_ids": "⿰木⿱⿻土丿丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "丿", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栳", + "codepoint": "U+6833", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6833", + "status": "exact_ids", + "ids": "⿰木老", + "canonical_ids": "⿰木老", + "expanded_ids": "⿰木⿱⿻土丿匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栴", + "codepoint": "U+6834", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6834", + "status": "exact_ids", + "ids": "⿰木丹", + "canonical_ids": "⿰木丹", + "expanded_ids": "⿰木丹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丹", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "枬" + ] + }, + { + "character": "栵", + "codepoint": "U+6835", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6835", + "status": "exact_ids", + "ids": "⿰木列", + "canonical_ids": "⿰木列", + "expanded_ids": "⿰木⿰⿻夕一刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "夕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栶", + "codepoint": "U+6836", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6836", + "status": "exact_ids", + "ids": "⿰木因", + "canonical_ids": "⿰木因", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "样", + "codepoint": "U+6837", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6837", + "status": "exact_ids", + "ids": "⿰木羊", + "canonical_ids": "⿰木羊", + "expanded_ids": "⿰木羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "核", + "codepoint": "U+6838", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6838", + "status": "exact_ids", + "ids": "⿰木亥", + "canonical_ids": "⿰木亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "根", + "codepoint": "U+6839", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6839", + "status": "exact_ids", + "ids": "⿰木艮", + "canonical_ids": "⿰木艮", + "expanded_ids": "⿰木艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栺", + "codepoint": "U+683A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-683A", + "status": "exact_ids", + "ids": "⿰木旨", + "canonical_ids": "⿰木旨", + "expanded_ids": "⿰木⿱匕日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栻", + "codepoint": "U+683B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-683B", + "status": "exact_ids", + "ids": "⿰木式", + "canonical_ids": "⿰木式", + "expanded_ids": "⿰木⿱弋工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "弋", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "格", + "codepoint": "U+683C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-683C", + "status": "exact_ids", + "ids": "⿰木各", + "canonical_ids": "⿰木各", + "expanded_ids": "⿰木⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栽", + "codepoint": "U+683D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-683D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栾", + "codepoint": "U+683E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-683E", + "status": "exact_ids", + "ids": "⿱亦木", + "canonical_ids": "⿱亦木", + "expanded_ids": "⿱亦木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "栿", + "codepoint": "U+683F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-683F", + "status": "exact_ids", + "ids": "⿰木伏", + "canonical_ids": "⿰木伏", + "expanded_ids": "⿰木⿰亻⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亻", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桀", + "codepoint": "U+6840", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6840", + "status": "exact_ids", + "ids": "⿱舛木", + "canonical_ids": "⿱舛木", + "expanded_ids": "⿱⿰夕⿻丨二木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桁", + "codepoint": "U+6841", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6841", + "status": "exact_ids", + "ids": "⿰木行", + "canonical_ids": "⿰木行", + "expanded_ids": "⿰木⿰彳彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桂", + "codepoint": "U+6842", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6842", + "status": "exact_ids", + "ids": "⿰木圭", + "canonical_ids": "⿰木圭", + "expanded_ids": "⿰木⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桃", + "codepoint": "U+6843", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6843", + "status": "exact_ids", + "ids": "⿰木兆", + "canonical_ids": "⿰木兆", + "expanded_ids": "⿰木兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桄", + "codepoint": "U+6844", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6844", + "status": "exact_ids", + "ids": "⿰木光", + "canonical_ids": "⿰木光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "木" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桅", + "codepoint": "U+6845", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6845", + "status": "exact_ids", + "ids": "⿰木危", + "canonical_ids": "⿰木危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "木" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "框", + "codepoint": "U+6846", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6846", + "status": "exact_ids", + "ids": "⿰木匡", + "canonical_ids": "⿰木匡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "匡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桇", + "codepoint": "U+6847", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6847", + "status": "exact_ids", + "ids": "⿱如木", + "canonical_ids": "⿱如木", + "expanded_ids": "⿱⿰女口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "案", + "codepoint": "U+6848", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6848", + "status": "exact_ids", + "ids": "⿱安木", + "canonical_ids": "⿱安木", + "expanded_ids": "⿱⿱宀女木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桉", + "codepoint": "U+6849", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6849", + "status": "exact_ids", + "ids": "⿰木安", + "canonical_ids": "⿰木安", + "expanded_ids": "⿰木⿱宀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桊", + "codepoint": "U+684A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-684A", + "status": "exact_ids", + "ids": "⿱龹木", + "canonical_ids": "⿱龹木", + "expanded_ids": "⿱龹木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桋", + "codepoint": "U+684B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-684B", + "status": "exact_ids", + "ids": "⿰木夷", + "canonical_ids": "⿰木夷", + "expanded_ids": "⿰木⿻大弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "弓", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桌", + "codepoint": "U+684C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-684C", + "status": "exact_ids", + "ids": "⿱卜杲", + "canonical_ids": "⿱卜杲", + "expanded_ids": "⿱卜⿱日木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桍", + "codepoint": "U+684D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-684D", + "status": "exact_ids", + "ids": "⿰木夸", + "canonical_ids": "⿰木夸", + "expanded_ids": "⿰木⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桎", + "codepoint": "U+684E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-684E", + "status": "exact_ids", + "ids": "⿰木至", + "canonical_ids": "⿰木至", + "expanded_ids": "⿰木⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桏", + "codepoint": "U+684F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-684F", + "status": "exact_ids", + "ids": "⿰木邛", + "canonical_ids": "⿰木邛", + "expanded_ids": "⿰木⿰工阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "木", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桐", + "codepoint": "U+6850", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6850", + "status": "exact_ids", + "ids": "⿰木同", + "canonical_ids": "⿰木同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桑", + "codepoint": "U+6851", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6851", + "status": "exact_ids", + "ids": "⿱叒木", + "canonical_ids": "⿱叒木", + "expanded_ids": "⿱⿱又⿰又又木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桒", + "codepoint": "U+6852", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6852", + "status": "exact_ids", + "ids": "⿱卉木", + "canonical_ids": "⿱卉木", + "expanded_ids": "⿱⿱十廾木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "廾", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桓", + "codepoint": "U+6853", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6853", + "status": "exact_ids", + "ids": "⿰木亘", + "canonical_ids": "⿰木亘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桔", + "codepoint": "U+6854", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6854", + "status": "exact_ids", + "ids": "⿰木吉", + "canonical_ids": "⿰木吉", + "expanded_ids": "⿰木⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桕", + "codepoint": "U+6855", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6855", + "status": "exact_ids", + "ids": "⿰木臼", + "canonical_ids": "⿰木臼", + "expanded_ids": "⿰木臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桖", + "codepoint": "U+6856", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6856", + "status": "exact_ids", + "ids": "⿰木血", + "canonical_ids": "⿰木血", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "血" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桗", + "codepoint": "U+6857", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6857", + "status": "exact_ids", + "ids": "⿰木朶", + "canonical_ids": "⿰木朶", + "expanded_ids": "⿰木⿱乃木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桘", + "codepoint": "U+6858", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6858", + "status": "exact_ids", + "ids": "⿰木𠂤", + "canonical_ids": "⿰木𠂤", + "expanded_ids": "⿰木⿱丿㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "丿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桙", + "codepoint": "U+6859", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6859", + "status": "exact_ids", + "ids": "⿰木牟", + "canonical_ids": "⿰木牟", + "expanded_ids": "⿰木⿱厶牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "木", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桚", + "codepoint": "U+685A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-685A", + "status": "exact_ids", + "ids": "⿰木𡿪", + "canonical_ids": "⿰木𡿪", + "expanded_ids": "⿰木⿱巛夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "巛", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桛", + "codepoint": "U+685B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-685B", + "status": "exact_ids", + "ids": "⿰木𠧗", + "canonical_ids": "⿰木𠧗", + "expanded_ids": "⿰木⿱上⿱一卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "上", + "卜", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桜", + "codepoint": "U+685C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-685C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桝", + "codepoint": "U+685D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-685D", + "status": "exact_ids", + "ids": "⿰木舛", + "canonical_ids": "⿰木舛", + "expanded_ids": "⿰木⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桞", + "codepoint": "U+685E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-685E", + "status": "exact_ids", + "ids": "⿰木邜", + "canonical_ids": "⿰木邜", + "expanded_ids": "⿰木⿰夕阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "木", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桟", + "codepoint": "U+685F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-685F", + "status": "exact_ids", + "ids": "⿰木𢦑", + "canonical_ids": "⿰木𢦑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "𢦑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桠", + "codepoint": "U+6860", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6860", + "status": "exact_ids", + "ids": "⿰木亚", + "canonical_ids": "⿰木亚", + "expanded_ids": "⿰木亚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亚", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桡", + "codepoint": "U+6861", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6861", + "status": "exact_ids", + "ids": "⿰木尧", + "canonical_ids": "⿰木尧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "尧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桢", + "codepoint": "U+6862", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6862", + "status": "exact_ids", + "ids": "⿰木贞", + "canonical_ids": "⿰木贞", + "expanded_ids": "⿰木⿱卜⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "卜", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "档", + "codepoint": "U+6863", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6863", + "status": "exact_ids", + "ids": "⿰木当", + "canonical_ids": "⿰木当", + "expanded_ids": "⿰木⿱小彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "彐", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桤", + "codepoint": "U+6864", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6864", + "status": "exact_ids", + "ids": "⿰木岂", + "canonical_ids": "⿰木岂", + "expanded_ids": "⿰木⿱山己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "己", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桥", + "codepoint": "U+6865", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6865", + "status": "exact_ids", + "ids": "⿰木乔", + "canonical_ids": "⿰木乔", + "expanded_ids": "⿰木⿱丿⿱大儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桦", + "codepoint": "U+6866", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6866", + "status": "exact_ids", + "ids": "⿰木华", + "canonical_ids": "⿰木华", + "expanded_ids": "⿰木⿱⿰亻匕十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "十", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桧", + "codepoint": "U+6867", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6867", + "status": "exact_ids", + "ids": "⿰木会", + "canonical_ids": "⿰木会", + "expanded_ids": "⿰木⿱⿱人一⿱一厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "厶", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桨", + "codepoint": "U+6868", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6868", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桩", + "codepoint": "U+6869", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6869", + "status": "exact_ids", + "ids": "⿰木庄", + "canonical_ids": "⿰木庄", + "expanded_ids": "⿰木⿱广土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桪", + "codepoint": "U+686A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-686A", + "status": "exact_ids", + "ids": "⿰木寻", + "canonical_ids": "⿰木寻", + "expanded_ids": "⿰木⿱彐寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "彐", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桫", + "codepoint": "U+686B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-686B", + "status": "exact_ids", + "ids": "⿰木沙", + "canonical_ids": "⿰木沙", + "expanded_ids": "⿰木⿰氵⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桬", + "codepoint": "U+686C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-686C", + "status": "exact_ids", + "ids": "⿱沙木", + "canonical_ids": "⿱沙木", + "expanded_ids": "⿱⿰氵⿱小丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桭", + "codepoint": "U+686D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-686D", + "status": "exact_ids", + "ids": "⿰木辰", + "canonical_ids": "⿰木辰", + "expanded_ids": "⿰木辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桮", + "codepoint": "U+686E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-686E", + "status": "exact_ids", + "ids": "⿰木否", + "canonical_ids": "⿰木否", + "expanded_ids": "⿰木⿱不口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桯", + "codepoint": "U+686F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-686F", + "status": "exact_ids", + "ids": "⿰木呈", + "canonical_ids": "⿰木呈", + "expanded_ids": "⿰木⿱口王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桰", + "codepoint": "U+6870", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6870", + "status": "exact_ids", + "ids": "⿰木𠯑", + "canonical_ids": "⿰木𠯑", + "expanded_ids": "⿰木⿱氏口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桱", + "codepoint": "U+6871", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6871", + "status": "exact_ids", + "ids": "⿰木巠", + "canonical_ids": "⿰木巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桲", + "codepoint": "U+6872", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6872", + "status": "exact_ids", + "ids": "⿰木孛", + "canonical_ids": "⿰木孛", + "expanded_ids": "⿰木⿳十冖子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "子", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桳", + "codepoint": "U+6873", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6873", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桴", + "codepoint": "U+6874", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6874", + "status": "exact_ids", + "ids": "⿰木孚", + "canonical_ids": "⿰木孚", + "expanded_ids": "⿰木⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "木", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桵", + "codepoint": "U+6875", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6875", + "status": "exact_ids", + "ids": "⿰木妥", + "canonical_ids": "⿰木妥", + "expanded_ids": "⿰木⿱爫女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "木", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桶", + "codepoint": "U+6876", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6876", + "status": "exact_ids", + "ids": "⿰木甬", + "canonical_ids": "⿰木甬", + "expanded_ids": "⿰木⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "木", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桷", + "codepoint": "U+6877", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6877", + "status": "exact_ids", + "ids": "⿰木角", + "canonical_ids": "⿰木角", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "木" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桸", + "codepoint": "U+6878", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6878", + "status": "exact_ids", + "ids": "⿰木希", + "canonical_ids": "⿰木希", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "木" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桹", + "codepoint": "U+6879", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6879", + "status": "exact_ids", + "ids": "⿰木良", + "canonical_ids": "⿰木良", + "expanded_ids": "⿰木⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "木", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桺", + "codepoint": "U+687A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-687A", + "status": "exact_ids", + "ids": "⿰木丣", + "canonical_ids": "⿰木丣", + "expanded_ids": "⿰木丣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丣", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桻", + "codepoint": "U+687B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-687B", + "status": "exact_ids", + "ids": "⿰木夆", + "canonical_ids": "⿰木夆", + "expanded_ids": "⿰木⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桼", + "codepoint": "U+687C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-687C", + "status": "exact_ids", + "ids": "⿱木汆", + "canonical_ids": "⿱木汆", + "expanded_ids": "⿱木⿱入水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "木", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桽", + "codepoint": "U+687D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-687D", + "status": "exact_ids", + "ids": "⿱木坐", + "canonical_ids": "⿱木坐", + "expanded_ids": "⿱木⿱⿰人人土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桾", + "codepoint": "U+687E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-687E", + "status": "exact_ids", + "ids": "⿰木君", + "canonical_ids": "⿰木君", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "桿", + "codepoint": "U+687F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-687F", + "status": "exact_ids", + "ids": "⿰木旱", + "canonical_ids": "⿰木旱", + "expanded_ids": "⿰木⿱日⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梀", + "codepoint": "U+6880", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6880", + "status": "exact_ids", + "ids": "⿰木束", + "canonical_ids": "⿰木束", + "expanded_ids": "⿰木⿻木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梁", + "codepoint": "U+6881", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6881", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梂", + "codepoint": "U+6882", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6882", + "status": "exact_ids", + "ids": "⿰木求", + "canonical_ids": "⿰木求", + "expanded_ids": "⿰木求", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "求" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梃", + "codepoint": "U+6883", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6883", + "status": "exact_ids", + "ids": "⿰木廷", + "canonical_ids": "⿰木廷", + "expanded_ids": "⿰木⿰廴⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "廴", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梄", + "codepoint": "U+6884", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6884", + "status": "exact_ids", + "ids": "⿰木酉", + "canonical_ids": "⿰木酉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梅", + "codepoint": "U+6885", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6885", + "status": "exact_ids", + "ids": "⿰木每", + "canonical_ids": "⿰木每", + "expanded_ids": "⿰木⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梆", + "codepoint": "U+6886", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6886", + "status": "exact_ids", + "ids": "⿰木邦", + "canonical_ids": "⿰木邦", + "expanded_ids": "⿰木⿰丰阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "木", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梇", + "codepoint": "U+6887", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6887", + "status": "exact_ids", + "ids": "⿰木弄", + "canonical_ids": "⿰木弄", + "expanded_ids": "⿰木⿱王廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "木", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梈", + "codepoint": "U+6888", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6888", + "status": "exact_ids", + "ids": "⿰木亨", + "canonical_ids": "⿰木亨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "亨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梉", + "codepoint": "U+6889", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6889", + "status": "exact_ids", + "ids": "⿰木壯", + "canonical_ids": "⿰木壯", + "expanded_ids": "⿰木⿰爿土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "木", + "爿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梊", + "codepoint": "U+688A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-688A", + "status": "exact_ids", + "ids": "⿱折木", + "canonical_ids": "⿱折木", + "expanded_ids": "⿱⿰扌斤木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "斤", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梋", + "codepoint": "U+688B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-688B", + "status": "exact_ids", + "ids": "⿰木肙", + "canonical_ids": "⿰木肙", + "expanded_ids": "⿰木⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梌", + "codepoint": "U+688C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-688C", + "status": "exact_ids", + "ids": "⿰木余", + "canonical_ids": "⿰木余", + "expanded_ids": "⿰木⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "木", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梍", + "codepoint": "U+688D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-688D", + "status": "exact_ids", + "ids": "⿰木皂", + "canonical_ids": "⿰木皂", + "expanded_ids": "⿰木⿱⿻日丶七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丶", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梎", + "codepoint": "U+688E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-688E", + "status": "exact_ids", + "ids": "⿰木皀", + "canonical_ids": "⿰木皀", + "expanded_ids": "⿰木⿱⿻日丶匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梏", + "codepoint": "U+688F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-688F", + "status": "exact_ids", + "ids": "⿰木告", + "canonical_ids": "⿰木告", + "expanded_ids": "⿰木⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梐", + "codepoint": "U+6890", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6890", + "status": "exact_ids", + "ids": "⿰木坒", + "canonical_ids": "⿰木坒", + "expanded_ids": "⿰木⿱⿰匕匕土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梑", + "codepoint": "U+6891", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6891", + "status": "exact_ids", + "ids": "⿰木狄", + "canonical_ids": "⿰木狄", + "expanded_ids": "⿰木⿰犭火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "火", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梒", + "codepoint": "U+6892", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6892", + "status": "exact_ids", + "ids": "⿰木含", + "canonical_ids": "⿰木含", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "木" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梓", + "codepoint": "U+6893", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6893", + "status": "exact_ids", + "ids": "⿰木辛", + "canonical_ids": "⿰木辛", + "expanded_ids": "⿰木⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "木", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梔", + "codepoint": "U+6894", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6894", + "status": "exact_ids", + "ids": "⿰木巵", + "canonical_ids": "⿰木巵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "巵" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梕", + "codepoint": "U+6895", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6895", + "status": "exact_ids", + "ids": "⿰木忍", + "canonical_ids": "⿰木忍", + "expanded_ids": "⿰木⿱⿻刀丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梖", + "codepoint": "U+6896", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6896", + "status": "exact_ids", + "ids": "⿰木貝", + "canonical_ids": "⿰木貝", + "expanded_ids": "⿰木⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梗", + "codepoint": "U+6897", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6897", + "status": "exact_ids", + "ids": "⿰木更", + "canonical_ids": "⿰木更", + "expanded_ids": "⿰木更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "更", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梘", + "codepoint": "U+6898", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6898", + "status": "exact_ids", + "ids": "⿰木見", + "canonical_ids": "⿰木見", + "expanded_ids": "⿰木⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梙", + "codepoint": "U+6899", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6899", + "status": "exact_ids", + "ids": "⿰木串", + "canonical_ids": "⿰木串", + "expanded_ids": "⿰木⿻⿱口口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梚", + "codepoint": "U+689A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-689A", + "status": "exact_ids", + "ids": "⿰木免", + "canonical_ids": "⿰木免", + "expanded_ids": "⿰木免", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "免", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梛", + "codepoint": "U+689B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-689B", + "status": "exact_ids", + "ids": "⿰木那", + "canonical_ids": "⿰木那", + "expanded_ids": "⿰木⿰⿻冂二阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "冂", + "木", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梜", + "codepoint": "U+689C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-689C", + "status": "exact_ids", + "ids": "⿰木夾", + "canonical_ids": "⿰木夾", + "expanded_ids": "⿰木⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "條", + "codepoint": "U+689D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-689D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梞", + "codepoint": "U+689E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-689E", + "status": "exact_ids", + "ids": "⿰木忌", + "canonical_ids": "⿰木忌", + "expanded_ids": "⿰木⿱己心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梟", + "codepoint": "U+689F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-689F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梠", + "codepoint": "U+68A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68A0", + "status": "exact_ids", + "ids": "⿰木呂", + "canonical_ids": "⿰木呂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "呂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梡", + "codepoint": "U+68A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68A1", + "status": "exact_ids", + "ids": "⿰木完", + "canonical_ids": "⿰木完", + "expanded_ids": "⿰木⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梢", + "codepoint": "U+68A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68A2", + "status": "exact_ids", + "ids": "⿰木肖", + "canonical_ids": "⿰木肖", + "expanded_ids": "⿰木⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梣", + "codepoint": "U+68A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68A3", + "status": "exact_ids", + "ids": "⿰木岑", + "canonical_ids": "⿰木岑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "山", + "木" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梤", + "codepoint": "U+68A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68A4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梥", + "codepoint": "U+68A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68A5", + "status": "exact_ids", + "ids": "⿱穴𠫡", + "canonical_ids": "⿱穴𠫡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀" + ], + "unresolved_leaves": [ + "𠫡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梦", + "codepoint": "U+68A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68A6", + "status": "exact_ids", + "ids": "⿱⿰木木夕", + "canonical_ids": "⿱⿰木木夕", + "expanded_ids": "⿱⿰木木夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梧", + "codepoint": "U+68A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68A7", + "status": "exact_ids", + "ids": "⿰木吾", + "canonical_ids": "⿰木吾", + "expanded_ids": "⿰木⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梨", + "codepoint": "U+68A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68A8", + "status": "exact_ids", + "ids": "⿱利木", + "canonical_ids": "⿱利木", + "expanded_ids": "⿱⿰⿻丿木刂木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梩", + "codepoint": "U+68A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68A9", + "status": "exact_ids", + "ids": "⿰木里", + "canonical_ids": "⿰木里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梪", + "codepoint": "U+68AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68AA", + "status": "exact_ids", + "ids": "⿰木豆", + "canonical_ids": "⿰木豆", + "expanded_ids": "⿰木豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梫", + "codepoint": "U+68AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68AB", + "status": "exact_ids", + "ids": "⿰木𠬶", + "canonical_ids": "⿰木𠬶", + "expanded_ids": "⿰木⿳彐冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "又", + "彐", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梬", + "codepoint": "U+68AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68AC", + "status": "exact_ids", + "ids": "⿰木甹", + "canonical_ids": "⿰木甹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "木" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梭", + "codepoint": "U+68AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68AD", + "status": "exact_ids", + "ids": "⿰木夋", + "canonical_ids": "⿰木夋", + "expanded_ids": "⿰木⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梮", + "codepoint": "U+68AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68AE", + "status": "exact_ids", + "ids": "⿰木局", + "canonical_ids": "⿰木局", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "局" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梯", + "codepoint": "U+68AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68AF", + "status": "exact_ids", + "ids": "⿰木弟", + "canonical_ids": "⿰木弟", + "expanded_ids": "⿰木⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "械", + "codepoint": "U+68B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68B0", + "status": "exact_ids", + "ids": "⿰木戒", + "canonical_ids": "⿰木戒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "木" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梱", + "codepoint": "U+68B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68B1", + "status": "exact_ids", + "ids": "⿰木困", + "canonical_ids": "⿰木困", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "困" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梲", + "codepoint": "U+68B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68B2", + "status": "exact_ids", + "ids": "⿰木兌", + "canonical_ids": "⿰木兌", + "expanded_ids": "⿰木⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "棁" + ] + }, + { + "character": "梳", + "codepoint": "U+68B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68B3", + "status": "exact_ids", + "ids": "⿰木㐬", + "canonical_ids": "⿰木㐬", + "expanded_ids": "⿰木⿱亠⿱厶川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "厶", + "川", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梴", + "codepoint": "U+68B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68B4", + "status": "exact_ids", + "ids": "⿰木延", + "canonical_ids": "⿰木延", + "expanded_ids": "⿰木⿰廴⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廴", + "木", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梵", + "codepoint": "U+68B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68B5", + "status": "exact_ids", + "ids": "⿱⿰木木凡", + "canonical_ids": "⿱⿰木木凡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梶", + "codepoint": "U+68B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68B6", + "status": "exact_ids", + "ids": "⿰木尾", + "canonical_ids": "⿰木尾", + "expanded_ids": "⿰木⿱尸毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "木", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梷", + "codepoint": "U+68B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68B7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梸", + "codepoint": "U+68B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68B8", + "status": "exact_ids", + "ids": "⿰木利", + "canonical_ids": "⿰木利", + "expanded_ids": "⿰木⿰⿻丿木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梹", + "codepoint": "U+68B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68B9", + "status": "exact_ids", + "ids": "⿰木兵", + "canonical_ids": "⿰木兵", + "expanded_ids": "⿰木⿱丘八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "八", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梺", + "codepoint": "U+68BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68BA", + "status": "exact_ids", + "ids": "⿱⿰木木下", + "canonical_ids": "⿱⿰木木下", + "expanded_ids": "⿱⿰木木⿱一卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "卜", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梻", + "codepoint": "U+68BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68BB", + "status": "exact_ids", + "ids": "⿰木佛", + "canonical_ids": "⿰木佛", + "expanded_ids": "⿰木⿰亻⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "刂", + "弓", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梼", + "codepoint": "U+68BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68BC", + "status": "exact_ids", + "ids": "⿰木寿", + "canonical_ids": "⿰木寿", + "expanded_ids": "⿰木⿻丰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "寸", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梽", + "codepoint": "U+68BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68BD", + "status": "exact_ids", + "ids": "⿰木志", + "canonical_ids": "⿰木志", + "expanded_ids": "⿰木⿱士心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "士", + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梾", + "codepoint": "U+68BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68BE", + "status": "exact_ids", + "ids": "⿰木来", + "canonical_ids": "⿰木来", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "来" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "梿", + "codepoint": "U+68BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68BF", + "status": "exact_ids", + "ids": "⿰木连", + "canonical_ids": "⿰木连", + "expanded_ids": "⿰木⿰辶车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "车", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "检", + "codepoint": "U+68C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68C0", + "status": "exact_ids", + "ids": "⿰木佥", + "canonical_ids": "⿰木佥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "佥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棁", + "codepoint": "U+68C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68C1", + "status": "exact_ids", + "ids": "⿰木兌", + "canonical_ids": "⿰木兌", + "expanded_ids": "⿰木⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "梲" + ] + }, + { + "character": "棂", + "codepoint": "U+68C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68C2", + "status": "exact_ids", + "ids": "⿰木灵", + "canonical_ids": "⿰木灵", + "expanded_ids": "⿰木⿱彐火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棃", + "codepoint": "U+68C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68C3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棄", + "codepoint": "U+68C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68C4", + "status": "leaf_self_fallback", + "ids": "棄", + "canonical_ids": "棄", + "expanded_ids": "棄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "棄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棅", + "codepoint": "U+68C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68C5", + "status": "exact_ids", + "ids": "⿰木秉", + "canonical_ids": "⿰木秉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "⺕" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棆", + "codepoint": "U+68C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68C6", + "status": "exact_ids", + "ids": "⿰木侖", + "canonical_ids": "⿰木侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "木" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棇", + "codepoint": "U+68C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68C7", + "status": "exact_ids", + "ids": "⿰木忩", + "canonical_ids": "⿰木忩", + "expanded_ids": "⿰木⿱⿱八厶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棈", + "codepoint": "U+68C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68C8", + "status": "exact_ids", + "ids": "⿰木靑", + "canonical_ids": "⿰木靑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "円", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棉", + "codepoint": "U+68C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68C9", + "status": "exact_ids", + "ids": "⿰木帛", + "canonical_ids": "⿰木帛", + "expanded_ids": "⿰木⿱⿻日丶⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丶", + "冂", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棊", + "codepoint": "U+68CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68CA", + "status": "exact_ids", + "ids": "⿱其木", + "canonical_ids": "⿱其木", + "expanded_ids": "⿱其木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棋", + "codepoint": "U+68CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68CB", + "status": "exact_ids", + "ids": "⿰木其", + "canonical_ids": "⿰木其", + "expanded_ids": "⿰木其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棌", + "codepoint": "U+68CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68CC", + "status": "exact_ids", + "ids": "⿰木采", + "canonical_ids": "⿰木采", + "expanded_ids": "⿰木⿱爫木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棍", + "codepoint": "U+68CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68CD", + "status": "exact_ids", + "ids": "⿰木昆", + "canonical_ids": "⿰木昆", + "expanded_ids": "⿰木⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棎", + "codepoint": "U+68CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68CE", + "status": "exact_ids", + "ids": "⿰木罙", + "canonical_ids": "⿰木罙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "⺳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棏", + "codepoint": "U+68CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68CF", + "status": "exact_ids", + "ids": "⿰木㝵", + "canonical_ids": "⿰木㝵", + "expanded_ids": "⿰木⿱日寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棐", + "codepoint": "U+68D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68D0", + "status": "exact_ids", + "ids": "⿱非木", + "canonical_ids": "⿱非木", + "expanded_ids": "⿱非木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棑", + "codepoint": "U+68D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68D1", + "status": "exact_ids", + "ids": "⿰木非", + "canonical_ids": "⿰木非", + "expanded_ids": "⿰木非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棒", + "codepoint": "U+68D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68D2", + "status": "exact_ids", + "ids": "⿰木奉", + "canonical_ids": "⿰木奉", + "expanded_ids": "⿰木⿱𡗗⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "木", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棓", + "codepoint": "U+68D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68D3", + "status": "exact_ids", + "ids": "⿰木咅", + "canonical_ids": "⿰木咅", + "expanded_ids": "⿰木⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棔", + "codepoint": "U+68D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68D4", + "status": "exact_ids", + "ids": "⿰木昏", + "canonical_ids": "⿰木昏", + "expanded_ids": "⿰木⿱氏日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棕", + "codepoint": "U+68D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68D5", + "status": "exact_ids", + "ids": "⿰木宗", + "canonical_ids": "⿰木宗", + "expanded_ids": "⿰木⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棖", + "codepoint": "U+68D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68D6", + "status": "exact_ids", + "ids": "⿰木長", + "canonical_ids": "⿰木長", + "expanded_ids": "⿰木長", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "長" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棗", + "codepoint": "U+68D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68D7", + "status": "exact_ids", + "ids": "⿱朿朿", + "canonical_ids": "⿱朿朿", + "expanded_ids": "⿱⿻木冂⿻木冂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棘", + "codepoint": "U+68D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68D8", + "status": "exact_ids", + "ids": "⿰朿朿", + "canonical_ids": "⿰朿朿", + "expanded_ids": "⿰⿻木冂⿻木冂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棙", + "codepoint": "U+68D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68D9", + "status": "exact_ids", + "ids": "⿰木戾", + "canonical_ids": "⿰木戾", + "expanded_ids": "⿰木⿱⿻丿尸⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "大", + "尸", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棚", + "codepoint": "U+68DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68DA", + "status": "exact_ids", + "ids": "⿰木朋", + "canonical_ids": "⿰木朋", + "expanded_ids": "⿰木⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棛", + "codepoint": "U+68DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68DB", + "status": "exact_ids", + "ids": "⿰木育", + "canonical_ids": "⿰木育", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "育" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棜", + "codepoint": "U+68DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68DC", + "status": "exact_ids", + "ids": "⿰木於", + "canonical_ids": "⿰木於", + "expanded_ids": "⿰木⿰方⿱人冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冫", + "方", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棝", + "codepoint": "U+68DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68DD", + "status": "exact_ids", + "ids": "⿰木固", + "canonical_ids": "⿰木固", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "固" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棞", + "codepoint": "U+68DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68DE", + "status": "exact_ids", + "ids": "⿰木囷", + "canonical_ids": "⿰木囷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "囷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棟", + "codepoint": "U+68DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68DF", + "status": "exact_ids", + "ids": "⿰木東", + "canonical_ids": "⿰木東", + "expanded_ids": "⿰木⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棠", + "codepoint": "U+68E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68E0", + "status": "exact_ids", + "ids": "⿳小冖呆", + "canonical_ids": "⿳小冖呆", + "expanded_ids": "⿳小冖⿱口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "口", + "小", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棡", + "codepoint": "U+68E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68E1", + "status": "exact_ids", + "ids": "⿰木岡", + "canonical_ids": "⿰木岡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "岡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棢", + "codepoint": "U+68E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68E2", + "status": "exact_ids", + "ids": "⿰木罔", + "canonical_ids": "⿰木罔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "罔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棣", + "codepoint": "U+68E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68E3", + "status": "exact_ids", + "ids": "⿰木隶", + "canonical_ids": "⿰木隶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棤", + "codepoint": "U+68E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68E4", + "status": "exact_ids", + "ids": "⿰木昔", + "canonical_ids": "⿰木昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棥", + "codepoint": "U+68E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68E5", + "status": "exact_ids", + "ids": "⿲木爻木", + "canonical_ids": "⿲木爻木", + "expanded_ids": "⿲木⿱乂乂木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棦", + "codepoint": "U+68E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68E6", + "status": "exact_ids", + "ids": "⿰木爭", + "canonical_ids": "⿰木爭", + "expanded_ids": "⿰木⿱爫肀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "爫", + "肀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棧", + "codepoint": "U+68E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68E7", + "status": "exact_ids", + "ids": "⿰木戔", + "canonical_ids": "⿰木戔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棨", + "codepoint": "U+68E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68E8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棩", + "codepoint": "U+68E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68E9", + "status": "exact_ids", + "ids": "⿰木𣶒", + "canonical_ids": "⿰木𣶒", + "expanded_ids": "⿰木𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 76, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棪", + "codepoint": "U+68EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68EA", + "status": "exact_ids", + "ids": "⿰木炎", + "canonical_ids": "⿰木炎", + "expanded_ids": "⿰木⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棫", + "codepoint": "U+68EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68EB", + "status": "exact_ids", + "ids": "⿰木或", + "canonical_ids": "⿰木或", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "或" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棬", + "codepoint": "U+68EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68EC", + "status": "exact_ids", + "ids": "⿰木卷", + "canonical_ids": "⿰木卷", + "expanded_ids": "⿰木⿱龹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "木", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棭", + "codepoint": "U+68ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68ED", + "status": "exact_ids", + "ids": "⿰木夜", + "canonical_ids": "⿰木夜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "夜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "森", + "codepoint": "U+68EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68EE", + "status": "exact_ids", + "ids": "⿱木⿰木木", + "canonical_ids": "⿱木⿰木木", + "expanded_ids": "⿱木⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棯", + "codepoint": "U+68EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68EF", + "status": "exact_ids", + "ids": "⿰木念", + "canonical_ids": "⿰木念", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "心", + "木" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棰", + "codepoint": "U+68F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68F0", + "status": "exact_ids", + "ids": "⿰木垂", + "canonical_ids": "⿰木垂", + "expanded_ids": "⿰木垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "垂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棱", + "codepoint": "U+68F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68F1", + "status": "exact_ids", + "ids": "⿰木夌", + "canonical_ids": "⿰木夌", + "expanded_ids": "⿰木⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棲", + "codepoint": "U+68F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68F2", + "status": "exact_ids", + "ids": "⿰木妻", + "canonical_ids": "⿰木妻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "妻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棳", + "codepoint": "U+68F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68F3", + "status": "exact_ids", + "ids": "⿰木叕", + "canonical_ids": "⿰木叕", + "expanded_ids": "⿰木⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棴", + "codepoint": "U+68F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68F4", + "status": "exact_ids", + "ids": "⿰木服", + "canonical_ids": "⿰木服", + "expanded_ids": "⿰木⿰月⿻卩又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "又", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棵", + "codepoint": "U+68F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68F5", + "status": "exact_ids", + "ids": "⿰木果", + "canonical_ids": "⿰木果", + "expanded_ids": "⿰木⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棶", + "codepoint": "U+68F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68F6", + "status": "exact_ids", + "ids": "⿰木來", + "canonical_ids": "⿰木來", + "expanded_ids": "⿰木⿻木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棷", + "codepoint": "U+68F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68F7", + "status": "exact_ids", + "ids": "⿰木取", + "canonical_ids": "⿰木取", + "expanded_ids": "⿰木⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "木", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棸", + "codepoint": "U+68F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68F8", + "status": "exact_ids", + "ids": "⿱取木", + "canonical_ids": "⿱取木", + "expanded_ids": "⿱⿰耳又木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "木", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棹", + "codepoint": "U+68F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68F9", + "status": "exact_ids", + "ids": "⿰木卓", + "canonical_ids": "⿰木卓", + "expanded_ids": "⿰木⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棺", + "codepoint": "U+68FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68FA", + "status": "exact_ids", + "ids": "⿰木官", + "canonical_ids": "⿰木官", + "expanded_ids": "⿰木⿱宀㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棻", + "codepoint": "U+68FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68FB", + "status": "exact_ids", + "ids": "⿱芬木", + "canonical_ids": "⿱芬木", + "expanded_ids": "⿱⿱艹⿱八刀木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棼", + "codepoint": "U+68FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68FC", + "status": "exact_ids", + "ids": "⿱⿰木木分", + "canonical_ids": "⿱⿰木木分", + "expanded_ids": "⿱⿰木木⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棽", + "codepoint": "U+68FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68FD", + "status": "exact_ids", + "ids": "⿱⿰木木今", + "canonical_ids": "⿱⿰木木今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "木" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棾", + "codepoint": "U+68FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68FE", + "status": "exact_ids", + "ids": "⿳林冖几", + "canonical_ids": "⿳林冖几", + "expanded_ids": "⿳⿰木木冖几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "几", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "棿", + "codepoint": "U+68FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-68FF", + "status": "exact_ids", + "ids": "⿰木兒", + "canonical_ids": "⿰木兒", + "expanded_ids": "⿰木⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "木", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椀", + "codepoint": "U+6900", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6900", + "status": "exact_ids", + "ids": "⿰木宛", + "canonical_ids": "⿰木宛", + "expanded_ids": "⿰木⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椁", + "codepoint": "U+6901", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6901", + "status": "exact_ids", + "ids": "⿰木享", + "canonical_ids": "⿰木享", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椂", + "codepoint": "U+6902", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6902", + "status": "exact_ids", + "ids": "⿰木录", + "canonical_ids": "⿰木录", + "expanded_ids": "⿰木⿱彐氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "木", + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椃", + "codepoint": "U+6903", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6903", + "status": "exact_ids", + "ids": "⿰木虎", + "canonical_ids": "⿰木虎", + "expanded_ids": "⿰木⿱虍儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "木", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椄", + "codepoint": "U+6904", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6904", + "status": "exact_ids", + "ids": "⿰木妾", + "canonical_ids": "⿰木妾", + "expanded_ids": "⿰木⿱立女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "木", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椅", + "codepoint": "U+6905", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6905", + "status": "exact_ids", + "ids": "⿰木奇", + "canonical_ids": "⿰木奇", + "expanded_ids": "⿰木⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椆", + "codepoint": "U+6906", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6906", + "status": "exact_ids", + "ids": "⿰木周", + "canonical_ids": "⿰木周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椇", + "codepoint": "U+6907", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6907", + "status": "exact_ids", + "ids": "⿰木具", + "canonical_ids": "⿰木具", + "expanded_ids": "⿰木⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椈", + "codepoint": "U+6908", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6908", + "status": "exact_ids", + "ids": "⿰木匊", + "canonical_ids": "⿰木匊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "匊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椉", + "codepoint": "U+6909", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6909", + "status": "exact_ids", + "ids": "⿱亠桀", + "canonical_ids": "⿱亠桀", + "expanded_ids": "⿱亠⿱⿰夕⿻丨二木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "亠", + "夕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椊", + "codepoint": "U+690A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-690A", + "status": "exact_ids", + "ids": "⿰木卒", + "canonical_ids": "⿰木卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椋", + "codepoint": "U+690B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-690B", + "status": "exact_ids", + "ids": "⿰木京", + "canonical_ids": "⿰木京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椌", + "codepoint": "U+690C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-690C", + "status": "exact_ids", + "ids": "⿰木空", + "canonical_ids": "⿰木空", + "expanded_ids": "⿰木⿱⿱宀八工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "工", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "植", + "codepoint": "U+690D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-690D", + "status": "exact_ids", + "ids": "⿰木直", + "canonical_ids": "⿰木直", + "expanded_ids": "⿰木⿱⿱十目乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "十", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椎", + "codepoint": "U+690E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-690E", + "status": "exact_ids", + "ids": "⿰木隹", + "canonical_ids": "⿰木隹", + "expanded_ids": "⿰木隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椏", + "codepoint": "U+690F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-690F", + "status": "exact_ids", + "ids": "⿰木亞", + "canonical_ids": "⿰木亞", + "expanded_ids": "⿰木亞", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亞", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椐", + "codepoint": "U+6910", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6910", + "status": "exact_ids", + "ids": "⿰木居", + "canonical_ids": "⿰木居", + "expanded_ids": "⿰木⿱尸⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "尸", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椑", + "codepoint": "U+6911", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6911", + "status": "exact_ids", + "ids": "⿰木卑", + "canonical_ids": "⿰木卑", + "expanded_ids": "⿰木卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椒", + "codepoint": "U+6912", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6912", + "status": "exact_ids", + "ids": "⿰木叔", + "canonical_ids": "⿰木叔", + "expanded_ids": "⿰木⿰⿱上小又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "又", + "小", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椓", + "codepoint": "U+6913", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6913", + "status": "exact_ids", + "ids": "⿰木豖", + "canonical_ids": "⿰木豖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "豖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椔", + "codepoint": "U+6914", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6914", + "status": "exact_ids", + "ids": "⿰木甾", + "canonical_ids": "⿰木甾", + "expanded_ids": "⿰木⿱巛田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椕", + "codepoint": "U+6915", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6915", + "status": "exact_ids", + "ids": "⿲木分木", + "canonical_ids": "⿲木分木", + "expanded_ids": "⿲木⿱八刀木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椖", + "codepoint": "U+6916", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6916", + "status": "exact_ids", + "ids": "⿰木房", + "canonical_ids": "⿰木房", + "expanded_ids": "⿰木⿱⿻一尸方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "方", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椗", + "codepoint": "U+6917", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6917", + "status": "exact_ids", + "ids": "⿰木定", + "canonical_ids": "⿰木定", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "木" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椘", + "codepoint": "U+6918", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6918", + "status": "exact_ids", + "ids": "⿱⿰木木之", + "canonical_ids": "⿱⿰木木之", + "expanded_ids": "⿱⿰木木之", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "之", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椙", + "codepoint": "U+6919", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6919", + "status": "exact_ids", + "ids": "⿰木昌", + "canonical_ids": "⿰木昌", + "expanded_ids": "⿰木⿱日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椚", + "codepoint": "U+691A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-691A", + "status": "exact_ids", + "ids": "⿰木門", + "canonical_ids": "⿰木門", + "expanded_ids": "⿰木門", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "門" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椛", + "codepoint": "U+691B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-691B", + "status": "exact_ids", + "ids": "⿰木花", + "canonical_ids": "⿰木花", + "expanded_ids": "⿰木⿱艹⿰亻匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "検", + "codepoint": "U+691C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-691C", + "status": "exact_ids", + "ids": "⿰木㑒", + "canonical_ids": "⿰木㑒", + "expanded_ids": "⿰木⿻⿱⿱人一口人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椝", + "codepoint": "U+691D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-691D", + "status": "exact_ids", + "ids": "⿱规木", + "canonical_ids": "⿱规木", + "expanded_ids": "⿱⿰⿻一大⿻冂儿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "冂", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椞", + "codepoint": "U+691E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-691E", + "status": "exact_ids", + "ids": "⿱析木", + "canonical_ids": "⿱析木", + "expanded_ids": "⿱⿰木斤木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椟", + "codepoint": "U+691F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-691F", + "status": "exact_ids", + "ids": "⿰木卖", + "canonical_ids": "⿰木卖", + "expanded_ids": "⿰木⿱十⿱乛⿻大冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "冫", + "十", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椠", + "codepoint": "U+6920", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6920", + "status": "exact_ids", + "ids": "⿱斩木", + "canonical_ids": "⿱斩木", + "expanded_ids": "⿱⿰车斤木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "木", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椡", + "codepoint": "U+6921", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6921", + "status": "exact_ids", + "ids": "⿰木到", + "canonical_ids": "⿰木到", + "expanded_ids": "⿰木⿰⿱⿱一厶土刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "厶", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椢", + "codepoint": "U+6922", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6922", + "status": "exact_ids", + "ids": "⿰木国", + "canonical_ids": "⿰木国", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "国" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椣", + "codepoint": "U+6923", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6923", + "status": "exact_ids", + "ids": "⿰木典", + "canonical_ids": "⿰木典", + "expanded_ids": "⿰木典", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "典", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椤", + "codepoint": "U+6924", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6924", + "status": "exact_ids", + "ids": "⿰木罗", + "canonical_ids": "⿰木罗", + "expanded_ids": "⿰木⿱罒夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "木", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椥", + "codepoint": "U+6925", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6925", + "status": "exact_ids", + "ids": "⿰木知", + "canonical_ids": "⿰木知", + "expanded_ids": "⿰木⿰⿱⿻丿一大口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椦", + "codepoint": "U+6926", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6926", + "status": "exact_ids", + "ids": "⿰木劵", + "canonical_ids": "⿰木劵", + "expanded_ids": "⿰木⿱龹力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "木", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椧", + "codepoint": "U+6927", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6927", + "status": "exact_ids", + "ids": "⿰木命", + "canonical_ids": "⿰木命", + "expanded_ids": "⿰木⿱⿱人一⿰口卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "卩", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椨", + "codepoint": "U+6928", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6928", + "status": "exact_ids", + "ids": "⿰木府", + "canonical_ids": "⿰木府", + "expanded_ids": "⿰木⿱广⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椩", + "codepoint": "U+6929", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6929", + "status": "exact_ids", + "ids": "⿰木庚", + "canonical_ids": "⿰木庚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "庚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椪", + "codepoint": "U+692A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-692A", + "status": "exact_ids", + "ids": "⿰木並", + "canonical_ids": "⿰木並", + "expanded_ids": "⿰木⿱丷亚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亚", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椫", + "codepoint": "U+692B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-692B", + "status": "exact_ids", + "ids": "⿰木单", + "canonical_ids": "⿰木单", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "单" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椬", + "codepoint": "U+692C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-692C", + "status": "exact_ids", + "ids": "⿰木宜", + "canonical_ids": "⿰木宜", + "expanded_ids": "⿰木⿱宀且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椭", + "codepoint": "U+692D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-692D", + "status": "exact_ids", + "ids": "⿰木陏", + "canonical_ids": "⿰木陏", + "expanded_ids": "⿰木⿰阝⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "月", + "木", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椮", + "codepoint": "U+692E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-692E", + "status": "exact_ids", + "ids": "⿰木参", + "canonical_ids": "⿰木参", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "参" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椯", + "codepoint": "U+692F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-692F", + "status": "exact_ids", + "ids": "⿰木耑", + "canonical_ids": "⿰木耑", + "expanded_ids": "⿰木⿱山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "木", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椰", + "codepoint": "U+6930", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6930", + "status": "exact_ids", + "ids": "⿰木耶", + "canonical_ids": "⿰木耶", + "expanded_ids": "⿰木⿰耳阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "耳", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椱", + "codepoint": "U+6931", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6931", + "status": "exact_ids", + "ids": "⿰木复", + "canonical_ids": "⿰木复", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "复" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椲", + "codepoint": "U+6932", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6932", + "status": "exact_ids", + "ids": "⿰木韋", + "canonical_ids": "⿰木韋", + "expanded_ids": "⿰木韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椳", + "codepoint": "U+6933", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6933", + "status": "exact_ids", + "ids": "⿰木畏", + "canonical_ids": "⿰木畏", + "expanded_ids": "⿰木⿱田氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "氏", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椴", + "codepoint": "U+6934", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6934", + "status": "exact_ids", + "ids": "⿰木段", + "canonical_ids": "⿰木段", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "段" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椵", + "codepoint": "U+6935", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6935", + "status": "exact_ids", + "ids": "⿰木叚", + "canonical_ids": "⿰木叚", + "expanded_ids": "⿰木叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椶", + "codepoint": "U+6936", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6936", + "status": "exact_ids", + "ids": "⿰木㚇", + "canonical_ids": "⿰木㚇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "夊", + "木" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椷", + "codepoint": "U+6937", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6937", + "status": "exact_ids", + "ids": "⿰木咸", + "canonical_ids": "⿰木咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椸", + "codepoint": "U+6938", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6938", + "status": "exact_ids", + "ids": "⿰木施", + "canonical_ids": "⿰木施", + "expanded_ids": "⿰木⿰⿰方人⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "人", + "方", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椹", + "codepoint": "U+6939", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6939", + "status": "exact_ids", + "ids": "⿰木甚", + "canonical_ids": "⿰木甚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "甘" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椺", + "codepoint": "U+693A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-693A", + "status": "exact_ids", + "ids": "⿰木保", + "canonical_ids": "⿰木保", + "expanded_ids": "⿰木⿰亻⿱口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椻", + "codepoint": "U+693B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-693B", + "status": "exact_ids", + "ids": "⿰木匽", + "canonical_ids": "⿰木匽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "匽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椼", + "codepoint": "U+693C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-693C", + "status": "exact_ids", + "ids": "⿰木衍", + "canonical_ids": "⿰木衍", + "expanded_ids": "⿰木⿲彳氵彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椽", + "codepoint": "U+693D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-693D", + "status": "exact_ids", + "ids": "⿰木彖", + "canonical_ids": "⿰木彖", + "expanded_ids": "⿰木⿱彑𧰨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "木", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椾", + "codepoint": "U+693E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-693E", + "status": "exact_ids", + "ids": "⿰木前", + "canonical_ids": "⿰木前", + "expanded_ids": "⿰木⿱止⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "月", + "木", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "椿", + "codepoint": "U+693F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-693F", + "status": "exact_ids", + "ids": "⿰木春", + "canonical_ids": "⿰木春", + "expanded_ids": "⿰木⿱𡗗日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楀", + "codepoint": "U+6940", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6940", + "status": "exact_ids", + "ids": "⿰木禹", + "canonical_ids": "⿰木禹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "禹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楁", + "codepoint": "U+6941", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6941", + "status": "exact_ids", + "ids": "⿰木客", + "canonical_ids": "⿰木客", + "expanded_ids": "⿰木⿱宀⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楂", + "codepoint": "U+6942", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6942", + "status": "exact_ids", + "ids": "⿰木查", + "canonical_ids": "⿰木查", + "expanded_ids": "⿰木⿱木⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楃", + "codepoint": "U+6943", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6943", + "status": "exact_ids", + "ids": "⿰木屋", + "canonical_ids": "⿰木屋", + "expanded_ids": "⿰木⿱尸⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "尸", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楄", + "codepoint": "U+6944", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6944", + "status": "exact_ids", + "ids": "⿰木扁", + "canonical_ids": "⿰木扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "木" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楅", + "codepoint": "U+6945", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6945", + "status": "exact_ids", + "ids": "⿰木畐", + "canonical_ids": "⿰木畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楆", + "codepoint": "U+6946", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6946", + "status": "exact_ids", + "ids": "⿰木要", + "canonical_ids": "⿰木要", + "expanded_ids": "⿰木⿱覀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "木", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楇", + "codepoint": "U+6947", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6947", + "status": "exact_ids", + "ids": "⿰木咼", + "canonical_ids": "⿰木咼", + "expanded_ids": "⿰木⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楈", + "codepoint": "U+6948", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6948", + "status": "exact_ids", + "ids": "⿰木胥", + "canonical_ids": "⿰木胥", + "expanded_ids": "⿰木⿱疋月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "木", + "疋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楉", + "codepoint": "U+6949", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6949", + "status": "exact_ids", + "ids": "⿰木若", + "canonical_ids": "⿰木若", + "expanded_ids": "⿰木⿱艹⿱⿻丿一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楊", + "codepoint": "U+694A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-694A", + "status": "exact_ids", + "ids": "⿰木昜", + "canonical_ids": "⿰木昜", + "expanded_ids": "⿰木⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楋", + "codepoint": "U+694B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-694B", + "status": "exact_ids", + "ids": "⿰木剌", + "canonical_ids": "⿰木剌", + "expanded_ids": "⿰木⿰⿻木口刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楌", + "codepoint": "U+694C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-694C", + "status": "exact_ids", + "ids": "⿰木彦", + "canonical_ids": "⿰木彦", + "expanded_ids": "⿰木⿱⿱⿱亠八厂彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "厂", + "彡", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楍", + "codepoint": "U+694D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-694D", + "status": "exact_ids", + "ids": "⿱木𠱠", + "canonical_ids": "⿱木𠱠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "𠱠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楎", + "codepoint": "U+694E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-694E", + "status": "exact_ids", + "ids": "⿰木軍", + "canonical_ids": "⿰木軍", + "expanded_ids": "⿰木⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "木", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楏", + "codepoint": "U+694F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-694F", + "status": "exact_ids", + "ids": "⿰木奎", + "canonical_ids": "⿰木奎", + "expanded_ids": "⿰木⿱大⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楐", + "codepoint": "U+6950", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6950", + "status": "exact_ids", + "ids": "⿰木界", + "canonical_ids": "⿰木界", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楑", + "codepoint": "U+6951", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6951", + "status": "exact_ids", + "ids": "⿰木癸", + "canonical_ids": "⿰木癸", + "expanded_ids": "⿰木⿱癶⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "木", + "癶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楒", + "codepoint": "U+6952", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6952", + "status": "exact_ids", + "ids": "⿰木思", + "canonical_ids": "⿰木思", + "expanded_ids": "⿰木⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楓", + "codepoint": "U+6953", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6953", + "status": "exact_ids", + "ids": "⿰木風", + "canonical_ids": "⿰木風", + "expanded_ids": "⿰木風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楔", + "codepoint": "U+6954", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6954", + "status": "exact_ids", + "ids": "⿰木契", + "canonical_ids": "⿰木契", + "expanded_ids": "⿰木⿱⿰丰刀大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楕", + "codepoint": "U+6955", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6955", + "status": "exact_ids", + "ids": "⿰木𤯝", + "canonical_ids": "⿰木𤯝", + "expanded_ids": "⿰木⿱⿱牛一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "月", + "木", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楖", + "codepoint": "U+6956", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6956", + "status": "exact_ids", + "ids": "⿰木即", + "canonical_ids": "⿰木即", + "expanded_ids": "⿰木⿰艮卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "木", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楗", + "codepoint": "U+6957", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6957", + "status": "exact_ids", + "ids": "⿰木建", + "canonical_ids": "⿰木建", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廴", + "木" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楘", + "codepoint": "U+6958", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6958", + "status": "exact_ids", + "ids": "⿱敄木", + "canonical_ids": "⿱敄木", + "expanded_ids": "⿱⿰矛攵木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "木", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楙", + "codepoint": "U+6959", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6959", + "status": "exact_ids", + "ids": "⿲木矛木", + "canonical_ids": "⿲木矛木", + "expanded_ids": "⿲木矛木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楚", + "codepoint": "U+695A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-695A", + "status": "exact_ids", + "ids": "⿱⿰木木疋", + "canonical_ids": "⿱⿰木木疋", + "expanded_ids": "⿱⿰木木疋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "疋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楛", + "codepoint": "U+695B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-695B", + "status": "exact_ids", + "ids": "⿰木苦", + "canonical_ids": "⿰木苦", + "expanded_ids": "⿰木⿱艹⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楜", + "codepoint": "U+695C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-695C", + "status": "exact_ids", + "ids": "⿰木胡", + "canonical_ids": "⿰木胡", + "expanded_ids": "⿰木⿰⿻十口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楝", + "codepoint": "U+695D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-695D", + "status": "exact_ids", + "ids": "⿰木柬", + "canonical_ids": "⿰木柬", + "expanded_ids": "⿰木柬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "柬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楞", + "codepoint": "U+695E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-695E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楟", + "codepoint": "U+695F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-695F", + "status": "exact_ids", + "ids": "⿰木亭", + "canonical_ids": "⿰木亭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "亭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楠", + "codepoint": "U+6960", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6960", + "status": "exact_ids", + "ids": "⿰木南", + "canonical_ids": "⿰木南", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "南" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楡", + "codepoint": "U+6961", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6961", + "status": "exact_ids", + "ids": "⿰木兪", + "canonical_ids": "⿰木兪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "兪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楢", + "codepoint": "U+6962", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6962", + "status": "exact_ids", + "ids": "⿰木酋", + "canonical_ids": "⿰木酋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楣", + "codepoint": "U+6963", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6963", + "status": "exact_ids", + "ids": "⿰木眉", + "canonical_ids": "⿰木眉", + "expanded_ids": "⿰木⿱⿻尸丨目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "尸", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楤", + "codepoint": "U+6964", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6964", + "status": "exact_ids", + "ids": "⿰木怱", + "canonical_ids": "⿰木怱", + "expanded_ids": "⿰木⿱⿻勿丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "勿", + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楥", + "codepoint": "U+6965", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6965", + "status": "exact_ids", + "ids": "⿰木爰", + "canonical_ids": "⿰木爰", + "expanded_ids": "⿰木⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "木", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楦", + "codepoint": "U+6966", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6966", + "status": "exact_ids", + "ids": "⿰木宣", + "canonical_ids": "⿰木宣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "木" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楧", + "codepoint": "U+6967", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6967", + "status": "exact_ids", + "ids": "⿰木英", + "canonical_ids": "⿰木英", + "expanded_ids": "⿰木⿱艹⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楨", + "codepoint": "U+6968", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6968", + "status": "exact_ids", + "ids": "⿰木貞", + "canonical_ids": "⿰木貞", + "expanded_ids": "⿰木⿱卜⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "卜", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楩", + "codepoint": "U+6969", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6969", + "status": "exact_ids", + "ids": "⿰木便", + "canonical_ids": "⿰木便", + "expanded_ids": "⿰木⿰亻更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "更", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楪", + "codepoint": "U+696A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-696A", + "status": "exact_ids", + "ids": "⿰木枼", + "canonical_ids": "⿰木枼", + "expanded_ids": "⿰木⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楫", + "codepoint": "U+696B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-696B", + "status": "exact_ids", + "ids": "⿰木咠", + "canonical_ids": "⿰木咠", + "expanded_ids": "⿰木⿱口耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楬", + "codepoint": "U+696C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-696C", + "status": "exact_ids", + "ids": "⿰木曷", + "canonical_ids": "⿰木曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "木" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "業", + "codepoint": "U+696D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-696D", + "status": "exact_ids", + "ids": "⿱业𦍎", + "canonical_ids": "⿱业𦍎", + "expanded_ids": "⿱业⿻羊八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "八", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楮", + "codepoint": "U+696E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-696E", + "status": "exact_ids", + "ids": "⿰木者", + "canonical_ids": "⿰木者", + "expanded_ids": "⿰木⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楯", + "codepoint": "U+696F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-696F", + "status": "exact_ids", + "ids": "⿰木盾", + "canonical_ids": "⿰木盾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "木", + "目" + ], + "unresolved_leaves": [ + "⺁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楰", + "codepoint": "U+6970", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6970", + "status": "exact_ids", + "ids": "⿰木臾", + "canonical_ids": "⿰木臾", + "expanded_ids": "⿰木⿻人臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "木", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楱", + "codepoint": "U+6971", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6971", + "status": "exact_ids", + "ids": "⿰木奏", + "canonical_ids": "⿰木奏", + "expanded_ids": "⿰木⿱𡗗⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "木", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楲", + "codepoint": "U+6972", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6972", + "status": "exact_ids", + "ids": "⿰木威", + "canonical_ids": "⿰木威", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "威" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楳", + "codepoint": "U+6973", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6973", + "status": "exact_ids", + "ids": "⿰木某", + "canonical_ids": "⿰木某", + "expanded_ids": "⿰木⿱甘木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楴", + "codepoint": "U+6974", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6974", + "status": "exact_ids", + "ids": "⿰木帝", + "canonical_ids": "⿰木帝", + "expanded_ids": "⿰木⿳⿱亠八冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "極", + "codepoint": "U+6975", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6975", + "status": "exact_ids", + "ids": "⿰木亟", + "canonical_ids": "⿰木亟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "亟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楶", + "codepoint": "U+6976", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6976", + "status": "exact_ids", + "ids": "⿱次呆", + "canonical_ids": "⿱次呆", + "expanded_ids": "⿱⿰冫欠⿱口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "口", + "木", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楷", + "codepoint": "U+6977", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6977", + "status": "exact_ids", + "ids": "⿰木皆", + "canonical_ids": "⿰木皆", + "expanded_ids": "⿰木⿱⿰匕匕⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楸", + "codepoint": "U+6978", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6978", + "status": "exact_ids", + "ids": "⿰木秋", + "canonical_ids": "⿰木秋", + "expanded_ids": "⿰木⿰⿻丿木火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楹", + "codepoint": "U+6979", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6979", + "status": "exact_ids", + "ids": "⿰木盈", + "canonical_ids": "⿰木盈", + "expanded_ids": "⿰木⿱⿻乃又皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "又", + "木", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楺", + "codepoint": "U+697A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-697A", + "status": "exact_ids", + "ids": "⿰木柔", + "canonical_ids": "⿰木柔", + "expanded_ids": "⿰木⿱矛木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楻", + "codepoint": "U+697B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-697B", + "status": "exact_ids", + "ids": "⿰木皇", + "canonical_ids": "⿰木皇", + "expanded_ids": "⿰木⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "木", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楼", + "codepoint": "U+697C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-697C", + "status": "exact_ids", + "ids": "⿰木娄", + "canonical_ids": "⿰木娄", + "expanded_ids": "⿰木⿱⿻木丷女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楽", + "codepoint": "U+697D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-697D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楾", + "codepoint": "U+697E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-697E", + "status": "exact_ids", + "ids": "⿰木泉", + "canonical_ids": "⿰木泉", + "expanded_ids": "⿰木⿱⿻日丶水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "木", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "楿", + "codepoint": "U+697F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-697F", + "status": "exact_ids", + "ids": "⿰木香", + "canonical_ids": "⿰木香", + "expanded_ids": "⿰木⿱⿻丿木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榀", + "codepoint": "U+6980", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6980", + "status": "exact_ids", + "ids": "⿰木品", + "canonical_ids": "⿰木品", + "expanded_ids": "⿰木⿱口⿰口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榁", + "codepoint": "U+6981", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6981", + "status": "exact_ids", + "ids": "⿰木室", + "canonical_ids": "⿰木室", + "expanded_ids": "⿰木⿱宀⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "概", + "codepoint": "U+6982", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6982", + "status": "exact_ids", + "ids": "⿰木既", + "canonical_ids": "⿰木既", + "expanded_ids": "⿰木⿰艮旡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "旡", + "木", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榃", + "codepoint": "U+6983", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6983", + "status": "exact_ids", + "ids": "⿱⿰木木田", + "canonical_ids": "⿱⿰木木田", + "expanded_ids": "⿱⿰木木田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榄", + "codepoint": "U+6984", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6984", + "status": "exact_ids", + "ids": "⿰木览", + "canonical_ids": "⿰木览", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "览" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榅", + "codepoint": "U+6985", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6985", + "status": "exact_ids", + "ids": "⿰木昷", + "canonical_ids": "⿰木昷", + "expanded_ids": "⿰木⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榆", + "codepoint": "U+6986", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6986", + "status": "exact_ids", + "ids": "⿰木俞", + "canonical_ids": "⿰木俞", + "expanded_ids": "⿰木⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榇", + "codepoint": "U+6987", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6987", + "status": "exact_ids", + "ids": "⿰木亲", + "canonical_ids": "⿰木亲", + "expanded_ids": "⿰木⿱立朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "朩", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榈", + "codepoint": "U+6988", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6988", + "status": "exact_ids", + "ids": "⿰木闾", + "canonical_ids": "⿰木闾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "闾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榉", + "codepoint": "U+6989", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6989", + "status": "exact_ids", + "ids": "⿰木举", + "canonical_ids": "⿰木举", + "expanded_ids": "⿰木⿱兴⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "兴", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榊", + "codepoint": "U+698A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-698A", + "status": "exact_ids", + "ids": "⿰木神", + "canonical_ids": "⿰木神", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "礻" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榋", + "codepoint": "U+698B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-698B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榌", + "codepoint": "U+698C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-698C", + "status": "exact_ids", + "ids": "⿰木飛", + "canonical_ids": "⿰木飛", + "expanded_ids": "⿰木飛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "飛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榍", + "codepoint": "U+698D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-698D", + "status": "exact_ids", + "ids": "⿰木屑", + "canonical_ids": "⿰木屑", + "expanded_ids": "⿰木⿱尸⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "尸", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榎", + "codepoint": "U+698E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-698E", + "status": "exact_ids", + "ids": "⿰木夏", + "canonical_ids": "⿰木夏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "夏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榏", + "codepoint": "U+698F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-698F", + "status": "exact_ids", + "ids": "⿰木益", + "canonical_ids": "⿰木益", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榐", + "codepoint": "U+6990", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6990", + "status": "exact_ids", + "ids": "⿰木展", + "canonical_ids": "⿰木展", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "展" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榑", + "codepoint": "U+6991", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6991", + "status": "exact_ids", + "ids": "⿰木尃", + "canonical_ids": "⿰木尃", + "expanded_ids": "⿰木⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "木", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榒", + "codepoint": "U+6992", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6992", + "status": "exact_ids", + "ids": "⿰木弱", + "canonical_ids": "⿰木弱", + "expanded_ids": "⿰木⿰⿱弓二⿱弓二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "弓", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榓", + "codepoint": "U+6993", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6993", + "status": "exact_ids", + "ids": "⿰木𥁑", + "canonical_ids": "⿰木𥁑", + "expanded_ids": "⿰木⿱⿻心丿皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "木", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榔", + "codepoint": "U+6994", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6994", + "status": "exact_ids", + "ids": "⿰木郎", + "canonical_ids": "⿰木郎", + "expanded_ids": "⿰木⿰⿻丶艮阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "木", + "艮", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榕", + "codepoint": "U+6995", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6995", + "status": "exact_ids", + "ids": "⿰木容", + "canonical_ids": "⿰木容", + "expanded_ids": "⿰木⿱宀⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榖", + "codepoint": "U+6996", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6996", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榗", + "codepoint": "U+6997", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6997", + "status": "exact_ids", + "ids": "⿰木晉", + "canonical_ids": "⿰木晉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "晉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榘", + "codepoint": "U+6998", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6998", + "status": "exact_ids", + "ids": "⿱矩木", + "canonical_ids": "⿱矩木", + "expanded_ids": "⿱⿰⿱⿻丿一大巨木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "巨", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榙", + "codepoint": "U+6999", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6999", + "status": "exact_ids", + "ids": "⿰木荅", + "canonical_ids": "⿰木荅", + "expanded_ids": "⿰木⿱艹⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榚", + "codepoint": "U+699A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-699A", + "status": "exact_ids", + "ids": "⿰木羔", + "canonical_ids": "⿰木羔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "羔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榛", + "codepoint": "U+699B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-699B", + "status": "exact_ids", + "ids": "⿰木秦", + "canonical_ids": "⿰木秦", + "expanded_ids": "⿰木⿱𡗗⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榜", + "codepoint": "U+699C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-699C", + "status": "exact_ids", + "ids": "⿰木旁", + "canonical_ids": "⿰木旁", + "expanded_ids": "⿰木⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "方", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榝", + "codepoint": "U+699D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-699D", + "status": "exact_ids", + "ids": "⿰木殺", + "canonical_ids": "⿰木殺", + "expanded_ids": "⿰木⿰⿱乂朩⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "几", + "又", + "木", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [ + "樧" + ] + }, + { + "character": "榞", + "codepoint": "U+699E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-699E", + "status": "exact_ids", + "ids": "⿰木原", + "canonical_ids": "⿰木原", + "expanded_ids": "⿰木⿱厂⿱⿻日丶小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "小", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榟", + "codepoint": "U+699F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-699F", + "status": "exact_ids", + "ids": "⿰木宰", + "canonical_ids": "⿰木宰", + "expanded_ids": "⿰木⿱宀⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "宀", + "木", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榠", + "codepoint": "U+69A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69A0", + "status": "exact_ids", + "ids": "⿰木冥", + "canonical_ids": "⿰木冥", + "expanded_ids": "⿰木⿱冖⿱日⿱亠八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榡", + "codepoint": "U+69A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69A1", + "status": "exact_ids", + "ids": "⿰木素", + "canonical_ids": "⿰木素", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "木" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榢", + "codepoint": "U+69A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69A2", + "status": "exact_ids", + "ids": "⿰木家", + "canonical_ids": "⿰木家", + "expanded_ids": "⿰木⿱宀豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "木", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榣", + "codepoint": "U+69A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69A3", + "status": "exact_ids", + "ids": "⿰木䍃", + "canonical_ids": "⿰木䍃", + "expanded_ids": "⿰木⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "爪", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榤", + "codepoint": "U+69A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69A4", + "status": "exact_ids", + "ids": "⿰木桀", + "canonical_ids": "⿰木桀", + "expanded_ids": "⿰木⿱⿰夕⿻丨二木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榥", + "codepoint": "U+69A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69A5", + "status": "exact_ids", + "ids": "⿰木晃", + "canonical_ids": "⿰木晃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "日", + "木" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榦", + "codepoint": "U+69A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69A6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榧", + "codepoint": "U+69A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69A7", + "status": "exact_ids", + "ids": "⿰木匪", + "canonical_ids": "⿰木匪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "匪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榨", + "codepoint": "U+69A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69A8", + "status": "exact_ids", + "ids": "⿰木窄", + "canonical_ids": "⿰木窄", + "expanded_ids": "⿰木⿱⿱宀八乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "八", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榩", + "codepoint": "U+69A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69A9", + "status": "exact_ids", + "ids": "⿰木虔", + "canonical_ids": "⿰木虔", + "expanded_ids": "⿰木⿱虍文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "木", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榪", + "codepoint": "U+69AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69AA", + "status": "exact_ids", + "ids": "⿰木馬", + "canonical_ids": "⿰木馬", + "expanded_ids": "⿰木馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榫", + "codepoint": "U+69AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69AB", + "status": "exact_ids", + "ids": "⿰木隼", + "canonical_ids": "⿰木隼", + "expanded_ids": "⿰木⿱隹十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "木", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榬", + "codepoint": "U+69AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69AC", + "status": "exact_ids", + "ids": "⿰木袁", + "canonical_ids": "⿰木袁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "袁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榭", + "codepoint": "U+69AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69AD", + "status": "exact_ids", + "ids": "⿰木射", + "canonical_ids": "⿰木射", + "expanded_ids": "⿰木⿰身寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "木", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榮", + "codepoint": "U+69AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69AE", + "status": "exact_ids", + "ids": "⿳炏冖木", + "canonical_ids": "⿳炏冖木", + "expanded_ids": "⿳⿰火火冖木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榯", + "codepoint": "U+69AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69AF", + "status": "exact_ids", + "ids": "⿰木時", + "canonical_ids": "⿰木時", + "expanded_ids": "⿰木⿰日⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榰", + "codepoint": "U+69B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69B0", + "status": "exact_ids", + "ids": "⿰木耆", + "canonical_ids": "⿰木耆", + "expanded_ids": "⿰木⿱⿱⿻土丿匕日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榱", + "codepoint": "U+69B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69B1", + "status": "exact_ids", + "ids": "⿰木衰", + "canonical_ids": "⿰木衰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "衰" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榲", + "codepoint": "U+69B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69B2", + "status": "exact_ids", + "ids": "⿰木𥁕", + "canonical_ids": "⿰木𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "皿" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榳", + "codepoint": "U+69B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69B3", + "status": "exact_ids", + "ids": "⿰木庭", + "canonical_ids": "⿰木庭", + "expanded_ids": "⿰木⿱广⿰廴⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "广", + "廴", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榴", + "codepoint": "U+69B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69B4", + "status": "exact_ids", + "ids": "⿰木留", + "canonical_ids": "⿰木留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榵", + "codepoint": "U+69B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69B5", + "status": "exact_ids", + "ids": "⿰木茸", + "canonical_ids": "⿰木茸", + "expanded_ids": "⿰木⿱艹耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "耳", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榶", + "codepoint": "U+69B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69B6", + "status": "exact_ids", + "ids": "⿰木唐", + "canonical_ids": "⿰木唐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榷", + "codepoint": "U+69B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69B7", + "status": "exact_ids", + "ids": "⿰木隺", + "canonical_ids": "⿰木隺", + "expanded_ids": "⿰木⿻冖隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "木", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榸", + "codepoint": "U+69B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69B8", + "status": "exact_ids", + "ids": "⿰木埋", + "canonical_ids": "⿰木埋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "木" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榹", + "codepoint": "U+69B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69B9", + "status": "exact_ids", + "ids": "⿰木虒", + "canonical_ids": "⿰木虒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "虒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榺", + "codepoint": "U+69BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69BA", + "status": "exact_ids", + "ids": "⿰月桊", + "canonical_ids": "⿰月桊", + "expanded_ids": "⿰月⿱龹木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "木", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榻", + "codepoint": "U+69BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69BB", + "status": "exact_ids", + "ids": "⿰木𦐇", + "canonical_ids": "⿰木𦐇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "木" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榼", + "codepoint": "U+69BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69BC", + "status": "exact_ids", + "ids": "⿰木盍", + "canonical_ids": "⿰木盍", + "expanded_ids": "⿰木⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "木", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榽", + "codepoint": "U+69BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69BD", + "status": "exact_ids", + "ids": "⿰木奚", + "canonical_ids": "⿰木奚", + "expanded_ids": "⿰木⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "幺", + "木", + "爪" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榾", + "codepoint": "U+69BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69BE", + "status": "exact_ids", + "ids": "⿰木骨", + "canonical_ids": "⿰木骨", + "expanded_ids": "⿰木⿱冎月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "榿", + "codepoint": "U+69BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69BF", + "status": "exact_ids", + "ids": "⿰木豈", + "canonical_ids": "⿰木豈", + "expanded_ids": "⿰木⿱山豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "木", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槀", + "codepoint": "U+69C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69C0", + "status": "exact_ids", + "ids": "⿱高木", + "canonical_ids": "⿱高木", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槁", + "codepoint": "U+69C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69C1", + "status": "exact_ids", + "ids": "⿰木高", + "canonical_ids": "⿰木高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槂", + "codepoint": "U+69C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69C2", + "status": "exact_ids", + "ids": "⿰木孫", + "canonical_ids": "⿰木孫", + "expanded_ids": "⿰木⿰子⿱丿⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "子", + "小", + "幺", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槃", + "codepoint": "U+69C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69C3", + "status": "exact_ids", + "ids": "⿱般木", + "canonical_ids": "⿱般木", + "expanded_ids": "⿱⿰舟⿱几又木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "木", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槄", + "codepoint": "U+69C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69C4", + "status": "exact_ids", + "ids": "⿰木舀", + "canonical_ids": "⿰木舀", + "expanded_ids": "⿰木⿱爫臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "爫", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槅", + "codepoint": "U+69C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69C5", + "status": "exact_ids", + "ids": "⿰木鬲", + "canonical_ids": "⿰木鬲", + "expanded_ids": "⿰木鬲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槆", + "codepoint": "U+69C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69C6", + "status": "exact_ids", + "ids": "⿰木荀", + "canonical_ids": "⿰木荀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "艹" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槇", + "codepoint": "U+69C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69C7", + "status": "exact_ids", + "ids": "⿰木眞", + "canonical_ids": "⿰木眞", + "expanded_ids": "⿰木⿻匕⿱⿱一儿目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "匕", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槈", + "codepoint": "U+69C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69C8", + "status": "exact_ids", + "ids": "⿰木辱", + "canonical_ids": "⿰木辱", + "expanded_ids": "⿰木⿱辰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "木", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槉", + "codepoint": "U+69C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69C9", + "status": "exact_ids", + "ids": "⿰木疾", + "canonical_ids": "⿰木疾", + "expanded_ids": "⿰木⿱⿰冫广⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "冫", + "大", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槊", + "codepoint": "U+69CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69CA", + "status": "exact_ids", + "ids": "⿱朔木", + "canonical_ids": "⿱朔木", + "expanded_ids": "⿱⿰⿱䒑屮月木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "屮", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "構", + "codepoint": "U+69CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69CB", + "status": "exact_ids", + "ids": "⿰木冓", + "canonical_ids": "⿰木冓", + "expanded_ids": "⿰木⿱井⿱一⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "井", + "冂", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槌", + "codepoint": "U+69CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69CC", + "status": "exact_ids", + "ids": "⿰木追", + "canonical_ids": "⿰木追", + "expanded_ids": "⿰木⿰辶⿱丿㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "丿", + "木", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槍", + "codepoint": "U+69CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69CD", + "status": "exact_ids", + "ids": "⿰木倉", + "canonical_ids": "⿰木倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槎", + "codepoint": "U+69CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69CE", + "status": "exact_ids", + "ids": "⿰木差", + "canonical_ids": "⿰木差", + "expanded_ids": "⿰木⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "木", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槏", + "codepoint": "U+69CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69CF", + "status": "exact_ids", + "ids": "⿰木兼", + "canonical_ids": "⿰木兼", + "expanded_ids": "⿰木兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槐", + "codepoint": "U+69D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69D0", + "status": "exact_ids", + "ids": "⿰木鬼", + "canonical_ids": "⿰木鬼", + "expanded_ids": "⿰木鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槑", + "codepoint": "U+69D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69D1", + "status": "exact_ids", + "ids": "⿰呆呆", + "canonical_ids": "⿰呆呆", + "expanded_ids": "⿰⿱口木⿱口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槒", + "codepoint": "U+69D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69D2", + "status": "exact_ids", + "ids": "⿰木畜", + "canonical_ids": "⿰木畜", + "expanded_ids": "⿰木⿱⿱亠幺田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槓", + "codepoint": "U+69D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69D3", + "status": "exact_ids", + "ids": "⿰木貢", + "canonical_ids": "⿰木貢", + "expanded_ids": "⿰木⿱工⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "工", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槔", + "codepoint": "U+69D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69D4", + "status": "exact_ids", + "ids": "⿰木皋", + "canonical_ids": "⿰木皋", + "expanded_ids": "⿰木⿱⿻日丶⿱大十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "十", + "大", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槕", + "codepoint": "U+69D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69D5", + "status": "exact_ids", + "ids": "⿰木桌", + "canonical_ids": "⿰木桌", + "expanded_ids": "⿰木⿱卜⿱日木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槖", + "codepoint": "U+69D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69D6", + "status": "exact_ids", + "ids": "⿳士冖䂞", + "canonical_ids": "⿳士冖䂞", + "expanded_ids": "⿳士冖⿱石木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "士", + "木", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槗", + "codepoint": "U+69D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69D7", + "status": "exact_ids", + "ids": "⿰木𠳮", + "canonical_ids": "⿰木𠳮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "石" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "様", + "codepoint": "U+69D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69D8", + "status": "exact_ids", + "ids": "⿰木𣴎", + "canonical_ids": "⿰木𣴎", + "expanded_ids": "⿰木⿱羊水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "水", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槙", + "codepoint": "U+69D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69D9", + "status": "exact_ids", + "ids": "⿰木真", + "canonical_ids": "⿰木真", + "expanded_ids": "⿰木⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槚", + "codepoint": "U+69DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69DA", + "status": "exact_ids", + "ids": "⿰木贾", + "canonical_ids": "⿰木贾", + "expanded_ids": "⿰木⿱覀⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "木", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槛", + "codepoint": "U+69DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69DB", + "status": "exact_ids", + "ids": "⿰木监", + "canonical_ids": "⿰木监", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "监" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槜", + "codepoint": "U+69DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69DC", + "status": "exact_ids", + "ids": "⿰木隽", + "canonical_ids": "⿰木隽", + "expanded_ids": "⿰木⿱隹乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "木", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槝", + "codepoint": "U+69DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69DD", + "status": "exact_ids", + "ids": "⿰木島", + "canonical_ids": "⿰木島", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "島" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槞", + "codepoint": "U+69DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69DE", + "status": "exact_ids", + "ids": "⿰木竜", + "canonical_ids": "⿰木竜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "立" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槟", + "codepoint": "U+69DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69DF", + "status": "exact_ids", + "ids": "⿰木宾", + "canonical_ids": "⿰木宾", + "expanded_ids": "⿰木⿱宀⿱丘八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "八", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槠", + "codepoint": "U+69E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69E0", + "status": "exact_ids", + "ids": "⿰木诸", + "canonical_ids": "⿰木诸", + "expanded_ids": "⿰木⿰讠⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "木", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槡", + "codepoint": "U+69E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69E1", + "status": "exact_ids", + "ids": "⿰木桑", + "canonical_ids": "⿰木桑", + "expanded_ids": "⿰木⿱⿱又⿰又又木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槢", + "codepoint": "U+69E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69E2", + "status": "exact_ids", + "ids": "⿰木習", + "canonical_ids": "⿰木習", + "expanded_ids": "⿰木⿱⿰习习⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "习", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槣", + "codepoint": "U+69E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69E3", + "status": "exact_ids", + "ids": "⿰木寄", + "canonical_ids": "⿰木寄", + "expanded_ids": "⿰木⿱宀⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槤", + "codepoint": "U+69E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69E4", + "status": "exact_ids", + "ids": "⿰木連", + "canonical_ids": "⿰木連", + "expanded_ids": "⿰木⿰辶車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "車", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槥", + "codepoint": "U+69E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69E5", + "status": "exact_ids", + "ids": "⿰木彗", + "canonical_ids": "⿰木彗", + "expanded_ids": "⿰木⿱⿰丰丰彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "彐", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槦", + "codepoint": "U+69E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69E6", + "status": "exact_ids", + "ids": "⿰木庸", + "canonical_ids": "⿰木庸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "庸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槧", + "codepoint": "U+69E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69E7", + "status": "exact_ids", + "ids": "⿱斬木", + "canonical_ids": "⿱斬木", + "expanded_ids": "⿱⿰車斤木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "木", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槨", + "codepoint": "U+69E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69E8", + "status": "exact_ids", + "ids": "⿰木郭", + "canonical_ids": "⿰木郭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "阝" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槩", + "codepoint": "U+69E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69E9", + "status": "exact_ids", + "ids": "⿱旣木", + "canonical_ids": "⿱旣木", + "expanded_ids": "⿱⿰⿱⿻日丶匕旡木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "旡", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槪", + "codepoint": "U+69EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69EA", + "status": "exact_ids", + "ids": "⿰木旣", + "canonical_ids": "⿰木旣", + "expanded_ids": "⿰木⿰⿱⿻日丶匕旡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "旡", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槫", + "codepoint": "U+69EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69EB", + "status": "exact_ids", + "ids": "⿰木專", + "canonical_ids": "⿰木專", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "寸", + "木" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槬", + "codepoint": "U+69EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69EC", + "status": "exact_ids", + "ids": "⿰木瓠", + "canonical_ids": "⿰木瓠", + "expanded_ids": "⿰木⿰⿱大⿱一丂瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "木", + "瓜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槭", + "codepoint": "U+69ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69ED", + "status": "exact_ids", + "ids": "⿰木戚", + "canonical_ids": "⿰木戚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "戚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槮", + "codepoint": "U+69EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69EE", + "status": "exact_ids", + "ids": "⿰木參", + "canonical_ids": "⿰木參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槯", + "codepoint": "U+69EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69EF", + "status": "exact_ids", + "ids": "⿰木崔", + "canonical_ids": "⿰木崔", + "expanded_ids": "⿰木⿱山隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "木", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槰", + "codepoint": "U+69F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69F0", + "status": "exact_ids", + "ids": "⿰木逢", + "canonical_ids": "⿰木逢", + "expanded_ids": "⿰木⿰辶⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "木", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槱", + "codepoint": "U+69F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69F1", + "status": "exact_ids", + "ids": "⿱梄灬", + "canonical_ids": "⿱梄灬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "灬" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槲", + "codepoint": "U+69F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69F2", + "status": "exact_ids", + "ids": "⿰木斛", + "canonical_ids": "⿰木斛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "斗", + "月", + "木" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槳", + "codepoint": "U+69F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69F3", + "status": "exact_ids", + "ids": "⿱將木", + "canonical_ids": "⿱將木", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "將" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槴", + "codepoint": "U+69F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69F4", + "status": "exact_ids", + "ids": "⿰木扈", + "canonical_ids": "⿰木扈", + "expanded_ids": "⿰木⿱⿻一尸⿱口巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "尸", + "巴", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槵", + "codepoint": "U+69F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69F5", + "status": "exact_ids", + "ids": "⿰木患", + "canonical_ids": "⿰木患", + "expanded_ids": "⿰木⿱⿻⿱口口丨心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槶", + "codepoint": "U+69F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69F6", + "status": "exact_ids", + "ids": "⿰木國", + "canonical_ids": "⿰木國", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "國" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槷", + "codepoint": "U+69F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69F7", + "status": "exact_ids", + "ids": "⿱埶木", + "canonical_ids": "⿱埶木", + "expanded_ids": "⿱⿰⿱⿱土儿土⿻九丶木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "儿", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槸", + "codepoint": "U+69F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69F8", + "status": "exact_ids", + "ids": "⿰木埶", + "canonical_ids": "⿰木埶", + "expanded_ids": "⿰木⿰⿱⿱土儿土⿻九丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "儿", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槹", + "codepoint": "U+69F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69F9", + "status": "exact_ids", + "ids": "⿰木皐", + "canonical_ids": "⿰木皐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "皐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槺", + "codepoint": "U+69FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69FA", + "status": "exact_ids", + "ids": "⿰木康", + "canonical_ids": "⿰木康", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "木" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槻", + "codepoint": "U+69FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69FB", + "status": "exact_ids", + "ids": "⿰木規", + "canonical_ids": "⿰木規", + "expanded_ids": "⿰木⿰⿻一大⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "大", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槼", + "codepoint": "U+69FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69FC", + "status": "exact_ids", + "ids": "⿱規木", + "canonical_ids": "⿱規木", + "expanded_ids": "⿱⿰⿻一大⿱目儿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "大", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槽", + "codepoint": "U+69FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69FD", + "status": "exact_ids", + "ids": "⿰木曹", + "canonical_ids": "⿰木曹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "曹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槾", + "codepoint": "U+69FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69FE", + "status": "exact_ids", + "ids": "⿰木曼", + "canonical_ids": "⿰木曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "槿", + "codepoint": "U+69FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-69FF", + "status": "exact_ids", + "ids": "⿰木堇", + "canonical_ids": "⿰木堇", + "expanded_ids": "⿰木堇", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樀", + "codepoint": "U+6A00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A00", + "status": "exact_ids", + "ids": "⿰木啇", + "canonical_ids": "⿰木啇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樁", + "codepoint": "U+6A01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A01", + "status": "exact_ids", + "ids": "⿰木舂", + "canonical_ids": "⿰木舂", + "expanded_ids": "⿰木⿱𡗗臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "臼", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樂", + "codepoint": "U+6A02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A02", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樃", + "codepoint": "U+6A03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A03", + "status": "exact_ids", + "ids": "⿰木朗", + "canonical_ids": "⿰木朗", + "expanded_ids": "⿰木⿰⿻丶艮月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "月", + "木", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樄", + "codepoint": "U+6A04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A04", + "status": "exact_ids", + "ids": "⿰木陳", + "canonical_ids": "⿰木陳", + "expanded_ids": "⿰木⿰阝⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樅", + "codepoint": "U+6A05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A05", + "status": "exact_ids", + "ids": "⿰木從", + "canonical_ids": "⿰木從", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "從" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樆", + "codepoint": "U+6A06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A06", + "status": "exact_ids", + "ids": "⿰木离", + "canonical_ids": "⿰木离", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "木", + "禸" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樇", + "codepoint": "U+6A07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A07", + "status": "exact_ids", + "ids": "⿰木脩", + "canonical_ids": "⿰木脩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "脩" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樈", + "codepoint": "U+6A08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A08", + "status": "exact_ids", + "ids": "⿰木竟", + "canonical_ids": "⿰木竟", + "expanded_ids": "⿰木⿱立⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "木", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樉", + "codepoint": "U+6A09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A09", + "status": "exact_ids", + "ids": "⿰木爽", + "canonical_ids": "⿰木爽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "木" + ], + "unresolved_leaves": [ + "㸚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樊", + "codepoint": "U+6A0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A0A", + "status": "exact_ids", + "ids": "⿱棥大", + "canonical_ids": "⿱棥大", + "expanded_ids": "⿱⿲木⿱乂乂木大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樋", + "codepoint": "U+6A0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A0B", + "status": "exact_ids", + "ids": "⿰木通", + "canonical_ids": "⿰木通", + "expanded_ids": "⿰木⿰辶⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "木", + "辶", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樌", + "codepoint": "U+6A0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A0C", + "status": "exact_ids", + "ids": "⿰木貫", + "canonical_ids": "⿰木貫", + "expanded_ids": "⿰木⿱毌⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "木", + "毌", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樍", + "codepoint": "U+6A0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A0D", + "status": "exact_ids", + "ids": "⿰木責", + "canonical_ids": "⿰木責", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "木", + "目" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樎", + "codepoint": "U+6A0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A0E", + "status": "exact_ids", + "ids": "⿰木宿", + "canonical_ids": "⿰木宿", + "expanded_ids": "⿰木⿱宀⿰亻⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "亻", + "宀", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樏", + "codepoint": "U+6A0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A0F", + "status": "exact_ids", + "ids": "⿰木累", + "canonical_ids": "⿰木累", + "expanded_ids": "⿰木⿱田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樐", + "codepoint": "U+6A10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A10", + "status": "exact_ids", + "ids": "⿰木鹵", + "canonical_ids": "⿰木鹵", + "expanded_ids": "⿰木鹵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "鹵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樑", + "codepoint": "U+6A11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A11", + "status": "exact_ids", + "ids": "⿰木梁", + "canonical_ids": "⿰木梁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "梁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樒", + "codepoint": "U+6A12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A12", + "status": "exact_ids", + "ids": "⿰木密", + "canonical_ids": "⿰木密", + "expanded_ids": "⿰木⿱⿱宀⿻心丿山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "宀", + "山", + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樓", + "codepoint": "U+6A13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A13", + "status": "exact_ids", + "ids": "⿰木婁", + "canonical_ids": "⿰木婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樔", + "codepoint": "U+6A14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A14", + "status": "exact_ids", + "ids": "⿰木巢", + "canonical_ids": "⿰木巢", + "expanded_ids": "⿰木⿱巛⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樕", + "codepoint": "U+6A15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A15", + "status": "exact_ids", + "ids": "⿰木欶", + "canonical_ids": "⿰木欶", + "expanded_ids": "⿰木⿰⿻木口欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樖", + "codepoint": "U+6A16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A16", + "status": "exact_ids", + "ids": "⿱合柯", + "canonical_ids": "⿱合柯", + "expanded_ids": "⿱⿱⿱人一口⿰木⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "人", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樗", + "codepoint": "U+6A17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A17", + "status": "exact_ids", + "ids": "⿰木雩", + "canonical_ids": "⿰木雩", + "expanded_ids": "⿰木⿱雨⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "木", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樘", + "codepoint": "U+6A18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A18", + "status": "exact_ids", + "ids": "⿰木堂", + "canonical_ids": "⿰木堂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "木" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "標", + "codepoint": "U+6A19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A19", + "status": "exact_ids", + "ids": "⿰木票", + "canonical_ids": "⿰木票", + "expanded_ids": "⿰木⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "木", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樚", + "codepoint": "U+6A1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A1A", + "status": "exact_ids", + "ids": "⿰木鹿", + "canonical_ids": "⿰木鹿", + "expanded_ids": "⿰木鹿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樛", + "codepoint": "U+6A1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A1B", + "status": "exact_ids", + "ids": "⿰木翏", + "canonical_ids": "⿰木翏", + "expanded_ids": "⿰木⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樜", + "codepoint": "U+6A1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A1C", + "status": "exact_ids", + "ids": "⿰木庶", + "canonical_ids": "⿰木庶", + "expanded_ids": "⿰木⿱广⿱廿火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "廿", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樝", + "codepoint": "U+6A1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A1D", + "status": "exact_ids", + "ids": "⿰木虘", + "canonical_ids": "⿰木虘", + "expanded_ids": "⿰木⿱虍且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "木", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樞", + "codepoint": "U+6A1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A1E", + "status": "exact_ids", + "ids": "⿰木區", + "canonical_ids": "⿰木區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樟", + "codepoint": "U+6A1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A1F", + "status": "exact_ids", + "ids": "⿰木章", + "canonical_ids": "⿰木章", + "expanded_ids": "⿰木⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "木", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樠", + "codepoint": "U+6A20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A20", + "status": "exact_ids", + "ids": "⿰木㒼", + "canonical_ids": "⿰木㒼", + "expanded_ids": "⿰木⿱艹⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "模", + "codepoint": "U+6A21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A21", + "status": "exact_ids", + "ids": "⿰木莫", + "canonical_ids": "⿰木莫", + "expanded_ids": "⿰木⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樢", + "codepoint": "U+6A22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A22", + "status": "exact_ids", + "ids": "⿰木鳥", + "canonical_ids": "⿰木鳥", + "expanded_ids": "⿰木鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樣", + "codepoint": "U+6A23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A23", + "status": "exact_ids", + "ids": "⿰木羕", + "canonical_ids": "⿰木羕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "羕" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樤", + "codepoint": "U+6A24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A24", + "status": "exact_ids", + "ids": "⿰木條", + "canonical_ids": "⿰木條", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "條" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樥", + "codepoint": "U+6A25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A25", + "status": "exact_ids", + "ids": "⿰木莑", + "canonical_ids": "⿰木莑", + "expanded_ids": "⿰木⿱艹⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樦", + "codepoint": "U+6A26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A26", + "status": "exact_ids", + "ids": "⿰木䇠", + "canonical_ids": "⿰木䇠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "木", + "王" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樧", + "codepoint": "U+6A27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A27", + "status": "exact_ids", + "ids": "⿰木殺", + "canonical_ids": "⿰木殺", + "expanded_ids": "⿰木⿰⿱乂朩⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "几", + "又", + "木", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [ + "榝" + ] + }, + { + "character": "樨", + "codepoint": "U+6A28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A28", + "status": "exact_ids", + "ids": "⿰木犀", + "canonical_ids": "⿰木犀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "犀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "権", + "codepoint": "U+6A29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A29", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "横", + "codepoint": "U+6A2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A2A", + "status": "exact_ids", + "ids": "⿰木黄", + "canonical_ids": "⿰木黄", + "expanded_ids": "⿰木黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樫", + "codepoint": "U+6A2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A2B", + "status": "exact_ids", + "ids": "⿰木堅", + "canonical_ids": "⿰木堅", + "expanded_ids": "⿰木⿱⿰臣又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "土", + "木", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樬", + "codepoint": "U+6A2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A2C", + "status": "exact_ids", + "ids": "⿰木悤", + "canonical_ids": "⿰木悤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "木" + ], + "unresolved_leaves": [ + "囱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樭", + "codepoint": "U+6A2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A2D", + "status": "exact_ids", + "ids": "⿰木基", + "canonical_ids": "⿰木基", + "expanded_ids": "⿰木⿱其土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樮", + "codepoint": "U+6A2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A2E", + "status": "exact_ids", + "ids": "⿰木䙳", + "canonical_ids": "⿰木䙳", + "expanded_ids": "⿰木⿱覀火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "火", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樯", + "codepoint": "U+6A2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A2F", + "status": "exact_ids", + "ids": "⿰木啬", + "canonical_ids": "⿰木啬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "啬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樰", + "codepoint": "U+6A30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A30", + "status": "exact_ids", + "ids": "⿰木雪", + "canonical_ids": "⿰木雪", + "expanded_ids": "⿰木⿱雨彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "木", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樱", + "codepoint": "U+6A31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A31", + "status": "exact_ids", + "ids": "⿰木婴", + "canonical_ids": "⿰木婴", + "expanded_ids": "⿰木⿱⿰⿻冂人⿻冂人女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樲", + "codepoint": "U+6A32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A32", + "status": "exact_ids", + "ids": "⿰木貳", + "canonical_ids": "⿰木貳", + "expanded_ids": "⿰木⿱⿱弋二⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "八", + "弋", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樳", + "codepoint": "U+6A33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A33", + "status": "exact_ids", + "ids": "⿰木尋", + "canonical_ids": "⿰木尋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "尋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樴", + "codepoint": "U+6A34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A34", + "status": "exact_ids", + "ids": "⿰木戠", + "canonical_ids": "⿰木戠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "立" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樵", + "codepoint": "U+6A35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A35", + "status": "exact_ids", + "ids": "⿰木焦", + "canonical_ids": "⿰木焦", + "expanded_ids": "⿰木⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "灬", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樶", + "codepoint": "U+6A36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A36", + "status": "exact_ids", + "ids": "⿰木最", + "canonical_ids": "⿰木最", + "expanded_ids": "⿰木⿱曰⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "曰", + "木", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樷", + "codepoint": "U+6A37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A37", + "status": "exact_ids", + "ids": "⿱⿰木木取", + "canonical_ids": "⿱⿰木木取", + "expanded_ids": "⿱⿰木木⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "木", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樸", + "codepoint": "U+6A38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A38", + "status": "exact_ids", + "ids": "⿰木菐", + "canonical_ids": "⿰木菐", + "expanded_ids": "⿰木⿱业⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "儿", + "木", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樹", + "codepoint": "U+6A39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A39", + "status": "exact_ids", + "ids": "⿰木尌", + "canonical_ids": "⿰木尌", + "expanded_ids": "⿰木⿰⿱十豆寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "寸", + "木", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樺", + "codepoint": "U+6A3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A3A", + "status": "exact_ids", + "ids": "⿰木華", + "canonical_ids": "⿰木華", + "expanded_ids": "⿰木⿱艹𠦒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "艹", + "𠦒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樻", + "codepoint": "U+6A3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A3B", + "status": "exact_ids", + "ids": "⿰木貴", + "canonical_ids": "⿰木貴", + "expanded_ids": "⿰木⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樼", + "codepoint": "U+6A3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A3C", + "status": "exact_ids", + "ids": "⿰木孱", + "canonical_ids": "⿰木孱", + "expanded_ids": "⿰木⿱尸⿱子⿰子子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "尸", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樽", + "codepoint": "U+6A3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A3D", + "status": "exact_ids", + "ids": "⿰木尊", + "canonical_ids": "⿰木尊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "寸", + "木" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樾", + "codepoint": "U+6A3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A3E", + "status": "exact_ids", + "ids": "⿰木越", + "canonical_ids": "⿰木越", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "土", + "木", + "龰" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "樿", + "codepoint": "U+6A3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A3F", + "status": "exact_ids", + "ids": "⿰木單", + "canonical_ids": "⿰木單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橀", + "codepoint": "U+6A40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A40", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橁", + "codepoint": "U+6A41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A41", + "status": "exact_ids", + "ids": "⿰木筍", + "canonical_ids": "⿰木筍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "亇", + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橂", + "codepoint": "U+6A42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A42", + "status": "exact_ids", + "ids": "⿰木奠", + "canonical_ids": "⿰木奠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "大", + "木" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橃", + "codepoint": "U+6A43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A43", + "status": "exact_ids", + "ids": "⿰木發", + "canonical_ids": "⿰木發", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "發" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橄", + "codepoint": "U+6A44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A44", + "status": "exact_ids", + "ids": "⿰木敢", + "canonical_ids": "⿰木敢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "敢" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橅", + "codepoint": "U+6A45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A45", + "status": "exact_ids", + "ids": "⿰木無", + "canonical_ids": "⿰木無", + "expanded_ids": "⿰木無", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "無" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橆", + "codepoint": "U+6A46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A46", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橇", + "codepoint": "U+6A47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A47", + "status": "exact_ids", + "ids": "⿰木毳", + "canonical_ids": "⿰木毳", + "expanded_ids": "⿰木⿱毛⿰毛毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橈", + "codepoint": "U+6A48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A48", + "status": "exact_ids", + "ids": "⿰木堯", + "canonical_ids": "⿰木堯", + "expanded_ids": "⿰木⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橉", + "codepoint": "U+6A49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A49", + "status": "exact_ids", + "ids": "⿰木粦", + "canonical_ids": "⿰木粦", + "expanded_ids": "⿰木⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橊", + "codepoint": "U+6A4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A4A", + "status": "exact_ids", + "ids": "⿰木畱", + "canonical_ids": "⿰木畱", + "expanded_ids": "⿰木⿱丣田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丣", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橋", + "codepoint": "U+6A4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A4B", + "status": "exact_ids", + "ids": "⿰木喬", + "canonical_ids": "⿰木喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "木" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橌", + "codepoint": "U+6A4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A4C", + "status": "exact_ids", + "ids": "⿰木閒", + "canonical_ids": "⿰木閒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "閒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橍", + "codepoint": "U+6A4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A4D", + "status": "exact_ids", + "ids": "⿰木閏", + "canonical_ids": "⿰木閏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "閏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橎", + "codepoint": "U+6A4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A4E", + "status": "exact_ids", + "ids": "⿰木番", + "canonical_ids": "⿰木番", + "expanded_ids": "⿰木⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橏", + "codepoint": "U+6A4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A4F", + "status": "exact_ids", + "ids": "⿰木善", + "canonical_ids": "⿰木善", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "善" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橐", + "codepoint": "U+6A50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A50", + "status": "leaf_self_fallback", + "ids": "橐", + "canonical_ids": "橐", + "expanded_ids": "橐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "橐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橑", + "codepoint": "U+6A51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A51", + "status": "exact_ids", + "ids": "⿰木尞", + "canonical_ids": "⿰木尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "木" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橒", + "codepoint": "U+6A52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A52", + "status": "exact_ids", + "ids": "⿰木雲", + "canonical_ids": "⿰木雲", + "expanded_ids": "⿰木⿱雨⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "木", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橓", + "codepoint": "U+6A53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A53", + "status": "exact_ids", + "ids": "⿰木舜", + "canonical_ids": "⿰木舜", + "expanded_ids": "⿰木⿳爫冖⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "冖", + "夕", + "木", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橔", + "codepoint": "U+6A54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A54", + "status": "exact_ids", + "ids": "⿰木敦", + "canonical_ids": "⿰木敦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "木" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橕", + "codepoint": "U+6A55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A55", + "status": "exact_ids", + "ids": "⿰木牚", + "canonical_ids": "⿰木牚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "木", + "牙" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橖", + "codepoint": "U+6A56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A56", + "status": "exact_ids", + "ids": "⿰木棠", + "canonical_ids": "⿰木棠", + "expanded_ids": "⿰木⿳小冖⿱口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "口", + "小", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橗", + "codepoint": "U+6A57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A57", + "status": "exact_ids", + "ids": "⿰木萌", + "canonical_ids": "⿰木萌", + "expanded_ids": "⿰木⿱艹⿰日月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "月", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橘", + "codepoint": "U+6A58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A58", + "status": "exact_ids", + "ids": "⿰木矞", + "canonical_ids": "⿰木矞", + "expanded_ids": "⿰木⿱矛⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "木", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橙", + "codepoint": "U+6A59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A59", + "status": "exact_ids", + "ids": "⿰木登", + "canonical_ids": "⿰木登", + "expanded_ids": "⿰木⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "癶", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橚", + "codepoint": "U+6A5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A5A", + "status": "exact_ids", + "ids": "⿰木肅", + "canonical_ids": "⿰木肅", + "expanded_ids": "⿰木⿻肀𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "肀", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橛", + "codepoint": "U+6A5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A5B", + "status": "exact_ids", + "ids": "⿰木厥", + "canonical_ids": "⿰木厥", + "expanded_ids": "⿰木⿱厂⿰⿱䒑屮欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "厂", + "屮", + "木", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橜", + "codepoint": "U+6A5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A5C", + "status": "exact_ids", + "ids": "⿱厥木", + "canonical_ids": "⿱厥木", + "expanded_ids": "⿱⿱厂⿰⿱䒑屮欠木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "厂", + "屮", + "木", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橝", + "codepoint": "U+6A5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A5D", + "status": "exact_ids", + "ids": "⿰木覃", + "canonical_ids": "⿰木覃", + "expanded_ids": "⿰木⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "木", + "襾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橞", + "codepoint": "U+6A5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A5E", + "status": "exact_ids", + "ids": "⿰木惠", + "canonical_ids": "⿰木惠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "心", + "木" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "機", + "codepoint": "U+6A5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A5F", + "status": "exact_ids", + "ids": "⿰木幾", + "canonical_ids": "⿰木幾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "木" + ], + "unresolved_leaves": [ + "戍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橠", + "codepoint": "U+6A60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A60", + "status": "exact_ids", + "ids": "⿰木袲", + "canonical_ids": "⿰木袲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "袲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橡", + "codepoint": "U+6A61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A61", + "status": "exact_ids", + "ids": "⿰木象", + "canonical_ids": "⿰木象", + "expanded_ids": "⿰木象", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "象" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橢", + "codepoint": "U+6A62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A62", + "status": "exact_ids", + "ids": "⿰木隋", + "canonical_ids": "⿰木隋", + "expanded_ids": "⿰木⿰阝⿱⿱牛一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "月", + "木", + "牛", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橣", + "codepoint": "U+6A63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A63", + "status": "exact_ids", + "ids": "⿰木甯", + "canonical_ids": "⿰木甯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "甯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橤", + "codepoint": "U+6A64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A64", + "status": "exact_ids", + "ids": "⿱惢木", + "canonical_ids": "⿱惢木", + "expanded_ids": "⿱⿱心⿰心心木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橥", + "codepoint": "U+6A65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A65", + "status": "exact_ids", + "ids": "⿱猪木", + "canonical_ids": "⿱猪木", + "expanded_ids": "⿱⿰犭⿱⿻土丿日木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "木", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橦", + "codepoint": "U+6A66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A66", + "status": "exact_ids", + "ids": "⿰木童", + "canonical_ids": "⿰木童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橧", + "codepoint": "U+6A67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A67", + "status": "exact_ids", + "ids": "⿰木曾", + "canonical_ids": "⿰木曾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橨", + "codepoint": "U+6A68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A68", + "status": "exact_ids", + "ids": "⿰木賁", + "canonical_ids": "⿰木賁", + "expanded_ids": "⿰木⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "廾", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橩", + "codepoint": "U+6A69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A69", + "status": "exact_ids", + "ids": "⿰木焭", + "canonical_ids": "⿰木焭", + "expanded_ids": "⿰木⿳⿰火火冖几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "几", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橪", + "codepoint": "U+6A6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A6A", + "status": "exact_ids", + "ids": "⿰木然", + "canonical_ids": "⿰木然", + "expanded_ids": "⿰木⿱⿰月⿻大丶灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "月", + "木", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橫", + "codepoint": "U+6A6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A6B", + "status": "exact_ids", + "ids": "⿰木黃", + "canonical_ids": "⿰木黃", + "expanded_ids": "⿰木黃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "黃" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橬", + "codepoint": "U+6A6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A6C", + "status": "exact_ids", + "ids": "⿰木朁", + "canonical_ids": "⿰木朁", + "expanded_ids": "⿰木⿱⿰旡旡曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "旡", + "曰", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橭", + "codepoint": "U+6A6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A6D", + "status": "exact_ids", + "ids": "⿰木辜", + "canonical_ids": "⿰木辜", + "expanded_ids": "⿰木⿱⿻十口⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "木", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橮", + "codepoint": "U+6A6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A6E", + "status": "exact_ids", + "ids": "⿰木貿", + "canonical_ids": "⿰木貿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "貿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橯", + "codepoint": "U+6A6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A6F", + "status": "exact_ids", + "ids": "⿰木勞", + "canonical_ids": "⿰木勞", + "expanded_ids": "⿰木⿳⿰火火冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橰", + "codepoint": "U+6A70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A70", + "status": "exact_ids", + "ids": "⿰木臯", + "canonical_ids": "⿰木臯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "臯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橱", + "codepoint": "U+6A71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A71", + "status": "exact_ids", + "ids": "⿰木厨", + "canonical_ids": "⿰木厨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "厨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橲", + "codepoint": "U+6A72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A72", + "status": "exact_ids", + "ids": "⿰木喜", + "canonical_ids": "⿰木喜", + "expanded_ids": "⿰木⿱⿱十豆口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "木", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橳", + "codepoint": "U+6A73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A73", + "status": "exact_ids", + "ids": "⿰木勝", + "canonical_ids": "⿰木勝", + "expanded_ids": "⿰木⿰月⿱龹力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "月", + "木", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橴", + "codepoint": "U+6A74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A74", + "status": "exact_ids", + "ids": "⿰木紫", + "canonical_ids": "⿰木紫", + "expanded_ids": "⿰木⿱⿰止匕⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "小", + "幺", + "木", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橵", + "codepoint": "U+6A75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A75", + "status": "exact_ids", + "ids": "⿰木散", + "canonical_ids": "⿰木散", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "散" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橶", + "codepoint": "U+6A76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A76", + "status": "exact_ids", + "ids": "⿰木戟", + "canonical_ids": "⿰木戟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "戟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橷", + "codepoint": "U+6A77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A77", + "status": "exact_ids", + "ids": "⿰木兠", + "canonical_ids": "⿰木兠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "兠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橸", + "codepoint": "U+6A78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A78", + "status": "exact_ids", + "ids": "⿰木晶", + "canonical_ids": "⿰木晶", + "expanded_ids": "⿰木⿱日⿰日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橹", + "codepoint": "U+6A79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A79", + "status": "exact_ids", + "ids": "⿰木鲁", + "canonical_ids": "⿰木鲁", + "expanded_ids": "⿰木⿱鱼日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橺", + "codepoint": "U+6A7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A7A", + "status": "exact_ids", + "ids": "⿰木間", + "canonical_ids": "⿰木間", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "間" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橻", + "codepoint": "U+6A7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A7B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橼", + "codepoint": "U+6A7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A7C", + "status": "exact_ids", + "ids": "⿰木缘", + "canonical_ids": "⿰木缘", + "expanded_ids": "⿰木⿰纟⿱彑𧰨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "木", + "纟", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橽", + "codepoint": "U+6A7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A7D", + "status": "exact_ids", + "ids": "⿰木達", + "canonical_ids": "⿰木達", + "expanded_ids": "⿰木⿰辶⿱土羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "木", + "羊", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橾", + "codepoint": "U+6A7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A7E", + "status": "exact_ids", + "ids": "⿰木喿", + "canonical_ids": "⿰木喿", + "expanded_ids": "⿰木⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "橿", + "codepoint": "U+6A7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A7F", + "status": "exact_ids", + "ids": "⿰木畺", + "canonical_ids": "⿰木畺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田" + ], + "unresolved_leaves": [ + "三" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檀", + "codepoint": "U+6A80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A80", + "status": "exact_ids", + "ids": "⿰木亶", + "canonical_ids": "⿰木亶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "日", + "木" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檁", + "codepoint": "U+6A81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A81", + "status": "exact_ids", + "ids": "⿰木稟", + "canonical_ids": "⿰木稟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亠", + "木" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檂", + "codepoint": "U+6A82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A82", + "status": "exact_ids", + "ids": "⿰木農", + "canonical_ids": "⿰木農", + "expanded_ids": "⿰木⿱曲辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "木", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檃", + "codepoint": "U+6A83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A83", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檄", + "codepoint": "U+6A84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A84", + "status": "exact_ids", + "ids": "⿰木敫", + "canonical_ids": "⿰木敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檅", + "codepoint": "U+6A85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A85", + "status": "exact_ids", + "ids": "⿰木歲", + "canonical_ids": "⿰木歲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "歲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檆", + "codepoint": "U+6A86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A86", + "status": "exact_ids", + "ids": "⿰木煔", + "canonical_ids": "⿰木煔", + "expanded_ids": "⿰木⿰⿱火火⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檇", + "codepoint": "U+6A87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A87", + "status": "exact_ids", + "ids": "⿰木雋", + "canonical_ids": "⿰木雋", + "expanded_ids": "⿰木⿱隹弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "木", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檈", + "codepoint": "U+6A88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A88", + "status": "exact_ids", + "ids": "⿰木睘", + "canonical_ids": "⿰木睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檉", + "codepoint": "U+6A89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A89", + "status": "exact_ids", + "ids": "⿰木聖", + "canonical_ids": "⿰木聖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "王" + ], + "unresolved_leaves": [ + "𦔻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檊", + "codepoint": "U+6A8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A8A", + "status": "exact_ids", + "ids": "⿰木幹", + "canonical_ids": "⿰木幹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "幹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檋", + "codepoint": "U+6A8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A8B", + "status": "exact_ids", + "ids": "⿰木輂", + "canonical_ids": "⿰木輂", + "expanded_ids": "⿰木⿱⿱廿廾車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "木", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檌", + "codepoint": "U+6A8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A8C", + "status": "exact_ids", + "ids": "⿰木罪", + "canonical_ids": "⿰木罪", + "expanded_ids": "⿰木⿱罒非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "罒", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檍", + "codepoint": "U+6A8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A8D", + "status": "exact_ids", + "ids": "⿰木意", + "canonical_ids": "⿰木意", + "expanded_ids": "⿰木⿱⿱立日心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "日", + "木", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檎", + "codepoint": "U+6A8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A8E", + "status": "exact_ids", + "ids": "⿰木禽", + "canonical_ids": "⿰木禽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "人", + "木", + "禸" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檏", + "codepoint": "U+6A8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A8F", + "status": "exact_ids", + "ids": "⿰木業", + "canonical_ids": "⿰木業", + "expanded_ids": "⿰木⿱业⿻羊八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "八", + "木", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檐", + "codepoint": "U+6A90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A90", + "status": "exact_ids", + "ids": "⿰木詹", + "canonical_ids": "⿰木詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檑", + "codepoint": "U+6A91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A91", + "status": "exact_ids", + "ids": "⿰木雷", + "canonical_ids": "⿰木雷", + "expanded_ids": "⿰木⿱雨田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檒", + "codepoint": "U+6A92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A92", + "status": "exact_ids", + "ids": "⿱⿰木木風", + "canonical_ids": "⿱⿰木木風", + "expanded_ids": "⿱⿰木木風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檓", + "codepoint": "U+6A93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A93", + "status": "exact_ids", + "ids": "⿰木毀", + "canonical_ids": "⿰木毀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "毀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檔", + "codepoint": "U+6A94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A94", + "status": "exact_ids", + "ids": "⿰木當", + "canonical_ids": "⿰木當", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "木", + "田" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檕", + "codepoint": "U+6A95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A95", + "status": "exact_ids", + "ids": "⿱𣪠木", + "canonical_ids": "⿱𣪠木", + "expanded_ids": "⿱⿰⿱車凵⿱几又木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "凵", + "又", + "木", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檖", + "codepoint": "U+6A96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A96", + "status": "exact_ids", + "ids": "⿰木遂", + "canonical_ids": "⿰木遂", + "expanded_ids": "⿰木⿰辶⿱八豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "木", + "豕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檗", + "codepoint": "U+6A97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A97", + "status": "exact_ids", + "ids": "⿱辟木", + "canonical_ids": "⿱辟木", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "木", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檘", + "codepoint": "U+6A98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A98", + "status": "exact_ids", + "ids": "⿰木辟", + "canonical_ids": "⿰木辟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "木", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檙", + "codepoint": "U+6A99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A99", + "status": "exact_ids", + "ids": "⿰木鼎", + "canonical_ids": "⿰木鼎", + "expanded_ids": "⿰木鼎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "鼎" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檚", + "codepoint": "U+6A9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A9A", + "status": "exact_ids", + "ids": "⿰木楚", + "canonical_ids": "⿰木楚", + "expanded_ids": "⿰木⿱⿰木木疋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "疋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檛", + "codepoint": "U+6A9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A9B", + "status": "exact_ids", + "ids": "⿰木過", + "canonical_ids": "⿰木過", + "expanded_ids": "⿰木⿰辶⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "木", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檜", + "codepoint": "U+6A9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A9C", + "status": "exact_ids", + "ids": "⿰木會", + "canonical_ids": "⿰木會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "木" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檝", + "codepoint": "U+6A9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A9D", + "status": "exact_ids", + "ids": "⿰木戢", + "canonical_ids": "⿰木戢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "耳" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檞", + "codepoint": "U+6A9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A9E", + "status": "exact_ids", + "ids": "⿰木解", + "canonical_ids": "⿰木解", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "解" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檟", + "codepoint": "U+6A9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6A9F", + "status": "exact_ids", + "ids": "⿰木賈", + "canonical_ids": "⿰木賈", + "expanded_ids": "⿰木⿱覀⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "木", + "目", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檠", + "codepoint": "U+6AA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AA0", + "status": "exact_ids", + "ids": "⿱敬木", + "canonical_ids": "⿱敬木", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "木", + "艹" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檡", + "codepoint": "U+6AA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AA1", + "status": "exact_ids", + "ids": "⿰木睪", + "canonical_ids": "⿰木睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "木", + "罒" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檢", + "codepoint": "U+6AA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AA2", + "status": "exact_ids", + "ids": "⿰木僉", + "canonical_ids": "⿰木僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檣", + "codepoint": "U+6AA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AA3", + "status": "exact_ids", + "ids": "⿰木嗇", + "canonical_ids": "⿰木嗇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "木" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檤", + "codepoint": "U+6AA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AA4", + "status": "exact_ids", + "ids": "⿰木道", + "canonical_ids": "⿰木道", + "expanded_ids": "⿰木⿰辶⿱䒑⿻目丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "丶", + "木", + "目", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檥", + "codepoint": "U+6AA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AA5", + "status": "exact_ids", + "ids": "⿰木義", + "canonical_ids": "⿰木義", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "義" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檦", + "codepoint": "U+6AA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AA6", + "status": "exact_ids", + "ids": "⿰木剽", + "canonical_ids": "⿰木剽", + "expanded_ids": "⿰木⿰⿱覀⿱二小刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "刂", + "小", + "木", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檧", + "codepoint": "U+6AA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AA7", + "status": "exact_ids", + "ids": "⿰木葱", + "canonical_ids": "⿰木葱", + "expanded_ids": "⿰木⿱艹⿱⿻勿丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "勿", + "心", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檨", + "codepoint": "U+6AA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AA8", + "status": "exact_ids", + "ids": "⿰木羡", + "canonical_ids": "⿰木羡", + "expanded_ids": "⿰木⿱羊⿰冫欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "木", + "欠", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檩", + "codepoint": "U+6AA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AA9", + "status": "exact_ids", + "ids": "⿰木禀", + "canonical_ids": "⿰木禀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "禀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檪", + "codepoint": "U+6AAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AAA", + "status": "exact_ids", + "ids": "⿰木楽", + "canonical_ids": "⿰木楽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "楽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檫", + "codepoint": "U+6AAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AAB", + "status": "exact_ids", + "ids": "⿰木察", + "canonical_ids": "⿰木察", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "木" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檬", + "codepoint": "U+6AAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AAC", + "status": "exact_ids", + "ids": "⿰木蒙", + "canonical_ids": "⿰木蒙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "艹", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檭", + "codepoint": "U+6AAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AAD", + "status": "exact_ids", + "ids": "⿰木銀", + "canonical_ids": "⿰木銀", + "expanded_ids": "⿰木⿰金艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "艮", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檮", + "codepoint": "U+6AAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AAE", + "status": "exact_ids", + "ids": "⿰木壽", + "canonical_ids": "⿰木壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檯", + "codepoint": "U+6AAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AAF", + "status": "exact_ids", + "ids": "⿰木臺", + "canonical_ids": "⿰木臺", + "expanded_ids": "⿰木⿳⿱士口冖⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冖", + "厶", + "口", + "土", + "士", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 251, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檰", + "codepoint": "U+6AB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AB0", + "status": "exact_ids", + "ids": "⿰木綿", + "canonical_ids": "⿰木綿", + "expanded_ids": "⿰木⿰⿻幺小⿱⿻日丶⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丶", + "冂", + "小", + "幺", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檱", + "codepoint": "U+6AB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AB1", + "status": "exact_ids", + "ids": "⿰木箕", + "canonical_ids": "⿰木箕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "木" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檲", + "codepoint": "U+6AB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AB2", + "status": "exact_ids", + "ids": "⿰木團", + "canonical_ids": "⿰木團", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "團" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檳", + "codepoint": "U+6AB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AB3", + "status": "exact_ids", + "ids": "⿰木賓", + "canonical_ids": "⿰木賓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檴", + "codepoint": "U+6AB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AB4", + "status": "exact_ids", + "ids": "⿰木蒦", + "canonical_ids": "⿰木蒦", + "expanded_ids": "⿰木⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "木", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檵", + "codepoint": "U+6AB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AB5", + "status": "exact_ids", + "ids": "⿰木㡭", + "canonical_ids": "⿰木㡭", + "expanded_ids": "⿰木⿱⿰𠃊⿰幺幺⿰𠃊⿰幺幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "木", + "𠃊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 272, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檶", + "codepoint": "U+6AB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AB6", + "status": "exact_ids", + "ids": "⿰木奩", + "canonical_ids": "⿰木奩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "木" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檷", + "codepoint": "U+6AB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AB7", + "status": "exact_ids", + "ids": "⿰木爾", + "canonical_ids": "⿰木爾", + "expanded_ids": "⿰木爾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "爾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檸", + "codepoint": "U+6AB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AB8", + "status": "exact_ids", + "ids": "⿰木寧", + "canonical_ids": "⿰木寧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "木" + ], + "unresolved_leaves": [ + "寍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檹", + "codepoint": "U+6AB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AB9", + "status": "exact_ids", + "ids": "⿰木旖", + "canonical_ids": "⿰木旖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "旖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檺", + "codepoint": "U+6ABA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ABA", + "status": "exact_ids", + "ids": "⿰木豪", + "canonical_ids": "⿰木豪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "豪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檻", + "codepoint": "U+6ABB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ABB", + "status": "exact_ids", + "ids": "⿰木監", + "canonical_ids": "⿰木監", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檼", + "codepoint": "U+6ABC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ABC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檽", + "codepoint": "U+6ABD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ABD", + "status": "exact_ids", + "ids": "⿰木需", + "canonical_ids": "⿰木需", + "expanded_ids": "⿰木⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檾", + "codepoint": "U+6ABE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ABE", + "status": "exact_ids", + "ids": "⿳炏冖林", + "canonical_ids": "⿳炏冖林", + "expanded_ids": "⿳⿰火火冖⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "檿", + "codepoint": "U+6ABF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ABF", + "status": "exact_ids", + "ids": "⿱厭木", + "canonical_ids": "⿱厭木", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "大", + "月", + "木" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫀", + "codepoint": "U+6AC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AC0", + "status": "exact_ids", + "ids": "⿰木綦", + "canonical_ids": "⿰木綦", + "expanded_ids": "⿰木⿱其⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "小", + "幺", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫁", + "codepoint": "U+6AC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AC1", + "status": "exact_ids", + "ids": "⿰木蜜", + "canonical_ids": "⿰木蜜", + "expanded_ids": "⿰木⿱⿱宀⿻心丿虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "宀", + "心", + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫂", + "codepoint": "U+6AC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AC2", + "status": "exact_ids", + "ids": "⿰木翟", + "canonical_ids": "⿰木翟", + "expanded_ids": "⿰木⿱⿰习习隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "木", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫃", + "codepoint": "U+6AC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AC3", + "status": "exact_ids", + "ids": "⿰木匱", + "canonical_ids": "⿰木匱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "匱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫄", + "codepoint": "U+6AC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AC4", + "status": "exact_ids", + "ids": "⿰木熏", + "canonical_ids": "⿰木熏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "熏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫅", + "codepoint": "U+6AC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AC5", + "status": "exact_ids", + "ids": "⿰木齊", + "canonical_ids": "⿰木齊", + "expanded_ids": "⿰木齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫆", + "codepoint": "U+6AC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AC6", + "status": "exact_ids", + "ids": "⿰木魁", + "canonical_ids": "⿰木魁", + "expanded_ids": "⿰木⿰鬼斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斗", + "木", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫇", + "codepoint": "U+6AC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AC7", + "status": "exact_ids", + "ids": "⿰木頗", + "canonical_ids": "⿰木頗", + "expanded_ids": "⿰木⿰皮⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "木", + "皮", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫈", + "codepoint": "U+6AC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AC8", + "status": "exact_ids", + "ids": "⿰木凳", + "canonical_ids": "⿰木凳", + "expanded_ids": "⿰木⿱⿱癶豆几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "木", + "癶", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫉", + "codepoint": "U+6AC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AC9", + "status": "exact_ids", + "ids": "⿰木㕑", + "canonical_ids": "⿰木㕑", + "expanded_ids": "⿰木⿱厂⿰⿱十豆寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "厂", + "寸", + "木", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫊", + "codepoint": "U+6ACA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ACA", + "status": "exact_ids", + "ids": "⿰木閣", + "canonical_ids": "⿰木閣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "閣" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫋", + "codepoint": "U+6ACB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ACB", + "status": "exact_ids", + "ids": "⿰木臱", + "canonical_ids": "⿰木臱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "臱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫌", + "codepoint": "U+6ACC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ACC", + "status": "exact_ids", + "ids": "⿰木憂", + "canonical_ids": "⿰木憂", + "expanded_ids": "⿰木⿳⿻一⿻日丶冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "冖", + "夊", + "心", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 251, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫍", + "codepoint": "U+6ACD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ACD", + "status": "exact_ids", + "ids": "⿰木質", + "canonical_ids": "⿰木質", + "expanded_ids": "⿰木⿱⿰斤斤⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "斤", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫎", + "codepoint": "U+6ACE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ACE", + "status": "exact_ids", + "ids": "⿰木廣", + "canonical_ids": "⿰木廣", + "expanded_ids": "⿰木⿱广黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "木", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫏", + "codepoint": "U+6ACF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ACF", + "status": "exact_ids", + "ids": "⿰木遷", + "canonical_ids": "⿰木遷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "遷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫐", + "codepoint": "U+6AD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AD0", + "status": "exact_ids", + "ids": "⿱畾木", + "canonical_ids": "⿱畾木", + "expanded_ids": "⿱⿱田⿰田田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫑", + "codepoint": "U+6AD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AD1", + "status": "exact_ids", + "ids": "⿰木畾", + "canonical_ids": "⿰木畾", + "expanded_ids": "⿰木⿱田⿰田田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫒", + "codepoint": "U+6AD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AD2", + "status": "exact_ids", + "ids": "⿰木蔡", + "canonical_ids": "⿰木蔡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "艹" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫓", + "codepoint": "U+6AD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AD3", + "status": "exact_ids", + "ids": "⿰木魯", + "canonical_ids": "⿰木魯", + "expanded_ids": "⿰木⿱魚日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫔", + "codepoint": "U+6AD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AD4", + "status": "exact_ids", + "ids": "⿰木厲", + "canonical_ids": "⿰木厲", + "expanded_ids": "⿰木⿱厂⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "木", + "田", + "禸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫕", + "codepoint": "U+6AD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AD5", + "status": "exact_ids", + "ids": "⿰木賛", + "canonical_ids": "⿰木賛", + "expanded_ids": "⿰木⿱⿰⿻一大⿻一大⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "大", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫖", + "codepoint": "U+6AD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AD6", + "status": "exact_ids", + "ids": "⿰木慮", + "canonical_ids": "⿰木慮", + "expanded_ids": "⿰木⿱虍⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "木", + "田", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫗", + "codepoint": "U+6AD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AD7", + "status": "exact_ids", + "ids": "⿰木蔑", + "canonical_ids": "⿰木蔑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "目", + "艹" + ], + "unresolved_leaves": [ + "戌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫘", + "codepoint": "U+6AD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AD8", + "status": "exact_ids", + "ids": "⿰木慧", + "canonical_ids": "⿰木慧", + "expanded_ids": "⿰木⿱⿱⿰丰丰彐心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "彐", + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫙", + "codepoint": "U+6AD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AD9", + "status": "exact_ids", + "ids": "⿰木蓲", + "canonical_ids": "⿰木蓲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "艹" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫚", + "codepoint": "U+6ADA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ADA", + "status": "exact_ids", + "ids": "⿰木閭", + "canonical_ids": "⿰木閭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "閭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫛", + "codepoint": "U+6ADB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ADB", + "status": "exact_ids", + "ids": "⿰木節", + "canonical_ids": "⿰木節", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "木", + "艮" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫜", + "codepoint": "U+6ADC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ADC", + "status": "leaf_self_fallback", + "ids": "櫜", + "canonical_ids": "櫜", + "expanded_ids": "櫜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "櫜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫝", + "codepoint": "U+6ADD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ADD", + "status": "exact_ids", + "ids": "⿰木賣", + "canonical_ids": "⿰木賣", + "expanded_ids": "⿰木⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "士", + "木", + "目", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫞", + "codepoint": "U+6ADE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ADE", + "status": "exact_ids", + "ids": "⿰木緣", + "canonical_ids": "⿰木緣", + "expanded_ids": "⿰木⿰⿻幺小⿱彑𧰨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "彑", + "木", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫟", + "codepoint": "U+6ADF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ADF", + "status": "exact_ids", + "ids": "⿰木樂", + "canonical_ids": "⿰木樂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "樂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫠", + "codepoint": "U+6AE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AE0", + "status": "exact_ids", + "ids": "⿰木廢", + "canonical_ids": "⿰木廢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "木" + ], + "unresolved_leaves": [ + "發" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫡", + "codepoint": "U+6AE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AE1", + "status": "exact_ids", + "ids": "⿰木箸", + "canonical_ids": "⿰木箸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "木" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫢", + "codepoint": "U+6AE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AE2", + "status": "exact_ids", + "ids": "⿰木數", + "canonical_ids": "⿰木數", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "木" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫣", + "codepoint": "U+6AE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AE3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫤", + "codepoint": "U+6AE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AE4", + "status": "exact_ids", + "ids": "⿰木箭", + "canonical_ids": "⿰木箭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "月", + "木", + "止" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫥", + "codepoint": "U+6AE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AE5", + "status": "exact_ids", + "ids": "⿰木廚", + "canonical_ids": "⿰木廚", + "expanded_ids": "⿰木⿱广⿰⿱十豆寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "寸", + "广", + "木", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫦", + "codepoint": "U+6AE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AE6", + "status": "exact_ids", + "ids": "⿰木慶", + "canonical_ids": "⿰木慶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "慶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫧", + "codepoint": "U+6AE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AE7", + "status": "exact_ids", + "ids": "⿰木諸", + "canonical_ids": "⿰木諸", + "expanded_ids": "⿰木⿰言⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "木", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫨", + "codepoint": "U+6AE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AE8", + "status": "exact_ids", + "ids": "⿰木盧", + "canonical_ids": "⿰木盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "皿" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫩", + "codepoint": "U+6AE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AE9", + "status": "exact_ids", + "ids": "⿰木閻", + "canonical_ids": "⿰木閻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "閻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫪", + "codepoint": "U+6AEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AEA", + "status": "exact_ids", + "ids": "⿰木歷", + "canonical_ids": "⿰木歷", + "expanded_ids": "⿰木⿱⿱厂⿰⿻丿木⿻丿木止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厂", + "木", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫫", + "codepoint": "U+6AEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AEB", + "status": "exact_ids", + "ids": "⿱豬木", + "canonical_ids": "⿱豬木", + "expanded_ids": "⿱⿰豕⿱⿻土丿日木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "木", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫬", + "codepoint": "U+6AEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AEC", + "status": "exact_ids", + "ids": "⿰木親", + "canonical_ids": "⿰木親", + "expanded_ids": "⿰木⿰⿱立朩⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "木", + "朩", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫭", + "codepoint": "U+6AED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AED", + "status": "exact_ids", + "ids": "⿰木暨", + "canonical_ids": "⿰木暨", + "expanded_ids": "⿰木⿱⿰艮旡⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "旡", + "日", + "木", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫮", + "codepoint": "U+6AEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AEE", + "status": "exact_ids", + "ids": "⿰木噩", + "canonical_ids": "⿰木噩", + "expanded_ids": "⿰木⿻王⿰⿱口口⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫯", + "codepoint": "U+6AEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AEF", + "status": "exact_ids", + "ids": "⿰木穌", + "canonical_ids": "⿰木穌", + "expanded_ids": "⿰木⿰魚⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫰", + "codepoint": "U+6AF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AF0", + "status": "exact_ids", + "ids": "⿰木褱", + "canonical_ids": "⿰木褱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "褱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫱", + "codepoint": "U+6AF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AF1", + "status": "exact_ids", + "ids": "⿱辥木", + "canonical_ids": "⿱辥木", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "木", + "立" + ], + "unresolved_leaves": [ + "𡴎" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫲", + "codepoint": "U+6AF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AF2", + "status": "exact_ids", + "ids": "⿰木豫", + "canonical_ids": "⿰木豫", + "expanded_ids": "⿰木⿰⿱龴⿱一亅象", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "木", + "象", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫳", + "codepoint": "U+6AF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AF3", + "status": "exact_ids", + "ids": "⿰木龍", + "canonical_ids": "⿰木龍", + "expanded_ids": "⿰木龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫴", + "codepoint": "U+6AF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AF4", + "status": "exact_ids", + "ids": "⿰木賴", + "canonical_ids": "⿰木賴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "賴" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫵", + "codepoint": "U+6AF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AF5", + "status": "exact_ids", + "ids": "⿰木蕉", + "canonical_ids": "⿰木蕉", + "expanded_ids": "⿰木⿱艹⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "灬", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫶", + "codepoint": "U+6AF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AF6", + "status": "exact_ids", + "ids": "⿰木憲", + "canonical_ids": "⿰木憲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "憲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫷", + "codepoint": "U+6AF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AF7", + "status": "exact_ids", + "ids": "⿰木龜", + "canonical_ids": "⿰木龜", + "expanded_ids": "⿰木龜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "龜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫸", + "codepoint": "U+6AF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AF8", + "status": "exact_ids", + "ids": "⿰木舉", + "canonical_ids": "⿰木舉", + "expanded_ids": "⿰木⿱與⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "木", + "與" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫹", + "codepoint": "U+6AF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AF9", + "status": "exact_ids", + "ids": "⿰木蕭", + "canonical_ids": "⿰木蕭", + "expanded_ids": "⿰木⿱艹⿻肀𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "肀", + "艹", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 156, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫺", + "codepoint": "U+6AFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AFA", + "status": "exact_ids", + "ids": "⿰木霝", + "canonical_ids": "⿰木霝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "雨" + ], + "unresolved_leaves": [ + "𠱠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫻", + "codepoint": "U+6AFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AFB", + "status": "exact_ids", + "ids": "⿰木嬰", + "canonical_ids": "⿰木嬰", + "expanded_ids": "⿰木⿱⿰⿱目八⿱目八女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "女", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫼", + "codepoint": "U+6AFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AFC", + "status": "exact_ids", + "ids": "⿰木韱", + "canonical_ids": "⿰木韱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "韱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫽", + "codepoint": "U+6AFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AFD", + "status": "exact_ids", + "ids": "⿱隱木", + "canonical_ids": "⿱隱木", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "隱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫾", + "codepoint": "U+6AFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AFE", + "status": "exact_ids", + "ids": "⿰木繇", + "canonical_ids": "⿰木繇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "繇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "櫿", + "codepoint": "U+6AFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6AFF", + "status": "exact_ids", + "ids": "⿰木營", + "canonical_ids": "⿰木營", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "木", + "火" + ], + "unresolved_leaves": [ + "呂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欀", + "codepoint": "U+6B00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B00", + "status": "exact_ids", + "ids": "⿰木襄", + "canonical_ids": "⿰木襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欁", + "codepoint": "U+6B01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B01", + "status": "exact_ids", + "ids": "⿲木農木", + "canonical_ids": "⿲木農木", + "expanded_ids": "⿲木⿱曲辰木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "木", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欂", + "codepoint": "U+6B02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B02", + "status": "exact_ids", + "ids": "⿰木薄", + "canonical_ids": "⿰木薄", + "expanded_ids": "⿰木⿱艹⿰氵⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "木", + "氵", + "甫", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欃", + "codepoint": "U+6B03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B03", + "status": "exact_ids", + "ids": "⿰木毚", + "canonical_ids": "⿰木毚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "毚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欄", + "codepoint": "U+6B04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B04", + "status": "exact_ids", + "ids": "⿰木闌", + "canonical_ids": "⿰木闌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欅", + "codepoint": "U+6B05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B05", + "status": "exact_ids", + "ids": "⿰木擧", + "canonical_ids": "⿰木擧", + "expanded_ids": "⿰木⿱與手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "手", + "木", + "與" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欆", + "codepoint": "U+6B06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B06", + "status": "exact_ids", + "ids": "⿰木雙", + "canonical_ids": "⿰木雙", + "expanded_ids": "⿰木⿱⿰隹隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "木", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欇", + "codepoint": "U+6B07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B07", + "status": "exact_ids", + "ids": "⿰木聶", + "canonical_ids": "⿰木聶", + "expanded_ids": "⿰木⿱耳⿰耳耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欈", + "codepoint": "U+6B08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B08", + "status": "exact_ids", + "ids": "⿰木巂", + "canonical_ids": "⿰木巂", + "expanded_ids": "⿰木⿱⿱山隹⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "山", + "木", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欉", + "codepoint": "U+6B09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B09", + "status": "exact_ids", + "ids": "⿰木叢", + "canonical_ids": "⿰木叢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "叢" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "權", + "codepoint": "U+6B0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B0A", + "status": "exact_ids", + "ids": "⿰木雚", + "canonical_ids": "⿰木雚", + "expanded_ids": "⿰木⿱艹⿱⿰口口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欋", + "codepoint": "U+6B0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B0B", + "status": "exact_ids", + "ids": "⿰木瞿", + "canonical_ids": "⿰木瞿", + "expanded_ids": "⿰木⿱⿰目目隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欌", + "codepoint": "U+6B0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B0C", + "status": "exact_ids", + "ids": "⿰木藏", + "canonical_ids": "⿰木藏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "艹" + ], + "unresolved_leaves": [ + "臧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欍", + "codepoint": "U+6B0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B0D", + "status": "exact_ids", + "ids": "⿰木舊", + "canonical_ids": "⿰木舊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "舊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欎", + "codepoint": "U+6B0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B0E", + "status": "exact_ids", + "ids": "⿳棥冖𡬠", + "canonical_ids": "⿳棥冖𡬠", + "expanded_ids": "⿳⿲木⿱乂乂木冖⿰艮寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "冖", + "寸", + "木", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 244, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欏", + "codepoint": "U+6B0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B0F", + "status": "exact_ids", + "ids": "⿰木羅", + "canonical_ids": "⿰木羅", + "expanded_ids": "⿰木⿱罒⿰⿻幺小隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "木", + "罒", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欐", + "codepoint": "U+6B10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B10", + "status": "exact_ids", + "ids": "⿰木麗", + "canonical_ids": "⿰木麗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "鹿" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欑", + "codepoint": "U+6B11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B11", + "status": "exact_ids", + "ids": "⿰木贊", + "canonical_ids": "⿰木贊", + "expanded_ids": "⿰木⿱⿰⿱牛儿⿱牛儿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "木", + "牛", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欒", + "codepoint": "U+6B12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B12", + "status": "exact_ids", + "ids": "⿱䜌木", + "canonical_ids": "⿱䜌木", + "expanded_ids": "⿱⿲⿱幺小言⿱幺小木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "木", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欓", + "codepoint": "U+6B13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B13", + "status": "exact_ids", + "ids": "⿰木黨", + "canonical_ids": "⿰木黨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "木", + "黑" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欔", + "codepoint": "U+6B14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B14", + "status": "exact_ids", + "ids": "⿰木矍", + "canonical_ids": "⿰木矍", + "expanded_ids": "⿰木⿱⿰目目⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "木", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欕", + "codepoint": "U+6B15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B15", + "status": "exact_ids", + "ids": "⿰木嚴", + "canonical_ids": "⿰木嚴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木" + ], + "unresolved_leaves": [ + "𠪚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欖", + "codepoint": "U+6B16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B16", + "status": "exact_ids", + "ids": "⿰木覽", + "canonical_ids": "⿰木覽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "覽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欗", + "codepoint": "U+6B17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B17", + "status": "exact_ids", + "ids": "⿰木蘭", + "canonical_ids": "⿰木蘭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "艹" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欘", + "codepoint": "U+6B18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B18", + "status": "exact_ids", + "ids": "⿰木屬", + "canonical_ids": "⿰木屬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "屬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欙", + "codepoint": "U+6B19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B19", + "status": "exact_ids", + "ids": "⿰木纍", + "canonical_ids": "⿰木纍", + "expanded_ids": "⿰木⿱⿱田⿰田田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欚", + "codepoint": "U+6B1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B1A", + "status": "exact_ids", + "ids": "⿰木蠡", + "canonical_ids": "⿰木蠡", + "expanded_ids": "⿰木⿱⿱彑𧰨⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "木", + "虫", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 194, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欛", + "codepoint": "U+6B1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B1B", + "status": "exact_ids", + "ids": "⿰木霸", + "canonical_ids": "⿰木霸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "雨" + ], + "unresolved_leaves": [ + "䩗" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欜", + "codepoint": "U+6B1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B1C", + "status": "exact_ids", + "ids": "⿰木囊", + "canonical_ids": "⿰木囊", + "expanded_ids": "⿰木囊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "囊", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欝", + "codepoint": "U+6B1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B1D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欞", + "codepoint": "U+6B1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B1E", + "status": "exact_ids", + "ids": "⿰木靈", + "canonical_ids": "⿰木靈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "工", + "木", + "雨" + ], + "unresolved_leaves": [ + "𠱠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欟", + "codepoint": "U+6B1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B1F", + "status": "exact_ids", + "ids": "⿰木觀", + "canonical_ids": "⿰木觀", + "expanded_ids": "⿰木⿰⿱艹⿱⿰口口隹⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "木", + "目", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 264, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欠", + "codepoint": "U+6B20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B20", + "status": "leaf_self_fallback", + "ids": "欠", + "canonical_ids": "欠", + "expanded_ids": "欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "次", + "codepoint": "U+6B21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B21", + "status": "exact_ids", + "ids": "⿰冫欠", + "canonical_ids": "⿰冫欠", + "expanded_ids": "⿰冫欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欢", + "codepoint": "U+6B22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B22", + "status": "exact_ids", + "ids": "⿰又欠", + "canonical_ids": "⿰又欠", + "expanded_ids": "⿰又欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欣", + "codepoint": "U+6B23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B23", + "status": "exact_ids", + "ids": "⿰斤欠", + "canonical_ids": "⿰斤欠", + "expanded_ids": "⿰斤欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欤", + "codepoint": "U+6B24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B24", + "status": "exact_ids", + "ids": "⿰与欠", + "canonical_ids": "⿰与欠", + "expanded_ids": "⿰与欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "与", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欥", + "codepoint": "U+6B25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B25", + "status": "exact_ids", + "ids": "⿰日欠", + "canonical_ids": "⿰日欠", + "expanded_ids": "⿰日欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欦", + "codepoint": "U+6B26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B26", + "status": "exact_ids", + "ids": "⿰今欠", + "canonical_ids": "⿰今欠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "欠" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欧", + "codepoint": "U+6B27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B27", + "status": "exact_ids", + "ids": "⿰区欠", + "canonical_ids": "⿰区欠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠" + ], + "unresolved_leaves": [ + "区" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欨", + "codepoint": "U+6B28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B28", + "status": "exact_ids", + "ids": "⿰句欠", + "canonical_ids": "⿰句欠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欩", + "codepoint": "U+6B29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B29", + "status": "exact_ids", + "ids": "⿰召欠", + "canonical_ids": "⿰召欠", + "expanded_ids": "⿰⿱刀口欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欪", + "codepoint": "U+6B2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B2A", + "status": "exact_ids", + "ids": "⿰出欠", + "canonical_ids": "⿰出欠", + "expanded_ids": "⿰⿻屮凵欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欫", + "codepoint": "U+6B2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B2B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欬", + "codepoint": "U+6B2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B2C", + "status": "exact_ids", + "ids": "⿰亥欠", + "canonical_ids": "⿰亥欠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欭", + "codepoint": "U+6B2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B2D", + "status": "exact_ids", + "ids": "⿰因欠", + "canonical_ids": "⿰因欠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欮", + "codepoint": "U+6B2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B2E", + "status": "exact_ids", + "ids": "⿰屰欠", + "canonical_ids": "⿰屰欠", + "expanded_ids": "⿰⿱䒑屮欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "屮", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欯", + "codepoint": "U+6B2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B2F", + "status": "exact_ids", + "ids": "⿰吉欠", + "canonical_ids": "⿰吉欠", + "expanded_ids": "⿰⿱士口欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欰", + "codepoint": "U+6B30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B30", + "status": "exact_ids", + "ids": "⿰血欠", + "canonical_ids": "⿰血欠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠" + ], + "unresolved_leaves": [ + "血" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欱", + "codepoint": "U+6B31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B31", + "status": "exact_ids", + "ids": "⿰合欠", + "canonical_ids": "⿰合欠", + "expanded_ids": "⿰⿱⿱人一口欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欲", + "codepoint": "U+6B32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B32", + "status": "exact_ids", + "ids": "⿰谷欠", + "canonical_ids": "⿰谷欠", + "expanded_ids": "⿰⿱八⿱八口欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欳", + "codepoint": "U+6B33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B33", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欴", + "codepoint": "U+6B34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B34", + "status": "exact_ids", + "ids": "⿰良欠", + "canonical_ids": "⿰良欠", + "expanded_ids": "⿰⿻丶艮欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "欠", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欵", + "codepoint": "U+6B35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B35", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欶", + "codepoint": "U+6B36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B36", + "status": "exact_ids", + "ids": "⿰束欠", + "canonical_ids": "⿰束欠", + "expanded_ids": "⿰⿻木口欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欷", + "codepoint": "U+6B37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B37", + "status": "exact_ids", + "ids": "⿰希欠", + "canonical_ids": "⿰希欠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "欠" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欸", + "codepoint": "U+6B38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B38", + "status": "exact_ids", + "ids": "⿰矣欠", + "canonical_ids": "⿰矣欠", + "expanded_ids": "⿰⿱厶⿱⿻丿一大欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "厶", + "大", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欹", + "codepoint": "U+6B39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B39", + "status": "exact_ids", + "ids": "⿰奇欠", + "canonical_ids": "⿰奇欠", + "expanded_ids": "⿰⿱大⿰口⿱一亅欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欺", + "codepoint": "U+6B3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B3A", + "status": "exact_ids", + "ids": "⿰其欠", + "canonical_ids": "⿰其欠", + "expanded_ids": "⿰其欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欻", + "codepoint": "U+6B3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B3B", + "status": "exact_ids", + "ids": "⿰炎欠", + "canonical_ids": "⿰炎欠", + "expanded_ids": "⿰⿱火火欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欼", + "codepoint": "U+6B3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B3C", + "status": "exact_ids", + "ids": "⿰叕欠", + "canonical_ids": "⿰叕欠", + "expanded_ids": "⿰⿱⿰又又⿰又又欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欽", + "codepoint": "U+6B3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B3D", + "status": "exact_ids", + "ids": "⿰金欠", + "canonical_ids": "⿰金欠", + "expanded_ids": "⿰金欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "款", + "codepoint": "U+6B3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B3E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "欿", + "codepoint": "U+6B3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B3F", + "status": "exact_ids", + "ids": "⿰臽欠", + "canonical_ids": "⿰臽欠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "臼" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歀", + "codepoint": "U+6B40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B40", + "status": "exact_ids", + "ids": "⿰柰欠", + "canonical_ids": "⿰柰欠", + "expanded_ids": "⿰⿱木⿱二小欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "木", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歁", + "codepoint": "U+6B41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B41", + "status": "exact_ids", + "ids": "⿰甚欠", + "canonical_ids": "⿰甚欠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "甘" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歂", + "codepoint": "U+6B42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B42", + "status": "exact_ids", + "ids": "⿰耑欠", + "canonical_ids": "⿰耑欠", + "expanded_ids": "⿰⿱山而欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "欠", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歃", + "codepoint": "U+6B43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B43", + "status": "exact_ids", + "ids": "⿰臿欠", + "canonical_ids": "⿰臿欠", + "expanded_ids": "⿰⿱⿱丿十臼欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "欠", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歄", + "codepoint": "U+6B44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B44", + "status": "exact_ids", + "ids": "⿰咼欠", + "canonical_ids": "⿰咼欠", + "expanded_ids": "⿰⿱冎口欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歅", + "codepoint": "U+6B45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B45", + "status": "exact_ids", + "ids": "⿰垔欠", + "canonical_ids": "⿰垔欠", + "expanded_ids": "⿰⿱覀土欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "欠", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歆", + "codepoint": "U+6B46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B46", + "status": "exact_ids", + "ids": "⿰音欠", + "canonical_ids": "⿰音欠", + "expanded_ids": "⿰⿱立日欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "欠", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歇", + "codepoint": "U+6B47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B47", + "status": "exact_ids", + "ids": "⿰曷欠", + "canonical_ids": "⿰曷欠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "欠" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歈", + "codepoint": "U+6B48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B48", + "status": "exact_ids", + "ids": "⿰俞欠", + "canonical_ids": "⿰俞欠", + "expanded_ids": "⿰⿱⿱人一⿰月刂欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "月", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歉", + "codepoint": "U+6B49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B49", + "status": "exact_ids", + "ids": "⿰兼欠", + "canonical_ids": "⿰兼欠", + "expanded_ids": "⿰兼欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歊", + "codepoint": "U+6B4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B4A", + "status": "exact_ids", + "ids": "⿰高欠", + "canonical_ids": "⿰高欠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歋", + "codepoint": "U+6B4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B4B", + "status": "exact_ids", + "ids": "⿰虒欠", + "canonical_ids": "⿰虒欠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠" + ], + "unresolved_leaves": [ + "虒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歌", + "codepoint": "U+6B4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B4C", + "status": "exact_ids", + "ids": "⿰哥欠", + "canonical_ids": "⿰哥欠", + "expanded_ids": "⿰⿱⿰口⿱一亅⿰口⿱一亅欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歍", + "codepoint": "U+6B4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B4D", + "status": "exact_ids", + "ids": "⿰烏欠", + "canonical_ids": "⿰烏欠", + "expanded_ids": "⿰烏欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "烏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歎", + "codepoint": "U+6B4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B4E", + "status": "exact_ids", + "ids": "⿰堇欠", + "canonical_ids": "⿰堇欠", + "expanded_ids": "⿰堇欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "歏" + ] + }, + { + "character": "歏", + "codepoint": "U+6B4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B4F", + "status": "exact_ids", + "ids": "⿰堇欠", + "canonical_ids": "⿰堇欠", + "expanded_ids": "⿰堇欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "歎" + ] + }, + { + "character": "歐", + "codepoint": "U+6B50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B50", + "status": "exact_ids", + "ids": "⿰區欠", + "canonical_ids": "⿰區欠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歑", + "codepoint": "U+6B51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B51", + "status": "exact_ids", + "ids": "⿰虖欠", + "canonical_ids": "⿰虖欠", + "expanded_ids": "⿰⿱虍乎欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乎", + "欠", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歒", + "codepoint": "U+6B52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B52", + "status": "exact_ids", + "ids": "⿰啇欠", + "canonical_ids": "⿰啇欠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歓", + "codepoint": "U+6B53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B53", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歔", + "codepoint": "U+6B54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B54", + "status": "exact_ids", + "ids": "⿰虚欠", + "canonical_ids": "⿰虚欠", + "expanded_ids": "⿰⿱虍业欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "欠", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歕", + "codepoint": "U+6B55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B55", + "status": "exact_ids", + "ids": "⿰賁欠", + "canonical_ids": "⿰賁欠", + "expanded_ids": "⿰⿱⿱十廾⿱目八欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "廾", + "欠", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歖", + "codepoint": "U+6B56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B56", + "status": "exact_ids", + "ids": "⿰喜欠", + "canonical_ids": "⿰喜欠", + "expanded_ids": "⿰⿱⿱十豆口欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "欠", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歗", + "codepoint": "U+6B57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B57", + "status": "exact_ids", + "ids": "⿰肅欠", + "canonical_ids": "⿰肅欠", + "expanded_ids": "⿰⿻肀𣶒欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "肀", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歘", + "codepoint": "U+6B58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B58", + "status": "exact_ids", + "ids": "⿰焱欠", + "canonical_ids": "⿰焱欠", + "expanded_ids": "⿰⿱火⿰火火欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歙", + "codepoint": "U+6B59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B59", + "status": "exact_ids", + "ids": "⿰翕欠", + "canonical_ids": "⿰翕欠", + "expanded_ids": "⿰⿱⿱⿱人一口⿰习习欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "人", + "口", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歚", + "codepoint": "U+6B5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B5A", + "status": "exact_ids", + "ids": "⿰善欠", + "canonical_ids": "⿰善欠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠" + ], + "unresolved_leaves": [ + "善" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歛", + "codepoint": "U+6B5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B5B", + "status": "exact_ids", + "ids": "⿰僉欠", + "canonical_ids": "⿰僉欠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歜", + "codepoint": "U+6B5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B5C", + "status": "exact_ids", + "ids": "⿰蜀欠", + "canonical_ids": "⿰蜀欠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "罒" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歝", + "codepoint": "U+6B5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B5D", + "status": "exact_ids", + "ids": "⿰睪欠", + "canonical_ids": "⿰睪欠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "欠", + "罒" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歞", + "codepoint": "U+6B5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B5E", + "status": "exact_ids", + "ids": "⿰㬎欠", + "canonical_ids": "⿰㬎欠", + "expanded_ids": "⿰⿱日⿱⿰幺幺灬欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "日", + "欠", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歟", + "codepoint": "U+6B5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B5F", + "status": "exact_ids", + "ids": "⿰與欠", + "canonical_ids": "⿰與欠", + "expanded_ids": "⿰與欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "與" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歠", + "codepoint": "U+6B60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B60", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歡", + "codepoint": "U+6B61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B61", + "status": "exact_ids", + "ids": "⿰雚欠", + "canonical_ids": "⿰雚欠", + "expanded_ids": "⿰⿱艹⿱⿰口口隹欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "欠", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "止", + "codepoint": "U+6B62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B62", + "status": "leaf_self_fallback", + "ids": "止", + "canonical_ids": "止", + "expanded_ids": "止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "正", + "codepoint": "U+6B63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B63", + "status": "exact_ids", + "ids": "⿱一止", + "canonical_ids": "⿱一止", + "expanded_ids": "⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "此", + "codepoint": "U+6B64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B64", + "status": "exact_ids", + "ids": "⿰止匕", + "canonical_ids": "⿰止匕", + "expanded_ids": "⿰止匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "步", + "codepoint": "U+6B65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B65", + "status": "exact_ids", + "ids": "⿱止𣥂", + "canonical_ids": "⿱止𣥂", + "expanded_ids": "⿱止𣥂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止", + "𣥂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 76, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "武", + "codepoint": "U+6B66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B66", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歧", + "codepoint": "U+6B67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B67", + "status": "exact_ids", + "ids": "⿰止支", + "canonical_ids": "⿰止支", + "expanded_ids": "⿰止⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歨", + "codepoint": "U+6B68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B68", + "status": "exact_ids", + "ids": "⿱止止", + "canonical_ids": "⿱止止", + "expanded_ids": "⿱止止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歩", + "codepoint": "U+6B69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B69", + "status": "exact_ids", + "ids": "⿱止少", + "canonical_ids": "⿱止少", + "expanded_ids": "⿱止⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歪", + "codepoint": "U+6B6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B6A", + "status": "exact_ids", + "ids": "⿱不正", + "canonical_ids": "⿱不正", + "expanded_ids": "⿱不⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歫", + "codepoint": "U+6B6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B6B", + "status": "exact_ids", + "ids": "⿰止巨", + "canonical_ids": "⿰止巨", + "expanded_ids": "⿰止巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歬", + "codepoint": "U+6B6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B6C", + "status": "exact_ids", + "ids": "⿱止舟", + "canonical_ids": "⿱止舟", + "expanded_ids": "⿱止舟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歭", + "codepoint": "U+6B6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B6D", + "status": "exact_ids", + "ids": "⿰止寺", + "canonical_ids": "⿰止寺", + "expanded_ids": "⿰止⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歮", + "codepoint": "U+6B6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B6E", + "status": "exact_ids", + "ids": "⿱止⿰止止", + "canonical_ids": "⿱止⿰止止", + "expanded_ids": "⿱止⿰止止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歯", + "codepoint": "U+6B6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B6F", + "status": "leaf_self_fallback", + "ids": "歯", + "canonical_ids": "歯", + "expanded_ids": "歯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "歯" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歰", + "codepoint": "U+6B70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B70", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歱", + "codepoint": "U+6B71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B71", + "status": "exact_ids", + "ids": "⿰止重", + "canonical_ids": "⿰止重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "止" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歲", + "codepoint": "U+6B72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B72", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歳", + "codepoint": "U+6B73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B73", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歴", + "codepoint": "U+6B74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B74", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歵", + "codepoint": "U+6B75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B75", + "status": "exact_ids", + "ids": "⿰止責", + "canonical_ids": "⿰止責", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "止", + "目" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歶", + "codepoint": "U+6B76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B76", + "status": "exact_ids", + "ids": "⿱此禺", + "canonical_ids": "⿱此禺", + "expanded_ids": "⿱⿰止匕⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "止", + "田", + "禸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歷", + "codepoint": "U+6B77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B77", + "status": "exact_ids", + "ids": "⿱厤止", + "canonical_ids": "⿱厤止", + "expanded_ids": "⿱⿱厂⿰⿻丿木⿻丿木止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厂", + "木", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歸", + "codepoint": "U+6B78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B78", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歹", + "codepoint": "U+6B79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B79", + "status": "exact_ids", + "ids": "⿻夕一", + "canonical_ids": "⿻夕一", + "expanded_ids": "⿻夕一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歺", + "codepoint": "U+6B7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B7A", + "status": "exact_ids", + "ids": "⿻卜夕", + "canonical_ids": "⿻卜夕", + "expanded_ids": "⿻卜夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "死", + "codepoint": "U+6B7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B7B", + "status": "exact_ids", + "ids": "⿰歹匕", + "canonical_ids": "⿰歹匕", + "expanded_ids": "⿰⿻夕一匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "匕", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歼", + "codepoint": "U+6B7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B7C", + "status": "exact_ids", + "ids": "⿰歹千", + "canonical_ids": "⿰歹千", + "expanded_ids": "⿰⿻夕一⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "十", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歽", + "codepoint": "U+6B7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B7D", + "status": "exact_ids", + "ids": "⿰歹斤", + "canonical_ids": "⿰歹斤", + "expanded_ids": "⿰⿻夕一斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歾", + "codepoint": "U+6B7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B7E", + "status": "exact_ids", + "ids": "⿰歹勿", + "canonical_ids": "⿰歹勿", + "expanded_ids": "⿰⿻夕一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "歿", + "codepoint": "U+6B7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B7F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殀", + "codepoint": "U+6B80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B80", + "status": "exact_ids", + "ids": "⿰歹夭", + "canonical_ids": "⿰歹夭", + "expanded_ids": "⿰⿻夕一⿱丿大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "夕", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殁", + "codepoint": "U+6B81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B81", + "status": "exact_ids", + "ids": "⿰歹殳", + "canonical_ids": "⿰歹殳", + "expanded_ids": "⿰⿻夕一⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "几", + "又", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殂", + "codepoint": "U+6B82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B82", + "status": "exact_ids", + "ids": "⿰歹且", + "canonical_ids": "⿰歹且", + "expanded_ids": "⿰⿻夕一且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "且", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殃", + "codepoint": "U+6B83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B83", + "status": "exact_ids", + "ids": "⿰歹央", + "canonical_ids": "⿰歹央", + "expanded_ids": "⿰⿻夕一⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冂", + "夕", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殄", + "codepoint": "U+6B84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B84", + "status": "exact_ids", + "ids": "⿰歹㐱", + "canonical_ids": "⿰歹㐱", + "expanded_ids": "⿰⿻夕一⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "夕", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殅", + "codepoint": "U+6B85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B85", + "status": "exact_ids", + "ids": "⿰歹生", + "canonical_ids": "⿰歹生", + "expanded_ids": "⿰⿻夕一⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殆", + "codepoint": "U+6B86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B86", + "status": "exact_ids", + "ids": "⿰歹台", + "canonical_ids": "⿰歹台", + "expanded_ids": "⿰⿻夕一⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "口", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殇", + "codepoint": "U+6B87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B87", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殈", + "codepoint": "U+6B88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B88", + "status": "exact_ids", + "ids": "⿰歹血", + "canonical_ids": "⿰歹血", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕" + ], + "unresolved_leaves": [ + "血" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殉", + "codepoint": "U+6B89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B89", + "status": "exact_ids", + "ids": "⿰歹旬", + "canonical_ids": "⿰歹旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殊", + "codepoint": "U+6B8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B8A", + "status": "exact_ids", + "ids": "⿰歹朱", + "canonical_ids": "⿰歹朱", + "expanded_ids": "⿰⿻夕一⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "夕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "残", + "codepoint": "U+6B8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B8B", + "status": "exact_ids", + "ids": "⿰歹𢦑", + "canonical_ids": "⿰歹𢦑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕" + ], + "unresolved_leaves": [ + "𢦑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殌", + "codepoint": "U+6B8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B8C", + "status": "exact_ids", + "ids": "⿰歹巠", + "canonical_ids": "⿰歹巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殍", + "codepoint": "U+6B8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B8D", + "status": "exact_ids", + "ids": "⿰歹孚", + "canonical_ids": "⿰歹孚", + "expanded_ids": "⿰⿻夕一⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕", + "子", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殎", + "codepoint": "U+6B8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B8E", + "status": "exact_ids", + "ids": "⿰歹夾", + "canonical_ids": "⿰歹夾", + "expanded_ids": "⿰⿻夕一⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "夕", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殏", + "codepoint": "U+6B8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B8F", + "status": "exact_ids", + "ids": "⿰歹求", + "canonical_ids": "⿰歹求", + "expanded_ids": "⿰⿻夕一求", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕", + "求" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殐", + "codepoint": "U+6B90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B90", + "status": "exact_ids", + "ids": "⿰歹束", + "canonical_ids": "⿰歹束", + "expanded_ids": "⿰⿻夕一⿻木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "夕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殑", + "codepoint": "U+6B91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B91", + "status": "exact_ids", + "ids": "⿰歹克", + "canonical_ids": "⿰歹克", + "expanded_ids": "⿰⿻夕一⿱⿻十口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "十", + "口", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殒", + "codepoint": "U+6B92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B92", + "status": "exact_ids", + "ids": "⿰歹员", + "canonical_ids": "⿰歹员", + "expanded_ids": "⿰⿻夕一⿱口⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂", + "口", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殓", + "codepoint": "U+6B93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B93", + "status": "exact_ids", + "ids": "⿰歹佥", + "canonical_ids": "⿰歹佥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕" + ], + "unresolved_leaves": [ + "佥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殔", + "codepoint": "U+6B94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B94", + "status": "exact_ids", + "ids": "⿰歹隶", + "canonical_ids": "⿰歹隶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殕", + "codepoint": "U+6B95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B95", + "status": "exact_ids", + "ids": "⿰歹咅", + "canonical_ids": "⿰歹咅", + "expanded_ids": "⿰⿻夕一⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "夕", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殖", + "codepoint": "U+6B96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B96", + "status": "exact_ids", + "ids": "⿰歹直", + "canonical_ids": "⿰歹直", + "expanded_ids": "⿰⿻夕一⿱⿱十目乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乚", + "十", + "夕", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殗", + "codepoint": "U+6B97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B97", + "status": "exact_ids", + "ids": "⿰歹奄", + "canonical_ids": "⿰歹奄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕", + "大" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殘", + "codepoint": "U+6B98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B98", + "status": "exact_ids", + "ids": "⿰歹戔", + "canonical_ids": "⿰歹戔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殙", + "codepoint": "U+6B99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B99", + "status": "exact_ids", + "ids": "⿰歹昏", + "canonical_ids": "⿰歹昏", + "expanded_ids": "⿰⿻夕一⿱氏日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕", + "日", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殚", + "codepoint": "U+6B9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B9A", + "status": "exact_ids", + "ids": "⿰歹单", + "canonical_ids": "⿰歹单", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕" + ], + "unresolved_leaves": [ + "单" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殛", + "codepoint": "U+6B9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B9B", + "status": "exact_ids", + "ids": "⿰歹亟", + "canonical_ids": "⿰歹亟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕" + ], + "unresolved_leaves": [ + "亟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殜", + "codepoint": "U+6B9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B9C", + "status": "exact_ids", + "ids": "⿰歹枼", + "canonical_ids": "⿰歹枼", + "expanded_ids": "⿰⿻夕一⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "世", + "夕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殝", + "codepoint": "U+6B9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B9D", + "status": "exact_ids", + "ids": "⿰歹秦", + "canonical_ids": "⿰歹秦", + "expanded_ids": "⿰⿻夕一⿱𡗗⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "夕", + "木", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殞", + "codepoint": "U+6B9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B9E", + "status": "exact_ids", + "ids": "⿰歹員", + "canonical_ids": "⿰歹員", + "expanded_ids": "⿰⿻夕一⿱口⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "口", + "夕", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殟", + "codepoint": "U+6B9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6B9F", + "status": "exact_ids", + "ids": "⿰歹𥁕", + "canonical_ids": "⿰歹𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕", + "皿" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殠", + "codepoint": "U+6BA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BA0", + "status": "exact_ids", + "ids": "⿰歹臭", + "canonical_ids": "⿰歹臭", + "expanded_ids": "⿰⿻夕一⿱⿻目丶⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "夕", + "大", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殡", + "codepoint": "U+6BA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BA1", + "status": "exact_ids", + "ids": "⿰歹宾", + "canonical_ids": "⿰歹宾", + "expanded_ids": "⿰⿻夕一⿱宀⿱丘八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丘", + "八", + "夕", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殢", + "codepoint": "U+6BA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BA2", + "status": "exact_ids", + "ids": "⿰歹帶", + "canonical_ids": "⿰歹帶", + "expanded_ids": "⿰⿻夕一⿳卌冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "冖", + "卌", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殣", + "codepoint": "U+6BA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BA3", + "status": "exact_ids", + "ids": "⿰歹堇", + "canonical_ids": "⿰歹堇", + "expanded_ids": "⿰⿻夕一堇", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "堇", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殤", + "codepoint": "U+6BA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BA4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殥", + "codepoint": "U+6BA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BA5", + "status": "exact_ids", + "ids": "⿰歹寅", + "canonical_ids": "⿰歹寅", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕" + ], + "unresolved_leaves": [ + "寅" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殦", + "codepoint": "U+6BA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BA6", + "status": "exact_ids", + "ids": "⿰歹鳥", + "canonical_ids": "⿰歹鳥", + "expanded_ids": "⿰⿻夕一鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殧", + "codepoint": "U+6BA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BA7", + "status": "exact_ids", + "ids": "⿰歹就", + "canonical_ids": "⿰歹就", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕", + "尤" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殨", + "codepoint": "U+6BA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BA8", + "status": "exact_ids", + "ids": "⿰歹貴", + "canonical_ids": "⿰歹貴", + "expanded_ids": "⿰⿻夕一⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "夕", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殩", + "codepoint": "U+6BA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BA9", + "status": "exact_ids", + "ids": "⿰歹粲", + "canonical_ids": "⿰歹粲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "夕", + "木" + ], + "unresolved_leaves": [ + "𣦼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殪", + "codepoint": "U+6BAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BAA", + "status": "exact_ids", + "ids": "⿰歹壹", + "canonical_ids": "⿰歹壹", + "expanded_ids": "⿰⿻夕一⿳土冖豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冖", + "土", + "夕", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殫", + "codepoint": "U+6BAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BAB", + "status": "exact_ids", + "ids": "⿰歹單", + "canonical_ids": "⿰歹單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殬", + "codepoint": "U+6BAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BAC", + "status": "exact_ids", + "ids": "⿰歹睪", + "canonical_ids": "⿰歹睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "土", + "夕", + "罒" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殭", + "codepoint": "U+6BAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BAD", + "status": "exact_ids", + "ids": "⿰歹畺", + "canonical_ids": "⿰歹畺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕", + "田" + ], + "unresolved_leaves": [ + "三" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殮", + "codepoint": "U+6BAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BAE", + "status": "exact_ids", + "ids": "⿰歹僉", + "canonical_ids": "⿰歹僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殯", + "codepoint": "U+6BAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BAF", + "status": "exact_ids", + "ids": "⿰歹賓", + "canonical_ids": "⿰歹賓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殰", + "codepoint": "U+6BB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BB0", + "status": "exact_ids", + "ids": "⿰歹賣", + "canonical_ids": "⿰歹賣", + "expanded_ids": "⿰⿻夕一⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "士", + "夕", + "目", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殱", + "codepoint": "U+6BB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BB1", + "status": "exact_ids", + "ids": "⿰歹韯", + "canonical_ids": "⿰歹韯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕" + ], + "unresolved_leaves": [ + "韯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殲", + "codepoint": "U+6BB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BB2", + "status": "exact_ids", + "ids": "⿰歹韱", + "canonical_ids": "⿰歹韱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕" + ], + "unresolved_leaves": [ + "韱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殳", + "codepoint": "U+6BB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BB3", + "status": "exact_ids", + "ids": "⿱几又", + "canonical_ids": "⿱几又", + "expanded_ids": "⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殴", + "codepoint": "U+6BB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BB4", + "status": "exact_ids", + "ids": "⿰区殳", + "canonical_ids": "⿰区殳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又" + ], + "unresolved_leaves": [ + "区" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "段", + "codepoint": "U+6BB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BB5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殶", + "codepoint": "U+6BB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BB6", + "status": "exact_ids", + "ids": "⿰主殳", + "canonical_ids": "⿰主殳", + "expanded_ids": "⿰⿻丶王⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "几", + "又", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殷", + "codepoint": "U+6BB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BB7", + "status": "exact_ids", + "ids": "⿰㐆殳", + "canonical_ids": "⿰㐆殳", + "expanded_ids": "⿰㐆⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㐆", + "几", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殸", + "codepoint": "U+6BB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BB8", + "status": "exact_ids", + "ids": "⿰声殳", + "canonical_ids": "⿰声殳", + "expanded_ids": "⿰⿱士⿻尸丨⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "几", + "又", + "士", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殹", + "codepoint": "U+6BB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BB9", + "status": "exact_ids", + "ids": "⿰医殳", + "canonical_ids": "⿰医殳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又" + ], + "unresolved_leaves": [ + "医" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殺", + "codepoint": "U+6BBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BBA", + "status": "exact_ids", + "ids": "⿰杀殳", + "canonical_ids": "⿰杀殳", + "expanded_ids": "⿰⿱乂朩⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "几", + "又", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殻", + "codepoint": "U+6BBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BBB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殼", + "codepoint": "U+6BBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BBC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殽", + "codepoint": "U+6BBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BBD", + "status": "exact_ids", + "ids": "⿰肴殳", + "canonical_ids": "⿰肴殳", + "expanded_ids": "⿰⿱乂⿱⿻丿一月⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "乂", + "几", + "又", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殾", + "codepoint": "U+6BBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BBE", + "status": "exact_ids", + "ids": "⿰者殳", + "canonical_ids": "⿰者殳", + "expanded_ids": "⿰⿱⿻土丿日⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "几", + "又", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "殿", + "codepoint": "U+6BBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BBF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毀", + "codepoint": "U+6BC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BC0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毁", + "codepoint": "U+6BC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BC1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毂", + "codepoint": "U+6BC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BC2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毃", + "codepoint": "U+6BC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BC3", + "status": "exact_ids", + "ids": "⿰高殳", + "canonical_ids": "⿰高殳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毄", + "codepoint": "U+6BC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BC4", + "status": "exact_ids", + "ids": "⿰軎殳", + "canonical_ids": "⿰軎殳", + "expanded_ids": "⿰⿱車口⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "口", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毅", + "codepoint": "U+6BC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BC5", + "status": "exact_ids", + "ids": "⿰豙殳", + "canonical_ids": "⿰豙殳", + "expanded_ids": "⿰⿱立𧰨⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "立", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毆", + "codepoint": "U+6BC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BC6", + "status": "exact_ids", + "ids": "⿰區殳", + "canonical_ids": "⿰區殳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毇", + "codepoint": "U+6BC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BC7", + "status": "exact_ids", + "ids": "⿰䊆殳", + "canonical_ids": "⿰䊆殳", + "expanded_ids": "⿰⿱臼⿻木丷⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "几", + "又", + "木", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毈", + "codepoint": "U+6BC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BC8", + "status": "exact_ids", + "ids": "⿰卵段", + "canonical_ids": "⿰卵段", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "卩", + "𠂎" + ], + "unresolved_leaves": [ + "段" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毉", + "codepoint": "U+6BC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BC9", + "status": "exact_ids", + "ids": "⿱殹巫", + "canonical_ids": "⿱殹巫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "几", + "又", + "工" + ], + "unresolved_leaves": [ + "医" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毊", + "codepoint": "U+6BCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BCA", + "status": "exact_ids", + "ids": "⿱殸喬", + "canonical_ids": "⿱殸喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丿", + "几", + "又", + "口", + "士", + "大", + "尸" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毋", + "codepoint": "U+6BCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BCB", + "status": "leaf_self_fallback", + "ids": "毋", + "canonical_ids": "毋", + "expanded_ids": "毋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毌", + "codepoint": "U+6BCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BCC", + "status": "leaf_self_fallback", + "ids": "毌", + "canonical_ids": "毌", + "expanded_ids": "毌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "母", + "codepoint": "U+6BCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BCD", + "status": "leaf_self_fallback", + "ids": "母", + "canonical_ids": "母", + "expanded_ids": "母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毎", + "codepoint": "U+6BCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BCE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "每", + "codepoint": "U+6BCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BCF", + "status": "exact_ids", + "ids": "⿱𠂉母", + "canonical_ids": "⿱𠂉母", + "expanded_ids": "⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毐", + "codepoint": "U+6BD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BD0", + "status": "exact_ids", + "ids": "⿱士毋", + "canonical_ids": "⿱士毋", + "expanded_ids": "⿱士毋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "士", + "毋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毑", + "codepoint": "U+6BD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BD1", + "status": "exact_ids", + "ids": "⿰母也", + "canonical_ids": "⿰母也", + "expanded_ids": "⿰母⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毒", + "codepoint": "U+6BD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BD2", + "status": "exact_ids", + "ids": "⿱龶毋", + "canonical_ids": "⿱龶毋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毋" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毓", + "codepoint": "U+6BD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BD3", + "status": "exact_ids", + "ids": "⿰每㐬", + "canonical_ids": "⿰每㐬", + "expanded_ids": "⿰⿱⿻丿一母⿱亠⿱厶川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亠", + "厶", + "川", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "比", + "codepoint": "U+6BD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BD4", + "status": "exact_ids", + "ids": "⿰匕匕", + "canonical_ids": "⿰匕匕", + "expanded_ids": "⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毕", + "codepoint": "U+6BD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BD5", + "status": "exact_ids", + "ids": "⿱比十", + "canonical_ids": "⿱比十", + "expanded_ids": "⿱⿰匕匕十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毖", + "codepoint": "U+6BD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BD6", + "status": "exact_ids", + "ids": "⿱比必", + "canonical_ids": "⿱比必", + "expanded_ids": "⿱⿰匕匕⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毗", + "codepoint": "U+6BD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BD7", + "status": "exact_ids", + "ids": "⿰田比", + "canonical_ids": "⿰田比", + "expanded_ids": "⿰田⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毘", + "codepoint": "U+6BD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BD8", + "status": "exact_ids", + "ids": "⿱田比", + "canonical_ids": "⿱田比", + "expanded_ids": "⿱田⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毙", + "codepoint": "U+6BD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BD9", + "status": "exact_ids", + "ids": "⿱比死", + "canonical_ids": "⿱比死", + "expanded_ids": "⿱⿰匕匕⿰⿻夕一匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "匕", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毚", + "codepoint": "U+6BDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BDA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毛", + "codepoint": "U+6BDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BDB", + "status": "leaf_self_fallback", + "ids": "毛", + "canonical_ids": "毛", + "expanded_ids": "毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毜", + "codepoint": "U+6BDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BDC", + "status": "exact_ids", + "ids": "⿰毛小", + "canonical_ids": "⿰毛小", + "expanded_ids": "⿰毛小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毝", + "codepoint": "U+6BDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BDD", + "status": "exact_ids", + "ids": "⿰毛彡", + "canonical_ids": "⿰毛彡", + "expanded_ids": "⿰毛彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毞", + "codepoint": "U+6BDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BDE", + "status": "exact_ids", + "ids": "⿱比毛", + "canonical_ids": "⿱比毛", + "expanded_ids": "⿱⿰匕匕毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毟", + "codepoint": "U+6BDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BDF", + "status": "exact_ids", + "ids": "⿱少毛", + "canonical_ids": "⿱少毛", + "expanded_ids": "⿱⿱小丿毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毠", + "codepoint": "U+6BE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BE0", + "status": "exact_ids", + "ids": "⿱加毛", + "canonical_ids": "⿱加毛", + "expanded_ids": "⿱⿰力口毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毡", + "codepoint": "U+6BE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BE1", + "status": "exact_ids", + "ids": "⿰毛占", + "canonical_ids": "⿰毛占", + "expanded_ids": "⿰毛⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毢", + "codepoint": "U+6BE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BE2", + "status": "exact_ids", + "ids": "⿰毛西", + "canonical_ids": "⿰毛西", + "expanded_ids": "⿰毛⿻⿱一儿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毣", + "codepoint": "U+6BE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BE3", + "status": "exact_ids", + "ids": "⿱羽毛", + "canonical_ids": "⿱羽毛", + "expanded_ids": "⿱⿰习习毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毤", + "codepoint": "U+6BE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BE4", + "status": "exact_ids", + "ids": "⿰兊毛", + "canonical_ids": "⿰兊毛", + "expanded_ids": "⿰⿱八⿱厶儿毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "厶", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毥", + "codepoint": "U+6BE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BE5", + "status": "exact_ids", + "ids": "⿰毛旬", + "canonical_ids": "⿰毛旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毦", + "codepoint": "U+6BE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BE6", + "status": "exact_ids", + "ids": "⿰耳毛", + "canonical_ids": "⿰耳毛", + "expanded_ids": "⿰耳毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毧", + "codepoint": "U+6BE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BE7", + "status": "exact_ids", + "ids": "⿰毛戎", + "canonical_ids": "⿰毛戎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "毛" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毨", + "codepoint": "U+6BE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BE8", + "status": "exact_ids", + "ids": "⿰毛先", + "canonical_ids": "⿰毛先", + "expanded_ids": "⿰毛⿱牛儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "毛", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毩", + "codepoint": "U+6BE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BE9", + "status": "exact_ids", + "ids": "⿰毛米", + "canonical_ids": "⿰毛米", + "expanded_ids": "⿰毛⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毪", + "codepoint": "U+6BEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BEA", + "status": "exact_ids", + "ids": "⿰毛牟", + "canonical_ids": "⿰毛牟", + "expanded_ids": "⿰毛⿱厶牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "毛", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毫", + "codepoint": "U+6BEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BEB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毬", + "codepoint": "U+6BEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BEC", + "status": "exact_ids", + "ids": "⿰毛求", + "canonical_ids": "⿰毛求", + "expanded_ids": "⿰毛求", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛", + "求" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毭", + "codepoint": "U+6BED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BED", + "status": "exact_ids", + "ids": "⿰豆毛", + "canonical_ids": "⿰豆毛", + "expanded_ids": "⿰豆毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毮", + "codepoint": "U+6BEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BEE", + "status": "exact_ids", + "ids": "⿰扌毟", + "canonical_ids": "⿰扌毟", + "expanded_ids": "⿰扌⿱⿱小丿毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "扌", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毯", + "codepoint": "U+6BEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BEF", + "status": "exact_ids", + "ids": "⿰毛炎", + "canonical_ids": "⿰毛炎", + "expanded_ids": "⿰毛⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毰", + "codepoint": "U+6BF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BF0", + "status": "exact_ids", + "ids": "⿰毛咅", + "canonical_ids": "⿰毛咅", + "expanded_ids": "⿰毛⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "毛", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毱", + "codepoint": "U+6BF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BF1", + "status": "exact_ids", + "ids": "⿰毛匊", + "canonical_ids": "⿰毛匊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛" + ], + "unresolved_leaves": [ + "匊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毲", + "codepoint": "U+6BF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BF2", + "status": "exact_ids", + "ids": "⿰叕毛", + "canonical_ids": "⿰叕毛", + "expanded_ids": "⿰⿱⿰又又⿰又又毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毳", + "codepoint": "U+6BF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BF3", + "status": "exact_ids", + "ids": "⿱毛⿰毛毛", + "canonical_ids": "⿱毛⿰毛毛", + "expanded_ids": "⿱毛⿰毛毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毴", + "codepoint": "U+6BF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BF4", + "status": "exact_ids", + "ids": "⿰毛非", + "canonical_ids": "⿰毛非", + "expanded_ids": "⿰毛非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毵", + "codepoint": "U+6BF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BF5", + "status": "exact_ids", + "ids": "⿰参毛", + "canonical_ids": "⿰参毛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛" + ], + "unresolved_leaves": [ + "参" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毶", + "codepoint": "U+6BF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BF6", + "status": "exact_ids", + "ids": "⿰毛参", + "canonical_ids": "⿰毛参", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛" + ], + "unresolved_leaves": [ + "参" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毷", + "codepoint": "U+6BF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BF7", + "status": "exact_ids", + "ids": "⿰冒毛", + "canonical_ids": "⿰冒毛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛", + "目" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毸", + "codepoint": "U+6BF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BF8", + "status": "exact_ids", + "ids": "⿰毛思", + "canonical_ids": "⿰毛思", + "expanded_ids": "⿰毛⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "毛", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毹", + "codepoint": "U+6BF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BF9", + "status": "exact_ids", + "ids": "⿰俞毛", + "canonical_ids": "⿰俞毛", + "expanded_ids": "⿰⿱⿱人一⿰月刂毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "月", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毺", + "codepoint": "U+6BFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BFA", + "status": "exact_ids", + "ids": "⿰毛俞", + "canonical_ids": "⿰毛俞", + "expanded_ids": "⿰毛⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "月", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毻", + "codepoint": "U+6BFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BFB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毼", + "codepoint": "U+6BFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BFC", + "status": "exact_ids", + "ids": "⿰曷毛", + "canonical_ids": "⿰曷毛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "毛" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毽", + "codepoint": "U+6BFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BFD", + "status": "exact_ids", + "ids": "⿰毛建", + "canonical_ids": "⿰毛建", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廴", + "毛" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毾", + "codepoint": "U+6BFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BFE", + "status": "exact_ids", + "ids": "⿰𦐇毛", + "canonical_ids": "⿰𦐇毛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "毛" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "毿", + "codepoint": "U+6BFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6BFF", + "status": "exact_ids", + "ids": "⿰參毛", + "canonical_ids": "⿰參毛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氀", + "codepoint": "U+6C00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C00", + "status": "exact_ids", + "ids": "⿰婁毛", + "canonical_ids": "⿰婁毛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氁", + "codepoint": "U+6C01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C01", + "status": "exact_ids", + "ids": "⿰毛莫", + "canonical_ids": "⿰毛莫", + "expanded_ids": "⿰毛⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "毛", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氂", + "codepoint": "U+6C02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C02", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氃", + "codepoint": "U+6C03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C03", + "status": "exact_ids", + "ids": "⿰童毛", + "canonical_ids": "⿰童毛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛", + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氄", + "codepoint": "U+6C04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C04", + "status": "exact_ids", + "ids": "⿰矞毛", + "canonical_ids": "⿰矞毛", + "expanded_ids": "⿰⿱矛⿱冂⿱八口毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "毛", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氅", + "codepoint": "U+6C05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C05", + "status": "exact_ids", + "ids": "⿱敞毛", + "canonical_ids": "⿱敞毛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "攵", + "毛" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氆", + "codepoint": "U+6C06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C06", + "status": "exact_ids", + "ids": "⿰毛普", + "canonical_ids": "⿰毛普", + "expanded_ids": "⿰毛⿱⿱丷亚日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亚", + "日", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氇", + "codepoint": "U+6C07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C07", + "status": "exact_ids", + "ids": "⿰毛鲁", + "canonical_ids": "⿰毛鲁", + "expanded_ids": "⿰毛⿱鱼日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "毛", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氈", + "codepoint": "U+6C08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C08", + "status": "exact_ids", + "ids": "⿰亶毛", + "canonical_ids": "⿰亶毛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "日", + "毛" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氉", + "codepoint": "U+6C09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C09", + "status": "exact_ids", + "ids": "⿰喿毛", + "canonical_ids": "⿰喿毛", + "expanded_ids": "⿰⿱⿱口⿰口口木毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氊", + "codepoint": "U+6C0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C0A", + "status": "exact_ids", + "ids": "⿰毛亶", + "canonical_ids": "⿰毛亶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "日", + "毛" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氋", + "codepoint": "U+6C0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C0B", + "status": "exact_ids", + "ids": "⿰蒙毛", + "canonical_ids": "⿰蒙毛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛", + "艹", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氌", + "codepoint": "U+6C0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C0C", + "status": "exact_ids", + "ids": "⿰毛魯", + "canonical_ids": "⿰毛魯", + "expanded_ids": "⿰毛⿱魚日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "毛", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氍", + "codepoint": "U+6C0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C0D", + "status": "exact_ids", + "ids": "⿰瞿毛", + "canonical_ids": "⿰瞿毛", + "expanded_ids": "⿰⿱⿰目目隹毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氎", + "codepoint": "U+6C0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C0E", + "status": "exact_ids", + "ids": "⿰𤴁毛", + "canonical_ids": "⿰𤴁毛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛" + ], + "unresolved_leaves": [ + "𤴁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氏", + "codepoint": "U+6C0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C0F", + "status": "leaf_self_fallback", + "ids": "氏", + "canonical_ids": "氏", + "expanded_ids": "氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氐", + "codepoint": "U+6C10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C10", + "status": "exact_ids", + "ids": "⿻氏丶", + "canonical_ids": "⿻氏丶", + "expanded_ids": "⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "民", + "codepoint": "U+6C11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C11", + "status": "leaf_self_fallback", + "ids": "民", + "canonical_ids": "民", + "expanded_ids": "民", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "民" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氒", + "codepoint": "U+6C12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C12", + "status": "exact_ids", + "ids": "⿱氏十", + "canonical_ids": "⿱氏十", + "expanded_ids": "⿱氏十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氓", + "codepoint": "U+6C13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C13", + "status": "exact_ids", + "ids": "⿰亡民", + "canonical_ids": "⿰亡民", + "expanded_ids": "⿰⿻亠乚民", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "民" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "气", + "codepoint": "U+6C14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C14", + "status": "leaf_self_fallback", + "ids": "气", + "canonical_ids": "气", + "expanded_ids": "气", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氕", + "codepoint": "U+6C15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C15", + "status": "exact_ids", + "ids": "⿱气丿", + "canonical_ids": "⿱气丿", + "expanded_ids": "⿱气丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氖", + "codepoint": "U+6C16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C16", + "status": "exact_ids", + "ids": "⿱气乃", + "canonical_ids": "⿱气乃", + "expanded_ids": "⿱气乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "気", + "codepoint": "U+6C17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C17", + "status": "exact_ids", + "ids": "⿱气乂", + "canonical_ids": "⿱气乂", + "expanded_ids": "⿱气乂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氘", + "codepoint": "U+6C18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C18", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氙", + "codepoint": "U+6C19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C19", + "status": "exact_ids", + "ids": "⿱气山", + "canonical_ids": "⿱气山", + "expanded_ids": "⿱气山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氚", + "codepoint": "U+6C1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C1A", + "status": "exact_ids", + "ids": "⿱气川", + "canonical_ids": "⿱气川", + "expanded_ids": "⿱气川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "川", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氛", + "codepoint": "U+6C1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C1B", + "status": "exact_ids", + "ids": "⿱气分", + "canonical_ids": "⿱气分", + "expanded_ids": "⿱气⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氜", + "codepoint": "U+6C1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C1C", + "status": "exact_ids", + "ids": "⿱气日", + "canonical_ids": "⿱气日", + "expanded_ids": "⿱气日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氝", + "codepoint": "U+6C1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C1D", + "status": "exact_ids", + "ids": "⿱气内", + "canonical_ids": "⿱气内", + "expanded_ids": "⿱气⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氞", + "codepoint": "U+6C1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C1E", + "status": "exact_ids", + "ids": "⿱气丙", + "canonical_ids": "⿱气丙", + "expanded_ids": "⿱气⿱一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氟", + "codepoint": "U+6C1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C1F", + "status": "exact_ids", + "ids": "⿱气弗", + "canonical_ids": "⿱气弗", + "expanded_ids": "⿱气⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "弓", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氠", + "codepoint": "U+6C20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C20", + "status": "exact_ids", + "ids": "⿱气申", + "canonical_ids": "⿱气申", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "气" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氡", + "codepoint": "U+6C21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C21", + "status": "exact_ids", + "ids": "⿱气冬", + "canonical_ids": "⿱气冬", + "expanded_ids": "⿱气⿱夂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "夂", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氢", + "codepoint": "U+6C22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C22", + "status": "exact_ids", + "ids": "⿱气𢀖", + "canonical_ids": "⿱气𢀖", + "expanded_ids": "⿱气⿱又工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "工", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氣", + "codepoint": "U+6C23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C23", + "status": "exact_ids", + "ids": "⿱气米", + "canonical_ids": "⿱气米", + "expanded_ids": "⿱气⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氤", + "codepoint": "U+6C24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C24", + "status": "exact_ids", + "ids": "⿱气因", + "canonical_ids": "⿱气因", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "气" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氥", + "codepoint": "U+6C25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C25", + "status": "exact_ids", + "ids": "⿱气西", + "canonical_ids": "⿱气西", + "expanded_ids": "⿱气⿻⿱一儿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氦", + "codepoint": "U+6C26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C26", + "status": "exact_ids", + "ids": "⿱气亥", + "canonical_ids": "⿱气亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "气" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氧", + "codepoint": "U+6C27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C27", + "status": "exact_ids", + "ids": "⿱气羊", + "canonical_ids": "⿱气羊", + "expanded_ids": "⿱气羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "气", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氨", + "codepoint": "U+6C28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C28", + "status": "exact_ids", + "ids": "⿱气安", + "canonical_ids": "⿱气安", + "expanded_ids": "⿱气⿱宀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氩", + "codepoint": "U+6C29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C29", + "status": "exact_ids", + "ids": "⿱气亚", + "canonical_ids": "⿱气亚", + "expanded_ids": "⿱气亚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亚", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氪", + "codepoint": "U+6C2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C2A", + "status": "exact_ids", + "ids": "⿱气克", + "canonical_ids": "⿱气克", + "expanded_ids": "⿱气⿱⿻十口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "十", + "口", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氫", + "codepoint": "U+6C2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C2B", + "status": "exact_ids", + "ids": "⿱气巠", + "canonical_ids": "⿱气巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "气" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氬", + "codepoint": "U+6C2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C2C", + "status": "exact_ids", + "ids": "⿱气亞", + "canonical_ids": "⿱气亞", + "expanded_ids": "⿱气亞", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亞", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氭", + "codepoint": "U+6C2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C2D", + "status": "exact_ids", + "ids": "⿱气東", + "canonical_ids": "⿱气東", + "expanded_ids": "⿱气⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氮", + "codepoint": "U+6C2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C2E", + "status": "exact_ids", + "ids": "⿱气炎", + "canonical_ids": "⿱气炎", + "expanded_ids": "⿱气⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "气", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氯", + "codepoint": "U+6C2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C2F", + "status": "exact_ids", + "ids": "⿱气录", + "canonical_ids": "⿱气录", + "expanded_ids": "⿱气⿱彐氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "气", + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氰", + "codepoint": "U+6C30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C30", + "status": "exact_ids", + "ids": "⿱气青", + "canonical_ids": "⿱气青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "气" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氱", + "codepoint": "U+6C31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C31", + "status": "exact_ids", + "ids": "⿱气昜", + "canonical_ids": "⿱气昜", + "expanded_ids": "⿱气⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "气" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氲", + "codepoint": "U+6C32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C32", + "status": "exact_ids", + "ids": "⿱气昷", + "canonical_ids": "⿱气昷", + "expanded_ids": "⿱气⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "气", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氳", + "codepoint": "U+6C33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C33", + "status": "exact_ids", + "ids": "⿱气𥁕", + "canonical_ids": "⿱气𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "气", + "皿" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "水", + "codepoint": "U+6C34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C34", + "status": "leaf_self_fallback", + "ids": "水", + "canonical_ids": "水", + "expanded_ids": "水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氵", + "codepoint": "U+6C35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C35", + "status": "leaf_self_fallback", + "ids": "氵", + "canonical_ids": "氵", + "expanded_ids": "氵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氶", + "codepoint": "U+6C36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C36", + "status": "exact_ids", + "ids": "⿱乛水", + "canonical_ids": "⿱乛水", + "expanded_ids": "⿱乛水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氷", + "codepoint": "U+6C37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C37", + "status": "exact_ids", + "ids": "⿻水丶", + "canonical_ids": "⿻水丶", + "expanded_ids": "⿻水丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "永", + "codepoint": "U+6C38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C38", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氹", + "codepoint": "U+6C39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C39", + "status": "exact_ids", + "ids": "⿰乙水", + "canonical_ids": "⿰乙水", + "expanded_ids": "⿰乙水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氺", + "codepoint": "U+6C3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C3A", + "status": "leaf_self_fallback", + "ids": "氺", + "canonical_ids": "氺", + "expanded_ids": "氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氻", + "codepoint": "U+6C3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C3B", + "status": "exact_ids", + "ids": "⿰氵力", + "canonical_ids": "⿰氵力", + "expanded_ids": "⿰氵力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氼", + "codepoint": "U+6C3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C3C", + "status": "exact_ids", + "ids": "⿱水人", + "canonical_ids": "⿱水人", + "expanded_ids": "⿱水人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氽", + "codepoint": "U+6C3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C3D", + "status": "exact_ids", + "ids": "⿱人水", + "canonical_ids": "⿱人水", + "expanded_ids": "⿱人水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氾", + "codepoint": "U+6C3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C3E", + "status": "exact_ids", + "ids": "⿰氵㔾", + "canonical_ids": "⿰氵㔾", + "expanded_ids": "⿰氵㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 68, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "氿", + "codepoint": "U+6C3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C3F", + "status": "exact_ids", + "ids": "⿰氵九", + "canonical_ids": "⿰氵九", + "expanded_ids": "⿰氵九", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汀", + "codepoint": "U+6C40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C40", + "status": "exact_ids", + "ids": "⿰氵丁", + "canonical_ids": "⿰氵丁", + "expanded_ids": "⿰氵⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汁", + "codepoint": "U+6C41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C41", + "status": "exact_ids", + "ids": "⿰氵十", + "canonical_ids": "⿰氵十", + "expanded_ids": "⿰氵十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "求", + "codepoint": "U+6C42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C42", + "status": "leaf_self_fallback", + "ids": "求", + "canonical_ids": "求", + "expanded_ids": "求", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "求" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汃", + "codepoint": "U+6C43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C43", + "status": "exact_ids", + "ids": "⿰氵八", + "canonical_ids": "⿰氵八", + "expanded_ids": "⿰氵八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汄", + "codepoint": "U+6C44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C44", + "status": "exact_ids", + "ids": "⿰氵人", + "canonical_ids": "⿰氵人", + "expanded_ids": "⿰氵人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汅", + "codepoint": "U+6C45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C45", + "status": "exact_ids", + "ids": "⿰氵丂", + "canonical_ids": "⿰氵丂", + "expanded_ids": "⿰氵丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汆", + "codepoint": "U+6C46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C46", + "status": "exact_ids", + "ids": "⿱入水", + "canonical_ids": "⿱入水", + "expanded_ids": "⿱入水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汇", + "codepoint": "U+6C47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C47", + "status": "exact_ids", + "ids": "⿰氵匚", + "canonical_ids": "⿰氵匚", + "expanded_ids": "⿰氵匚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匚", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汈", + "codepoint": "U+6C48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C48", + "status": "exact_ids", + "ids": "⿰氵刁", + "canonical_ids": "⿰氵刁", + "expanded_ids": "⿰氵⿻𠃌丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "氵", + "𠃌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汉", + "codepoint": "U+6C49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C49", + "status": "exact_ids", + "ids": "⿰氵又", + "canonical_ids": "⿰氵又", + "expanded_ids": "⿰氵又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汊", + "codepoint": "U+6C4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C4A", + "status": "exact_ids", + "ids": "⿰氵叉", + "canonical_ids": "⿰氵叉", + "expanded_ids": "⿰氵⿻又丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "又", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汋", + "codepoint": "U+6C4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C4B", + "status": "exact_ids", + "ids": "⿰氵勺", + "canonical_ids": "⿰氵勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汌", + "codepoint": "U+6C4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C4C", + "status": "exact_ids", + "ids": "⿰氵川", + "canonical_ids": "⿰氵川", + "expanded_ids": "⿰氵川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "川", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汍", + "codepoint": "U+6C4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C4D", + "status": "exact_ids", + "ids": "⿰氵丸", + "canonical_ids": "⿰氵丸", + "expanded_ids": "⿰氵⿻九丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汎", + "codepoint": "U+6C4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C4E", + "status": "exact_ids", + "ids": "⿰氵凡", + "canonical_ids": "⿰氵凡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汏", + "codepoint": "U+6C4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C4F", + "status": "exact_ids", + "ids": "⿰氵大", + "canonical_ids": "⿰氵大", + "expanded_ids": "⿰氵大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汐", + "codepoint": "U+6C50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C50", + "status": "exact_ids", + "ids": "⿰氵夕", + "canonical_ids": "⿰氵夕", + "expanded_ids": "⿰氵夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汑", + "codepoint": "U+6C51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C51", + "status": "exact_ids", + "ids": "⿰氵乇", + "canonical_ids": "⿰氵乇", + "expanded_ids": "⿰氵⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汒", + "codepoint": "U+6C52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C52", + "status": "exact_ids", + "ids": "⿰氵亡", + "canonical_ids": "⿰氵亡", + "expanded_ids": "⿰氵⿻亠乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汓", + "codepoint": "U+6C53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C53", + "status": "exact_ids", + "ids": "⿰氵子", + "canonical_ids": "⿰氵子", + "expanded_ids": "⿰氵子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汔", + "codepoint": "U+6C54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C54", + "status": "exact_ids", + "ids": "⿰氵乞", + "canonical_ids": "⿰氵乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汕", + "codepoint": "U+6C55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C55", + "status": "exact_ids", + "ids": "⿰氵山", + "canonical_ids": "⿰氵山", + "expanded_ids": "⿰氵山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汖", + "codepoint": "U+6C56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C56", + "status": "exact_ids", + "ids": "⿱山水", + "canonical_ids": "⿱山水", + "expanded_ids": "⿱山水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汗", + "codepoint": "U+6C57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C57", + "status": "exact_ids", + "ids": "⿰氵干", + "canonical_ids": "⿰氵干", + "expanded_ids": "⿰氵⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汘", + "codepoint": "U+6C58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C58", + "status": "exact_ids", + "ids": "⿰氵千", + "canonical_ids": "⿰氵千", + "expanded_ids": "⿰氵⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汙", + "codepoint": "U+6C59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C59", + "status": "exact_ids", + "ids": "⿰氵于", + "canonical_ids": "⿰氵于", + "expanded_ids": "⿰氵⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汚", + "codepoint": "U+6C5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C5A", + "status": "exact_ids", + "ids": "⿰氵亐", + "canonical_ids": "⿰氵亐", + "expanded_ids": "⿰氵亐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亐", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汛", + "codepoint": "U+6C5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C5B", + "status": "exact_ids", + "ids": "⿰氵卂", + "canonical_ids": "⿰氵卂", + "expanded_ids": "⿰氵⿱乁十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乁", + "十", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汜", + "codepoint": "U+6C5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C5C", + "status": "exact_ids", + "ids": "⿰氵巳", + "canonical_ids": "⿰氵巳", + "expanded_ids": "⿰氵巳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巳", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汝", + "codepoint": "U+6C5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C5D", + "status": "exact_ids", + "ids": "⿰氵女", + "canonical_ids": "⿰氵女", + "expanded_ids": "⿰氵女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汞", + "codepoint": "U+6C5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C5E", + "status": "exact_ids", + "ids": "⿱工水", + "canonical_ids": "⿱工水", + "expanded_ids": "⿱工水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "江", + "codepoint": "U+6C5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C5F", + "status": "exact_ids", + "ids": "⿰氵工", + "canonical_ids": "⿰氵工", + "expanded_ids": "⿰氵工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "池", + "codepoint": "U+6C60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C60", + "status": "exact_ids", + "ids": "⿰氵也", + "canonical_ids": "⿰氵也", + "expanded_ids": "⿰氵⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "污", + "codepoint": "U+6C61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C61", + "status": "exact_ids", + "ids": "⿰氵亏", + "canonical_ids": "⿰氵亏", + "expanded_ids": "⿰氵⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汢", + "codepoint": "U+6C62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C62", + "status": "exact_ids", + "ids": "⿰氵土", + "canonical_ids": "⿰氵土", + "expanded_ids": "⿰氵土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汣", + "codepoint": "U+6C63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C63", + "status": "exact_ids", + "ids": "⿰氵久", + "canonical_ids": "⿰氵久", + "expanded_ids": "⿰氵久", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "久", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汤", + "codepoint": "U+6C64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C64", + "status": "exact_ids", + "ids": "⿰氵𠃓", + "canonical_ids": "⿰氵𠃓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "𠃓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汥", + "codepoint": "U+6C65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C65", + "status": "exact_ids", + "ids": "⿰氵支", + "canonical_ids": "⿰氵支", + "expanded_ids": "⿰氵⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汦", + "codepoint": "U+6C66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C66", + "status": "exact_ids", + "ids": "⿰氵氏", + "canonical_ids": "⿰氵氏", + "expanded_ids": "⿰氵氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氏", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汧", + "codepoint": "U+6C67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C67", + "status": "exact_ids", + "ids": "⿰氵开", + "canonical_ids": "⿰氵开", + "expanded_ids": "⿰氵⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廾", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汨", + "codepoint": "U+6C68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C68", + "status": "exact_ids", + "ids": "⿰氵日", + "canonical_ids": "⿰氵日", + "expanded_ids": "⿰氵日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汩", + "codepoint": "U+6C69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C69", + "status": "exact_ids", + "ids": "⿰氵曰", + "canonical_ids": "⿰氵曰", + "expanded_ids": "⿰氵曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汪", + "codepoint": "U+6C6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C6A", + "status": "exact_ids", + "ids": "⿰氵王", + "canonical_ids": "⿰氵王", + "expanded_ids": "⿰氵王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汫", + "codepoint": "U+6C6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C6B", + "status": "exact_ids", + "ids": "⿰氵井", + "canonical_ids": "⿰氵井", + "expanded_ids": "⿰氵井", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "井", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汬", + "codepoint": "U+6C6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C6C", + "status": "exact_ids", + "ids": "⿱井水", + "canonical_ids": "⿱井水", + "expanded_ids": "⿱井水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "井", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汭", + "codepoint": "U+6C6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C6D", + "status": "exact_ids", + "ids": "⿰氵內", + "canonical_ids": "⿰氵內", + "expanded_ids": "⿰氵⿻冂入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "冂", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汮", + "codepoint": "U+6C6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C6E", + "status": "exact_ids", + "ids": "⿰氵匀", + "canonical_ids": "⿰氵匀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "匀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汯", + "codepoint": "U+6C6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C6F", + "status": "exact_ids", + "ids": "⿰氵厷", + "canonical_ids": "⿰氵厷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "厷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汰", + "codepoint": "U+6C70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C70", + "status": "exact_ids", + "ids": "⿰氵太", + "canonical_ids": "⿰氵太", + "expanded_ids": "⿰氵⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "汱" + ] + }, + { + "character": "汱", + "codepoint": "U+6C71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C71", + "status": "exact_ids", + "ids": "⿰氵犬", + "canonical_ids": "⿰氵犬", + "expanded_ids": "⿰氵⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "汰" + ] + }, + { + "character": "汲", + "codepoint": "U+6C72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C72", + "status": "exact_ids", + "ids": "⿰氵及", + "canonical_ids": "⿰氵及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "氵" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汳", + "codepoint": "U+6C73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C73", + "status": "exact_ids", + "ids": "⿰氵反", + "canonical_ids": "⿰氵反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汴", + "codepoint": "U+6C74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C74", + "status": "exact_ids", + "ids": "⿰氵卞", + "canonical_ids": "⿰氵卞", + "expanded_ids": "⿰氵⿱亠卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "卜", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汵", + "codepoint": "U+6C75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C75", + "status": "exact_ids", + "ids": "⿰氵今", + "canonical_ids": "⿰氵今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "氵" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汶", + "codepoint": "U+6C76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C76", + "status": "exact_ids", + "ids": "⿰氵文", + "canonical_ids": "⿰氵文", + "expanded_ids": "⿰氵文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汷", + "codepoint": "U+6C77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C77", + "status": "exact_ids", + "ids": "⿰氵夂", + "canonical_ids": "⿰氵夂", + "expanded_ids": "⿰氵夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夂", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汸", + "codepoint": "U+6C78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C78", + "status": "exact_ids", + "ids": "⿰氵方", + "canonical_ids": "⿰氵方", + "expanded_ids": "⿰氵方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汹", + "codepoint": "U+6C79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C79", + "status": "exact_ids", + "ids": "⿰氵凶", + "canonical_ids": "⿰氵凶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "決", + "codepoint": "U+6C7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C7A", + "status": "exact_ids", + "ids": "⿰氵夬", + "canonical_ids": "⿰氵夬", + "expanded_ids": "⿰氵⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "大", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汻", + "codepoint": "U+6C7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C7B", + "status": "exact_ids", + "ids": "⿰氵午", + "canonical_ids": "⿰氵午", + "expanded_ids": "⿰氵⿱⿻丿一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "十", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汼", + "codepoint": "U+6C7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C7C", + "status": "exact_ids", + "ids": "⿰氵牛", + "canonical_ids": "⿰氵牛", + "expanded_ids": "⿰氵牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汽", + "codepoint": "U+6C7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C7D", + "status": "exact_ids", + "ids": "⿰氵气", + "canonical_ids": "⿰氵气", + "expanded_ids": "⿰氵气", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "气", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汾", + "codepoint": "U+6C7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C7E", + "status": "exact_ids", + "ids": "⿰氵分", + "canonical_ids": "⿰氵分", + "expanded_ids": "⿰氵⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "汿", + "codepoint": "U+6C7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C7F", + "status": "exact_ids", + "ids": "⿰氵予", + "canonical_ids": "⿰氵予", + "expanded_ids": "⿰氵⿱龴⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "氵", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沀", + "codepoint": "U+6C80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C80", + "status": "exact_ids", + "ids": "⿰水予", + "canonical_ids": "⿰水予", + "expanded_ids": "⿰水⿱龴⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "水", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沁", + "codepoint": "U+6C81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C81", + "status": "exact_ids", + "ids": "⿰氵心", + "canonical_ids": "⿰氵心", + "expanded_ids": "⿰氵心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沂", + "codepoint": "U+6C82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C82", + "status": "exact_ids", + "ids": "⿰氵斤", + "canonical_ids": "⿰氵斤", + "expanded_ids": "⿰氵斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沃", + "codepoint": "U+6C83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C83", + "status": "exact_ids", + "ids": "⿰氵夭", + "canonical_ids": "⿰氵夭", + "expanded_ids": "⿰氵⿱丿大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沄", + "codepoint": "U+6C84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C84", + "status": "exact_ids", + "ids": "⿰氵云", + "canonical_ids": "⿰氵云", + "expanded_ids": "⿰氵⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沅", + "codepoint": "U+6C85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C85", + "status": "exact_ids", + "ids": "⿰氵元", + "canonical_ids": "⿰氵元", + "expanded_ids": "⿰氵⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沆", + "codepoint": "U+6C86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C86", + "status": "exact_ids", + "ids": "⿰氵亢", + "canonical_ids": "⿰氵亢", + "expanded_ids": "⿰氵⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沇", + "codepoint": "U+6C87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C87", + "status": "exact_ids", + "ids": "⿰氵允", + "canonical_ids": "⿰氵允", + "expanded_ids": "⿰氵⿱厶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沈", + "codepoint": "U+6C88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C88", + "status": "exact_ids", + "ids": "⿰氵冘", + "canonical_ids": "⿰氵冘", + "expanded_ids": "⿰氵⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沉", + "codepoint": "U+6C89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C89", + "status": "exact_ids", + "ids": "⿰氵冗", + "canonical_ids": "⿰氵冗", + "expanded_ids": "⿰氵⿱冖几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "几", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沊", + "codepoint": "U+6C8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C8A", + "status": "exact_ids", + "ids": "⿰冘水", + "canonical_ids": "⿰冘水", + "expanded_ids": "⿰⿻冖儿水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沋", + "codepoint": "U+6C8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C8B", + "status": "exact_ids", + "ids": "⿰氵尤", + "canonical_ids": "⿰氵尤", + "expanded_ids": "⿰氵尤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沌", + "codepoint": "U+6C8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C8C", + "status": "exact_ids", + "ids": "⿰氵屯", + "canonical_ids": "⿰氵屯", + "expanded_ids": "⿰氵屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沍", + "codepoint": "U+6C8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C8D", + "status": "exact_ids", + "ids": "⿰氵互", + "canonical_ids": "⿰氵互", + "expanded_ids": "⿰氵⿱一彑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "彑", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沎", + "codepoint": "U+6C8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C8E", + "status": "exact_ids", + "ids": "⿰氵化", + "canonical_ids": "⿰氵化", + "expanded_ids": "⿰氵⿰亻匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沏", + "codepoint": "U+6C8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C8F", + "status": "exact_ids", + "ids": "⿰氵切", + "canonical_ids": "⿰氵切", + "expanded_ids": "⿰氵⿰七刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "刀", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沐", + "codepoint": "U+6C90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C90", + "status": "exact_ids", + "ids": "⿰氵木", + "canonical_ids": "⿰氵木", + "expanded_ids": "⿰氵木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沑", + "codepoint": "U+6C91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C91", + "status": "exact_ids", + "ids": "⿰氵丑", + "canonical_ids": "⿰氵丑", + "expanded_ids": "⿰氵丑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沒", + "codepoint": "U+6C92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C92", + "status": "exact_ids", + "ids": "⿰氵𠬛", + "canonical_ids": "⿰氵𠬛", + "expanded_ids": "⿰氵⿱刀又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "又", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沓", + "codepoint": "U+6C93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C93", + "status": "exact_ids", + "ids": "⿱水日", + "canonical_ids": "⿱水日", + "expanded_ids": "⿱水日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沔", + "codepoint": "U+6C94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C94", + "status": "exact_ids", + "ids": "⿰氵丏", + "canonical_ids": "⿰氵丏", + "expanded_ids": "⿰氵丏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丏", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沕", + "codepoint": "U+6C95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C95", + "status": "exact_ids", + "ids": "⿰氵勿", + "canonical_ids": "⿰氵勿", + "expanded_ids": "⿰氵勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沖", + "codepoint": "U+6C96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C96", + "status": "exact_ids", + "ids": "⿰氵中", + "canonical_ids": "⿰氵中", + "expanded_ids": "⿰氵⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沗", + "codepoint": "U+6C97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C97", + "status": "exact_ids", + "ids": "⿱天氺", + "canonical_ids": "⿱天氺", + "expanded_ids": "⿱⿻一大氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沘", + "codepoint": "U+6C98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C98", + "status": "exact_ids", + "ids": "⿰氵比", + "canonical_ids": "⿰氵比", + "expanded_ids": "⿰氵⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沙", + "codepoint": "U+6C99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C99", + "status": "exact_ids", + "ids": "⿰氵少", + "canonical_ids": "⿰氵少", + "expanded_ids": "⿰氵⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沚", + "codepoint": "U+6C9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C9A", + "status": "exact_ids", + "ids": "⿰氵止", + "canonical_ids": "⿰氵止", + "expanded_ids": "⿰氵止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沛", + "codepoint": "U+6C9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C9B", + "status": "exact_ids", + "ids": "⿰氵巿", + "canonical_ids": "⿰氵巿", + "expanded_ids": "⿰氵⿻⿻冂丨一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沜", + "codepoint": "U+6C9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C9C", + "status": "exact_ids", + "ids": "⿰氵片", + "canonical_ids": "⿰氵片", + "expanded_ids": "⿰氵片", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "片" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沝", + "codepoint": "U+6C9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C9D", + "status": "exact_ids", + "ids": "⿰水水", + "canonical_ids": "⿰水水", + "expanded_ids": "⿰水水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沞", + "codepoint": "U+6C9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C9E", + "status": "exact_ids", + "ids": "⿰氵帀", + "canonical_ids": "⿰氵帀", + "expanded_ids": "⿰氵⿱一⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沟", + "codepoint": "U+6C9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6C9F", + "status": "exact_ids", + "ids": "⿰氵勾", + "canonical_ids": "⿰氵勾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "勾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沠", + "codepoint": "U+6CA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CA0", + "status": "exact_ids", + "ids": "⿰氵爪", + "canonical_ids": "⿰氵爪", + "expanded_ids": "⿰氵爪", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "爪" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "没", + "codepoint": "U+6CA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CA1", + "status": "exact_ids", + "ids": "⿰氵殳", + "canonical_ids": "⿰氵殳", + "expanded_ids": "⿰氵⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沢", + "codepoint": "U+6CA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CA2", + "status": "exact_ids", + "ids": "⿰氵尺", + "canonical_ids": "⿰氵尺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "氵" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沣", + "codepoint": "U+6CA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CA3", + "status": "exact_ids", + "ids": "⿰氵丰", + "canonical_ids": "⿰氵丰", + "expanded_ids": "⿰氵丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沤", + "codepoint": "U+6CA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CA4", + "status": "exact_ids", + "ids": "⿰氵区", + "canonical_ids": "⿰氵区", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "区" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沥", + "codepoint": "U+6CA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CA5", + "status": "exact_ids", + "ids": "⿰氵历", + "canonical_ids": "⿰氵历", + "expanded_ids": "⿰氵⿱厂力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "厂", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沦", + "codepoint": "U+6CA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CA6", + "status": "exact_ids", + "ids": "⿰氵仑", + "canonical_ids": "⿰氵仑", + "expanded_ids": "⿰氵⿱人匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "匕", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沧", + "codepoint": "U+6CA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CA7", + "status": "exact_ids", + "ids": "⿰氵仓", + "canonical_ids": "⿰氵仓", + "expanded_ids": "⿰氵⿱人㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "人", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沨", + "codepoint": "U+6CA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CA8", + "status": "exact_ids", + "ids": "⿰氵风", + "canonical_ids": "⿰氵风", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "风" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沩", + "codepoint": "U+6CA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CA9", + "status": "exact_ids", + "ids": "⿰氵为", + "canonical_ids": "⿰氵为", + "expanded_ids": "⿰氵⿻力丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "力", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沪", + "codepoint": "U+6CAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CAA", + "status": "exact_ids", + "ids": "⿰氵户", + "canonical_ids": "⿰氵户", + "expanded_ids": "⿰氵⿻丶尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "尸", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沫", + "codepoint": "U+6CAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CAB", + "status": "exact_ids", + "ids": "⿰氵末", + "canonical_ids": "⿰氵末", + "expanded_ids": "⿰氵⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "沬", + "泍" + ] + }, + { + "character": "沬", + "codepoint": "U+6CAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CAC", + "status": "exact_ids", + "ids": "⿰氵未", + "canonical_ids": "⿰氵未", + "expanded_ids": "⿰氵⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "沫", + "泍" + ] + }, + { + "character": "沭", + "codepoint": "U+6CAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CAD", + "status": "exact_ids", + "ids": "⿰氵朮", + "canonical_ids": "⿰氵朮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "朮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沮", + "codepoint": "U+6CAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CAE", + "status": "exact_ids", + "ids": "⿰氵且", + "canonical_ids": "⿰氵且", + "expanded_ids": "⿰氵且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沯", + "codepoint": "U+6CAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CAF", + "status": "exact_ids", + "ids": "⿱水石", + "canonical_ids": "⿱水石", + "expanded_ids": "⿱水石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "水", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沰", + "codepoint": "U+6CB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CB0", + "status": "exact_ids", + "ids": "⿰氵石", + "canonical_ids": "⿰氵石", + "expanded_ids": "⿰氵石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沱", + "codepoint": "U+6CB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CB1", + "status": "exact_ids", + "ids": "⿰氵它", + "canonical_ids": "⿰氵它", + "expanded_ids": "⿰氵⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沲", + "codepoint": "U+6CB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CB2", + "status": "exact_ids", + "ids": "⿰氵㐌", + "canonical_ids": "⿰氵㐌", + "expanded_ids": "⿰氵⿱⿻丿一⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丿", + "乜", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "河", + "codepoint": "U+6CB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CB3", + "status": "exact_ids", + "ids": "⿰氵可", + "canonical_ids": "⿰氵可", + "expanded_ids": "⿰氵⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沴", + "codepoint": "U+6CB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CB4", + "status": "exact_ids", + "ids": "⿰氵㐱", + "canonical_ids": "⿰氵㐱", + "expanded_ids": "⿰氵⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "彡", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沵", + "codepoint": "U+6CB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CB5", + "status": "exact_ids", + "ids": "⿰氵尔", + "canonical_ids": "⿰氵尔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "氵" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沶", + "codepoint": "U+6CB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CB6", + "status": "exact_ids", + "ids": "⿰氵示", + "canonical_ids": "⿰氵示", + "expanded_ids": "⿰氵⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沷", + "codepoint": "U+6CB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CB7", + "status": "exact_ids", + "ids": "⿰氵犮", + "canonical_ids": "⿰氵犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沸", + "codepoint": "U+6CB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CB8", + "status": "exact_ids", + "ids": "⿰氵弗", + "canonical_ids": "⿰氵弗", + "expanded_ids": "⿰氵⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "弓", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "油", + "codepoint": "U+6CB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CB9", + "status": "exact_ids", + "ids": "⿰氵由", + "canonical_ids": "⿰氵由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沺", + "codepoint": "U+6CBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CBA", + "status": "exact_ids", + "ids": "⿰氵田", + "canonical_ids": "⿰氵田", + "expanded_ids": "⿰氵田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "治", + "codepoint": "U+6CBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CBB", + "status": "exact_ids", + "ids": "⿰氵台", + "canonical_ids": "⿰氵台", + "expanded_ids": "⿰氵⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沼", + "codepoint": "U+6CBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CBC", + "status": "exact_ids", + "ids": "⿰氵召", + "canonical_ids": "⿰氵召", + "expanded_ids": "⿰氵⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沽", + "codepoint": "U+6CBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CBD", + "status": "exact_ids", + "ids": "⿰氵古", + "canonical_ids": "⿰氵古", + "expanded_ids": "⿰氵⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沾", + "codepoint": "U+6CBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CBE", + "status": "exact_ids", + "ids": "⿰氵占", + "canonical_ids": "⿰氵占", + "expanded_ids": "⿰氵⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "沿", + "codepoint": "U+6CBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CBF", + "status": "exact_ids", + "ids": "⿰氵㕣", + "canonical_ids": "⿰氵㕣", + "expanded_ids": "⿰氵⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泀", + "codepoint": "U+6CC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CC0", + "status": "exact_ids", + "ids": "⿰氵司", + "canonical_ids": "⿰氵司", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "司" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "況", + "codepoint": "U+6CC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CC1", + "status": "exact_ids", + "ids": "⿰氵兄", + "canonical_ids": "⿰氵兄", + "expanded_ids": "⿰氵⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泂", + "codepoint": "U+6CC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CC2", + "status": "exact_ids", + "ids": "⿰氵冋", + "canonical_ids": "⿰氵冋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泃", + "codepoint": "U+6CC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CC3", + "status": "exact_ids", + "ids": "⿰氵句", + "canonical_ids": "⿰氵句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泄", + "codepoint": "U+6CC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CC4", + "status": "exact_ids", + "ids": "⿰氵世", + "canonical_ids": "⿰氵世", + "expanded_ids": "⿰氵世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泅", + "codepoint": "U+6CC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CC5", + "status": "exact_ids", + "ids": "⿰氵囚", + "canonical_ids": "⿰氵囚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泆", + "codepoint": "U+6CC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CC6", + "status": "exact_ids", + "ids": "⿰氵失", + "canonical_ids": "⿰氵失", + "expanded_ids": "⿰氵⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泇", + "codepoint": "U+6CC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CC7", + "status": "exact_ids", + "ids": "⿰氵加", + "canonical_ids": "⿰氵加", + "expanded_ids": "⿰氵⿰力口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泈", + "codepoint": "U+6CC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CC8", + "status": "exact_ids", + "ids": "⿰氵冬", + "canonical_ids": "⿰氵冬", + "expanded_ids": "⿰氵⿱夂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "夂", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泉", + "codepoint": "U+6CC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CC9", + "status": "exact_ids", + "ids": "⿱白水", + "canonical_ids": "⿱白水", + "expanded_ids": "⿱⿻日丶水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泊", + "codepoint": "U+6CCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CCA", + "status": "exact_ids", + "ids": "⿰氵白", + "canonical_ids": "⿰氵白", + "expanded_ids": "⿰氵⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泋", + "codepoint": "U+6CCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CCB", + "status": "exact_ids", + "ids": "⿰氵卉", + "canonical_ids": "⿰氵卉", + "expanded_ids": "⿰氵⿱十廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "廾", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泌", + "codepoint": "U+6CCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CCC", + "status": "exact_ids", + "ids": "⿰氵必", + "canonical_ids": "⿰氵必", + "expanded_ids": "⿰氵⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泍", + "codepoint": "U+6CCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CCD", + "status": "exact_ids", + "ids": "⿰氵本", + "canonical_ids": "⿰氵本", + "expanded_ids": "⿰氵⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "沫", + "沬" + ] + }, + { + "character": "泎", + "codepoint": "U+6CCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CCE", + "status": "exact_ids", + "ids": "⿰氵乍", + "canonical_ids": "⿰氵乍", + "expanded_ids": "⿰氵乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泏", + "codepoint": "U+6CCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CCF", + "status": "exact_ids", + "ids": "⿰氵出", + "canonical_ids": "⿰氵出", + "expanded_ids": "⿰氵⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泐", + "codepoint": "U+6CD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CD0", + "status": "exact_ids", + "ids": "⿰氵阞", + "canonical_ids": "⿰氵阞", + "expanded_ids": "⿰氵⿰阝力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "氵", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泑", + "codepoint": "U+6CD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CD1", + "status": "exact_ids", + "ids": "⿰氵幼", + "canonical_ids": "⿰氵幼", + "expanded_ids": "⿰氵⿰幺力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "幺", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泒", + "codepoint": "U+6CD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CD2", + "status": "exact_ids", + "ids": "⿰氵瓜", + "canonical_ids": "⿰氵瓜", + "expanded_ids": "⿰氵瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "瓜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泓", + "codepoint": "U+6CD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CD3", + "status": "exact_ids", + "ids": "⿰氵弘", + "canonical_ids": "⿰氵弘", + "expanded_ids": "⿰氵⿰弓厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "弓", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泔", + "codepoint": "U+6CD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CD4", + "status": "exact_ids", + "ids": "⿰氵甘", + "canonical_ids": "⿰氵甘", + "expanded_ids": "⿰氵甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "法", + "codepoint": "U+6CD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CD5", + "status": "exact_ids", + "ids": "⿰氵去", + "canonical_ids": "⿰氵去", + "expanded_ids": "⿰氵⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泖", + "codepoint": "U+6CD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CD6", + "status": "exact_ids", + "ids": "⿰氵卯", + "canonical_ids": "⿰氵卯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "卯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泗", + "codepoint": "U+6CD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CD7", + "status": "exact_ids", + "ids": "⿰氵四", + "canonical_ids": "⿰氵四", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "四" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泘", + "codepoint": "U+6CD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CD8", + "status": "exact_ids", + "ids": "⿰氵乎", + "canonical_ids": "⿰氵乎", + "expanded_ids": "⿰氵乎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乎", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泙", + "codepoint": "U+6CD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CD9", + "status": "exact_ids", + "ids": "⿰氵平", + "canonical_ids": "⿰氵平", + "expanded_ids": "⿰氵⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "十", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泚", + "codepoint": "U+6CDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CDA", + "status": "exact_ids", + "ids": "⿰氵此", + "canonical_ids": "⿰氵此", + "expanded_ids": "⿰氵⿰止匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "止", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泛", + "codepoint": "U+6CDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CDB", + "status": "exact_ids", + "ids": "⿰氵乏", + "canonical_ids": "⿰氵乏", + "expanded_ids": "⿰氵⿱丿之", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "之", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泜", + "codepoint": "U+6CDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CDC", + "status": "exact_ids", + "ids": "⿰氵氐", + "canonical_ids": "⿰氵氐", + "expanded_ids": "⿰氵⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氏", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泝", + "codepoint": "U+6CDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CDD", + "status": "exact_ids", + "ids": "⿰氵斥", + "canonical_ids": "⿰氵斥", + "expanded_ids": "⿰氵⿻斤丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "斤", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泞", + "codepoint": "U+6CDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CDE", + "status": "exact_ids", + "ids": "⿰氵宁", + "canonical_ids": "⿰氵宁", + "expanded_ids": "⿰氵⿱宀⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "宀", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泟", + "codepoint": "U+6CDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CDF", + "status": "exact_ids", + "ids": "⿰氵正", + "canonical_ids": "⿰氵正", + "expanded_ids": "⿰氵⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "止", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泠", + "codepoint": "U+6CE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CE0", + "status": "exact_ids", + "ids": "⿰氵令", + "canonical_ids": "⿰氵令", + "expanded_ids": "⿰氵⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "氵", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泡", + "codepoint": "U+6CE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CE1", + "status": "exact_ids", + "ids": "⿰氵包", + "canonical_ids": "⿰氵包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "波", + "codepoint": "U+6CE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CE2", + "status": "exact_ids", + "ids": "⿰氵皮", + "canonical_ids": "⿰氵皮", + "expanded_ids": "⿰氵皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泣", + "codepoint": "U+6CE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CE3", + "status": "exact_ids", + "ids": "⿰氵立", + "canonical_ids": "⿰氵立", + "expanded_ids": "⿰氵立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泤", + "codepoint": "U+6CE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CE4", + "status": "exact_ids", + "ids": "⿰氵以", + "canonical_ids": "⿰氵以", + "expanded_ids": "⿰氵⿰厶人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "厶", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泥", + "codepoint": "U+6CE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CE5", + "status": "exact_ids", + "ids": "⿰氵尼", + "canonical_ids": "⿰氵尼", + "expanded_ids": "⿰氵⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "尸", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泦", + "codepoint": "U+6CE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CE6", + "status": "exact_ids", + "ids": "⿰氵尻", + "canonical_ids": "⿰氵尻", + "expanded_ids": "⿰氵⿱尸九", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "尸", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泧", + "codepoint": "U+6CE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CE7", + "status": "exact_ids", + "ids": "⿰氵戉", + "canonical_ids": "⿰氵戉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "氵" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "注", + "codepoint": "U+6CE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CE8", + "status": "exact_ids", + "ids": "⿰氵主", + "canonical_ids": "⿰氵主", + "expanded_ids": "⿰氵⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氵", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泩", + "codepoint": "U+6CE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CE9", + "status": "exact_ids", + "ids": "⿰氵生", + "canonical_ids": "⿰氵生", + "expanded_ids": "⿰氵⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "氵", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泪", + "codepoint": "U+6CEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CEA", + "status": "exact_ids", + "ids": "⿰氵目", + "canonical_ids": "⿰氵目", + "expanded_ids": "⿰氵目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泫", + "codepoint": "U+6CEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CEB", + "status": "exact_ids", + "ids": "⿰氵玄", + "canonical_ids": "⿰氵玄", + "expanded_ids": "⿰氵⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泬", + "codepoint": "U+6CEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CEC", + "status": "exact_ids", + "ids": "⿰氵穴", + "canonical_ids": "⿰氵穴", + "expanded_ids": "⿰氵⿱宀八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泭", + "codepoint": "U+6CED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CED", + "status": "exact_ids", + "ids": "⿰氵付", + "canonical_ids": "⿰氵付", + "expanded_ids": "⿰氵⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泮", + "codepoint": "U+6CEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CEE", + "status": "exact_ids", + "ids": "⿰氵半", + "canonical_ids": "⿰氵半", + "expanded_ids": "⿰氵半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泯", + "codepoint": "U+6CEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CEF", + "status": "exact_ids", + "ids": "⿰氵民", + "canonical_ids": "⿰氵民", + "expanded_ids": "⿰氵民", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "民", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泰", + "codepoint": "U+6CF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CF0", + "status": "exact_ids", + "ids": "⿱𡗗氺", + "canonical_ids": "⿱𡗗氺", + "expanded_ids": "⿱𡗗氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氺", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 76, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泱", + "codepoint": "U+6CF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CF1", + "status": "exact_ids", + "ids": "⿰氵央", + "canonical_ids": "⿰氵央", + "expanded_ids": "⿰氵⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泲", + "codepoint": "U+6CF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CF2", + "status": "exact_ids", + "ids": "⿰氵𠂔", + "canonical_ids": "⿰氵𠂔", + "expanded_ids": "⿰氵𠂔", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "𠂔" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 76, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泳", + "codepoint": "U+6CF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CF3", + "status": "exact_ids", + "ids": "⿰氵永", + "canonical_ids": "⿰氵永", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "永" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泴", + "codepoint": "U+6CF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CF4", + "status": "exact_ids", + "ids": "⿱水皿", + "canonical_ids": "⿱水皿", + "expanded_ids": "⿱水皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "水", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泵", + "codepoint": "U+6CF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CF5", + "status": "exact_ids", + "ids": "⿱石水", + "canonical_ids": "⿱石水", + "expanded_ids": "⿱石水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "水", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泶", + "codepoint": "U+6CF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CF6", + "status": "exact_ids", + "ids": "⿳小冖水", + "canonical_ids": "⿳小冖水", + "expanded_ids": "⿳小冖水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "小", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泷", + "codepoint": "U+6CF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CF7", + "status": "exact_ids", + "ids": "⿰氵龙", + "canonical_ids": "⿰氵龙", + "expanded_ids": "⿰氵龙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泸", + "codepoint": "U+6CF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CF8", + "status": "exact_ids", + "ids": "⿰氵卢", + "canonical_ids": "⿰氵卢", + "expanded_ids": "⿰氵⿱卜尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "尸", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泹", + "codepoint": "U+6CF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CF9", + "status": "exact_ids", + "ids": "⿰氵旦", + "canonical_ids": "⿰氵旦", + "expanded_ids": "⿰氵⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泺", + "codepoint": "U+6CFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CFA", + "status": "exact_ids", + "ids": "⿰氵乐", + "canonical_ids": "⿰氵乐", + "expanded_ids": "⿰氵乐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乐", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泻", + "codepoint": "U+6CFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CFB", + "status": "exact_ids", + "ids": "⿰氵写", + "canonical_ids": "⿰氵写", + "expanded_ids": "⿰氵⿱冖与", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "与", + "冖", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泼", + "codepoint": "U+6CFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CFC", + "status": "exact_ids", + "ids": "⿰氵发", + "canonical_ids": "⿰氵发", + "expanded_ids": "⿰氵发", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "发", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泽", + "codepoint": "U+6CFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CFD", + "status": "exact_ids", + "ids": "⿰氵𠬤", + "canonical_ids": "⿰氵𠬤", + "expanded_ids": "⿰氵⿱又⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "又", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泾", + "codepoint": "U+6CFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CFE", + "status": "exact_ids", + "ids": "⿰氵𢀖", + "canonical_ids": "⿰氵𢀖", + "expanded_ids": "⿰氵⿱又工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "工", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "泿", + "codepoint": "U+6CFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6CFF", + "status": "exact_ids", + "ids": "⿰氵艮", + "canonical_ids": "⿰氵艮", + "expanded_ids": "⿰氵艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洀", + "codepoint": "U+6D00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D00", + "status": "exact_ids", + "ids": "⿰氵舟", + "canonical_ids": "⿰氵舟", + "expanded_ids": "⿰氵舟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洁", + "codepoint": "U+6D01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D01", + "status": "exact_ids", + "ids": "⿰氵吉", + "canonical_ids": "⿰氵吉", + "expanded_ids": "⿰氵⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洂", + "codepoint": "U+6D02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D02", + "status": "exact_ids", + "ids": "⿰氵亦", + "canonical_ids": "⿰氵亦", + "expanded_ids": "⿰氵亦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洃", + "codepoint": "U+6D03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D03", + "status": "exact_ids", + "ids": "⿰氵灰", + "canonical_ids": "⿰氵灰", + "expanded_ids": "⿰氵⿱厂火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "氵", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洄", + "codepoint": "U+6D04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D04", + "status": "exact_ids", + "ids": "⿰氵回", + "canonical_ids": "⿰氵回", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洅", + "codepoint": "U+6D05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D05", + "status": "exact_ids", + "ids": "⿰氵再", + "canonical_ids": "⿰氵再", + "expanded_ids": "⿰氵⿱一⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冂", + "土", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洆", + "codepoint": "U+6D06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D06", + "status": "exact_ids", + "ids": "⿰氵丞", + "canonical_ids": "⿰氵丞", + "expanded_ids": "⿰氵⿱⿱乛水一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乛", + "水", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洇", + "codepoint": "U+6D07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D07", + "status": "exact_ids", + "ids": "⿰氵因", + "canonical_ids": "⿰氵因", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洈", + "codepoint": "U+6D08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D08", + "status": "exact_ids", + "ids": "⿰氵危", + "canonical_ids": "⿰氵危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "氵" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洉", + "codepoint": "U+6D09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D09", + "status": "exact_ids", + "ids": "⿰氵后", + "canonical_ids": "⿰氵后", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "后" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洊", + "codepoint": "U+6D0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D0A", + "status": "exact_ids", + "ids": "⿰氵存", + "canonical_ids": "⿰氵存", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "存" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洋", + "codepoint": "U+6D0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D0B", + "status": "exact_ids", + "ids": "⿰氵羊", + "canonical_ids": "⿰氵羊", + "expanded_ids": "⿰氵羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洌", + "codepoint": "U+6D0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D0C", + "status": "exact_ids", + "ids": "⿰氵列", + "canonical_ids": "⿰氵列", + "expanded_ids": "⿰氵⿰⿻夕一刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "夕", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洍", + "codepoint": "U+6D0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D0D", + "status": "exact_ids", + "ids": "⿰氵𦣞", + "canonical_ids": "⿰氵𦣞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "𦣞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洎", + "codepoint": "U+6D0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D0E", + "status": "exact_ids", + "ids": "⿰氵自", + "canonical_ids": "⿰氵自", + "expanded_ids": "⿰氵⿻目丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洏", + "codepoint": "U+6D0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D0F", + "status": "exact_ids", + "ids": "⿰氵而", + "canonical_ids": "⿰氵而", + "expanded_ids": "⿰氵而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洐", + "codepoint": "U+6D10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D10", + "status": "exact_ids", + "ids": "⿰氵行", + "canonical_ids": "⿰氵行", + "expanded_ids": "⿰氵⿰彳彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洑", + "codepoint": "U+6D11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D11", + "status": "exact_ids", + "ids": "⿰氵伏", + "canonical_ids": "⿰氵伏", + "expanded_ids": "⿰氵⿰亻⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亻", + "大", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洒", + "codepoint": "U+6D12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D12", + "status": "exact_ids", + "ids": "⿰氵西", + "canonical_ids": "⿰氵西", + "expanded_ids": "⿰氵⿻⿱一儿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洓", + "codepoint": "U+6D13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D13", + "status": "exact_ids", + "ids": "⿰氵朿", + "canonical_ids": "⿰氵朿", + "expanded_ids": "⿰氵⿻木冂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洔", + "codepoint": "U+6D14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D14", + "status": "exact_ids", + "ids": "⿰氵寺", + "canonical_ids": "⿰氵寺", + "expanded_ids": "⿰氵⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洕", + "codepoint": "U+6D15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D15", + "status": "exact_ids", + "ids": "⿰氵䏌", + "canonical_ids": "⿰氵䏌", + "expanded_ids": "⿰氵⿱八月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "月", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洖", + "codepoint": "U+6D16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D16", + "status": "exact_ids", + "ids": "⿰氵吳", + "canonical_ids": "⿰氵吳", + "expanded_ids": "⿰氵⿱口⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "口", + "大", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洗", + "codepoint": "U+6D17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D17", + "status": "exact_ids", + "ids": "⿰氵先", + "canonical_ids": "⿰氵先", + "expanded_ids": "⿰氵⿱牛儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "氵", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洘", + "codepoint": "U+6D18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D18", + "status": "exact_ids", + "ids": "⿰氵考", + "canonical_ids": "⿰氵考", + "expanded_ids": "⿰氵⿱⿻土丿丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "丿", + "土", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洙", + "codepoint": "U+6D19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D19", + "status": "exact_ids", + "ids": "⿰氵朱", + "canonical_ids": "⿰氵朱", + "expanded_ids": "⿰氵⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洚", + "codepoint": "U+6D1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D1A", + "status": "exact_ids", + "ids": "⿰氵夅", + "canonical_ids": "⿰氵夅", + "expanded_ids": "⿰氵⿱夂⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夂", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洛", + "codepoint": "U+6D1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D1B", + "status": "exact_ids", + "ids": "⿰氵各", + "canonical_ids": "⿰氵各", + "expanded_ids": "⿰氵⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洜", + "codepoint": "U+6D1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D1C", + "status": "exact_ids", + "ids": "⿱各水", + "canonical_ids": "⿱各水", + "expanded_ids": "⿱⿱夂口水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洝", + "codepoint": "U+6D1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D1D", + "status": "exact_ids", + "ids": "⿰氵安", + "canonical_ids": "⿰氵安", + "expanded_ids": "⿰氵⿱宀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洞", + "codepoint": "U+6D1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D1E", + "status": "exact_ids", + "ids": "⿰氵同", + "canonical_ids": "⿰氵同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洟", + "codepoint": "U+6D1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D1F", + "status": "exact_ids", + "ids": "⿰氵夷", + "canonical_ids": "⿰氵夷", + "expanded_ids": "⿰氵⿻大弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "弓", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洠", + "codepoint": "U+6D20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D20", + "status": "exact_ids", + "ids": "⿰氵牟", + "canonical_ids": "⿰氵牟", + "expanded_ids": "⿰氵⿱厶牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "氵", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洡", + "codepoint": "U+6D21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D21", + "status": "exact_ids", + "ids": "⿰氵耒", + "canonical_ids": "⿰氵耒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洢", + "codepoint": "U+6D22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D22", + "status": "exact_ids", + "ids": "⿰氵伊", + "canonical_ids": "⿰氵伊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "氵" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洣", + "codepoint": "U+6D23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D23", + "status": "exact_ids", + "ids": "⿰氵米", + "canonical_ids": "⿰氵米", + "expanded_ids": "⿰氵⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洤", + "codepoint": "U+6D24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D24", + "status": "exact_ids", + "ids": "⿰氵全", + "canonical_ids": "⿰氵全", + "expanded_ids": "⿰氵⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "氵", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "津", + "codepoint": "U+6D25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D25", + "status": "exact_ids", + "ids": "⿰氵聿", + "canonical_ids": "⿰氵聿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洦", + "codepoint": "U+6D26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D26", + "status": "exact_ids", + "ids": "⿰氵百", + "canonical_ids": "⿰氵百", + "expanded_ids": "⿰氵⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洧", + "codepoint": "U+6D27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D27", + "status": "exact_ids", + "ids": "⿰氵有", + "canonical_ids": "⿰氵有", + "expanded_ids": "⿰氵⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "月", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洨", + "codepoint": "U+6D28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D28", + "status": "exact_ids", + "ids": "⿰氵交", + "canonical_ids": "⿰氵交", + "expanded_ids": "⿰氵⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "氵", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洩", + "codepoint": "U+6D29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D29", + "status": "exact_ids", + "ids": "⿰氵曳", + "canonical_ids": "⿰氵曳", + "expanded_ids": "⿰氵曳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曳", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洪", + "codepoint": "U+6D2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D2A", + "status": "exact_ids", + "ids": "⿰氵共", + "canonical_ids": "⿰氵共", + "expanded_ids": "⿰氵⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洫", + "codepoint": "U+6D2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D2B", + "status": "exact_ids", + "ids": "⿰氵血", + "canonical_ids": "⿰氵血", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "血" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洬", + "codepoint": "U+6D2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D2C", + "status": "exact_ids", + "ids": "⿰氵夙", + "canonical_ids": "⿰氵夙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "夙" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洭", + "codepoint": "U+6D2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D2D", + "status": "exact_ids", + "ids": "⿰氵匡", + "canonical_ids": "⿰氵匡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "匡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洮", + "codepoint": "U+6D2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D2E", + "status": "exact_ids", + "ids": "⿰氵兆", + "canonical_ids": "⿰氵兆", + "expanded_ids": "⿰氵兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洯", + "codepoint": "U+6D2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D2F", + "status": "exact_ids", + "ids": "⿱㓞水", + "canonical_ids": "⿱㓞水", + "expanded_ids": "⿱⿰丰刀水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洰", + "codepoint": "U+6D30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D30", + "status": "exact_ids", + "ids": "⿰氵巨", + "canonical_ids": "⿰氵巨", + "expanded_ids": "⿰氵巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洱", + "codepoint": "U+6D31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D31", + "status": "exact_ids", + "ids": "⿰氵耳", + "canonical_ids": "⿰氵耳", + "expanded_ids": "⿰氵耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洲", + "codepoint": "U+6D32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D32", + "status": "exact_ids", + "ids": "⿰氵州", + "canonical_ids": "⿰氵州", + "expanded_ids": "⿰氵州", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "州", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洳", + "codepoint": "U+6D33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D33", + "status": "exact_ids", + "ids": "⿰氵如", + "canonical_ids": "⿰氵如", + "expanded_ids": "⿰氵⿰女口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洴", + "codepoint": "U+6D34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D34", + "status": "exact_ids", + "ids": "⿰氵并", + "canonical_ids": "⿰氵并", + "expanded_ids": "⿰氵⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洵", + "codepoint": "U+6D35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D35", + "status": "exact_ids", + "ids": "⿰氵旬", + "canonical_ids": "⿰氵旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洶", + "codepoint": "U+6D36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D36", + "status": "exact_ids", + "ids": "⿰氵匈", + "canonical_ids": "⿰氵匈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "匈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洷", + "codepoint": "U+6D37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D37", + "status": "exact_ids", + "ids": "⿰氵至", + "canonical_ids": "⿰氵至", + "expanded_ids": "⿰氵⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洸", + "codepoint": "U+6D38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D38", + "status": "exact_ids", + "ids": "⿰氵光", + "canonical_ids": "⿰氵光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "氵" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洹", + "codepoint": "U+6D39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D39", + "status": "exact_ids", + "ids": "⿰氵亘", + "canonical_ids": "⿰氵亘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洺", + "codepoint": "U+6D3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D3A", + "status": "exact_ids", + "ids": "⿰氵名", + "canonical_ids": "⿰氵名", + "expanded_ids": "⿰氵⿱夕口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夕", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "活", + "codepoint": "U+6D3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D3B", + "status": "exact_ids", + "ids": "⿰氵舌", + "canonical_ids": "⿰氵舌", + "expanded_ids": "⿰氵⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洼", + "codepoint": "U+6D3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D3C", + "status": "exact_ids", + "ids": "⿰氵圭", + "canonical_ids": "⿰氵圭", + "expanded_ids": "⿰氵⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洽", + "codepoint": "U+6D3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D3D", + "status": "exact_ids", + "ids": "⿰氵合", + "canonical_ids": "⿰氵合", + "expanded_ids": "⿰氵⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "派", + "codepoint": "U+6D3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D3E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "洿", + "codepoint": "U+6D3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D3F", + "status": "exact_ids", + "ids": "⿰氵夸", + "canonical_ids": "⿰氵夸", + "expanded_ids": "⿰氵⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浀", + "codepoint": "U+6D40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D40", + "status": "exact_ids", + "ids": "⿰氵曲", + "canonical_ids": "⿰氵曲", + "expanded_ids": "⿰氵曲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "流", + "codepoint": "U+6D41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D41", + "status": "exact_ids", + "ids": "⿰氵㐬", + "canonical_ids": "⿰氵㐬", + "expanded_ids": "⿰氵⿱亠⿱厶川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "厶", + "川", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浂", + "codepoint": "U+6D42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D42", + "status": "exact_ids", + "ids": "⿰氵关", + "canonical_ids": "⿰氵关", + "expanded_ids": "⿰氵⿱丷⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浃", + "codepoint": "U+6D43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D43", + "status": "exact_ids", + "ids": "⿰氵夹", + "canonical_ids": "⿰氵夹", + "expanded_ids": "⿰氵⿻⿻一大丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浄", + "codepoint": "U+6D44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D44", + "status": "exact_ids", + "ids": "⿰氵争", + "canonical_ids": "⿰氵争", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "争" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浅", + "codepoint": "U+6D45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D45", + "status": "exact_ids", + "ids": "⿰氵𢦑", + "canonical_ids": "⿰氵𢦑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "𢦑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浆", + "codepoint": "U+6D46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D46", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浇", + "codepoint": "U+6D47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D47", + "status": "exact_ids", + "ids": "⿰氵尧", + "canonical_ids": "⿰氵尧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "尧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浈", + "codepoint": "U+6D48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D48", + "status": "exact_ids", + "ids": "⿰氵贞", + "canonical_ids": "⿰氵贞", + "expanded_ids": "⿰氵⿱卜⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "卜", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浉", + "codepoint": "U+6D49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D49", + "status": "exact_ids", + "ids": "⿰氵师", + "canonical_ids": "⿰氵师", + "expanded_ids": "⿰氵⿰刂⿱一⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "刂", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浊", + "codepoint": "U+6D4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D4A", + "status": "exact_ids", + "ids": "⿰氵虫", + "canonical_ids": "⿰氵虫", + "expanded_ids": "⿰氵虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "测", + "codepoint": "U+6D4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D4B", + "status": "exact_ids", + "ids": "⿰氵则", + "canonical_ids": "⿰氵则", + "expanded_ids": "⿰氵⿰⿻冂人刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "刂", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浌", + "codepoint": "U+6D4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D4C", + "status": "exact_ids", + "ids": "⿰氵伐", + "canonical_ids": "⿰氵伐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "氵" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浍", + "codepoint": "U+6D4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D4D", + "status": "exact_ids", + "ids": "⿰氵会", + "canonical_ids": "⿰氵会", + "expanded_ids": "⿰氵⿱⿱人一⿱一厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "厶", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "济", + "codepoint": "U+6D4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D4E", + "status": "exact_ids", + "ids": "⿰氵齐", + "canonical_ids": "⿰氵齐", + "expanded_ids": "⿰氵齐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "齐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浏", + "codepoint": "U+6D4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D4F", + "status": "exact_ids", + "ids": "⿰氵刘", + "canonical_ids": "⿰氵刘", + "expanded_ids": "⿰氵⿰文刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "文", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浐", + "codepoint": "U+6D50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D50", + "status": "exact_ids", + "ids": "⿰氵产", + "canonical_ids": "⿰氵产", + "expanded_ids": "⿰氵⿱⿱亠八厂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "厂", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浑", + "codepoint": "U+6D51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D51", + "status": "exact_ids", + "ids": "⿰氵军", + "canonical_ids": "⿰氵军", + "expanded_ids": "⿰氵⿱冖车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "氵", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浒", + "codepoint": "U+6D52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D52", + "status": "exact_ids", + "ids": "⿰氵许", + "canonical_ids": "⿰氵许", + "expanded_ids": "⿰氵⿰讠⿱⿻丿一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "十", + "氵", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浓", + "codepoint": "U+6D53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D53", + "status": "exact_ids", + "ids": "⿰氵农", + "canonical_ids": "⿰氵农", + "expanded_ids": "⿰氵农", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "农", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浔", + "codepoint": "U+6D54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D54", + "status": "exact_ids", + "ids": "⿰氵寻", + "canonical_ids": "⿰氵寻", + "expanded_ids": "⿰氵⿱彐寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "彐", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浕", + "codepoint": "U+6D55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D55", + "status": "exact_ids", + "ids": "⿰氵尽", + "canonical_ids": "⿰氵尽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "尸", + "氵" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浖", + "codepoint": "U+6D56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D56", + "status": "exact_ids", + "ids": "⿰氵寽", + "canonical_ids": "⿰氵寽", + "expanded_ids": "⿰氵⿱爫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "氵", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浗", + "codepoint": "U+6D57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D57", + "status": "exact_ids", + "ids": "⿰氵求", + "canonical_ids": "⿰氵求", + "expanded_ids": "⿰氵求", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "求" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浘", + "codepoint": "U+6D58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D58", + "status": "exact_ids", + "ids": "⿰氵尾", + "canonical_ids": "⿰氵尾", + "expanded_ids": "⿰氵⿱尸毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "毛", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浙", + "codepoint": "U+6D59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D59", + "status": "exact_ids", + "ids": "⿰氵折", + "canonical_ids": "⿰氵折", + "expanded_ids": "⿰氵⿰扌斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "斤", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浚", + "codepoint": "U+6D5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D5A", + "status": "exact_ids", + "ids": "⿰氵夋", + "canonical_ids": "⿰氵夋", + "expanded_ids": "⿰氵⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浛", + "codepoint": "U+6D5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D5B", + "status": "exact_ids", + "ids": "⿰氵含", + "canonical_ids": "⿰氵含", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "氵" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浜", + "codepoint": "U+6D5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D5C", + "status": "exact_ids", + "ids": "⿰氵兵", + "canonical_ids": "⿰氵兵", + "expanded_ids": "⿰氵⿱丘八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "八", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浝", + "codepoint": "U+6D5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D5D", + "status": "exact_ids", + "ids": "⿰氵尨", + "canonical_ids": "⿰氵尨", + "expanded_ids": "⿰氵⿰尤彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "彡", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浞", + "codepoint": "U+6D5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D5E", + "status": "exact_ids", + "ids": "⿰氵足", + "canonical_ids": "⿰氵足", + "expanded_ids": "⿰氵⿱口龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "氵", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浟", + "codepoint": "U+6D5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D5F", + "status": "exact_ids", + "ids": "⿰氵攸", + "canonical_ids": "⿰氵攸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "攸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浠", + "codepoint": "U+6D60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D60", + "status": "exact_ids", + "ids": "⿰氵希", + "canonical_ids": "⿰氵希", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "氵" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浡", + "codepoint": "U+6D61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D61", + "status": "exact_ids", + "ids": "⿰氵孛", + "canonical_ids": "⿰氵孛", + "expanded_ids": "⿰氵⿳十冖子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "子", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浢", + "codepoint": "U+6D62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D62", + "status": "exact_ids", + "ids": "⿰氵豆", + "canonical_ids": "⿰氵豆", + "expanded_ids": "⿰氵豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浣", + "codepoint": "U+6D63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D63", + "status": "exact_ids", + "ids": "⿰氵完", + "canonical_ids": "⿰氵完", + "expanded_ids": "⿰氵⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "宀", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浤", + "codepoint": "U+6D64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D64", + "status": "exact_ids", + "ids": "⿰氵宏", + "canonical_ids": "⿰氵宏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "氵" + ], + "unresolved_leaves": [ + "厷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浥", + "codepoint": "U+6D65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D65", + "status": "exact_ids", + "ids": "⿰氵邑", + "canonical_ids": "⿰氵邑", + "expanded_ids": "⿰氵⿱口巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "巴", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浦", + "codepoint": "U+6D66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D66", + "status": "exact_ids", + "ids": "⿰氵甫", + "canonical_ids": "⿰氵甫", + "expanded_ids": "⿰氵甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浧", + "codepoint": "U+6D67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D67", + "status": "exact_ids", + "ids": "⿰氵呈", + "canonical_ids": "⿰氵呈", + "expanded_ids": "⿰氵⿱口王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "氵", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浨", + "codepoint": "U+6D68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D68", + "status": "exact_ids", + "ids": "⿰氵宋", + "canonical_ids": "⿰氵宋", + "expanded_ids": "⿰氵⿱宀木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浩", + "codepoint": "U+6D69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D69", + "status": "exact_ids", + "ids": "⿰氵告", + "canonical_ids": "⿰氵告", + "expanded_ids": "⿰氵⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "氵", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浪", + "codepoint": "U+6D6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D6A", + "status": "exact_ids", + "ids": "⿰氵良", + "canonical_ids": "⿰氵良", + "expanded_ids": "⿰氵⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氵", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浫", + "codepoint": "U+6D6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D6B", + "status": "exact_ids", + "ids": "⿰氵罕", + "canonical_ids": "⿰氵罕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "氵" + ], + "unresolved_leaves": [ + "⺳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浬", + "codepoint": "U+6D6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D6C", + "status": "exact_ids", + "ids": "⿰氵里", + "canonical_ids": "⿰氵里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浭", + "codepoint": "U+6D6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D6D", + "status": "exact_ids", + "ids": "⿰氵更", + "canonical_ids": "⿰氵更", + "expanded_ids": "⿰氵更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "更", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浮", + "codepoint": "U+6D6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D6E", + "status": "exact_ids", + "ids": "⿰氵孚", + "canonical_ids": "⿰氵孚", + "expanded_ids": "⿰氵⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "氵", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浯", + "codepoint": "U+6D6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D6F", + "status": "exact_ids", + "ids": "⿰氵吾", + "canonical_ids": "⿰氵吾", + "expanded_ids": "⿰氵⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浰", + "codepoint": "U+6D70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D70", + "status": "exact_ids", + "ids": "⿰氵利", + "canonical_ids": "⿰氵利", + "expanded_ids": "⿰氵⿰⿻丿木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浱", + "codepoint": "U+6D71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D71", + "status": "exact_ids", + "ids": "⿰氵辰", + "canonical_ids": "⿰氵辰", + "expanded_ids": "⿰氵辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浲", + "codepoint": "U+6D72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D72", + "status": "exact_ids", + "ids": "⿰氵夆", + "canonical_ids": "⿰氵夆", + "expanded_ids": "⿰氵⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浳", + "codepoint": "U+6D73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D73", + "status": "exact_ids", + "ids": "⿰氵𢎀", + "canonical_ids": "⿰氵𢎀", + "expanded_ids": "⿰氵⿱弋月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弋", + "月", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浴", + "codepoint": "U+6D74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D74", + "status": "exact_ids", + "ids": "⿰氵谷", + "canonical_ids": "⿰氵谷", + "expanded_ids": "⿰氵⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浵", + "codepoint": "U+6D75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D75", + "status": "exact_ids", + "ids": "⿰氵彤", + "canonical_ids": "⿰氵彤", + "expanded_ids": "⿰氵⿰丹彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丹", + "彡", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浶", + "codepoint": "U+6D76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D76", + "status": "exact_ids", + "ids": "⿰氵牢", + "canonical_ids": "⿰氵牢", + "expanded_ids": "⿰氵⿱宀牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "氵", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "海", + "codepoint": "U+6D77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D77", + "status": "exact_ids", + "ids": "⿰氵每", + "canonical_ids": "⿰氵每", + "expanded_ids": "⿰氵⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "母", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浸", + "codepoint": "U+6D78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D78", + "status": "exact_ids", + "ids": "⿰氵𠬶", + "canonical_ids": "⿰氵𠬶", + "expanded_ids": "⿰氵⿳彐冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "又", + "彐", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浹", + "codepoint": "U+6D79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D79", + "status": "exact_ids", + "ids": "⿰氵夾", + "canonical_ids": "⿰氵夾", + "expanded_ids": "⿰氵⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浺", + "codepoint": "U+6D7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D7A", + "status": "exact_ids", + "ids": "⿰氵忡", + "canonical_ids": "⿰氵忡", + "expanded_ids": "⿰氵⿰忄⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "忄", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浻", + "codepoint": "U+6D7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D7B", + "status": "exact_ids", + "ids": "⿰氵冏", + "canonical_ids": "⿰氵冏", + "expanded_ids": "⿰氵⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浼", + "codepoint": "U+6D7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D7C", + "status": "exact_ids", + "ids": "⿰氵免", + "canonical_ids": "⿰氵免", + "expanded_ids": "⿰氵免", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "免", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浽", + "codepoint": "U+6D7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D7D", + "status": "exact_ids", + "ids": "⿰氵妥", + "canonical_ids": "⿰氵妥", + "expanded_ids": "⿰氵⿱爫女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "氵", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浾", + "codepoint": "U+6D7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D7E", + "status": "exact_ids", + "ids": "⿰氵赤", + "canonical_ids": "⿰氵赤", + "expanded_ids": "⿰氵赤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "赤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "浿", + "codepoint": "U+6D7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D7F", + "status": "exact_ids", + "ids": "⿰氵貝", + "canonical_ids": "⿰氵貝", + "expanded_ids": "⿰氵⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涀", + "codepoint": "U+6D80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D80", + "status": "exact_ids", + "ids": "⿰氵見", + "canonical_ids": "⿰氵見", + "expanded_ids": "⿰氵⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涁", + "codepoint": "U+6D81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D81", + "status": "exact_ids", + "ids": "⿰氵杉", + "canonical_ids": "⿰氵杉", + "expanded_ids": "⿰氵⿰木彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涂", + "codepoint": "U+6D82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D82", + "status": "exact_ids", + "ids": "⿰氵余", + "canonical_ids": "⿰氵余", + "expanded_ids": "⿰氵⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涃", + "codepoint": "U+6D83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D83", + "status": "exact_ids", + "ids": "⿰氵困", + "canonical_ids": "⿰氵困", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "困" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涄", + "codepoint": "U+6D84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D84", + "status": "exact_ids", + "ids": "⿰氵甹", + "canonical_ids": "⿰氵甹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "氵" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涅", + "codepoint": "U+6D85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D85", + "status": "exact_ids", + "ids": "⿰氵圼", + "canonical_ids": "⿰氵圼", + "expanded_ids": "⿰氵⿱日土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涆", + "codepoint": "U+6D86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D86", + "status": "exact_ids", + "ids": "⿰氵旰", + "canonical_ids": "⿰氵旰", + "expanded_ids": "⿰氵⿰日⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涇", + "codepoint": "U+6D87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D87", + "status": "exact_ids", + "ids": "⿰氵巠", + "canonical_ids": "⿰氵巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "消", + "codepoint": "U+6D88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D88", + "status": "exact_ids", + "ids": "⿰氵肖", + "canonical_ids": "⿰氵肖", + "expanded_ids": "⿰氵⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涉", + "codepoint": "U+6D89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D89", + "status": "exact_ids", + "ids": "⿰氵步", + "canonical_ids": "⿰氵步", + "expanded_ids": "⿰氵⿱止𣥂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止", + "氵", + "𣥂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [ + "渉" + ] + }, + { + "character": "涊", + "codepoint": "U+6D8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D8A", + "status": "exact_ids", + "ids": "⿰氵忍", + "canonical_ids": "⿰氵忍", + "expanded_ids": "⿰氵⿱⿻刀丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "心", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涋", + "codepoint": "U+6D8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D8B", + "status": "exact_ids", + "ids": "⿰氵宊", + "canonical_ids": "⿰氵宊", + "expanded_ids": "⿰氵⿱宀⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "宀", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涌", + "codepoint": "U+6D8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D8C", + "status": "exact_ids", + "ids": "⿰氵甬", + "canonical_ids": "⿰氵甬", + "expanded_ids": "⿰氵⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "氵", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涍", + "codepoint": "U+6D8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D8D", + "status": "exact_ids", + "ids": "⿰氵孝", + "canonical_ids": "⿰氵孝", + "expanded_ids": "⿰氵⿱⿻土丿子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "子", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涎", + "codepoint": "U+6D8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D8E", + "status": "exact_ids", + "ids": "⿰氵延", + "canonical_ids": "⿰氵延", + "expanded_ids": "⿰氵⿰廴⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廴", + "止", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涏", + "codepoint": "U+6D8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D8F", + "status": "exact_ids", + "ids": "⿰氵廷", + "canonical_ids": "⿰氵廷", + "expanded_ids": "⿰氵⿰廴⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "廴", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涐", + "codepoint": "U+6D90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D90", + "status": "exact_ids", + "ids": "⿰氵我", + "canonical_ids": "⿰氵我", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "氵" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涑", + "codepoint": "U+6D91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D91", + "status": "exact_ids", + "ids": "⿰氵束", + "canonical_ids": "⿰氵束", + "expanded_ids": "⿰氵⿻木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涒", + "codepoint": "U+6D92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D92", + "status": "exact_ids", + "ids": "⿰氵君", + "canonical_ids": "⿰氵君", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "氵" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涓", + "codepoint": "U+6D93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D93", + "status": "exact_ids", + "ids": "⿰氵肙", + "canonical_ids": "⿰氵肙", + "expanded_ids": "⿰氵⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涔", + "codepoint": "U+6D94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D94", + "status": "exact_ids", + "ids": "⿰氵岑", + "canonical_ids": "⿰氵岑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "山", + "氵" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涕", + "codepoint": "U+6D95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D95", + "status": "exact_ids", + "ids": "⿰氵弟", + "canonical_ids": "⿰氵弟", + "expanded_ids": "⿰氵⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涖", + "codepoint": "U+6D96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D96", + "status": "exact_ids", + "ids": "⿰氵位", + "canonical_ids": "⿰氵位", + "expanded_ids": "⿰氵⿰亻立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "氵", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涗", + "codepoint": "U+6D97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D97", + "status": "exact_ids", + "ids": "⿰氵兌", + "canonical_ids": "⿰氵兌", + "expanded_ids": "⿰氵⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "涚" + ] + }, + { + "character": "涘", + "codepoint": "U+6D98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D98", + "status": "exact_ids", + "ids": "⿰氵矣", + "canonical_ids": "⿰氵矣", + "expanded_ids": "⿰氵⿱厶⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "厶", + "大", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涙", + "codepoint": "U+6D99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D99", + "status": "exact_ids", + "ids": "⿰氵戻", + "canonical_ids": "⿰氵戻", + "expanded_ids": "⿰氵⿱⿻一尸大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "尸", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涚", + "codepoint": "U+6D9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D9A", + "status": "exact_ids", + "ids": "⿰氵兌", + "canonical_ids": "⿰氵兌", + "expanded_ids": "⿰氵⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "涗" + ] + }, + { + "character": "涛", + "codepoint": "U+6D9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D9B", + "status": "exact_ids", + "ids": "⿰氵寿", + "canonical_ids": "⿰氵寿", + "expanded_ids": "⿰氵⿻丰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "寸", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涜", + "codepoint": "U+6D9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D9C", + "status": "exact_ids", + "ids": "⿰氵売", + "canonical_ids": "⿰氵売", + "expanded_ids": "⿰氵⿳士冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "士", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涝", + "codepoint": "U+6D9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D9D", + "status": "exact_ids", + "ids": "⿰氵劳", + "canonical_ids": "⿰氵劳", + "expanded_ids": "⿰氵⿳艹冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涞", + "codepoint": "U+6D9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D9E", + "status": "exact_ids", + "ids": "⿰氵来", + "canonical_ids": "⿰氵来", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "来" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涟", + "codepoint": "U+6D9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6D9F", + "status": "exact_ids", + "ids": "⿰氵连", + "canonical_ids": "⿰氵连", + "expanded_ids": "⿰氵⿰辶车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "车", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涠", + "codepoint": "U+6DA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DA0", + "status": "exact_ids", + "ids": "⿰氵围", + "canonical_ids": "⿰氵围", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "围" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涡", + "codepoint": "U+6DA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DA1", + "status": "exact_ids", + "ids": "⿰氵呙", + "canonical_ids": "⿰氵呙", + "expanded_ids": "⿰氵⿱口⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "涢" + ] + }, + { + "character": "涢", + "codepoint": "U+6DA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DA2", + "status": "exact_ids", + "ids": "⿰氵员", + "canonical_ids": "⿰氵员", + "expanded_ids": "⿰氵⿱口⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "涡" + ] + }, + { + "character": "涣", + "codepoint": "U+6DA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DA3", + "status": "exact_ids", + "ids": "⿰氵奂", + "canonical_ids": "⿰氵奂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "氵" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涤", + "codepoint": "U+6DA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DA4", + "status": "exact_ids", + "ids": "⿰氵条", + "canonical_ids": "⿰氵条", + "expanded_ids": "⿰氵⿱夂木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夂", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涥", + "codepoint": "U+6DA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DA5", + "status": "exact_ids", + "ids": "⿰氵亨", + "canonical_ids": "⿰氵亨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "亨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "润", + "codepoint": "U+6DA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DA6", + "status": "exact_ids", + "ids": "⿰氵闰", + "canonical_ids": "⿰氵闰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "闰" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涧", + "codepoint": "U+6DA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DA7", + "status": "exact_ids", + "ids": "⿰氵间", + "canonical_ids": "⿰氵间", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "间" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涨", + "codepoint": "U+6DA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DA8", + "status": "exact_ids", + "ids": "⿰氵张", + "canonical_ids": "⿰氵张", + "expanded_ids": "⿰氵⿰弓长", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "氵", + "长" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涩", + "codepoint": "U+6DA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DA9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涪", + "codepoint": "U+6DAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DAA", + "status": "exact_ids", + "ids": "⿰氵咅", + "canonical_ids": "⿰氵咅", + "expanded_ids": "⿰氵⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "氵", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涫", + "codepoint": "U+6DAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DAB", + "status": "exact_ids", + "ids": "⿰氵官", + "canonical_ids": "⿰氵官", + "expanded_ids": "⿰氵⿱宀㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "宀", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涬", + "codepoint": "U+6DAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DAC", + "status": "exact_ids", + "ids": "⿰氵幸", + "canonical_ids": "⿰氵幸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "氵" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涭", + "codepoint": "U+6DAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DAD", + "status": "exact_ids", + "ids": "⿰氵受", + "canonical_ids": "⿰氵受", + "expanded_ids": "⿰氵⿳爫冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "又", + "氵", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涮", + "codepoint": "U+6DAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DAE", + "status": "exact_ids", + "ids": "⿰氵刷", + "canonical_ids": "⿰氵刷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "刷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涯", + "codepoint": "U+6DAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DAF", + "status": "exact_ids", + "ids": "⿰氵厓", + "canonical_ids": "⿰氵厓", + "expanded_ids": "⿰氵⿱厂⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "土", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涰", + "codepoint": "U+6DB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DB0", + "status": "exact_ids", + "ids": "⿰氵叕", + "canonical_ids": "⿰氵叕", + "expanded_ids": "⿰氵⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涱", + "codepoint": "U+6DB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DB1", + "status": "exact_ids", + "ids": "⿰氵長", + "canonical_ids": "⿰氵長", + "expanded_ids": "⿰氵長", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "長" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "液", + "codepoint": "U+6DB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DB2", + "status": "exact_ids", + "ids": "⿰氵夜", + "canonical_ids": "⿰氵夜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "夜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涳", + "codepoint": "U+6DB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DB3", + "status": "exact_ids", + "ids": "⿰氵空", + "canonical_ids": "⿰氵空", + "expanded_ids": "⿰氵⿱⿱宀八工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "工", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涴", + "codepoint": "U+6DB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DB4", + "status": "exact_ids", + "ids": "⿰氵宛", + "canonical_ids": "⿰氵宛", + "expanded_ids": "⿰氵⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涵", + "codepoint": "U+6DB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DB5", + "status": "exact_ids", + "ids": "⿰氵函", + "canonical_ids": "⿰氵函", + "expanded_ids": "⿰氵函", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "函", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涶", + "codepoint": "U+6DB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DB6", + "status": "exact_ids", + "ids": "⿰氵垂", + "canonical_ids": "⿰氵垂", + "expanded_ids": "⿰氵垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "垂", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涷", + "codepoint": "U+6DB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DB7", + "status": "exact_ids", + "ids": "⿰氵東", + "canonical_ids": "⿰氵東", + "expanded_ids": "⿰氵⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涸", + "codepoint": "U+6DB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DB8", + "status": "exact_ids", + "ids": "⿰氵固", + "canonical_ids": "⿰氵固", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "固" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涹", + "codepoint": "U+6DB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DB9", + "status": "exact_ids", + "ids": "⿰氵委", + "canonical_ids": "⿰氵委", + "expanded_ids": "⿰氵⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涺", + "codepoint": "U+6DBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DBA", + "status": "exact_ids", + "ids": "⿰氵居", + "canonical_ids": "⿰氵居", + "expanded_ids": "⿰氵⿱尸⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "尸", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涻", + "codepoint": "U+6DBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DBB", + "status": "exact_ids", + "ids": "⿰氵舍", + "canonical_ids": "⿰氵舍", + "expanded_ids": "⿰氵⿱⿱人一⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "十", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涼", + "codepoint": "U+6DBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DBC", + "status": "exact_ids", + "ids": "⿰氵京", + "canonical_ids": "⿰氵京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涽", + "codepoint": "U+6DBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DBD", + "status": "exact_ids", + "ids": "⿰氵昏", + "canonical_ids": "⿰氵昏", + "expanded_ids": "⿰氵⿱氏日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "氏", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涾", + "codepoint": "U+6DBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DBE", + "status": "exact_ids", + "ids": "⿰氵沓", + "canonical_ids": "⿰氵沓", + "expanded_ids": "⿰氵⿱水日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "水", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "涿", + "codepoint": "U+6DBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DBF", + "status": "exact_ids", + "ids": "⿰氵豖", + "canonical_ids": "⿰氵豖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "豖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淀", + "codepoint": "U+6DC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DC0", + "status": "exact_ids", + "ids": "⿰氵定", + "canonical_ids": "⿰氵定", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "氵" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淁", + "codepoint": "U+6DC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DC1", + "status": "exact_ids", + "ids": "⿰氵妾", + "canonical_ids": "⿰氵妾", + "expanded_ids": "⿰氵⿱立女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "氵", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淂", + "codepoint": "U+6DC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DC2", + "status": "exact_ids", + "ids": "⿰氵㝵", + "canonical_ids": "⿰氵㝵", + "expanded_ids": "⿰氵⿱日寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淃", + "codepoint": "U+6DC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DC3", + "status": "exact_ids", + "ids": "⿰氵卷", + "canonical_ids": "⿰氵卷", + "expanded_ids": "⿰氵⿱龹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "氵", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淄", + "codepoint": "U+6DC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DC4", + "status": "exact_ids", + "ids": "⿰氵甾", + "canonical_ids": "⿰氵甾", + "expanded_ids": "⿰氵⿱巛田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "氵", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "湽" + ] + }, + { + "character": "淅", + "codepoint": "U+6DC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DC5", + "status": "exact_ids", + "ids": "⿰氵析", + "canonical_ids": "⿰氵析", + "expanded_ids": "⿰氵⿰木斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淆", + "codepoint": "U+6DC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DC6", + "status": "exact_ids", + "ids": "⿰氵肴", + "canonical_ids": "⿰氵肴", + "expanded_ids": "⿰氵⿱乂⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "乂", + "月", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淇", + "codepoint": "U+6DC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DC7", + "status": "exact_ids", + "ids": "⿰氵其", + "canonical_ids": "⿰氵其", + "expanded_ids": "⿰氵其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淈", + "codepoint": "U+6DC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DC8", + "status": "exact_ids", + "ids": "⿰氵屈", + "canonical_ids": "⿰氵屈", + "expanded_ids": "⿰氵⿱尸⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "尸", + "屮", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淉", + "codepoint": "U+6DC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DC9", + "status": "exact_ids", + "ids": "⿰氵果", + "canonical_ids": "⿰氵果", + "expanded_ids": "⿰氵⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "氵", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淊", + "codepoint": "U+6DCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DCA", + "status": "exact_ids", + "ids": "⿰氵臽", + "canonical_ids": "⿰氵臽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "臼" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淋", + "codepoint": "U+6DCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DCB", + "status": "exact_ids", + "ids": "⿰氵林", + "canonical_ids": "⿰氵林", + "expanded_ids": "⿰氵⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淌", + "codepoint": "U+6DCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DCC", + "status": "exact_ids", + "ids": "⿰氵尚", + "canonical_ids": "⿰氵尚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "氵" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淍", + "codepoint": "U+6DCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DCD", + "status": "exact_ids", + "ids": "⿰氵周", + "canonical_ids": "⿰氵周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淎", + "codepoint": "U+6DCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DCE", + "status": "exact_ids", + "ids": "⿰氵奉", + "canonical_ids": "⿰氵奉", + "expanded_ids": "⿰氵⿱𡗗⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "氵", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淏", + "codepoint": "U+6DCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DCF", + "status": "exact_ids", + "ids": "⿰氵昊", + "canonical_ids": "⿰氵昊", + "expanded_ids": "⿰氵⿱日⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淐", + "codepoint": "U+6DD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DD0", + "status": "exact_ids", + "ids": "⿰氵昌", + "canonical_ids": "⿰氵昌", + "expanded_ids": "⿰氵⿱日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淑", + "codepoint": "U+6DD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DD1", + "status": "exact_ids", + "ids": "⿰氵叔", + "canonical_ids": "⿰氵叔", + "expanded_ids": "⿰氵⿰⿱上小又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "又", + "小", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淒", + "codepoint": "U+6DD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DD2", + "status": "exact_ids", + "ids": "⿰氵妻", + "canonical_ids": "⿰氵妻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "妻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淓", + "codepoint": "U+6DD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DD3", + "status": "exact_ids", + "ids": "⿰氵芳", + "canonical_ids": "⿰氵芳", + "expanded_ids": "⿰氵⿱艹方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淔", + "codepoint": "U+6DD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DD4", + "status": "exact_ids", + "ids": "⿰氵直", + "canonical_ids": "⿰氵直", + "expanded_ids": "⿰氵⿱⿱十目乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "十", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淕", + "codepoint": "U+6DD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DD5", + "status": "exact_ids", + "ids": "⿰氵坴", + "canonical_ids": "⿰氵坴", + "expanded_ids": "⿰氵⿱⿱土儿土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淖", + "codepoint": "U+6DD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DD6", + "status": "exact_ids", + "ids": "⿰氵卓", + "canonical_ids": "⿰氵卓", + "expanded_ids": "⿰氵⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淗", + "codepoint": "U+6DD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DD7", + "status": "exact_ids", + "ids": "⿰氵匊", + "canonical_ids": "⿰氵匊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "匊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淘", + "codepoint": "U+6DD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DD8", + "status": "exact_ids", + "ids": "⿰氵匋", + "canonical_ids": "⿰氵匋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "匋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淙", + "codepoint": "U+6DD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DD9", + "status": "exact_ids", + "ids": "⿰氵宗", + "canonical_ids": "⿰氵宗", + "expanded_ids": "⿰氵⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淚", + "codepoint": "U+6DDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DDA", + "status": "exact_ids", + "ids": "⿰氵戾", + "canonical_ids": "⿰氵戾", + "expanded_ids": "⿰氵⿱⿻丿尸⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "大", + "尸", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淛", + "codepoint": "U+6DDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DDB", + "status": "exact_ids", + "ids": "⿰氵制", + "canonical_ids": "⿰氵制", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "制" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淜", + "codepoint": "U+6DDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DDC", + "status": "exact_ids", + "ids": "⿰氵朋", + "canonical_ids": "⿰氵朋", + "expanded_ids": "⿰氵⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淝", + "codepoint": "U+6DDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DDD", + "status": "exact_ids", + "ids": "⿰氵肥", + "canonical_ids": "⿰氵肥", + "expanded_ids": "⿰氵⿰月巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "月", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淞", + "codepoint": "U+6DDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DDE", + "status": "exact_ids", + "ids": "⿰氵松", + "canonical_ids": "⿰氵松", + "expanded_ids": "⿰氵⿰木⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淟", + "codepoint": "U+6DDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DDF", + "status": "exact_ids", + "ids": "⿰氵典", + "canonical_ids": "⿰氵典", + "expanded_ids": "⿰氵典", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "典", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淠", + "codepoint": "U+6DE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DE0", + "status": "exact_ids", + "ids": "⿰氵畀", + "canonical_ids": "⿰氵畀", + "expanded_ids": "⿰氵⿱田丌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "氵", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淡", + "codepoint": "U+6DE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DE1", + "status": "exact_ids", + "ids": "⿰氵炎", + "canonical_ids": "⿰氵炎", + "expanded_ids": "⿰氵⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淢", + "codepoint": "U+6DE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DE2", + "status": "exact_ids", + "ids": "⿰氵或", + "canonical_ids": "⿰氵或", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "或" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淣", + "codepoint": "U+6DE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DE3", + "status": "exact_ids", + "ids": "⿰氵兒", + "canonical_ids": "⿰氵兒", + "expanded_ids": "⿰氵⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "氵", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淤", + "codepoint": "U+6DE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DE4", + "status": "exact_ids", + "ids": "⿰氵於", + "canonical_ids": "⿰氵於", + "expanded_ids": "⿰氵⿰方⿱人冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冫", + "方", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淥", + "codepoint": "U+6DE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DE5", + "status": "exact_ids", + "ids": "⿰氵彔", + "canonical_ids": "⿰氵彔", + "expanded_ids": "⿰氵⿱彑氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "氵", + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淦", + "codepoint": "U+6DE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DE6", + "status": "exact_ids", + "ids": "⿰氵金", + "canonical_ids": "⿰氵金", + "expanded_ids": "⿰氵金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淧", + "codepoint": "U+6DE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DE7", + "status": "exact_ids", + "ids": "⿰氵宓", + "canonical_ids": "⿰氵宓", + "expanded_ids": "⿰氵⿱宀⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "宀", + "心", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淨", + "codepoint": "U+6DE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DE8", + "status": "exact_ids", + "ids": "⿰氵爭", + "canonical_ids": "⿰氵爭", + "expanded_ids": "⿰氵⿱爫肀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "爫", + "肀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淩", + "codepoint": "U+6DE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DE9", + "status": "exact_ids", + "ids": "⿰氵夌", + "canonical_ids": "⿰氵夌", + "expanded_ids": "⿰氵⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淪", + "codepoint": "U+6DEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DEA", + "status": "exact_ids", + "ids": "⿰氵侖", + "canonical_ids": "⿰氵侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "氵" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淫", + "codepoint": "U+6DEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DEB", + "status": "exact_ids", + "ids": "⿰氵㸒", + "canonical_ids": "⿰氵㸒", + "expanded_ids": "⿰氵⿱爪王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "爪", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淬", + "codepoint": "U+6DEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DEC", + "status": "exact_ids", + "ids": "⿰氵卒", + "canonical_ids": "⿰氵卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淭", + "codepoint": "U+6DED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DED", + "status": "exact_ids", + "ids": "⿰氵㦿", + "canonical_ids": "⿰氵㦿", + "expanded_ids": "⿰氵⿱⿻一尸木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淮", + "codepoint": "U+6DEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DEE", + "status": "exact_ids", + "ids": "⿰氵隹", + "canonical_ids": "⿰氵隹", + "expanded_ids": "⿰氵隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淯", + "codepoint": "U+6DEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DEF", + "status": "exact_ids", + "ids": "⿰氵育", + "canonical_ids": "⿰氵育", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "育" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淰", + "codepoint": "U+6DF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DF0", + "status": "exact_ids", + "ids": "⿰氵念", + "canonical_ids": "⿰氵念", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "心", + "氵" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "深", + "codepoint": "U+6DF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DF1", + "status": "exact_ids", + "ids": "⿰氵罙", + "canonical_ids": "⿰氵罙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "氵" + ], + "unresolved_leaves": [ + "⺳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淲", + "codepoint": "U+6DF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DF2", + "status": "exact_ids", + "ids": "⿰氵虎", + "canonical_ids": "⿰氵虎", + "expanded_ids": "⿰氵⿱虍儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "氵", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淳", + "codepoint": "U+6DF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DF3", + "status": "exact_ids", + "ids": "⿰氵享", + "canonical_ids": "⿰氵享", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淴", + "codepoint": "U+6DF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DF4", + "status": "exact_ids", + "ids": "⿰氵忽", + "canonical_ids": "⿰氵忽", + "expanded_ids": "⿰氵⿱勿心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "心", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淵", + "codepoint": "U+6DF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DF5", + "status": "exact_ids", + "ids": "⿰氵𣶒", + "canonical_ids": "⿰氵𣶒", + "expanded_ids": "⿰氵𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 76, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淶", + "codepoint": "U+6DF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DF6", + "status": "exact_ids", + "ids": "⿰氵來", + "canonical_ids": "⿰氵來", + "expanded_ids": "⿰氵⿻木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "混", + "codepoint": "U+6DF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DF7", + "status": "exact_ids", + "ids": "⿰氵昆", + "canonical_ids": "⿰氵昆", + "expanded_ids": "⿰氵⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淸", + "codepoint": "U+6DF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DF8", + "status": "exact_ids", + "ids": "⿰氵靑", + "canonical_ids": "⿰氵靑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "円", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淹", + "codepoint": "U+6DF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DF9", + "status": "exact_ids", + "ids": "⿰氵奄", + "canonical_ids": "⿰氵奄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "氵" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淺", + "codepoint": "U+6DFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DFA", + "status": "exact_ids", + "ids": "⿰氵戔", + "canonical_ids": "⿰氵戔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "添", + "codepoint": "U+6DFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DFB", + "status": "exact_ids", + "ids": "⿰氵忝", + "canonical_ids": "⿰氵忝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "氵" + ], + "unresolved_leaves": [ + "㣺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淼", + "codepoint": "U+6DFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DFC", + "status": "exact_ids", + "ids": "⿱水⿰水水", + "canonical_ids": "⿱水⿰水水", + "expanded_ids": "⿱水⿰水水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淽", + "codepoint": "U+6DFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DFD", + "status": "exact_ids", + "ids": "⿰氵芷", + "canonical_ids": "⿰氵芷", + "expanded_ids": "⿰氵⿱艹止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淾", + "codepoint": "U+6DFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DFE", + "status": "exact_ids", + "ids": "⿱金水", + "canonical_ids": "⿱金水", + "expanded_ids": "⿱金水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "水", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "淿", + "codepoint": "U+6DFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6DFF", + "status": "exact_ids", + "ids": "⿰氵帛", + "canonical_ids": "⿰氵帛", + "expanded_ids": "⿰氵⿱⿻日丶⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丶", + "冂", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渀", + "codepoint": "U+6E00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E00", + "status": "exact_ids", + "ids": "⿰氵奔", + "canonical_ids": "⿰氵奔", + "expanded_ids": "⿰氵⿱大⿱十廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "大", + "廾", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渁", + "codepoint": "U+6E01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E01", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渂", + "codepoint": "U+6E02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E02", + "status": "exact_ids", + "ids": "⿰氵旻", + "canonical_ids": "⿰氵旻", + "expanded_ids": "⿰氵⿱日文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渃", + "codepoint": "U+6E03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E03", + "status": "exact_ids", + "ids": "⿰氵若", + "canonical_ids": "⿰氵若", + "expanded_ids": "⿰氵⿱艹⿱⿻丿一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渄", + "codepoint": "U+6E04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E04", + "status": "exact_ids", + "ids": "⿰氵非", + "canonical_ids": "⿰氵非", + "expanded_ids": "⿰氵非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "清", + "codepoint": "U+6E05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E05", + "status": "exact_ids", + "ids": "⿰氵青", + "canonical_ids": "⿰氵青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "氵" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渆", + "codepoint": "U+6E06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E06", + "status": "exact_ids", + "ids": "⿰洴刂", + "canonical_ids": "⿰洴刂", + "expanded_ids": "⿰⿰氵⿱丷⿱一廾刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "刂", + "廾", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渇", + "codepoint": "U+6E07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E07", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "済", + "codepoint": "U+6E08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E08", + "status": "exact_ids", + "ids": "⿰氵斉", + "canonical_ids": "⿰氵斉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "斉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渉", + "codepoint": "U+6E09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E09", + "status": "exact_ids", + "ids": "⿰氵步", + "canonical_ids": "⿰氵步", + "expanded_ids": "⿰氵⿱止𣥂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止", + "氵", + "𣥂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [ + "涉" + ] + }, + { + "character": "渊", + "codepoint": "U+6E0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E0A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渋", + "codepoint": "U+6E0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E0B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渌", + "codepoint": "U+6E0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E0C", + "status": "exact_ids", + "ids": "⿰氵录", + "canonical_ids": "⿰氵录", + "expanded_ids": "⿰氵⿱彐氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "氵", + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渍", + "codepoint": "U+6E0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E0D", + "status": "exact_ids", + "ids": "⿰氵责", + "canonical_ids": "⿰氵责", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "氵" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渎", + "codepoint": "U+6E0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E0E", + "status": "exact_ids", + "ids": "⿰氵卖", + "canonical_ids": "⿰氵卖", + "expanded_ids": "⿰氵⿱十⿱乛⿻大冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "冫", + "十", + "大", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渏", + "codepoint": "U+6E0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E0F", + "status": "exact_ids", + "ids": "⿰氵奇", + "canonical_ids": "⿰氵奇", + "expanded_ids": "⿰氵⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渐", + "codepoint": "U+6E10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E10", + "status": "exact_ids", + "ids": "⿰氵斩", + "canonical_ids": "⿰氵斩", + "expanded_ids": "⿰氵⿰车斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "氵", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渑", + "codepoint": "U+6E11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E11", + "status": "exact_ids", + "ids": "⿰氵黾", + "canonical_ids": "⿰氵黾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "氵" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渒", + "codepoint": "U+6E12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E12", + "status": "exact_ids", + "ids": "⿰氵卑", + "canonical_ids": "⿰氵卑", + "expanded_ids": "⿰氵卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渓", + "codepoint": "U+6E13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E13", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渔", + "codepoint": "U+6E14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E14", + "status": "exact_ids", + "ids": "⿰氵鱼", + "canonical_ids": "⿰氵鱼", + "expanded_ids": "⿰氵鱼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渕", + "codepoint": "U+6E15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E15", + "status": "exact_ids", + "ids": "⿰浂刂", + "canonical_ids": "⿰浂刂", + "expanded_ids": "⿰⿰氵⿱丷⿻一大刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "刂", + "大", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渖", + "codepoint": "U+6E16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E16", + "status": "exact_ids", + "ids": "⿰氵审", + "canonical_ids": "⿰氵审", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "氵" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渗", + "codepoint": "U+6E17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E17", + "status": "exact_ids", + "ids": "⿰氵参", + "canonical_ids": "⿰氵参", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "参" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渘", + "codepoint": "U+6E18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E18", + "status": "exact_ids", + "ids": "⿰氵柔", + "canonical_ids": "⿰氵柔", + "expanded_ids": "⿰氵⿱矛木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "氵", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渙", + "codepoint": "U+6E19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E19", + "status": "exact_ids", + "ids": "⿰氵奐", + "canonical_ids": "⿰氵奐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "奐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渚", + "codepoint": "U+6E1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E1A", + "status": "exact_ids", + "ids": "⿰氵者", + "canonical_ids": "⿰氵者", + "expanded_ids": "⿰氵⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "減", + "codepoint": "U+6E1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E1B", + "status": "exact_ids", + "ids": "⿰氵咸", + "canonical_ids": "⿰氵咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渜", + "codepoint": "U+6E1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E1C", + "status": "exact_ids", + "ids": "⿰氵耎", + "canonical_ids": "⿰氵耎", + "expanded_ids": "⿰氵⿱而大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "氵", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渝", + "codepoint": "U+6E1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E1D", + "status": "exact_ids", + "ids": "⿰氵兪", + "canonical_ids": "⿰氵兪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "兪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渞", + "codepoint": "U+6E1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E1E", + "status": "exact_ids", + "ids": "⿰氵首", + "canonical_ids": "⿰氵首", + "expanded_ids": "⿰氵⿱䒑⿻目丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "丶", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渟", + "codepoint": "U+6E1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E1F", + "status": "exact_ids", + "ids": "⿰氵亭", + "canonical_ids": "⿰氵亭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "亭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渠", + "codepoint": "U+6E20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E20", + "status": "exact_ids", + "ids": "⿱洰木", + "canonical_ids": "⿱洰木", + "expanded_ids": "⿱⿰氵巨木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渡", + "codepoint": "U+6E21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E21", + "status": "exact_ids", + "ids": "⿰氵度", + "canonical_ids": "⿰氵度", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "度" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渢", + "codepoint": "U+6E22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E22", + "status": "exact_ids", + "ids": "⿰氵風", + "canonical_ids": "⿰氵風", + "expanded_ids": "⿰氵風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渣", + "codepoint": "U+6E23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E23", + "status": "exact_ids", + "ids": "⿰氵查", + "canonical_ids": "⿰氵查", + "expanded_ids": "⿰氵⿱木⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渤", + "codepoint": "U+6E24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E24", + "status": "exact_ids", + "ids": "⿰氵勃", + "canonical_ids": "⿰氵勃", + "expanded_ids": "⿰氵⿰⿳十冖子力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "十", + "子", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渥", + "codepoint": "U+6E25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E25", + "status": "exact_ids", + "ids": "⿰氵屋", + "canonical_ids": "⿰氵屋", + "expanded_ids": "⿰氵⿱尸⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "尸", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渦", + "codepoint": "U+6E26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E26", + "status": "exact_ids", + "ids": "⿰氵咼", + "canonical_ids": "⿰氵咼", + "expanded_ids": "⿰氵⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渧", + "codepoint": "U+6E27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E27", + "status": "exact_ids", + "ids": "⿰氵帝", + "canonical_ids": "⿰氵帝", + "expanded_ids": "⿰氵⿳⿱亠八冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渨", + "codepoint": "U+6E28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E28", + "status": "exact_ids", + "ids": "⿰氵畏", + "canonical_ids": "⿰氵畏", + "expanded_ids": "⿰氵⿱田氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氏", + "氵", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "温", + "codepoint": "U+6E29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E29", + "status": "exact_ids", + "ids": "⿰氵昷", + "canonical_ids": "⿰氵昷", + "expanded_ids": "⿰氵⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "氵", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渪", + "codepoint": "U+6E2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E2A", + "status": "exact_ids", + "ids": "⿰氵禹", + "canonical_ids": "⿰氵禹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "禹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渫", + "codepoint": "U+6E2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E2B", + "status": "exact_ids", + "ids": "⿰氵枼", + "canonical_ids": "⿰氵枼", + "expanded_ids": "⿰氵⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "測", + "codepoint": "U+6E2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E2C", + "status": "exact_ids", + "ids": "⿰氵則", + "canonical_ids": "⿰氵則", + "expanded_ids": "⿰氵⿰⿱目八刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刂", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渭", + "codepoint": "U+6E2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E2D", + "status": "exact_ids", + "ids": "⿰氵胃", + "canonical_ids": "⿰氵胃", + "expanded_ids": "⿰氵⿱田月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "氵", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渮", + "codepoint": "U+6E2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E2E", + "status": "exact_ids", + "ids": "⿰氵苛", + "canonical_ids": "⿰氵苛", + "expanded_ids": "⿰氵⿱艹⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "港", + "codepoint": "U+6E2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E2F", + "status": "exact_ids", + "ids": "⿰氵巷", + "canonical_ids": "⿰氵巷", + "expanded_ids": "⿰氵⿱⿱廿廾巳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巳", + "廾", + "廿", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渰", + "codepoint": "U+6E30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E30", + "status": "exact_ids", + "ids": "⿰氵弇", + "canonical_ids": "⿰氵弇", + "expanded_ids": "⿰氵⿱⿱⿱人一口廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "廾", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渱", + "codepoint": "U+6E31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E31", + "status": "exact_ids", + "ids": "⿰氵虹", + "canonical_ids": "⿰氵虹", + "expanded_ids": "⿰氵⿰虫工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "氵", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渲", + "codepoint": "U+6E32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E32", + "status": "exact_ids", + "ids": "⿰氵宣", + "canonical_ids": "⿰氵宣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "氵" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渳", + "codepoint": "U+6E33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E33", + "status": "exact_ids", + "ids": "⿰氵弭", + "canonical_ids": "⿰氵弭", + "expanded_ids": "⿰氵⿰弓耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "氵", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渴", + "codepoint": "U+6E34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E34", + "status": "exact_ids", + "ids": "⿰氵曷", + "canonical_ids": "⿰氵曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "氵" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渵", + "codepoint": "U+6E35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E35", + "status": "exact_ids", + "ids": "⿰氵苗", + "canonical_ids": "⿰氵苗", + "expanded_ids": "⿰氵⿱艹田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渶", + "codepoint": "U+6E36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E36", + "status": "exact_ids", + "ids": "⿰氵英", + "canonical_ids": "⿰氵英", + "expanded_ids": "⿰氵⿱艹⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渷", + "codepoint": "U+6E37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E37", + "status": "exact_ids", + "ids": "⿰氵兗", + "canonical_ids": "⿰氵兗", + "expanded_ids": "⿰氵⿱⿱亠八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "儿", + "八", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "游", + "codepoint": "U+6E38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E38", + "status": "exact_ids", + "ids": "⿰氵斿", + "canonical_ids": "⿰氵斿", + "expanded_ids": "⿰氵⿰⿰方人子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "子", + "方", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渹", + "codepoint": "U+6E39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E39", + "status": "exact_ids", + "ids": "⿰氵訇", + "canonical_ids": "⿰氵訇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "訇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渺", + "codepoint": "U+6E3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E3A", + "status": "exact_ids", + "ids": "⿰氵眇", + "canonical_ids": "⿰氵眇", + "expanded_ids": "⿰氵⿰目⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渻", + "codepoint": "U+6E3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E3B", + "status": "exact_ids", + "ids": "⿰氵省", + "canonical_ids": "⿰氵省", + "expanded_ids": "⿰氵⿱⿱小丿目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渼", + "codepoint": "U+6E3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E3C", + "status": "exact_ids", + "ids": "⿰氵美", + "canonical_ids": "⿰氵美", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "美" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渽", + "codepoint": "U+6E3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E3D", + "status": "exact_ids", + "ids": "⿰氵哉", + "canonical_ids": "⿰氵哉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "哉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渾", + "codepoint": "U+6E3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E3E", + "status": "exact_ids", + "ids": "⿰氵軍", + "canonical_ids": "⿰氵軍", + "expanded_ids": "⿰氵⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "氵", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "渿", + "codepoint": "U+6E3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E3F", + "status": "exact_ids", + "ids": "⿰氵柰", + "canonical_ids": "⿰氵柰", + "expanded_ids": "⿰氵⿱木⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湀", + "codepoint": "U+6E40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E40", + "status": "exact_ids", + "ids": "⿰氵癸", + "canonical_ids": "⿰氵癸", + "expanded_ids": "⿰氵⿱癶⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "氵", + "癶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湁", + "codepoint": "U+6E41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E41", + "status": "exact_ids", + "ids": "⿰氵拾", + "canonical_ids": "⿰氵拾", + "expanded_ids": "⿰氵⿰扌⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "扌", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湂", + "codepoint": "U+6E42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E42", + "status": "exact_ids", + "ids": "⿰氵咢", + "canonical_ids": "⿰氵咢", + "expanded_ids": "⿰氵⿱⿰口口⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湃", + "codepoint": "U+6E43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E43", + "status": "exact_ids", + "ids": "⿰氵拜", + "canonical_ids": "⿰氵拜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "拜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湄", + "codepoint": "U+6E44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E44", + "status": "exact_ids", + "ids": "⿰氵眉", + "canonical_ids": "⿰氵眉", + "expanded_ids": "⿰氵⿱⿻尸丨目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "尸", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湅", + "codepoint": "U+6E45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E45", + "status": "exact_ids", + "ids": "⿰氵柬", + "canonical_ids": "⿰氵柬", + "expanded_ids": "⿰氵柬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "柬", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湆", + "codepoint": "U+6E46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E46", + "status": "exact_ids", + "ids": "⿰氵音", + "canonical_ids": "⿰氵音", + "expanded_ids": "⿰氵⿱立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "氵", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湇", + "codepoint": "U+6E47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E47", + "status": "exact_ids", + "ids": "⿰氵𦚏", + "canonical_ids": "⿰氵𦚏", + "expanded_ids": "⿰氵⿱立月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "氵", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湈", + "codepoint": "U+6E48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E48", + "status": "exact_ids", + "ids": "⿰氵某", + "canonical_ids": "⿰氵某", + "expanded_ids": "⿰氵⿱甘木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "氵", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湉", + "codepoint": "U+6E49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E49", + "status": "exact_ids", + "ids": "⿰氵恬", + "canonical_ids": "⿰氵恬", + "expanded_ids": "⿰氵⿰忄⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "忄", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湊", + "codepoint": "U+6E4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E4A", + "status": "exact_ids", + "ids": "⿰氵奏", + "canonical_ids": "⿰氵奏", + "expanded_ids": "⿰氵⿱𡗗⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "氵", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湋", + "codepoint": "U+6E4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E4B", + "status": "exact_ids", + "ids": "⿰氵韋", + "canonical_ids": "⿰氵韋", + "expanded_ids": "⿰氵韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湌", + "codepoint": "U+6E4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E4C", + "status": "exact_ids", + "ids": "⿰氵食", + "canonical_ids": "⿰氵食", + "expanded_ids": "⿰氵⿱人⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "氵", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湍", + "codepoint": "U+6E4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E4D", + "status": "exact_ids", + "ids": "⿰氵耑", + "canonical_ids": "⿰氵耑", + "expanded_ids": "⿰氵⿱山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "氵", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湎", + "codepoint": "U+6E4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E4E", + "status": "exact_ids", + "ids": "⿰氵面", + "canonical_ids": "⿰氵面", + "expanded_ids": "⿰氵面", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "面" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湏", + "codepoint": "U+6E4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E4F", + "status": "exact_ids", + "ids": "⿰氵頁", + "canonical_ids": "⿰氵頁", + "expanded_ids": "⿰氵⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湐", + "codepoint": "U+6E50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E50", + "status": "exact_ids", + "ids": "⿰氵柏", + "canonical_ids": "⿰氵柏", + "expanded_ids": "⿰氵⿰木⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湑", + "codepoint": "U+6E51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E51", + "status": "exact_ids", + "ids": "⿰氵胥", + "canonical_ids": "⿰氵胥", + "expanded_ids": "⿰氵⿱疋月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "氵", + "疋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湒", + "codepoint": "U+6E52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E52", + "status": "exact_ids", + "ids": "⿰氵咠", + "canonical_ids": "⿰氵咠", + "expanded_ids": "⿰氵⿱口耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "氵", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湓", + "codepoint": "U+6E53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E53", + "status": "exact_ids", + "ids": "⿰氵盆", + "canonical_ids": "⿰氵盆", + "expanded_ids": "⿰氵⿱⿱八刀皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "氵", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湔", + "codepoint": "U+6E54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E54", + "status": "exact_ids", + "ids": "⿰氵前", + "canonical_ids": "⿰氵前", + "expanded_ids": "⿰氵⿱止⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "月", + "止", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湕", + "codepoint": "U+6E55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E55", + "status": "exact_ids", + "ids": "⿰氵建", + "canonical_ids": "⿰氵建", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廴", + "氵" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湖", + "codepoint": "U+6E56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E56", + "status": "exact_ids", + "ids": "⿰氵胡", + "canonical_ids": "⿰氵胡", + "expanded_ids": "⿰氵⿰⿻十口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "月", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湗", + "codepoint": "U+6E57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E57", + "status": "exact_ids", + "ids": "⿰氵封", + "canonical_ids": "⿰氵封", + "expanded_ids": "⿰氵⿰⿱土土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湘", + "codepoint": "U+6E58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E58", + "status": "exact_ids", + "ids": "⿰氵相", + "canonical_ids": "⿰氵相", + "expanded_ids": "⿰氵⿰木目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湙", + "codepoint": "U+6E59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E59", + "status": "exact_ids", + "ids": "⿰氵奕", + "canonical_ids": "⿰氵奕", + "expanded_ids": "⿰氵⿱亦大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "大", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湚", + "codepoint": "U+6E5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E5A", + "status": "exact_ids", + "ids": "⿰氵胤", + "canonical_ids": "⿰氵胤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "胤" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湛", + "codepoint": "U+6E5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E5B", + "status": "exact_ids", + "ids": "⿰氵甚", + "canonical_ids": "⿰氵甚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "甘" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湜", + "codepoint": "U+6E5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E5C", + "status": "exact_ids", + "ids": "⿰氵是", + "canonical_ids": "⿰氵是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "氵" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湝", + "codepoint": "U+6E5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E5D", + "status": "exact_ids", + "ids": "⿰氵皆", + "canonical_ids": "⿰氵皆", + "expanded_ids": "⿰氵⿱⿰匕匕⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湞", + "codepoint": "U+6E5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E5E", + "status": "exact_ids", + "ids": "⿰氵貞", + "canonical_ids": "⿰氵貞", + "expanded_ids": "⿰氵⿱卜⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "卜", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湟", + "codepoint": "U+6E5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E5F", + "status": "exact_ids", + "ids": "⿰氵皇", + "canonical_ids": "⿰氵皇", + "expanded_ids": "⿰氵⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "氵", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湠", + "codepoint": "U+6E60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E60", + "status": "exact_ids", + "ids": "⿰氵炭", + "canonical_ids": "⿰氵炭", + "expanded_ids": "⿰氵⿱山⿱厂火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "山", + "氵", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湡", + "codepoint": "U+6E61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E61", + "status": "exact_ids", + "ids": "⿰氵禺", + "canonical_ids": "⿰氵禺", + "expanded_ids": "⿰氵⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "田", + "禸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湢", + "codepoint": "U+6E62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E62", + "status": "exact_ids", + "ids": "⿰氵畐", + "canonical_ids": "⿰氵畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湣", + "codepoint": "U+6E63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E63", + "status": "exact_ids", + "ids": "⿰氵昬", + "canonical_ids": "⿰氵昬", + "expanded_ids": "⿰氵⿱民日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "民", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湤", + "codepoint": "U+6E64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E64", + "status": "exact_ids", + "ids": "⿰氵施", + "canonical_ids": "⿰氵施", + "expanded_ids": "⿰氵⿰⿰方人⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "人", + "方", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湥", + "codepoint": "U+6E65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E65", + "status": "exact_ids", + "ids": "⿰氵突", + "canonical_ids": "⿰氵突", + "expanded_ids": "⿰氵⿱⿱宀八⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "八", + "大", + "宀", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湦", + "codepoint": "U+6E66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E66", + "status": "exact_ids", + "ids": "⿰氵星", + "canonical_ids": "⿰氵星", + "expanded_ids": "⿰氵⿱日⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "氵", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湧", + "codepoint": "U+6E67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E67", + "status": "exact_ids", + "ids": "⿰氵勇", + "canonical_ids": "⿰氵勇", + "expanded_ids": "⿰氵⿱⿱龴⿻月丨力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "力", + "月", + "氵", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湨", + "codepoint": "U+6E68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E68", + "status": "exact_ids", + "ids": "⿰氵狊", + "canonical_ids": "⿰氵狊", + "expanded_ids": "⿰氵⿱目⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湩", + "codepoint": "U+6E69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E69", + "status": "exact_ids", + "ids": "⿰氵重", + "canonical_ids": "⿰氵重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "氵" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湪", + "codepoint": "U+6E6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E6A", + "status": "exact_ids", + "ids": "⿰氵彖", + "canonical_ids": "⿰氵彖", + "expanded_ids": "⿰氵⿱彑𧰨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "氵", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湫", + "codepoint": "U+6E6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E6B", + "status": "exact_ids", + "ids": "⿰氵秋", + "canonical_ids": "⿰氵秋", + "expanded_ids": "⿰氵⿰⿻丿木火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "氵", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湬", + "codepoint": "U+6E6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E6C", + "status": "exact_ids", + "ids": "⿱秋水", + "canonical_ids": "⿱秋水", + "expanded_ids": "⿱⿰⿻丿木火水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "水", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湭", + "codepoint": "U+6E6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E6D", + "status": "exact_ids", + "ids": "⿰氵酋", + "canonical_ids": "⿰氵酋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "氵" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湮", + "codepoint": "U+6E6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E6E", + "status": "exact_ids", + "ids": "⿰氵垔", + "canonical_ids": "⿰氵垔", + "expanded_ids": "⿰氵⿱覀土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "氵", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湯", + "codepoint": "U+6E6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E6F", + "status": "exact_ids", + "ids": "⿰氵昜", + "canonical_ids": "⿰氵昜", + "expanded_ids": "⿰氵⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湰", + "codepoint": "U+6E70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E70", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湱", + "codepoint": "U+6E71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E71", + "status": "exact_ids", + "ids": "⿰氵砉", + "canonical_ids": "⿰氵砉", + "expanded_ids": "⿰氵⿱丰石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "氵", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湲", + "codepoint": "U+6E72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E72", + "status": "exact_ids", + "ids": "⿰氵爰", + "canonical_ids": "⿰氵爰", + "expanded_ids": "⿰氵⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "氵", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湳", + "codepoint": "U+6E73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E73", + "status": "exact_ids", + "ids": "⿰氵南", + "canonical_ids": "⿰氵南", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "南" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湴", + "codepoint": "U+6E74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E74", + "status": "exact_ids", + "ids": "⿰氵並", + "canonical_ids": "⿰氵並", + "expanded_ids": "⿰氵⿱丷亚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亚", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湵", + "codepoint": "U+6E75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E75", + "status": "exact_ids", + "ids": "⿰氵羑", + "canonical_ids": "⿰氵羑", + "expanded_ids": "⿰氵⿱羊久", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "久", + "氵", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湶", + "codepoint": "U+6E76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E76", + "status": "exact_ids", + "ids": "⿰氵泉", + "canonical_ids": "⿰氵泉", + "expanded_ids": "⿰氵⿱⿻日丶水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "水", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湷", + "codepoint": "U+6E77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E77", + "status": "exact_ids", + "ids": "⿰氵春", + "canonical_ids": "⿰氵春", + "expanded_ids": "⿰氵⿱𡗗日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "氵", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湸", + "codepoint": "U+6E78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E78", + "status": "exact_ids", + "ids": "⿰氵亮", + "canonical_ids": "⿰氵亮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "亮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湹", + "codepoint": "U+6E79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E79", + "status": "exact_ids", + "ids": "⿰氵厘", + "canonical_ids": "⿰氵厘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "氵" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湺", + "codepoint": "U+6E7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E7A", + "status": "exact_ids", + "ids": "⿰氵保", + "canonical_ids": "⿰氵保", + "expanded_ids": "⿰氵⿰亻⿱口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湻", + "codepoint": "U+6E7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E7B", + "status": "exact_ids", + "ids": "⿰氵亯", + "canonical_ids": "⿰氵亯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "亯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湼", + "codepoint": "U+6E7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E7C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湽", + "codepoint": "U+6E7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E7D", + "status": "exact_ids", + "ids": "⿰氵甾", + "canonical_ids": "⿰氵甾", + "expanded_ids": "⿰氵⿱巛田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "氵", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "淄" + ] + }, + { + "character": "湾", + "codepoint": "U+6E7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E7E", + "status": "exact_ids", + "ids": "⿰氵弯", + "canonical_ids": "⿰氵弯", + "expanded_ids": "⿰氵⿱亦弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "弓", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "湿", + "codepoint": "U+6E7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E7F", + "status": "exact_ids", + "ids": "⿰氵显", + "canonical_ids": "⿰氵显", + "expanded_ids": "⿰氵⿱日业", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "満", + "codepoint": "U+6E80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E80", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溁", + "codepoint": "U+6E81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E81", + "status": "exact_ids", + "ids": "⿰氵荣", + "canonical_ids": "⿰氵荣", + "expanded_ids": "⿰氵⿳艹冖木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "木", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溂", + "codepoint": "U+6E82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E82", + "status": "exact_ids", + "ids": "⿰氵剌", + "canonical_ids": "⿰氵剌", + "expanded_ids": "⿰氵⿰⿻木口刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "口", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溃", + "codepoint": "U+6E83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E83", + "status": "exact_ids", + "ids": "⿰氵贵", + "canonical_ids": "⿰氵贵", + "expanded_ids": "⿰氵⿱⿱⿻口丨一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "人", + "冂", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溄", + "codepoint": "U+6E84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E84", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溅", + "codepoint": "U+6E85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E85", + "status": "exact_ids", + "ids": "⿰氵贱", + "canonical_ids": "⿰氵贱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂", + "氵" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溆", + "codepoint": "U+6E86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E86", + "status": "exact_ids", + "ids": "⿰氵叙", + "canonical_ids": "⿰氵叙", + "expanded_ids": "⿰氵⿰⿱⿱人一朩又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "又", + "朩", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溇", + "codepoint": "U+6E87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E87", + "status": "exact_ids", + "ids": "⿰氵娄", + "canonical_ids": "⿰氵娄", + "expanded_ids": "⿰氵⿱⿻木丷女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "女", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溈", + "codepoint": "U+6E88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E88", + "status": "exact_ids", + "ids": "⿰氵為", + "canonical_ids": "⿰氵為", + "expanded_ids": "⿰氵為", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "為" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溉", + "codepoint": "U+6E89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E89", + "status": "exact_ids", + "ids": "⿰氵既", + "canonical_ids": "⿰氵既", + "expanded_ids": "⿰氵⿰艮旡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "旡", + "氵", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溊", + "codepoint": "U+6E8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E8A", + "status": "exact_ids", + "ids": "⿰氵叚", + "canonical_ids": "⿰氵叚", + "expanded_ids": "⿰氵叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溋", + "codepoint": "U+6E8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E8B", + "status": "exact_ids", + "ids": "⿰氵盈", + "canonical_ids": "⿰氵盈", + "expanded_ids": "⿰氵⿱⿻乃又皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "又", + "氵", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溌", + "codepoint": "U+6E8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E8C", + "status": "exact_ids", + "ids": "⿰氵発", + "canonical_ids": "⿰氵発", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "発" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溍", + "codepoint": "U+6E8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E8D", + "status": "exact_ids", + "ids": "⿰氵晉", + "canonical_ids": "⿰氵晉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "晉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溎", + "codepoint": "U+6E8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E8E", + "status": "exact_ids", + "ids": "⿰氵桂", + "canonical_ids": "⿰氵桂", + "expanded_ids": "⿰氵⿰木⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溏", + "codepoint": "U+6E8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E8F", + "status": "exact_ids", + "ids": "⿰氵唐", + "canonical_ids": "⿰氵唐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "源", + "codepoint": "U+6E90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E90", + "status": "exact_ids", + "ids": "⿰氵原", + "canonical_ids": "⿰氵原", + "expanded_ids": "⿰氵⿱厂⿱⿻日丶小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "小", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溑", + "codepoint": "U+6E91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E91", + "status": "exact_ids", + "ids": "⿰氵𧴪", + "canonical_ids": "⿰氵𧴪", + "expanded_ids": "⿰氵⿱小⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "小", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溒", + "codepoint": "U+6E92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E92", + "status": "exact_ids", + "ids": "⿰氵袁", + "canonical_ids": "⿰氵袁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "袁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溓", + "codepoint": "U+6E93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E93", + "status": "exact_ids", + "ids": "⿰氵兼", + "canonical_ids": "⿰氵兼", + "expanded_ids": "⿰氵兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溔", + "codepoint": "U+6E94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E94", + "status": "exact_ids", + "ids": "⿰氵羔", + "canonical_ids": "⿰氵羔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "羔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溕", + "codepoint": "U+6E95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E95", + "status": "exact_ids", + "ids": "⿰氵冡", + "canonical_ids": "⿰氵冡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "準", + "codepoint": "U+6E96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E96", + "status": "exact_ids", + "ids": "⿰淮十", + "canonical_ids": "⿰淮十", + "expanded_ids": "⿰⿰氵隹十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "氵", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溗", + "codepoint": "U+6E97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E97", + "status": "exact_ids", + "ids": "⿰氵乘", + "canonical_ids": "⿰氵乘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "氵" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溘", + "codepoint": "U+6E98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E98", + "status": "exact_ids", + "ids": "⿰氵盍", + "canonical_ids": "⿰氵盍", + "expanded_ids": "⿰氵⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "氵", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溙", + "codepoint": "U+6E99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E99", + "status": "exact_ids", + "ids": "⿰氵泰", + "canonical_ids": "⿰氵泰", + "expanded_ids": "⿰氵⿱𡗗氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "氺", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溚", + "codepoint": "U+6E9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E9A", + "status": "exact_ids", + "ids": "⿰氵荅", + "canonical_ids": "⿰氵荅", + "expanded_ids": "⿰氵⿱艹⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溛", + "codepoint": "U+6E9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E9B", + "status": "exact_ids", + "ids": "⿰氵窊", + "canonical_ids": "⿰氵窊", + "expanded_ids": "⿰氵⿱⿱宀八瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "氵", + "瓜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溜", + "codepoint": "U+6E9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E9C", + "status": "exact_ids", + "ids": "⿰氵留", + "canonical_ids": "⿰氵留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溝", + "codepoint": "U+6E9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E9D", + "status": "exact_ids", + "ids": "⿰氵冓", + "canonical_ids": "⿰氵冓", + "expanded_ids": "⿰氵⿱井⿱一⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "井", + "冂", + "土", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溞", + "codepoint": "U+6E9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E9E", + "status": "exact_ids", + "ids": "⿰氵蚤", + "canonical_ids": "⿰氵蚤", + "expanded_ids": "⿰氵⿱⿻又丶虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "又", + "氵", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溟", + "codepoint": "U+6E9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6E9F", + "status": "exact_ids", + "ids": "⿰氵冥", + "canonical_ids": "⿰氵冥", + "expanded_ids": "⿰氵⿱冖⿱日⿱亠八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溠", + "codepoint": "U+6EA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EA0", + "status": "exact_ids", + "ids": "⿰氵差", + "canonical_ids": "⿰氵差", + "expanded_ids": "⿰氵⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "氵", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溡", + "codepoint": "U+6EA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EA1", + "status": "exact_ids", + "ids": "⿰氵時", + "canonical_ids": "⿰氵時", + "expanded_ids": "⿰氵⿰日⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溢", + "codepoint": "U+6EA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EA2", + "status": "exact_ids", + "ids": "⿰氵益", + "canonical_ids": "⿰氵益", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溣", + "codepoint": "U+6EA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EA3", + "status": "exact_ids", + "ids": "⿰氵倫", + "canonical_ids": "⿰氵倫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "亻", + "氵" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溤", + "codepoint": "U+6EA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EA4", + "status": "exact_ids", + "ids": "⿰氵馬", + "canonical_ids": "⿰氵馬", + "expanded_ids": "⿰氵馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溥", + "codepoint": "U+6EA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EA5", + "status": "exact_ids", + "ids": "⿰氵尃", + "canonical_ids": "⿰氵尃", + "expanded_ids": "⿰氵⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "氵", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溦", + "codepoint": "U+6EA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EA6", + "status": "exact_ids", + "ids": "⿰氵𢼸", + "canonical_ids": "⿰氵𢼸", + "expanded_ids": "⿰氵⿰⿳山冖几攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "几", + "山", + "攵", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溧", + "codepoint": "U+6EA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EA7", + "status": "exact_ids", + "ids": "⿰氵栗", + "canonical_ids": "⿰氵栗", + "expanded_ids": "⿰氵⿱覀木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "氵", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溨", + "codepoint": "U+6EA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EA8", + "status": "exact_ids", + "ids": "⿰氵栽", + "canonical_ids": "⿰氵栽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "栽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溩", + "codepoint": "U+6EA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EA9", + "status": "exact_ids", + "ids": "⿰氵烏", + "canonical_ids": "⿰氵烏", + "expanded_ids": "⿰氵烏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "烏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溪", + "codepoint": "U+6EAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EAA", + "status": "exact_ids", + "ids": "⿰氵奚", + "canonical_ids": "⿰氵奚", + "expanded_ids": "⿰氵⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "幺", + "氵", + "爪" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溫", + "codepoint": "U+6EAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EAB", + "status": "exact_ids", + "ids": "⿰氵𥁕", + "canonical_ids": "⿰氵𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "皿" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溬", + "codepoint": "U+6EAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EAC", + "status": "exact_ids", + "ids": "⿰氵羗", + "canonical_ids": "⿰氵羗", + "expanded_ids": "⿰氵⿻⿱羊儿厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "氵", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溭", + "codepoint": "U+6EAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EAD", + "status": "exact_ids", + "ids": "⿰氵畟", + "canonical_ids": "⿰氵畟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "畟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溮", + "codepoint": "U+6EAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EAE", + "status": "exact_ids", + "ids": "⿰氵師", + "canonical_ids": "⿰氵師", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "師" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溯", + "codepoint": "U+6EAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EAF", + "status": "exact_ids", + "ids": "⿰氵朔", + "canonical_ids": "⿰氵朔", + "expanded_ids": "⿰氵⿰⿱䒑屮月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "屮", + "月", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溰", + "codepoint": "U+6EB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EB0", + "status": "exact_ids", + "ids": "⿰氵豈", + "canonical_ids": "⿰氵豈", + "expanded_ids": "⿰氵⿱山豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "氵", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溱", + "codepoint": "U+6EB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EB1", + "status": "exact_ids", + "ids": "⿰氵秦", + "canonical_ids": "⿰氵秦", + "expanded_ids": "⿰氵⿱𡗗⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "氵", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溲", + "codepoint": "U+6EB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EB2", + "status": "exact_ids", + "ids": "⿰氵叟", + "canonical_ids": "⿰氵叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "氵" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溳", + "codepoint": "U+6EB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EB3", + "status": "exact_ids", + "ids": "⿰氵員", + "canonical_ids": "⿰氵員", + "expanded_ids": "⿰氵⿱口⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溴", + "codepoint": "U+6EB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EB4", + "status": "exact_ids", + "ids": "⿰氵臭", + "canonical_ids": "⿰氵臭", + "expanded_ids": "⿰氵⿱⿻目丶⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溵", + "codepoint": "U+6EB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EB5", + "status": "exact_ids", + "ids": "⿰氵殷", + "canonical_ids": "⿰氵殷", + "expanded_ids": "⿰氵⿰㐆⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㐆", + "几", + "又", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溶", + "codepoint": "U+6EB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EB6", + "status": "exact_ids", + "ids": "⿰氵容", + "canonical_ids": "⿰氵容", + "expanded_ids": "⿰氵⿱宀⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溷", + "codepoint": "U+6EB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EB7", + "status": "exact_ids", + "ids": "⿰氵圂", + "canonical_ids": "⿰氵圂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "圂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溸", + "codepoint": "U+6EB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EB8", + "status": "exact_ids", + "ids": "⿰氵素", + "canonical_ids": "⿰氵素", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "氵" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溹", + "codepoint": "U+6EB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EB9", + "status": "exact_ids", + "ids": "⿰氵索", + "canonical_ids": "⿰氵索", + "expanded_ids": "⿰氵⿳十冖⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "小", + "幺", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溺", + "codepoint": "U+6EBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EBA", + "status": "exact_ids", + "ids": "⿰氵弱", + "canonical_ids": "⿰氵弱", + "expanded_ids": "⿰氵⿰⿱弓二⿱弓二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "弓", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溻", + "codepoint": "U+6EBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EBB", + "status": "exact_ids", + "ids": "⿰氵𦐇", + "canonical_ids": "⿰氵𦐇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "氵" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溼", + "codepoint": "U+6EBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EBC", + "status": "exact_ids", + "ids": "⿰氵𡌥", + "canonical_ids": "⿰氵𡌥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "𡌥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溽", + "codepoint": "U+6EBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EBD", + "status": "exact_ids", + "ids": "⿰氵辱", + "canonical_ids": "⿰氵辱", + "expanded_ids": "⿰氵⿱辰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "氵", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溾", + "codepoint": "U+6EBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EBE", + "status": "exact_ids", + "ids": "⿰氵鬼", + "canonical_ids": "⿰氵鬼", + "expanded_ids": "⿰氵鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "溿", + "codepoint": "U+6EBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EBF", + "status": "exact_ids", + "ids": "⿰氵畔", + "canonical_ids": "⿰氵畔", + "expanded_ids": "⿰氵⿰田半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半", + "氵", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滀", + "codepoint": "U+6EC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EC0", + "status": "exact_ids", + "ids": "⿰氵畜", + "canonical_ids": "⿰氵畜", + "expanded_ids": "⿰氵⿱⿱亠幺田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "氵", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滁", + "codepoint": "U+6EC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EC1", + "status": "exact_ids", + "ids": "⿰氵除", + "canonical_ids": "⿰氵除", + "expanded_ids": "⿰氵⿰阝⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "氵", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滂", + "codepoint": "U+6EC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EC2", + "status": "exact_ids", + "ids": "⿰氵旁", + "canonical_ids": "⿰氵旁", + "expanded_ids": "⿰氵⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "方", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滃", + "codepoint": "U+6EC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EC3", + "status": "exact_ids", + "ids": "⿰氵翁", + "canonical_ids": "⿰氵翁", + "expanded_ids": "⿰氵⿱⿱八厶⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "八", + "厶", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滄", + "codepoint": "U+6EC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EC4", + "status": "exact_ids", + "ids": "⿰氵倉", + "canonical_ids": "⿰氵倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滅", + "codepoint": "U+6EC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EC5", + "status": "exact_ids", + "ids": "⿰氵烕", + "canonical_ids": "⿰氵烕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "烕" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滆", + "codepoint": "U+6EC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EC6", + "status": "exact_ids", + "ids": "⿰氵鬲", + "canonical_ids": "⿰氵鬲", + "expanded_ids": "⿰氵鬲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滇", + "codepoint": "U+6EC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EC7", + "status": "exact_ids", + "ids": "⿰氵真", + "canonical_ids": "⿰氵真", + "expanded_ids": "⿰氵⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滈", + "codepoint": "U+6EC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EC8", + "status": "exact_ids", + "ids": "⿰氵高", + "canonical_ids": "⿰氵高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滉", + "codepoint": "U+6EC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EC9", + "status": "exact_ids", + "ids": "⿰氵晃", + "canonical_ids": "⿰氵晃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "日", + "氵" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滊", + "codepoint": "U+6ECA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ECA", + "status": "exact_ids", + "ids": "⿰氵氣", + "canonical_ids": "⿰氵氣", + "expanded_ids": "⿰氵⿱气⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "气", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滋", + "codepoint": "U+6ECB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ECB", + "status": "exact_ids", + "ids": "⿰氵兹", + "canonical_ids": "⿰氵兹", + "expanded_ids": "⿰氵⿱䒑⿰幺幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "幺", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滌", + "codepoint": "U+6ECC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ECC", + "status": "exact_ids", + "ids": "⿰氵條", + "canonical_ids": "⿰氵條", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "條" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滍", + "codepoint": "U+6ECD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ECD", + "status": "exact_ids", + "ids": "⿰氵蚩", + "canonical_ids": "⿰氵蚩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "蚩" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滎", + "codepoint": "U+6ECE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ECE", + "status": "exact_ids", + "ids": "⿳炏冖水", + "canonical_ids": "⿳炏冖水", + "expanded_ids": "⿳⿰火火冖水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "水", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滏", + "codepoint": "U+6ECF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ECF", + "status": "exact_ids", + "ids": "⿰氵釜", + "canonical_ids": "⿰氵釜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "釜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滐", + "codepoint": "U+6ED0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ED0", + "status": "exact_ids", + "ids": "⿰氵桀", + "canonical_ids": "⿰氵桀", + "expanded_ids": "⿰氵⿱⿰夕⿻丨二木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夕", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滑", + "codepoint": "U+6ED1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ED1", + "status": "exact_ids", + "ids": "⿰氵骨", + "canonical_ids": "⿰氵骨", + "expanded_ids": "⿰氵⿱冎月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滒", + "codepoint": "U+6ED2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ED2", + "status": "exact_ids", + "ids": "⿰氵哥", + "canonical_ids": "⿰氵哥", + "expanded_ids": "⿰氵⿱⿰口⿱一亅⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滓", + "codepoint": "U+6ED3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ED3", + "status": "exact_ids", + "ids": "⿰氵宰", + "canonical_ids": "⿰氵宰", + "expanded_ids": "⿰氵⿱宀⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "宀", + "氵", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滔", + "codepoint": "U+6ED4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ED4", + "status": "exact_ids", + "ids": "⿰氵舀", + "canonical_ids": "⿰氵舀", + "expanded_ids": "⿰氵⿱爫臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "爫", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滕", + "codepoint": "U+6ED5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ED5", + "status": "exact_ids", + "ids": "⿰月𣳾", + "canonical_ids": "⿰月𣳾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "𣳾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滖", + "codepoint": "U+6ED6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ED6", + "status": "exact_ids", + "ids": "⿰氵衰", + "canonical_ids": "⿰氵衰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "衰" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滗", + "codepoint": "U+6ED7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ED7", + "status": "exact_ids", + "ids": "⿰氵笔", + "canonical_ids": "⿰氵笔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛", + "氵" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滘", + "codepoint": "U+6ED8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ED8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滙", + "codepoint": "U+6ED9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6ED9", + "status": "exact_ids", + "ids": "⿰氵龨", + "canonical_ids": "⿰氵龨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "龨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滚", + "codepoint": "U+6EDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EDA", + "status": "exact_ids", + "ids": "⿰氵衮", + "canonical_ids": "⿰氵衮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "衮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滛", + "codepoint": "U+6EDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EDB", + "status": "exact_ids", + "ids": "⿰氵䍃", + "canonical_ids": "⿰氵䍃", + "expanded_ids": "⿰氵⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "爪", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滜", + "codepoint": "U+6EDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EDC", + "status": "exact_ids", + "ids": "⿰氵皋", + "canonical_ids": "⿰氵皋", + "expanded_ids": "⿰氵⿱⿻日丶⿱大十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "十", + "大", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滝", + "codepoint": "U+6EDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EDD", + "status": "exact_ids", + "ids": "⿰氵竜", + "canonical_ids": "⿰氵竜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "立" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滞", + "codepoint": "U+6EDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EDE", + "status": "exact_ids", + "ids": "⿰氵带", + "canonical_ids": "⿰氵带", + "expanded_ids": "⿰氵⿳⿻川一冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "冖", + "川", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滟", + "codepoint": "U+6EDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EDF", + "status": "exact_ids", + "ids": "⿰氵艳", + "canonical_ids": "⿰氵艳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "巴", + "氵" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滠", + "codepoint": "U+6EE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EE0", + "status": "exact_ids", + "ids": "⿰氵聂", + "canonical_ids": "⿰氵聂", + "expanded_ids": "⿰氵⿱耳⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "氵", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "满", + "codepoint": "U+6EE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EE1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滢", + "codepoint": "U+6EE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EE2", + "status": "exact_ids", + "ids": "⿰氵莹", + "canonical_ids": "⿰氵莹", + "expanded_ids": "⿰氵⿳艹冖⿻王丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "冖", + "氵", + "王", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滣", + "codepoint": "U+6EE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EE3", + "status": "exact_ids", + "ids": "⿰氵唇", + "canonical_ids": "⿰氵唇", + "expanded_ids": "⿰氵⿱辰口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "氵", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滤", + "codepoint": "U+6EE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EE4", + "status": "exact_ids", + "ids": "⿰氵虑", + "canonical_ids": "⿰氵虑", + "expanded_ids": "⿰氵⿱虍心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "氵", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滥", + "codepoint": "U+6EE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EE5", + "status": "exact_ids", + "ids": "⿰氵监", + "canonical_ids": "⿰氵监", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "监" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滦", + "codepoint": "U+6EE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EE6", + "status": "exact_ids", + "ids": "⿰氵栾", + "canonical_ids": "⿰氵栾", + "expanded_ids": "⿰氵⿱亦木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滧", + "codepoint": "U+6EE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EE7", + "status": "exact_ids", + "ids": "⿰氵效", + "canonical_ids": "⿰氵效", + "expanded_ids": "⿰氵⿰⿱亠父攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "攵", + "氵", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滨", + "codepoint": "U+6EE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EE8", + "status": "exact_ids", + "ids": "⿰氵宾", + "canonical_ids": "⿰氵宾", + "expanded_ids": "⿰氵⿱宀⿱丘八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "八", + "宀", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滩", + "codepoint": "U+6EE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EE9", + "status": "exact_ids", + "ids": "⿰氵难", + "canonical_ids": "⿰氵难", + "expanded_ids": "⿰氵⿰又隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "氵", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滪", + "codepoint": "U+6EEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EEA", + "status": "exact_ids", + "ids": "⿰氵预", + "canonical_ids": "⿰氵预", + "expanded_ids": "⿰氵⿰⿱龴⿱一亅⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亅", + "人", + "冂", + "氵", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 300, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滫", + "codepoint": "U+6EEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EEB", + "status": "exact_ids", + "ids": "⿰氵脩", + "canonical_ids": "⿰氵脩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "脩" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滬", + "codepoint": "U+6EEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EEC", + "status": "exact_ids", + "ids": "⿰氵扈", + "canonical_ids": "⿰氵扈", + "expanded_ids": "⿰氵⿱⿻一尸⿱口巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "尸", + "巴", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滭", + "codepoint": "U+6EED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EED", + "status": "exact_ids", + "ids": "⿰氵畢", + "canonical_ids": "⿰氵畢", + "expanded_ids": "⿰氵畢", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "畢" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滮", + "codepoint": "U+6EEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EEE", + "status": "exact_ids", + "ids": "⿰氵彪", + "canonical_ids": "⿰氵彪", + "expanded_ids": "⿰氵⿰⿱虍儿彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "彡", + "氵", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滯", + "codepoint": "U+6EEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EEF", + "status": "exact_ids", + "ids": "⿰氵帶", + "canonical_ids": "⿰氵帶", + "expanded_ids": "⿰氵⿳卌冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "卌", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滰", + "codepoint": "U+6EF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EF0", + "status": "exact_ids", + "ids": "⿰氵竟", + "canonical_ids": "⿰氵竟", + "expanded_ids": "⿰氵⿱立⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "氵", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滱", + "codepoint": "U+6EF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EF1", + "status": "exact_ids", + "ids": "⿰氵寇", + "canonical_ids": "⿰氵寇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "寇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滲", + "codepoint": "U+6EF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EF2", + "status": "exact_ids", + "ids": "⿰氵參", + "canonical_ids": "⿰氵參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滳", + "codepoint": "U+6EF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EF3", + "status": "exact_ids", + "ids": "⿰氵商", + "canonical_ids": "⿰氵商", + "expanded_ids": "⿰氵⿱⿱亠八⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冂", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滴", + "codepoint": "U+6EF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EF4", + "status": "exact_ids", + "ids": "⿰氵啇", + "canonical_ids": "⿰氵啇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滵", + "codepoint": "U+6EF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EF5", + "status": "exact_ids", + "ids": "⿰氵密", + "canonical_ids": "⿰氵密", + "expanded_ids": "⿰氵⿱⿱宀⿻心丿山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "宀", + "山", + "心", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滶", + "codepoint": "U+6EF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EF6", + "status": "exact_ids", + "ids": "⿰氵敖", + "canonical_ids": "⿰氵敖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滷", + "codepoint": "U+6EF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EF7", + "status": "exact_ids", + "ids": "⿰氵鹵", + "canonical_ids": "⿰氵鹵", + "expanded_ids": "⿰氵鹵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "鹵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滸", + "codepoint": "U+6EF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EF8", + "status": "exact_ids", + "ids": "⿰氵許", + "canonical_ids": "⿰氵許", + "expanded_ids": "⿰氵⿰言⿱⿻丿一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "十", + "氵", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滹", + "codepoint": "U+6EF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EF9", + "status": "exact_ids", + "ids": "⿰氵虖", + "canonical_ids": "⿰氵虖", + "expanded_ids": "⿰氵⿱虍乎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乎", + "氵", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滺", + "codepoint": "U+6EFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EFA", + "status": "exact_ids", + "ids": "⿰氵悠", + "canonical_ids": "⿰氵悠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "氵" + ], + "unresolved_leaves": [ + "攸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滻", + "codepoint": "U+6EFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EFB", + "status": "exact_ids", + "ids": "⿰氵產", + "canonical_ids": "⿰氵產", + "expanded_ids": "⿰氵⿱⿱⿱亠八厂⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "八", + "厂", + "氵", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滼", + "codepoint": "U+6EFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EFC", + "status": "exact_ids", + "ids": "⿰氵梵", + "canonical_ids": "⿰氵梵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "氵" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滽", + "codepoint": "U+6EFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EFD", + "status": "exact_ids", + "ids": "⿰氵庸", + "canonical_ids": "⿰氵庸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "庸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滾", + "codepoint": "U+6EFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EFE", + "status": "exact_ids", + "ids": "⿰氵袞", + "canonical_ids": "⿰氵袞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "袞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "滿", + "codepoint": "U+6EFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6EFF", + "status": "exact_ids", + "ids": "⿰氵㒼", + "canonical_ids": "⿰氵㒼", + "expanded_ids": "⿰氵⿱艹⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漀", + "codepoint": "U+6F00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F00", + "status": "exact_ids", + "ids": "⿱殸水", + "canonical_ids": "⿱殸水", + "expanded_ids": "⿱⿰⿱士⿻尸丨⿱几又水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "几", + "又", + "士", + "尸", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漁", + "codepoint": "U+6F01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F01", + "status": "exact_ids", + "ids": "⿰氵魚", + "canonical_ids": "⿰氵魚", + "expanded_ids": "⿰氵魚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漂", + "codepoint": "U+6F02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F02", + "status": "exact_ids", + "ids": "⿰氵票", + "canonical_ids": "⿰氵票", + "expanded_ids": "⿰氵⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "氵", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漃", + "codepoint": "U+6F03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F03", + "status": "exact_ids", + "ids": "⿰氵寂", + "canonical_ids": "⿰氵寂", + "expanded_ids": "⿰氵⿱宀⿰⿱上小又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "又", + "宀", + "小", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漄", + "codepoint": "U+6F04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F04", + "status": "exact_ids", + "ids": "⿰氵崖", + "canonical_ids": "⿰氵崖", + "expanded_ids": "⿰氵⿱山⿱厂⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "土", + "山", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漅", + "codepoint": "U+6F05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F05", + "status": "exact_ids", + "ids": "⿰氵巢", + "canonical_ids": "⿰氵巢", + "expanded_ids": "⿰氵⿱巛⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "木", + "氵", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漆", + "codepoint": "U+6F06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F06", + "status": "exact_ids", + "ids": "⿰氵桼", + "canonical_ids": "⿰氵桼", + "expanded_ids": "⿰氵⿱木⿱入水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "木", + "水", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漇", + "codepoint": "U+6F07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F07", + "status": "exact_ids", + "ids": "⿰氵徙", + "canonical_ids": "⿰氵徙", + "expanded_ids": "⿰氵⿰彳⿱止止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "止", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漈", + "codepoint": "U+6F08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F08", + "status": "exact_ids", + "ids": "⿰氵祭", + "canonical_ids": "⿰氵祭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漉", + "codepoint": "U+6F09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F09", + "status": "exact_ids", + "ids": "⿰氵鹿", + "canonical_ids": "⿰氵鹿", + "expanded_ids": "⿰氵鹿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漊", + "codepoint": "U+6F0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F0A", + "status": "exact_ids", + "ids": "⿰氵婁", + "canonical_ids": "⿰氵婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漋", + "codepoint": "U+6F0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F0B", + "status": "exact_ids", + "ids": "⿰氵隆", + "canonical_ids": "⿰氵隆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "隆" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漌", + "codepoint": "U+6F0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F0C", + "status": "exact_ids", + "ids": "⿰氵堇", + "canonical_ids": "⿰氵堇", + "expanded_ids": "⿰氵堇", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漍", + "codepoint": "U+6F0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F0D", + "status": "exact_ids", + "ids": "⿰氵國", + "canonical_ids": "⿰氵國", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "國" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漎", + "codepoint": "U+6F0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F0E", + "status": "exact_ids", + "ids": "⿰氵從", + "canonical_ids": "⿰氵從", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "從" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漏", + "codepoint": "U+6F0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F0F", + "status": "exact_ids", + "ids": "⿰氵屚", + "canonical_ids": "⿰氵屚", + "expanded_ids": "⿰氵⿱尸雨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "氵", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漐", + "codepoint": "U+6F10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F10", + "status": "exact_ids", + "ids": "⿱執水", + "canonical_ids": "⿱執水", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "土", + "水" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漑", + "codepoint": "U+6F11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F11", + "status": "exact_ids", + "ids": "⿰氵旣", + "canonical_ids": "⿰氵旣", + "expanded_ids": "⿰氵⿰⿱⿻日丶匕旡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "旡", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漒", + "codepoint": "U+6F12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F12", + "status": "exact_ids", + "ids": "⿰氵强", + "canonical_ids": "⿰氵强", + "expanded_ids": "⿰氵⿰弓⿱口虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "弓", + "氵", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漓", + "codepoint": "U+6F13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F13", + "status": "exact_ids", + "ids": "⿰氵离", + "canonical_ids": "⿰氵离", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "氵", + "禸" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "演", + "codepoint": "U+6F14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F14", + "status": "exact_ids", + "ids": "⿰氵寅", + "canonical_ids": "⿰氵寅", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "寅" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漕", + "codepoint": "U+6F15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F15", + "status": "exact_ids", + "ids": "⿰氵曹", + "canonical_ids": "⿰氵曹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "曹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漖", + "codepoint": "U+6F16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F16", + "status": "exact_ids", + "ids": "⿰氵教", + "canonical_ids": "⿰氵教", + "expanded_ids": "⿰氵⿰⿱⿻土丿子攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "子", + "攵", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漗", + "codepoint": "U+6F17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F17", + "status": "exact_ids", + "ids": "⿰氵悤", + "canonical_ids": "⿰氵悤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "氵" + ], + "unresolved_leaves": [ + "囱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漘", + "codepoint": "U+6F18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F18", + "status": "exact_ids", + "ids": "⿰氵脣", + "canonical_ids": "⿰氵脣", + "expanded_ids": "⿰氵⿱辰月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "氵", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漙", + "codepoint": "U+6F19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F19", + "status": "exact_ids", + "ids": "⿰氵專", + "canonical_ids": "⿰氵專", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "寸", + "氵" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漚", + "codepoint": "U+6F1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F1A", + "status": "exact_ids", + "ids": "⿰氵區", + "canonical_ids": "⿰氵區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漛", + "codepoint": "U+6F1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F1B", + "status": "exact_ids", + "ids": "⿰氵𣳾", + "canonical_ids": "⿰氵𣳾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "𣳾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漜", + "codepoint": "U+6F1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F1C", + "status": "exact_ids", + "ids": "⿰氵埜", + "canonical_ids": "⿰氵埜", + "expanded_ids": "⿰氵⿱⿰木木土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漝", + "codepoint": "U+6F1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F1D", + "status": "exact_ids", + "ids": "⿰氵習", + "canonical_ids": "⿰氵習", + "expanded_ids": "⿰氵⿱⿰习习⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "习", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漞", + "codepoint": "U+6F1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F1E", + "status": "exact_ids", + "ids": "⿰氵覓", + "canonical_ids": "⿰氵覓", + "expanded_ids": "⿰氵⿱爫⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "氵", + "爫", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漟", + "codepoint": "U+6F1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F1F", + "status": "exact_ids", + "ids": "⿰氵堂", + "canonical_ids": "⿰氵堂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "氵" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漠", + "codepoint": "U+6F20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F20", + "status": "exact_ids", + "ids": "⿰氵莫", + "canonical_ids": "⿰氵莫", + "expanded_ids": "⿰氵⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漡", + "codepoint": "U+6F21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F21", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漢", + "codepoint": "U+6F22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F22", + "status": "exact_ids", + "ids": "⿰氵𦰩", + "canonical_ids": "⿰氵𦰩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "𦰩" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漣", + "codepoint": "U+6F23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F23", + "status": "exact_ids", + "ids": "⿰氵連", + "canonical_ids": "⿰氵連", + "expanded_ids": "⿰氵⿰辶車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "車", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漤", + "codepoint": "U+6F24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F24", + "status": "exact_ids", + "ids": "⿰氵婪", + "canonical_ids": "⿰氵婪", + "expanded_ids": "⿰氵⿱⿰木木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漥", + "codepoint": "U+6F25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F25", + "status": "exact_ids", + "ids": "⿰氵窒", + "canonical_ids": "⿰氵窒", + "expanded_ids": "⿰氵⿱⿱宀八⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "厶", + "土", + "宀", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [ + "潌" + ] + }, + { + "character": "漦", + "codepoint": "U+6F26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F26", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漧", + "codepoint": "U+6F27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F27", + "status": "exact_ids", + "ids": "⿰氵乾", + "canonical_ids": "⿰氵乾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "車" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漨", + "codepoint": "U+6F28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F28", + "status": "exact_ids", + "ids": "⿰氵逢", + "canonical_ids": "⿰氵逢", + "expanded_ids": "⿰氵⿰辶⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "氵", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漩", + "codepoint": "U+6F29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F29", + "status": "exact_ids", + "ids": "⿰氵旋", + "canonical_ids": "⿰氵旋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "旋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漪", + "codepoint": "U+6F2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F2A", + "status": "exact_ids", + "ids": "⿰氵猗", + "canonical_ids": "⿰氵猗", + "expanded_ids": "⿰氵⿰犭⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "氵", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漫", + "codepoint": "U+6F2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F2B", + "status": "exact_ids", + "ids": "⿰氵曼", + "canonical_ids": "⿰氵曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漬", + "codepoint": "U+6F2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F2C", + "status": "exact_ids", + "ids": "⿰氵責", + "canonical_ids": "⿰氵責", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "氵", + "目" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漭", + "codepoint": "U+6F2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F2D", + "status": "exact_ids", + "ids": "⿰氵莽", + "canonical_ids": "⿰氵莽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "莽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漮", + "codepoint": "U+6F2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F2E", + "status": "exact_ids", + "ids": "⿰氵康", + "canonical_ids": "⿰氵康", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "氵" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漯", + "codepoint": "U+6F2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F2F", + "status": "exact_ids", + "ids": "⿰氵累", + "canonical_ids": "⿰氵累", + "expanded_ids": "⿰氵⿱田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "氵", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漰", + "codepoint": "U+6F30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F30", + "status": "exact_ids", + "ids": "⿰氵崩", + "canonical_ids": "⿰氵崩", + "expanded_ids": "⿰氵⿱山⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "月", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漱", + "codepoint": "U+6F31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F31", + "status": "exact_ids", + "ids": "⿰氵欶", + "canonical_ids": "⿰氵欶", + "expanded_ids": "⿰氵⿰⿻木口欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "欠", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漲", + "codepoint": "U+6F32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F32", + "status": "exact_ids", + "ids": "⿰氵張", + "canonical_ids": "⿰氵張", + "expanded_ids": "⿰氵⿰弓長", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "氵", + "長" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漳", + "codepoint": "U+6F33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F33", + "status": "exact_ids", + "ids": "⿰氵章", + "canonical_ids": "⿰氵章", + "expanded_ids": "⿰氵⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "氵", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漴", + "codepoint": "U+6F34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F34", + "status": "exact_ids", + "ids": "⿰氵崇", + "canonical_ids": "⿰氵崇", + "expanded_ids": "⿰氵⿱山⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "山", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漵", + "codepoint": "U+6F35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F35", + "status": "exact_ids", + "ids": "⿰氵敘", + "canonical_ids": "⿰氵敘", + "expanded_ids": "⿰氵⿰⿱⿱人一朩攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "攵", + "朩", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漶", + "codepoint": "U+6F36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F36", + "status": "exact_ids", + "ids": "⿰氵患", + "canonical_ids": "⿰氵患", + "expanded_ids": "⿰氵⿱⿻⿱口口丨心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "心", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漷", + "codepoint": "U+6F37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F37", + "status": "exact_ids", + "ids": "⿰氵郭", + "canonical_ids": "⿰氵郭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "阝" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漸", + "codepoint": "U+6F38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F38", + "status": "exact_ids", + "ids": "⿰氵斬", + "canonical_ids": "⿰氵斬", + "expanded_ids": "⿰氵⿰車斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "氵", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漹", + "codepoint": "U+6F39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F39", + "status": "exact_ids", + "ids": "⿰氵焉", + "canonical_ids": "⿰氵焉", + "expanded_ids": "⿰氵⿱⿱一止⿱⿱卜乙灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乙", + "卜", + "止", + "氵", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漺", + "codepoint": "U+6F3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F3A", + "status": "exact_ids", + "ids": "⿰氵爽", + "canonical_ids": "⿰氵爽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "氵" + ], + "unresolved_leaves": [ + "㸚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漻", + "codepoint": "U+6F3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F3B", + "status": "exact_ids", + "ids": "⿰氵翏", + "canonical_ids": "⿰氵翏", + "expanded_ids": "⿰氵⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漼", + "codepoint": "U+6F3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F3C", + "status": "exact_ids", + "ids": "⿰氵崔", + "canonical_ids": "⿰氵崔", + "expanded_ids": "⿰氵⿱山隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "氵", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漽", + "codepoint": "U+6F3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F3D", + "status": "exact_ids", + "ids": "⿰氵犀", + "canonical_ids": "⿰氵犀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "犀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漾", + "codepoint": "U+6F3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F3E", + "status": "exact_ids", + "ids": "⿰氵羕", + "canonical_ids": "⿰氵羕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "羕" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "漿", + "codepoint": "U+6F3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F3F", + "status": "exact_ids", + "ids": "⿱將水", + "canonical_ids": "⿱將水", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "水" + ], + "unresolved_leaves": [ + "將" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潀", + "codepoint": "U+6F40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F40", + "status": "exact_ids", + "ids": "⿰氵眾", + "canonical_ids": "⿰氵眾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "眾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潁", + "codepoint": "U+6F41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F41", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潂", + "codepoint": "U+6F42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F42", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潃", + "codepoint": "U+6F43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F43", + "status": "exact_ids", + "ids": "⿰氵脩", + "canonical_ids": "⿰氵脩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "脩" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潄", + "codepoint": "U+6F44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F44", + "status": "exact_ids", + "ids": "⿰氵敕", + "canonical_ids": "⿰氵敕", + "expanded_ids": "⿰氵⿰⿻木口攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "攵", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潅", + "codepoint": "U+6F45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F45", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潆", + "codepoint": "U+6F46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F46", + "status": "exact_ids", + "ids": "⿰氵萦", + "canonical_ids": "⿰氵萦", + "expanded_ids": "⿰氵⿳艹冖⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "小", + "幺", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潇", + "codepoint": "U+6F47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F47", + "status": "exact_ids", + "ids": "⿰氵萧", + "canonical_ids": "⿰氵萧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "艹" + ], + "unresolved_leaves": [ + "肃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潈", + "codepoint": "U+6F48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F48", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潉", + "codepoint": "U+6F49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F49", + "status": "exact_ids", + "ids": "⿰氵崑", + "canonical_ids": "⿰氵崑", + "expanded_ids": "⿰氵⿱山⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "山", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潊", + "codepoint": "U+6F4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F4A", + "status": "exact_ids", + "ids": "⿰氵敍", + "canonical_ids": "⿰氵敍", + "expanded_ids": "⿰氵⿰⿱⿱人一朩⿱卜又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "卜", + "又", + "朩", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潋", + "codepoint": "U+6F4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F4B", + "status": "exact_ids", + "ids": "⿰氵敛", + "canonical_ids": "⿰氵敛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "氵" + ], + "unresolved_leaves": [ + "佥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潌", + "codepoint": "U+6F4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F4C", + "status": "exact_ids", + "ids": "⿰氵窒", + "canonical_ids": "⿰氵窒", + "expanded_ids": "⿰氵⿱⿱宀八⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "厶", + "土", + "宀", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [ + "漥" + ] + }, + { + "character": "潍", + "codepoint": "U+6F4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F4D", + "status": "exact_ids", + "ids": "⿰氵维", + "canonical_ids": "⿰氵维", + "expanded_ids": "⿰氵⿰纟隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "纟", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潎", + "codepoint": "U+6F4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F4E", + "status": "exact_ids", + "ids": "⿰氵敝", + "canonical_ids": "⿰氵敝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "氵" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潏", + "codepoint": "U+6F4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F4F", + "status": "exact_ids", + "ids": "⿰氵矞", + "canonical_ids": "⿰氵矞", + "expanded_ids": "⿰氵⿱矛⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "氵", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潐", + "codepoint": "U+6F50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F50", + "status": "exact_ids", + "ids": "⿰氵焦", + "canonical_ids": "⿰氵焦", + "expanded_ids": "⿰氵⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "灬", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潑", + "codepoint": "U+6F51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F51", + "status": "exact_ids", + "ids": "⿰氵發", + "canonical_ids": "⿰氵發", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "發" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潒", + "codepoint": "U+6F52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F52", + "status": "exact_ids", + "ids": "⿰氵象", + "canonical_ids": "⿰氵象", + "expanded_ids": "⿰氵象", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "象" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潓", + "codepoint": "U+6F53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F53", + "status": "exact_ids", + "ids": "⿰氵惠", + "canonical_ids": "⿰氵惠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "心", + "氵" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潔", + "codepoint": "U+6F54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F54", + "status": "exact_ids", + "ids": "⿰氵絜", + "canonical_ids": "⿰氵絜", + "expanded_ids": "⿰氵⿱⿰丰刀⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "小", + "幺", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潕", + "codepoint": "U+6F55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F55", + "status": "exact_ids", + "ids": "⿰氵無", + "canonical_ids": "⿰氵無", + "expanded_ids": "⿰氵無", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "無" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潖", + "codepoint": "U+6F56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F56", + "status": "exact_ids", + "ids": "⿰氵琶", + "canonical_ids": "⿰氵琶", + "expanded_ids": "⿰氵⿱⿰王王巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "氵", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潗", + "codepoint": "U+6F57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F57", + "status": "exact_ids", + "ids": "⿰氵集", + "canonical_ids": "⿰氵集", + "expanded_ids": "⿰氵⿱隹木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "氵", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潘", + "codepoint": "U+6F58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F58", + "status": "exact_ids", + "ids": "⿰氵番", + "canonical_ids": "⿰氵番", + "expanded_ids": "⿰氵⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "木", + "氵", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潙", + "codepoint": "U+6F59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F59", + "status": "exact_ids", + "ids": "⿰氵爲", + "canonical_ids": "⿰氵爲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "爲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潚", + "codepoint": "U+6F5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F5A", + "status": "exact_ids", + "ids": "⿰氵肅", + "canonical_ids": "⿰氵肅", + "expanded_ids": "⿰氵⿻肀𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "肀", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潛", + "codepoint": "U+6F5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F5B", + "status": "exact_ids", + "ids": "⿰氵朁", + "canonical_ids": "⿰氵朁", + "expanded_ids": "⿰氵⿱⿰旡旡曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "旡", + "曰", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潜", + "codepoint": "U+6F5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F5C", + "status": "exact_ids", + "ids": "⿰氵替", + "canonical_ids": "⿰氵替", + "expanded_ids": "⿰氵⿱⿰⿻一大⿻一大曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "曰", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潝", + "codepoint": "U+6F5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F5D", + "status": "exact_ids", + "ids": "⿰氵翕", + "canonical_ids": "⿰氵翕", + "expanded_ids": "⿰氵⿱⿱⿱人一口⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "人", + "口", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潞", + "codepoint": "U+6F5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F5E", + "status": "exact_ids", + "ids": "⿰氵路", + "canonical_ids": "⿰氵路", + "expanded_ids": "⿰氵⿰⿱口龰⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "氵", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潟", + "codepoint": "U+6F5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F5F", + "status": "exact_ids", + "ids": "⿰氵舄", + "canonical_ids": "⿰氵舄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "臼" + ], + "unresolved_leaves": [ + "灳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潠", + "codepoint": "U+6F60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F60", + "status": "exact_ids", + "ids": "⿰氵巽", + "canonical_ids": "⿰氵巽", + "expanded_ids": "⿰氵⿱⿰己己⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "廾", + "廿", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潡", + "codepoint": "U+6F61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F61", + "status": "exact_ids", + "ids": "⿰氵敦", + "canonical_ids": "⿰氵敦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "氵" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潢", + "codepoint": "U+6F62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F62", + "status": "exact_ids", + "ids": "⿰氵黄", + "canonical_ids": "⿰氵黄", + "expanded_ids": "⿰氵黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潣", + "codepoint": "U+6F63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F63", + "status": "exact_ids", + "ids": "⿰氵閔", + "canonical_ids": "⿰氵閔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "閔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潤", + "codepoint": "U+6F64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F64", + "status": "exact_ids", + "ids": "⿰氵閏", + "canonical_ids": "⿰氵閏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "閏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潥", + "codepoint": "U+6F65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F65", + "status": "exact_ids", + "ids": "⿰氵粟", + "canonical_ids": "⿰氵粟", + "expanded_ids": "⿰氵⿱覀⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "氵", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潦", + "codepoint": "U+6F66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F66", + "status": "exact_ids", + "ids": "⿰氵尞", + "canonical_ids": "⿰氵尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "氵" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潧", + "codepoint": "U+6F67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F67", + "status": "exact_ids", + "ids": "⿰氵曾", + "canonical_ids": "⿰氵曾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潨", + "codepoint": "U+6F68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F68", + "status": "exact_ids", + "ids": "⿰氵衆", + "canonical_ids": "⿰氵衆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乑", + "氵" + ], + "unresolved_leaves": [ + "血" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潩", + "codepoint": "U+6F69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F69", + "status": "exact_ids", + "ids": "⿰氵異", + "canonical_ids": "⿰氵異", + "expanded_ids": "⿰氵⿱田⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "氵", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潪", + "codepoint": "U+6F6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F6A", + "status": "exact_ids", + "ids": "⿰氵智", + "canonical_ids": "⿰氵智", + "expanded_ids": "⿰氵⿱⿰⿱⿻丿一大口日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "大", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潫", + "codepoint": "U+6F6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F6B", + "status": "exact_ids", + "ids": "⿰氵絭", + "canonical_ids": "⿰氵絭", + "expanded_ids": "⿰氵⿱龹⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "氵", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潬", + "codepoint": "U+6F6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F6C", + "status": "exact_ids", + "ids": "⿰氵單", + "canonical_ids": "⿰氵單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潭", + "codepoint": "U+6F6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F6D", + "status": "exact_ids", + "ids": "⿰氵覃", + "canonical_ids": "⿰氵覃", + "expanded_ids": "⿰氵⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "氵", + "襾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潮", + "codepoint": "U+6F6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F6E", + "status": "exact_ids", + "ids": "⿰氵朝", + "canonical_ids": "⿰氵朝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "朝" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潯", + "codepoint": "U+6F6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F6F", + "status": "exact_ids", + "ids": "⿰氵尋", + "canonical_ids": "⿰氵尋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "尋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潰", + "codepoint": "U+6F70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F70", + "status": "exact_ids", + "ids": "⿰氵貴", + "canonical_ids": "⿰氵貴", + "expanded_ids": "⿰氵⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潱", + "codepoint": "U+6F71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F71", + "status": "exact_ids", + "ids": "⿰氵壹", + "canonical_ids": "⿰氵壹", + "expanded_ids": "⿰氵⿳土冖豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "土", + "氵", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潲", + "codepoint": "U+6F72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F72", + "status": "exact_ids", + "ids": "⿰氵稍", + "canonical_ids": "⿰氵稍", + "expanded_ids": "⿰氵⿰⿻丿木⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "月", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潳", + "codepoint": "U+6F73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F73", + "status": "exact_ids", + "ids": "⿰氵屠", + "canonical_ids": "⿰氵屠", + "expanded_ids": "⿰氵⿱尸⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "尸", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潴", + "codepoint": "U+6F74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F74", + "status": "exact_ids", + "ids": "⿰氵猪", + "canonical_ids": "⿰氵猪", + "expanded_ids": "⿰氵⿰犭⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "氵", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潵", + "codepoint": "U+6F75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F75", + "status": "exact_ids", + "ids": "⿰氵散", + "canonical_ids": "⿰氵散", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "散" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潶", + "codepoint": "U+6F76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F76", + "status": "exact_ids", + "ids": "⿰氵黑", + "canonical_ids": "⿰氵黑", + "expanded_ids": "⿰氵黑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潷", + "codepoint": "U+6F77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F77", + "status": "exact_ids", + "ids": "⿰氵筆", + "canonical_ids": "⿰氵筆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "亇", + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潸", + "codepoint": "U+6F78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F78", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潹", + "codepoint": "U+6F79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F79", + "status": "exact_ids", + "ids": "⿰氵森", + "canonical_ids": "⿰氵森", + "expanded_ids": "⿰氵⿱木⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潺", + "codepoint": "U+6F7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F7A", + "status": "exact_ids", + "ids": "⿰氵孱", + "canonical_ids": "⿰氵孱", + "expanded_ids": "⿰氵⿱尸⿱子⿰子子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "尸", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潻", + "codepoint": "U+6F7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F7B", + "status": "exact_ids", + "ids": "⿰氵黍", + "canonical_ids": "⿰氵黍", + "expanded_ids": "⿰氵⿱⿻丿木⿱入水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "入", + "木", + "水", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潼", + "codepoint": "U+6F7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F7C", + "status": "exact_ids", + "ids": "⿰氵童", + "canonical_ids": "⿰氵童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潽", + "codepoint": "U+6F7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F7D", + "status": "exact_ids", + "ids": "⿰氵普", + "canonical_ids": "⿰氵普", + "expanded_ids": "⿰氵⿱⿱丷亚日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亚", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潾", + "codepoint": "U+6F7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F7E", + "status": "exact_ids", + "ids": "⿰氵粦", + "canonical_ids": "⿰氵粦", + "expanded_ids": "⿰氵⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "潿", + "codepoint": "U+6F7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F7F", + "status": "exact_ids", + "ids": "⿰氵圍", + "canonical_ids": "⿰氵圍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "圍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澀", + "codepoint": "U+6F80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F80", + "status": "exact_ids", + "ids": "⿰氵歰", + "canonical_ids": "⿰氵歰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "歰" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澁", + "codepoint": "U+6F81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F81", + "status": "exact_ids", + "ids": "⿰氵歮", + "canonical_ids": "⿰氵歮", + "expanded_ids": "⿰氵⿱止⿰止止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澂", + "codepoint": "U+6F82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F82", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澃", + "codepoint": "U+6F83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F83", + "status": "exact_ids", + "ids": "⿱須水", + "canonical_ids": "⿱須水", + "expanded_ids": "⿱⿰彡⿱⿱一丿⿱目八水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "彡", + "水", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澄", + "codepoint": "U+6F84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F84", + "status": "exact_ids", + "ids": "⿰氵登", + "canonical_ids": "⿰氵登", + "expanded_ids": "⿰氵⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "癶", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澅", + "codepoint": "U+6F85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F85", + "status": "exact_ids", + "ids": "⿰氵畫", + "canonical_ids": "⿰氵畫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "畫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澆", + "codepoint": "U+6F86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F86", + "status": "exact_ids", + "ids": "⿰氵堯", + "canonical_ids": "⿰氵堯", + "expanded_ids": "⿰氵⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澇", + "codepoint": "U+6F87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F87", + "status": "exact_ids", + "ids": "⿰氵勞", + "canonical_ids": "⿰氵勞", + "expanded_ids": "⿰氵⿳⿰火火冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "氵", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澈", + "codepoint": "U+6F88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F88", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澉", + "codepoint": "U+6F89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F89", + "status": "exact_ids", + "ids": "⿰氵敢", + "canonical_ids": "⿰氵敢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "敢" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澊", + "codepoint": "U+6F8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F8A", + "status": "exact_ids", + "ids": "⿰氵尊", + "canonical_ids": "⿰氵尊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "寸", + "氵" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澋", + "codepoint": "U+6F8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F8B", + "status": "exact_ids", + "ids": "⿰氵景", + "canonical_ids": "⿰氵景", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "氵" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澌", + "codepoint": "U+6F8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F8C", + "status": "exact_ids", + "ids": "⿰氵斯", + "canonical_ids": "⿰氵斯", + "expanded_ids": "⿰氵⿰其斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "斤", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澍", + "codepoint": "U+6F8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F8D", + "status": "exact_ids", + "ids": "⿰氵尌", + "canonical_ids": "⿰氵尌", + "expanded_ids": "⿰氵⿰⿱十豆寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "寸", + "氵", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澎", + "codepoint": "U+6F8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F8E", + "status": "exact_ids", + "ids": "⿰氵彭", + "canonical_ids": "⿰氵彭", + "expanded_ids": "⿰氵⿰⿱十豆彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "彡", + "氵", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澏", + "codepoint": "U+6F8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F8F", + "status": "exact_ids", + "ids": "⿰氵嵒", + "canonical_ids": "⿰氵嵒", + "expanded_ids": "⿰氵⿱⿱口⿰口口山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "山", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澐", + "codepoint": "U+6F90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F90", + "status": "exact_ids", + "ids": "⿰氵雲", + "canonical_ids": "⿰氵雲", + "expanded_ids": "⿰氵⿱雨⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "氵", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澑", + "codepoint": "U+6F91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F91", + "status": "exact_ids", + "ids": "⿰氵畱", + "canonical_ids": "⿰氵畱", + "expanded_ids": "⿰氵⿱丣田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丣", + "氵", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澒", + "codepoint": "U+6F92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F92", + "status": "exact_ids", + "ids": "⿰氵項", + "canonical_ids": "⿰氵項", + "expanded_ids": "⿰氵⿰工⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "工", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澓", + "codepoint": "U+6F93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F93", + "status": "exact_ids", + "ids": "⿰氵復", + "canonical_ids": "⿰氵復", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "氵" + ], + "unresolved_leaves": [ + "复" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澔", + "codepoint": "U+6F94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F94", + "status": "exact_ids", + "ids": "⿰氵皓", + "canonical_ids": "⿰氵皓", + "expanded_ids": "⿰氵⿰⿻日丶⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "日", + "氵", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澕", + "codepoint": "U+6F95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F95", + "status": "exact_ids", + "ids": "⿰氵華", + "canonical_ids": "⿰氵華", + "expanded_ids": "⿰氵⿱艹𠦒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "艹", + "𠦒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澖", + "codepoint": "U+6F96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F96", + "status": "exact_ids", + "ids": "⿰氵閑", + "canonical_ids": "⿰氵閑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "閑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澗", + "codepoint": "U+6F97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F97", + "status": "exact_ids", + "ids": "⿰氵間", + "canonical_ids": "⿰氵間", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "間" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澘", + "codepoint": "U+6F98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F98", + "status": "exact_ids", + "ids": "⿰氵𣈅", + "canonical_ids": "⿰氵𣈅", + "expanded_ids": "⿰氵⿱⿰木木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澙", + "codepoint": "U+6F99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F99", + "status": "exact_ids", + "ids": "⿰氵舄", + "canonical_ids": "⿰氵舄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "臼" + ], + "unresolved_leaves": [ + "灳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澚", + "codepoint": "U+6F9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F9A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澛", + "codepoint": "U+6F9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F9B", + "status": "exact_ids", + "ids": "⿰氵鲁", + "canonical_ids": "⿰氵鲁", + "expanded_ids": "⿰氵⿱鱼日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "氵", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澜", + "codepoint": "U+6F9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F9C", + "status": "exact_ids", + "ids": "⿰氵阑", + "canonical_ids": "⿰氵阑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "阑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澝", + "codepoint": "U+6F9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F9D", + "status": "exact_ids", + "ids": "⿰氵甯", + "canonical_ids": "⿰氵甯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "甯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澞", + "codepoint": "U+6F9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F9E", + "status": "exact_ids", + "ids": "⿰氵虞", + "canonical_ids": "⿰氵虞", + "expanded_ids": "⿰氵⿱虍⿱口⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "口", + "大", + "氵", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澟", + "codepoint": "U+6F9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6F9F", + "status": "exact_ids", + "ids": "⿰氵稟", + "canonical_ids": "⿰氵稟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亠", + "木", + "氵" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澠", + "codepoint": "U+6FA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FA0", + "status": "exact_ids", + "ids": "⿰氵黽", + "canonical_ids": "⿰氵黽", + "expanded_ids": "⿰氵黽", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "黽" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澡", + "codepoint": "U+6FA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FA1", + "status": "exact_ids", + "ids": "⿰氵喿", + "canonical_ids": "⿰氵喿", + "expanded_ids": "⿰氵⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澢", + "codepoint": "U+6FA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FA2", + "status": "exact_ids", + "ids": "⿰氵當", + "canonical_ids": "⿰氵當", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "氵", + "田" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澣", + "codepoint": "U+6FA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FA3", + "status": "exact_ids", + "ids": "⿰氵幹", + "canonical_ids": "⿰氵幹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "幹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澤", + "codepoint": "U+6FA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FA4", + "status": "exact_ids", + "ids": "⿰氵睪", + "canonical_ids": "⿰氵睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "氵", + "罒" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澥", + "codepoint": "U+6FA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FA5", + "status": "exact_ids", + "ids": "⿰氵解", + "canonical_ids": "⿰氵解", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "解" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澦", + "codepoint": "U+6FA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FA6", + "status": "exact_ids", + "ids": "⿰氵預", + "canonical_ids": "⿰氵預", + "expanded_ids": "⿰氵⿰⿱龴⿱一亅⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亅", + "八", + "氵", + "目", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 300, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澧", + "codepoint": "U+6FA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FA7", + "status": "exact_ids", + "ids": "⿰氵豊", + "canonical_ids": "⿰氵豊", + "expanded_ids": "⿰氵⿱曲豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "氵", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澨", + "codepoint": "U+6FA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FA8", + "status": "exact_ids", + "ids": "⿰氵筮", + "canonical_ids": "⿰氵筮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "工", + "氵" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澩", + "codepoint": "U+6FA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FA9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澪", + "codepoint": "U+6FAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FAA", + "status": "exact_ids", + "ids": "⿰氵零", + "canonical_ids": "⿰氵零", + "expanded_ids": "⿰氵⿱雨⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "氵", + "雨", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澫", + "codepoint": "U+6FAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FAB", + "status": "exact_ids", + "ids": "⿰氵萬", + "canonical_ids": "⿰氵萬", + "expanded_ids": "⿰氵⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "田", + "禸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澬", + "codepoint": "U+6FAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FAC", + "status": "exact_ids", + "ids": "⿰氵資", + "canonical_ids": "⿰氵資", + "expanded_ids": "⿰氵⿱⿰冫欠⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冫", + "欠", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澭", + "codepoint": "U+6FAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FAD", + "status": "exact_ids", + "ids": "⿰氵雍", + "canonical_ids": "⿰氵雍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "雍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澮", + "codepoint": "U+6FAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FAE", + "status": "exact_ids", + "ids": "⿰氵會", + "canonical_ids": "⿰氵會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "氵" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澯", + "codepoint": "U+6FAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FAF", + "status": "exact_ids", + "ids": "⿰氵粲", + "canonical_ids": "⿰氵粲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "氵" + ], + "unresolved_leaves": [ + "𣦼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澰", + "codepoint": "U+6FB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FB0", + "status": "exact_ids", + "ids": "⿰氵僉", + "canonical_ids": "⿰氵僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澱", + "codepoint": "U+6FB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FB1", + "status": "exact_ids", + "ids": "⿰氵殿", + "canonical_ids": "⿰氵殿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "殿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澲", + "codepoint": "U+6FB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FB2", + "status": "exact_ids", + "ids": "⿰氵業", + "canonical_ids": "⿰氵業", + "expanded_ids": "⿰氵⿱业⿻羊八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "八", + "氵", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澳", + "codepoint": "U+6FB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FB3", + "status": "exact_ids", + "ids": "⿰氵奧", + "canonical_ids": "⿰氵奧", + "expanded_ids": "⿰氵⿱⿱宀⿱丿⿻木丷大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "大", + "宀", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澴", + "codepoint": "U+6FB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FB4", + "status": "exact_ids", + "ids": "⿰氵睘", + "canonical_ids": "⿰氵睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澵", + "codepoint": "U+6FB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FB5", + "status": "exact_ids", + "ids": "⿰氵新", + "canonical_ids": "⿰氵新", + "expanded_ids": "⿰氵⿰⿱立朩斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "朩", + "氵", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澶", + "codepoint": "U+6FB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FB6", + "status": "exact_ids", + "ids": "⿰氵亶", + "canonical_ids": "⿰氵亶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "日", + "氵" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澷", + "codepoint": "U+6FB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FB7", + "status": "exact_ids", + "ids": "⿰氵㬅", + "canonical_ids": "⿰氵㬅", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "万", + "氵", + "目" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澸", + "codepoint": "U+6FB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FB8", + "status": "exact_ids", + "ids": "⿰氵感", + "canonical_ids": "⿰氵感", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "氵" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澹", + "codepoint": "U+6FB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FB9", + "status": "exact_ids", + "ids": "⿰氵詹", + "canonical_ids": "⿰氵詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澺", + "codepoint": "U+6FBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FBA", + "status": "exact_ids", + "ids": "⿰氵意", + "canonical_ids": "⿰氵意", + "expanded_ids": "⿰氵⿱⿱立日心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "日", + "氵", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澻", + "codepoint": "U+6FBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FBB", + "status": "exact_ids", + "ids": "⿰氵遂", + "canonical_ids": "⿰氵遂", + "expanded_ids": "⿰氵⿰辶⿱八豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "氵", + "豕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澼", + "codepoint": "U+6FBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FBC", + "status": "exact_ids", + "ids": "⿰氵辟", + "canonical_ids": "⿰氵辟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "氵", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澽", + "codepoint": "U+6FBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FBD", + "status": "exact_ids", + "ids": "⿰氵豦", + "canonical_ids": "⿰氵豦", + "expanded_ids": "⿰氵⿱虍豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "虍", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澾", + "codepoint": "U+6FBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FBE", + "status": "exact_ids", + "ids": "⿰氵達", + "canonical_ids": "⿰氵達", + "expanded_ids": "⿰氵⿰辶⿱土羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "氵", + "羊", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "澿", + "codepoint": "U+6FBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FBF", + "status": "exact_ids", + "ids": "⿰氵禁", + "canonical_ids": "⿰氵禁", + "expanded_ids": "⿰氵⿱⿰木木⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "木", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "激", + "codepoint": "U+6FC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FC0", + "status": "exact_ids", + "ids": "⿰氵敫", + "canonical_ids": "⿰氵敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濁", + "codepoint": "U+6FC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FC1", + "status": "exact_ids", + "ids": "⿰氵蜀", + "canonical_ids": "⿰氵蜀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "罒" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濂", + "codepoint": "U+6FC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FC2", + "status": "exact_ids", + "ids": "⿰氵廉", + "canonical_ids": "⿰氵廉", + "expanded_ids": "⿰氵⿱广兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "广", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濃", + "codepoint": "U+6FC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FC3", + "status": "exact_ids", + "ids": "⿰氵農", + "canonical_ids": "⿰氵農", + "expanded_ids": "⿰氵⿱曲辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "氵", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濄", + "codepoint": "U+6FC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FC4", + "status": "exact_ids", + "ids": "⿰氵過", + "canonical_ids": "⿰氵過", + "expanded_ids": "⿰氵⿰辶⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "氵", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濅", + "codepoint": "U+6FC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FC5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濆", + "codepoint": "U+6FC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FC6", + "status": "exact_ids", + "ids": "⿰氵賁", + "canonical_ids": "⿰氵賁", + "expanded_ids": "⿰氵⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "廾", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濇", + "codepoint": "U+6FC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FC7", + "status": "exact_ids", + "ids": "⿰氵嗇", + "canonical_ids": "⿰氵嗇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "氵" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濈", + "codepoint": "U+6FC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FC8", + "status": "exact_ids", + "ids": "⿰氵戢", + "canonical_ids": "⿰氵戢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "氵", + "耳" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濉", + "codepoint": "U+6FC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FC9", + "status": "exact_ids", + "ids": "⿰氵睢", + "canonical_ids": "⿰氵睢", + "expanded_ids": "⿰氵⿰目隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濊", + "codepoint": "U+6FCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FCA", + "status": "exact_ids", + "ids": "⿰氵歲", + "canonical_ids": "⿰氵歲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "歲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濋", + "codepoint": "U+6FCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FCB", + "status": "exact_ids", + "ids": "⿰氵楚", + "canonical_ids": "⿰氵楚", + "expanded_ids": "⿰氵⿱⿰木木疋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "氵", + "疋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濌", + "codepoint": "U+6FCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FCC", + "status": "exact_ids", + "ids": "⿰重沓", + "canonical_ids": "⿰重沓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "日", + "水" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濍", + "codepoint": "U+6FCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FCD", + "status": "exact_ids", + "ids": "⿰氵葱", + "canonical_ids": "⿰氵葱", + "expanded_ids": "⿰氵⿱艹⿱⿻勿丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "勿", + "心", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濎", + "codepoint": "U+6FCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FCE", + "status": "exact_ids", + "ids": "⿰氵鼎", + "canonical_ids": "⿰氵鼎", + "expanded_ids": "⿰氵鼎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "鼎" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濏", + "codepoint": "U+6FCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FCF", + "status": "exact_ids", + "ids": "⿰氵瑟", + "canonical_ids": "⿰氵瑟", + "expanded_ids": "⿰氵⿱⿰王王⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "氵", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濐", + "codepoint": "U+6FD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FD0", + "status": "exact_ids", + "ids": "⿰氵暑", + "canonical_ids": "⿰氵暑", + "expanded_ids": "⿰氵⿱日⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濑", + "codepoint": "U+6FD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FD1", + "status": "exact_ids", + "ids": "⿰氵赖", + "canonical_ids": "⿰氵赖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "木", + "氵" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濒", + "codepoint": "U+6FD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FD2", + "status": "exact_ids", + "ids": "⿰氵频", + "canonical_ids": "⿰氵频", + "expanded_ids": "⿰氵⿰⿱止𣥂⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "止", + "氵", + "𣥂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 266, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濓", + "codepoint": "U+6FD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FD3", + "status": "exact_ids", + "ids": "⿰氵亷", + "canonical_ids": "⿰氵亷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "亷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濔", + "codepoint": "U+6FD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FD4", + "status": "exact_ids", + "ids": "⿰氵爾", + "canonical_ids": "⿰氵爾", + "expanded_ids": "⿰氵爾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "爾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濕", + "codepoint": "U+6FD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FD5", + "status": "exact_ids", + "ids": "⿰氵㬎", + "canonical_ids": "⿰氵㬎", + "expanded_ids": "⿰氵⿱日⿱⿰幺幺灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "日", + "氵", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濖", + "codepoint": "U+6FD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FD6", + "status": "exact_ids", + "ids": "⿰氵署", + "canonical_ids": "⿰氵署", + "expanded_ids": "⿰氵⿱罒⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "氵", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濗", + "codepoint": "U+6FD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FD7", + "status": "exact_ids", + "ids": "⿰氵幕", + "canonical_ids": "⿰氵幕", + "expanded_ids": "⿰氵⿱⿱艹⿱日大⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "大", + "日", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濘", + "codepoint": "U+6FD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FD8", + "status": "exact_ids", + "ids": "⿰氵寜", + "canonical_ids": "⿰氵寜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "寜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濙", + "codepoint": "U+6FD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FD9", + "status": "exact_ids", + "ids": "⿰氵熒", + "canonical_ids": "⿰氵熒", + "expanded_ids": "⿰氵⿳⿰火火冖火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "氵", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濚", + "codepoint": "U+6FDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FDA", + "status": "exact_ids", + "ids": "⿰氵榮", + "canonical_ids": "⿰氵榮", + "expanded_ids": "⿰氵⿳⿰火火冖木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "木", + "氵", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濛", + "codepoint": "U+6FDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FDB", + "status": "exact_ids", + "ids": "⿰氵蒙", + "canonical_ids": "⿰氵蒙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "艹", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濜", + "codepoint": "U+6FDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FDC", + "status": "exact_ids", + "ids": "⿰氵盡", + "canonical_ids": "⿰氵盡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "盡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濝", + "codepoint": "U+6FDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FDD", + "status": "exact_ids", + "ids": "⿰氵綦", + "canonical_ids": "⿰氵綦", + "expanded_ids": "⿰氵⿱其⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "小", + "幺", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濞", + "codepoint": "U+6FDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FDE", + "status": "exact_ids", + "ids": "⿰氵鼻", + "canonical_ids": "⿰氵鼻", + "expanded_ids": "⿰氵⿱⿻目丶⿱田丌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "丶", + "氵", + "田", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濟", + "codepoint": "U+6FDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FDF", + "status": "exact_ids", + "ids": "⿰氵齊", + "canonical_ids": "⿰氵齊", + "expanded_ids": "⿰氵齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濠", + "codepoint": "U+6FE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FE0", + "status": "exact_ids", + "ids": "⿰氵豪", + "canonical_ids": "⿰氵豪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "豪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濡", + "codepoint": "U+6FE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FE1", + "status": "exact_ids", + "ids": "⿰氵需", + "canonical_ids": "⿰氵需", + "expanded_ids": "⿰氵⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濢", + "codepoint": "U+6FE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FE2", + "status": "exact_ids", + "ids": "⿰氵翠", + "canonical_ids": "⿰氵翠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "氵" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濣", + "codepoint": "U+6FE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FE3", + "status": "exact_ids", + "ids": "⿰氵斡", + "canonical_ids": "⿰氵斡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "斡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濤", + "codepoint": "U+6FE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FE4", + "status": "exact_ids", + "ids": "⿰氵壽", + "canonical_ids": "⿰氵壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濥", + "codepoint": "U+6FE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FE5", + "status": "exact_ids", + "ids": "⿰氵夤", + "canonical_ids": "⿰氵夤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "氵" + ], + "unresolved_leaves": [ + "寅" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濦", + "codepoint": "U+6FE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FE6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濧", + "codepoint": "U+6FE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FE7", + "status": "exact_ids", + "ids": "⿰氵對", + "canonical_ids": "⿰氵對", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "寸", + "氵" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濨", + "codepoint": "U+6FE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FE8", + "status": "exact_ids", + "ids": "⿰氵慈", + "canonical_ids": "⿰氵慈", + "expanded_ids": "⿰氵⿱⿱䒑⿰幺幺心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "幺", + "心", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濩", + "codepoint": "U+6FE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FE9", + "status": "exact_ids", + "ids": "⿰氵蒦", + "canonical_ids": "⿰氵蒦", + "expanded_ids": "⿰氵⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "氵", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濪", + "codepoint": "U+6FEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FEA", + "status": "exact_ids", + "ids": "⿰氵靘", + "canonical_ids": "⿰氵靘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "月", + "氵" + ], + "unresolved_leaves": [ + "⺈", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濫", + "codepoint": "U+6FEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FEB", + "status": "exact_ids", + "ids": "⿰氵監", + "canonical_ids": "⿰氵監", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濬", + "codepoint": "U+6FEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FEC", + "status": "exact_ids", + "ids": "⿰氵睿", + "canonical_ids": "⿰氵睿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "卜", + "氵" + ], + "unresolved_leaves": [ + "眘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濭", + "codepoint": "U+6FED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FED", + "status": "exact_ids", + "ids": "⿰氵蓋", + "canonical_ids": "⿰氵蓋", + "expanded_ids": "⿰氵⿱艹⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "氵", + "皿", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濮", + "codepoint": "U+6FEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FEE", + "status": "exact_ids", + "ids": "⿰氵僕", + "canonical_ids": "⿰氵僕", + "expanded_ids": "⿰氵⿰亻⿱业⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "亻", + "儿", + "氵", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濯", + "codepoint": "U+6FEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FEF", + "status": "exact_ids", + "ids": "⿰氵翟", + "canonical_ids": "⿰氵翟", + "expanded_ids": "⿰氵⿱⿰习习隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "氵", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濰", + "codepoint": "U+6FF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FF0", + "status": "exact_ids", + "ids": "⿰氵維", + "canonical_ids": "⿰氵維", + "expanded_ids": "⿰氵⿰⿻幺小隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "氵", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濱", + "codepoint": "U+6FF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FF1", + "status": "exact_ids", + "ids": "⿰氵賓", + "canonical_ids": "⿰氵賓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濲", + "codepoint": "U+6FF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FF2", + "status": "exact_ids", + "ids": "⿰氵榖", + "canonical_ids": "⿰氵榖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "榖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濳", + "codepoint": "U+6FF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FF3", + "status": "exact_ids", + "ids": "⿰氵㬱", + "canonical_ids": "⿰氵㬱", + "expanded_ids": "⿰氵⿱⿰⿱牛儿⿱牛儿曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "曰", + "氵", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濴", + "codepoint": "U+6FF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FF4", + "status": "exact_ids", + "ids": "⿰氵滎", + "canonical_ids": "⿰氵滎", + "expanded_ids": "⿰氵⿳⿰火火冖水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "水", + "氵", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濵", + "codepoint": "U+6FF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FF5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濶", + "codepoint": "U+6FF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FF6", + "status": "exact_ids", + "ids": "⿰氵䦚", + "canonical_ids": "⿰氵䦚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "䦚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濷", + "codepoint": "U+6FF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FF7", + "status": "exact_ids", + "ids": "⿱水滿", + "canonical_ids": "⿱水滿", + "expanded_ids": "⿱水⿰氵⿱艹⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "水", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 300, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濸", + "codepoint": "U+6FF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FF8", + "status": "exact_ids", + "ids": "⿰氵蒼", + "canonical_ids": "⿰氵蒼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "艹" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濹", + "codepoint": "U+6FF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FF9", + "status": "exact_ids", + "ids": "⿰氵墨", + "canonical_ids": "⿰氵墨", + "expanded_ids": "⿰氵⿱黑土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "氵", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濺", + "codepoint": "U+6FFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FFA", + "status": "exact_ids", + "ids": "⿰氵賤", + "canonical_ids": "⿰氵賤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "氵", + "目" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濻", + "codepoint": "U+6FFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FFB", + "status": "exact_ids", + "ids": "⿰氵隤", + "canonical_ids": "⿰氵隤", + "expanded_ids": "⿰氵⿰阝⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "氵", + "目", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濼", + "codepoint": "U+6FFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FFC", + "status": "exact_ids", + "ids": "⿰氵樂", + "canonical_ids": "⿰氵樂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "樂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濽", + "codepoint": "U+6FFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FFD", + "status": "exact_ids", + "ids": "⿰氵賛", + "canonical_ids": "⿰氵賛", + "expanded_ids": "⿰氵⿱⿰⿻一大⿻一大⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "大", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濾", + "codepoint": "U+6FFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FFE", + "status": "exact_ids", + "ids": "⿰氵慮", + "canonical_ids": "⿰氵慮", + "expanded_ids": "⿰氵⿱虍⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "氵", + "田", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "濿", + "codepoint": "U+6FFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-6FFF", + "status": "exact_ids", + "ids": "⿰氵厲", + "canonical_ids": "⿰氵厲", + "expanded_ids": "⿰氵⿱厂⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "氵", + "田", + "禸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀀", + "codepoint": "U+7000", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7000", + "status": "exact_ids", + "ids": "⿰氵憂", + "canonical_ids": "⿰氵憂", + "expanded_ids": "⿰氵⿳⿻一⿻日丶冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "冖", + "夊", + "心", + "日", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 251, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀁", + "codepoint": "U+7001", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7001", + "status": "exact_ids", + "ids": "⿰氵飬", + "canonical_ids": "⿰氵飬", + "expanded_ids": "⿰氵⿱⿱丷⿻一大⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "丷", + "大", + "氵", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀂", + "codepoint": "U+7002", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7002", + "status": "exact_ids", + "ids": "⿰氵魯", + "canonical_ids": "⿰氵魯", + "expanded_ids": "⿰氵⿱魚日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "氵", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀃", + "codepoint": "U+7003", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7003", + "status": "exact_ids", + "ids": "⿰氵賜", + "canonical_ids": "⿰氵賜", + "expanded_ids": "⿰氵⿰⿱目八⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "勿", + "日", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀄", + "codepoint": "U+7004", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7004", + "status": "exact_ids", + "ids": "⿰氵節", + "canonical_ids": "⿰氵節", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "氵", + "艮" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀅", + "codepoint": "U+7005", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7005", + "status": "exact_ids", + "ids": "⿰氵瑩", + "canonical_ids": "⿰氵瑩", + "expanded_ids": "⿰氵⿳⿰火火冖⿻王丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "冖", + "氵", + "火", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀆", + "codepoint": "U+7006", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7006", + "status": "exact_ids", + "ids": "⿰氵賣", + "canonical_ids": "⿰氵賣", + "expanded_ids": "⿰氵⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "士", + "氵", + "目", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀇", + "codepoint": "U+7007", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7007", + "status": "exact_ids", + "ids": "⿰氵廣", + "canonical_ids": "⿰氵廣", + "expanded_ids": "⿰氵⿱广黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "氵", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀈", + "codepoint": "U+7008", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7008", + "status": "exact_ids", + "ids": "⿰氵翬", + "canonical_ids": "⿰氵翬", + "expanded_ids": "⿰氵⿳⿰习习冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "冖", + "氵", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀉", + "codepoint": "U+7009", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7009", + "status": "exact_ids", + "ids": "⿰氵寫", + "canonical_ids": "⿰氵寫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "氵", + "臼" + ], + "unresolved_leaves": [ + "灳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀊", + "codepoint": "U+700A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-700A", + "status": "exact_ids", + "ids": "⿰氵盤", + "canonical_ids": "⿰氵盤", + "expanded_ids": "⿰氵⿱⿰舟⿱几又皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "氵", + "皿", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀋", + "codepoint": "U+700B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-700B", + "status": "exact_ids", + "ids": "⿰氵審", + "canonical_ids": "⿰氵審", + "expanded_ids": "⿰氵⿱宀⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "宀", + "木", + "氵", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀌", + "codepoint": "U+700C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-700C", + "status": "exact_ids", + "ids": "⿰氵麃", + "canonical_ids": "⿰氵麃", + "expanded_ids": "⿰氵⿱鹿灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "灬", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀍", + "codepoint": "U+700D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-700D", + "status": "exact_ids", + "ids": "⿰氵廛", + "canonical_ids": "⿰氵廛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "氵" + ], + "unresolved_leaves": [ + "里", + "𡉀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀎", + "codepoint": "U+700E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-700E", + "status": "exact_ids", + "ids": "⿰氵蔑", + "canonical_ids": "⿰氵蔑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "目", + "艹" + ], + "unresolved_leaves": [ + "戌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀏", + "codepoint": "U+700F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-700F", + "status": "exact_ids", + "ids": "⿰氵劉", + "canonical_ids": "⿰氵劉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "氵" + ], + "unresolved_leaves": [ + "𨥫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀐", + "codepoint": "U+7010", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7010", + "status": "exact_ids", + "ids": "⿰氵韯", + "canonical_ids": "⿰氵韯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "韯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀑", + "codepoint": "U+7011", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7011", + "status": "exact_ids", + "ids": "⿰氵暴", + "canonical_ids": "⿰氵暴", + "expanded_ids": "⿰氵⿱日⿱⿱廿廾氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "日", + "氵", + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀒", + "codepoint": "U+7012", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7012", + "status": "exact_ids", + "ids": "⿰氵𠾂", + "canonical_ids": "⿰氵𠾂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "𠾂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀓", + "codepoint": "U+7013", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7013", + "status": "exact_ids", + "ids": "⿰氵徵", + "canonical_ids": "⿰氵徵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "徵" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀔", + "codepoint": "U+7014", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7014", + "status": "exact_ids", + "ids": "⿰氵穀", + "canonical_ids": "⿰氵穀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "穀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀕", + "codepoint": "U+7015", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7015", + "status": "exact_ids", + "ids": "⿰氵頻", + "canonical_ids": "⿰氵頻", + "expanded_ids": "⿰氵⿰⿱止𣥂⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "止", + "氵", + "目", + "𣥂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 266, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀖", + "codepoint": "U+7016", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7016", + "status": "exact_ids", + "ids": "⿰氵霍", + "canonical_ids": "⿰氵霍", + "expanded_ids": "⿰氵⿱雨隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "隹", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀗", + "codepoint": "U+7017", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7017", + "status": "exact_ids", + "ids": "⿰氵憲", + "canonical_ids": "⿰氵憲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "憲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀘", + "codepoint": "U+7018", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7018", + "status": "exact_ids", + "ids": "⿰氵盧", + "canonical_ids": "⿰氵盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "皿" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀙", + "codepoint": "U+7019", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7019", + "status": "exact_ids", + "ids": "⿰氵親", + "canonical_ids": "⿰氵親", + "expanded_ids": "⿰氵⿰⿱立朩⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "朩", + "氵", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀚", + "codepoint": "U+701A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-701A", + "status": "exact_ids", + "ids": "⿰氵翰", + "canonical_ids": "⿰氵翰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "翰" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀛", + "codepoint": "U+701B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-701B", + "status": "exact_ids", + "ids": "⿰氵嬴", + "canonical_ids": "⿰氵嬴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "嬴" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀜", + "codepoint": "U+701C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-701C", + "status": "exact_ids", + "ids": "⿰氵融", + "canonical_ids": "⿰氵融", + "expanded_ids": "⿰氵⿰鬲虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "虫", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀝", + "codepoint": "U+701D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-701D", + "status": "exact_ids", + "ids": "⿰氵歷", + "canonical_ids": "⿰氵歷", + "expanded_ids": "⿰氵⿱⿱厂⿰⿻丿木⿻丿木止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厂", + "木", + "止", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀞", + "codepoint": "U+701E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-701E", + "status": "exact_ids", + "ids": "⿰氵静", + "canonical_ids": "⿰氵静", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "氵" + ], + "unresolved_leaves": [ + "争", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀟", + "codepoint": "U+701F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-701F", + "status": "exact_ids", + "ids": "⿰氵蕭", + "canonical_ids": "⿰氵蕭", + "expanded_ids": "⿰氵⿱艹⿻肀𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "肀", + "艹", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 156, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀠", + "codepoint": "U+7020", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7020", + "status": "exact_ids", + "ids": "⿰氵縈", + "canonical_ids": "⿰氵縈", + "expanded_ids": "⿰氵⿳⿰火火冖⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "小", + "幺", + "氵", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀡", + "codepoint": "U+7021", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7021", + "status": "exact_ids", + "ids": "⿰氵隨", + "canonical_ids": "⿰氵隨", + "expanded_ids": "⿰氵⿰阝⿰辶⿱⿱牛一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "月", + "氵", + "牛", + "辶", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀢", + "codepoint": "U+7022", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7022", + "status": "exact_ids", + "ids": "⿰氵遺", + "canonical_ids": "⿰氵遺", + "expanded_ids": "⿰氵⿰辶⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "氵", + "目", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀣", + "codepoint": "U+7023", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7023", + "status": "exact_ids", + "ids": "⿰氵餐", + "canonical_ids": "⿰氵餐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "氵", + "艮" + ], + "unresolved_leaves": [ + "𣦼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀤", + "codepoint": "U+7024", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7024", + "status": "exact_ids", + "ids": "⿰氵褱", + "canonical_ids": "⿰氵褱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "褱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀥", + "codepoint": "U+7025", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7025", + "status": "exact_ids", + "ids": "⿰氵翯", + "canonical_ids": "⿰氵翯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "氵" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀦", + "codepoint": "U+7026", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7026", + "status": "exact_ids", + "ids": "⿰氵豬", + "canonical_ids": "⿰氵豬", + "expanded_ids": "⿰氵⿰豕⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "氵", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀧", + "codepoint": "U+7027", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7027", + "status": "exact_ids", + "ids": "⿰氵龍", + "canonical_ids": "⿰氵龍", + "expanded_ids": "⿰氵龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀨", + "codepoint": "U+7028", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7028", + "status": "exact_ids", + "ids": "⿰氵賴", + "canonical_ids": "⿰氵賴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "賴" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀩", + "codepoint": "U+7029", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7029", + "status": "exact_ids", + "ids": "⿰氵頽", + "canonical_ids": "⿰氵頽", + "expanded_ids": "⿰氵⿰⿱⿻丿木几⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "几", + "木", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀪", + "codepoint": "U+702A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-702A", + "status": "exact_ids", + "ids": "⿱敏泉", + "canonical_ids": "⿱敏泉", + "expanded_ids": "⿱⿰⿱⿻丿一母攵⿱⿻日丶水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "丿", + "攵", + "日", + "母", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀫", + "codepoint": "U+702B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-702B", + "status": "exact_ids", + "ids": "⿰氵縠", + "canonical_ids": "⿰氵縠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "縠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀬", + "codepoint": "U+702C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-702C", + "status": "exact_ids", + "ids": "⿰涑頁", + "canonical_ids": "⿰涑頁", + "expanded_ids": "⿰⿰氵⿻木口⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "口", + "木", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀭", + "codepoint": "U+702D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-702D", + "status": "exact_ids", + "ids": "⿰氵輸", + "canonical_ids": "⿰氵輸", + "expanded_ids": "⿰氵⿰車⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "月", + "氵", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀮", + "codepoint": "U+702E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-702E", + "status": "exact_ids", + "ids": "⿰氵霖", + "canonical_ids": "⿰氵霖", + "expanded_ids": "⿰氵⿱雨⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "氵", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀯", + "codepoint": "U+702F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-702F", + "status": "exact_ids", + "ids": "⿰氵營", + "canonical_ids": "⿰氵營", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "氵", + "火" + ], + "unresolved_leaves": [ + "呂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀰", + "codepoint": "U+7030", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7030", + "status": "exact_ids", + "ids": "⿰氵彌", + "canonical_ids": "⿰氵彌", + "expanded_ids": "⿰氵⿰弓爾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "氵", + "爾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀱", + "codepoint": "U+7031", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7031", + "status": "exact_ids", + "ids": "⿰氵罽", + "canonical_ids": "⿰氵罽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "罽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀲", + "codepoint": "U+7032", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7032", + "status": "exact_ids", + "ids": "⿰氵斂", + "canonical_ids": "⿰氵斂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "氵" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀳", + "codepoint": "U+7033", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7033", + "status": "exact_ids", + "ids": "⿰氵薦", + "canonical_ids": "⿰氵薦", + "expanded_ids": "⿰氵⿱艹廌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廌", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀴", + "codepoint": "U+7034", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7034", + "status": "exact_ids", + "ids": "⿰氵嬰", + "canonical_ids": "⿰氵嬰", + "expanded_ids": "⿰氵⿱⿰⿱目八⿱目八女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "女", + "氵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀵", + "codepoint": "U+7035", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7035", + "status": "exact_ids", + "ids": "⿰氵糞", + "canonical_ids": "⿰氵糞", + "expanded_ids": "⿰氵⿱⿻木丷⿱田⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "廾", + "廿", + "木", + "氵", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀶", + "codepoint": "U+7036", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7036", + "status": "exact_ids", + "ids": "⿰氵臨", + "canonical_ids": "⿰氵臨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "臨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀷", + "codepoint": "U+7037", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7037", + "status": "exact_ids", + "ids": "⿰氵翼", + "canonical_ids": "⿰氵翼", + "expanded_ids": "⿰氵⿱⿰习习⿱田⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "廾", + "廿", + "氵", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀸", + "codepoint": "U+7038", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7038", + "status": "exact_ids", + "ids": "⿰氵韱", + "canonical_ids": "⿰氵韱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "韱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀹", + "codepoint": "U+7039", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7039", + "status": "exact_ids", + "ids": "⿰氵龠", + "canonical_ids": "⿰氵龠", + "expanded_ids": "⿰氵龠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "龠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀺", + "codepoint": "U+703A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-703A", + "status": "exact_ids", + "ids": "⿰氵毚", + "canonical_ids": "⿰氵毚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "毚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀻", + "codepoint": "U+703B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-703B", + "status": "exact_ids", + "ids": "⿰氵戴", + "canonical_ids": "⿰氵戴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "戴" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀼", + "codepoint": "U+703C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-703C", + "status": "exact_ids", + "ids": "⿰氵襄", + "canonical_ids": "⿰氵襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀽", + "codepoint": "U+703D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-703D", + "status": "exact_ids", + "ids": "⿰氵蹇", + "canonical_ids": "⿰氵蹇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "蹇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀾", + "codepoint": "U+703E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-703E", + "status": "exact_ids", + "ids": "⿰氵闌", + "canonical_ids": "⿰氵闌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瀿", + "codepoint": "U+703F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-703F", + "status": "exact_ids", + "ids": "⿰氵繁", + "canonical_ids": "⿰氵繁", + "expanded_ids": "⿰氵⿱⿰⿱⿻丿一母攵⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "小", + "幺", + "攵", + "母", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灀", + "codepoint": "U+7040", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7040", + "status": "exact_ids", + "ids": "⿰氵霜", + "canonical_ids": "⿰氵霜", + "expanded_ids": "⿰氵⿱雨⿰木目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "氵", + "目", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灁", + "codepoint": "U+7041", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7041", + "status": "exact_ids", + "ids": "⿰氵闎", + "canonical_ids": "⿰氵闎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "闎" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灂", + "codepoint": "U+7042", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7042", + "status": "exact_ids", + "ids": "⿰氵爵", + "canonical_ids": "⿰氵爵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "爵" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灃", + "codepoint": "U+7043", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7043", + "status": "exact_ids", + "ids": "⿰氵豐", + "canonical_ids": "⿰氵豐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "豆" + ], + "unresolved_leaves": [ + "𠁳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灄", + "codepoint": "U+7044", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7044", + "status": "exact_ids", + "ids": "⿰氵聶", + "canonical_ids": "⿰氵聶", + "expanded_ids": "⿰氵⿱耳⿰耳耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灅", + "codepoint": "U+7045", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7045", + "status": "exact_ids", + "ids": "⿰氵壘", + "canonical_ids": "⿰氵壘", + "expanded_ids": "⿰氵⿱⿱田⿰田田土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "氵", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灆", + "codepoint": "U+7046", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7046", + "status": "exact_ids", + "ids": "⿰氵藍", + "canonical_ids": "⿰氵藍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "艹" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灇", + "codepoint": "U+7047", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7047", + "status": "exact_ids", + "ids": "⿰氵叢", + "canonical_ids": "⿰氵叢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "叢" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灈", + "codepoint": "U+7048", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7048", + "status": "exact_ids", + "ids": "⿰氵瞿", + "canonical_ids": "⿰氵瞿", + "expanded_ids": "⿰氵⿱⿰目目隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灉", + "codepoint": "U+7049", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7049", + "status": "exact_ids", + "ids": "⿰氵雝", + "canonical_ids": "⿰氵雝", + "expanded_ids": "⿰氵⿰⿱巛⿱口巴隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "巛", + "巴", + "氵", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灊", + "codepoint": "U+704A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-704A", + "status": "exact_ids", + "ids": "⿰氵鬵", + "canonical_ids": "⿰氵鬵", + "expanded_ids": "⿰氵⿱⿰旡旡鬲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "旡", + "氵", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灋", + "codepoint": "U+704B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-704B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灌", + "codepoint": "U+704C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-704C", + "status": "exact_ids", + "ids": "⿰氵雚", + "canonical_ids": "⿰氵雚", + "expanded_ids": "⿰氵⿱艹⿱⿰口口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "氵", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灍", + "codepoint": "U+704D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-704D", + "status": "exact_ids", + "ids": "⿰氵闕", + "canonical_ids": "⿰氵闕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "闕" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灎", + "codepoint": "U+704E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-704E", + "status": "exact_ids", + "ids": "⿰澧盍", + "canonical_ids": "⿰澧盍", + "expanded_ids": "⿰⿰氵⿱曲豆⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "曲", + "氵", + "皿", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灏", + "codepoint": "U+704F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-704F", + "status": "exact_ids", + "ids": "⿰氵颢", + "canonical_ids": "⿰氵颢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "日", + "氵" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灐", + "codepoint": "U+7050", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7050", + "status": "exact_ids", + "ids": "⿰氵鎣", + "canonical_ids": "⿰氵鎣", + "expanded_ids": "⿰氵⿳⿰火火冖金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "氵", + "火", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灑", + "codepoint": "U+7051", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7051", + "status": "exact_ids", + "ids": "⿰氵麗", + "canonical_ids": "⿰氵麗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "鹿" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灒", + "codepoint": "U+7052", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7052", + "status": "exact_ids", + "ids": "⿰氵贊", + "canonical_ids": "⿰氵贊", + "expanded_ids": "⿰氵⿱⿰⿱牛儿⿱牛儿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "氵", + "牛", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灓", + "codepoint": "U+7053", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7053", + "status": "exact_ids", + "ids": "⿱䜌水", + "canonical_ids": "⿱䜌水", + "expanded_ids": "⿱⿲⿱幺小言⿱幺小水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "水", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灔", + "codepoint": "U+7054", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7054", + "status": "exact_ids", + "ids": "⿰氵艶", + "canonical_ids": "⿰氵艶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "曲", + "氵", + "豆" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灕", + "codepoint": "U+7055", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7055", + "status": "exact_ids", + "ids": "⿰氵離", + "canonical_ids": "⿰氵離", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "氵", + "禸", + "隹" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灖", + "codepoint": "U+7056", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7056", + "status": "exact_ids", + "ids": "⿰氵靡", + "canonical_ids": "⿰氵靡", + "expanded_ids": "⿰氵⿱⿱广⿰木木非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "木", + "氵", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灗", + "codepoint": "U+7057", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7057", + "status": "exact_ids", + "ids": "⿰氵蟺", + "canonical_ids": "⿰氵蟺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "日", + "氵", + "虫" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灘", + "codepoint": "U+7058", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7058", + "status": "exact_ids", + "ids": "⿰氵難", + "canonical_ids": "⿰氵難", + "expanded_ids": "⿰氵⿰堇隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "氵", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灙", + "codepoint": "U+7059", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7059", + "status": "exact_ids", + "ids": "⿰氵黨", + "canonical_ids": "⿰氵黨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "氵", + "黑" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灚", + "codepoint": "U+705A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-705A", + "status": "exact_ids", + "ids": "⿰氵覺", + "canonical_ids": "⿰氵覺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "覺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灛", + "codepoint": "U+705B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-705B", + "status": "exact_ids", + "ids": "⿰氵闡", + "canonical_ids": "⿰氵闡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "闡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灜", + "codepoint": "U+705C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-705C", + "status": "exact_ids", + "ids": "⿰氵贏", + "canonical_ids": "⿰氵贏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "贏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灝", + "codepoint": "U+705D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-705D", + "status": "exact_ids", + "ids": "⿰氵顥", + "canonical_ids": "⿰氵顥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "日", + "氵", + "目" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灞", + "codepoint": "U+705E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-705E", + "status": "exact_ids", + "ids": "⿰氵霸", + "canonical_ids": "⿰氵霸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "雨" + ], + "unresolved_leaves": [ + "䩗" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灟", + "codepoint": "U+705F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-705F", + "status": "exact_ids", + "ids": "⿰氵屬", + "canonical_ids": "⿰氵屬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "屬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灠", + "codepoint": "U+7060", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7060", + "status": "exact_ids", + "ids": "⿰氵覽", + "canonical_ids": "⿰氵覽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "覽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灡", + "codepoint": "U+7061", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7061", + "status": "exact_ids", + "ids": "⿰氵蘭", + "canonical_ids": "⿰氵蘭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "艹" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灢", + "codepoint": "U+7062", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7062", + "status": "exact_ids", + "ids": "⿰氵囊", + "canonical_ids": "⿰氵囊", + "expanded_ids": "⿰氵囊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "囊", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灣", + "codepoint": "U+7063", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7063", + "status": "exact_ids", + "ids": "⿰氵彎", + "canonical_ids": "⿰氵彎", + "expanded_ids": "⿰氵⿱⿲⿱幺小言⿱幺小弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "弓", + "氵", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 253, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灤", + "codepoint": "U+7064", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7064", + "status": "exact_ids", + "ids": "⿰氵欒", + "canonical_ids": "⿰氵欒", + "expanded_ids": "⿰氵⿱⿲⿱幺小言⿱幺小木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "木", + "氵", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 253, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灥", + "codepoint": "U+7065", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7065", + "status": "exact_ids", + "ids": "⿱泉⿰泉泉", + "canonical_ids": "⿱泉⿰泉泉", + "expanded_ids": "⿱⿱⿻日丶水⿰⿱⿻日丶水⿱⿻日丶水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 336, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灦", + "codepoint": "U+7066", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7066", + "status": "exact_ids", + "ids": "⿰氵顯", + "canonical_ids": "⿰氵顯", + "expanded_ids": "⿰氵⿰⿱日⿱⿰幺幺灬⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "幺", + "日", + "氵", + "灬", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 336, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灧", + "codepoint": "U+7067", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7067", + "status": "exact_ids", + "ids": "⿰灃色", + "canonical_ids": "⿰灃色", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "氵", + "豆" + ], + "unresolved_leaves": [ + "⺈", + "𠁳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灨", + "codepoint": "U+7068", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7068", + "status": "exact_ids", + "ids": "⿰氵贛", + "canonical_ids": "⿰氵贛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "贛" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灩", + "codepoint": "U+7069", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7069", + "status": "exact_ids", + "ids": "⿰氵豔", + "canonical_ids": "⿰氵豔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "氵", + "皿", + "豆" + ], + "unresolved_leaves": [ + "𠁳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灪", + "codepoint": "U+706A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-706A", + "status": "exact_ids", + "ids": "⿰氵鬱", + "canonical_ids": "⿰氵鬱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "鬱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "火", + "codepoint": "U+706B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-706B", + "status": "leaf_self_fallback", + "ids": "火", + "canonical_ids": "火", + "expanded_ids": "火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灬", + "codepoint": "U+706C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-706C", + "status": "leaf_self_fallback", + "ids": "灬", + "canonical_ids": "灬", + "expanded_ids": "灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灭", + "codepoint": "U+706D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-706D", + "status": "exact_ids", + "ids": "⿱一火", + "canonical_ids": "⿱一火", + "expanded_ids": "⿱一火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灮", + "codepoint": "U+706E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-706E", + "status": "exact_ids", + "ids": "⿱火儿", + "canonical_ids": "⿱火儿", + "expanded_ids": "⿱火儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灯", + "codepoint": "U+706F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-706F", + "status": "exact_ids", + "ids": "⿰火丁", + "canonical_ids": "⿰火丁", + "expanded_ids": "⿰火⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灰", + "codepoint": "U+7070", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7070", + "status": "exact_ids", + "ids": "⿱厂火", + "canonical_ids": "⿱厂火", + "expanded_ids": "⿱厂火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灱", + "codepoint": "U+7071", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7071", + "status": "exact_ids", + "ids": "⿰火刀", + "canonical_ids": "⿰火刀", + "expanded_ids": "⿰火刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灲", + "codepoint": "U+7072", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7072", + "status": "exact_ids", + "ids": "⿰火刂", + "canonical_ids": "⿰火刂", + "expanded_ids": "⿰火刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灳", + "codepoint": "U+7073", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7073", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灴", + "codepoint": "U+7074", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7074", + "status": "exact_ids", + "ids": "⿰火工", + "canonical_ids": "⿰火工", + "expanded_ids": "⿰火工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灵", + "codepoint": "U+7075", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7075", + "status": "exact_ids", + "ids": "⿱彐火", + "canonical_ids": "⿱彐火", + "expanded_ids": "⿱彐火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灶", + "codepoint": "U+7076", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7076", + "status": "exact_ids", + "ids": "⿰火土", + "canonical_ids": "⿰火土", + "expanded_ids": "⿰火土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灷", + "codepoint": "U+7077", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7077", + "status": "exact_ids", + "ids": "⿱火廾", + "canonical_ids": "⿱火廾", + "expanded_ids": "⿱火廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灸", + "codepoint": "U+7078", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7078", + "status": "exact_ids", + "ids": "⿱久火", + "canonical_ids": "⿱久火", + "expanded_ids": "⿱久火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "久", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灹", + "codepoint": "U+7079", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7079", + "status": "exact_ids", + "ids": "⿰火乇", + "canonical_ids": "⿰火乇", + "expanded_ids": "⿰火⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灺", + "codepoint": "U+707A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-707A", + "status": "exact_ids", + "ids": "⿰火也", + "canonical_ids": "⿰火也", + "expanded_ids": "⿰火⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灻", + "codepoint": "U+707B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-707B", + "status": "exact_ids", + "ids": "⿱土火", + "canonical_ids": "⿱土火", + "expanded_ids": "⿱土火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灼", + "codepoint": "U+707C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-707C", + "status": "exact_ids", + "ids": "⿰火勺", + "canonical_ids": "⿰火勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "災", + "codepoint": "U+707D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-707D", + "status": "exact_ids", + "ids": "⿱巛火", + "canonical_ids": "⿱巛火", + "expanded_ids": "⿱巛火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灾", + "codepoint": "U+707E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-707E", + "status": "exact_ids", + "ids": "⿱宀火", + "canonical_ids": "⿱宀火", + "expanded_ids": "⿱宀火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "灿", + "codepoint": "U+707F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-707F", + "status": "exact_ids", + "ids": "⿰火山", + "canonical_ids": "⿰火山", + "expanded_ids": "⿰火山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炀", + "codepoint": "U+7080", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7080", + "status": "exact_ids", + "ids": "⿰火𠃓", + "canonical_ids": "⿰火𠃓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "𠃓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炁", + "codepoint": "U+7081", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7081", + "status": "exact_ids", + "ids": "⿱旡灬", + "canonical_ids": "⿱旡灬", + "expanded_ids": "⿱旡灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "旡", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炂", + "codepoint": "U+7082", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7082", + "status": "exact_ids", + "ids": "⿰火公", + "canonical_ids": "⿰火公", + "expanded_ids": "⿰火⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炃", + "codepoint": "U+7083", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7083", + "status": "exact_ids", + "ids": "⿱分火", + "canonical_ids": "⿱分火", + "expanded_ids": "⿱⿱八刀火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炄", + "codepoint": "U+7084", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7084", + "status": "exact_ids", + "ids": "⿰火丑", + "canonical_ids": "⿰火丑", + "expanded_ids": "⿰火丑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炅", + "codepoint": "U+7085", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7085", + "status": "exact_ids", + "ids": "⿱日火", + "canonical_ids": "⿱日火", + "expanded_ids": "⿱日火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炆", + "codepoint": "U+7086", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7086", + "status": "exact_ids", + "ids": "⿰火文", + "canonical_ids": "⿰火文", + "expanded_ids": "⿰火文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炇", + "codepoint": "U+7087", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7087", + "status": "exact_ids", + "ids": "⿰火攵", + "canonical_ids": "⿰火攵", + "expanded_ids": "⿰火攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炈", + "codepoint": "U+7088", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7088", + "status": "exact_ids", + "ids": "⿰火殳", + "canonical_ids": "⿰火殳", + "expanded_ids": "⿰火⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炉", + "codepoint": "U+7089", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7089", + "status": "exact_ids", + "ids": "⿰火戸", + "canonical_ids": "⿰火戸", + "expanded_ids": "⿰火⿻一尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炊", + "codepoint": "U+708A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-708A", + "status": "exact_ids", + "ids": "⿰火欠", + "canonical_ids": "⿰火欠", + "expanded_ids": "⿰火欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炋", + "codepoint": "U+708B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-708B", + "status": "exact_ids", + "ids": "⿰火不", + "canonical_ids": "⿰火不", + "expanded_ids": "⿰火不", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炌", + "codepoint": "U+708C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-708C", + "status": "exact_ids", + "ids": "⿰火介", + "canonical_ids": "⿰火介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炍", + "codepoint": "U+708D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-708D", + "status": "exact_ids", + "ids": "⿰火反", + "canonical_ids": "⿰火反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炎", + "codepoint": "U+708E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-708E", + "status": "exact_ids", + "ids": "⿱火火", + "canonical_ids": "⿱火火", + "expanded_ids": "⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炏", + "codepoint": "U+708F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-708F", + "status": "exact_ids", + "ids": "⿰火火", + "canonical_ids": "⿰火火", + "expanded_ids": "⿰火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炐", + "codepoint": "U+7090", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7090", + "status": "exact_ids", + "ids": "⿰火丰", + "canonical_ids": "⿰火丰", + "expanded_ids": "⿰火丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炑", + "codepoint": "U+7091", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7091", + "status": "exact_ids", + "ids": "⿰火木", + "canonical_ids": "⿰火木", + "expanded_ids": "⿰火木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炒", + "codepoint": "U+7092", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7092", + "status": "exact_ids", + "ids": "⿰火少", + "canonical_ids": "⿰火少", + "expanded_ids": "⿰火⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炓", + "codepoint": "U+7093", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7093", + "status": "exact_ids", + "ids": "⿰火斗", + "canonical_ids": "⿰火斗", + "expanded_ids": "⿰火斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斗", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炔", + "codepoint": "U+7094", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7094", + "status": "exact_ids", + "ids": "⿰火夬", + "canonical_ids": "⿰火夬", + "expanded_ids": "⿰火⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "大", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炕", + "codepoint": "U+7095", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7095", + "status": "exact_ids", + "ids": "⿰火亢", + "canonical_ids": "⿰火亢", + "expanded_ids": "⿰火⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炖", + "codepoint": "U+7096", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7096", + "status": "exact_ids", + "ids": "⿰火屯", + "canonical_ids": "⿰火屯", + "expanded_ids": "⿰火屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炗", + "codepoint": "U+7097", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7097", + "status": "exact_ids", + "ids": "⿱廿火", + "canonical_ids": "⿱廿火", + "expanded_ids": "⿱廿火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廿", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炘", + "codepoint": "U+7098", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7098", + "status": "exact_ids", + "ids": "⿰火斤", + "canonical_ids": "⿰火斤", + "expanded_ids": "⿰火斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炙", + "codepoint": "U+7099", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7099", + "status": "exact_ids", + "ids": "⿱月火", + "canonical_ids": "⿱月火", + "expanded_ids": "⿱月火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炚", + "codepoint": "U+709A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-709A", + "status": "exact_ids", + "ids": "⿰日火", + "canonical_ids": "⿰日火", + "expanded_ids": "⿰日火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炛", + "codepoint": "U+709B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-709B", + "status": "exact_ids", + "ids": "⿱火化", + "canonical_ids": "⿱火化", + "expanded_ids": "⿱火⿰亻匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炜", + "codepoint": "U+709C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-709C", + "status": "exact_ids", + "ids": "⿰火韦", + "canonical_ids": "⿰火韦", + "expanded_ids": "⿰火韦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "韦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炝", + "codepoint": "U+709D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-709D", + "status": "exact_ids", + "ids": "⿰火仓", + "canonical_ids": "⿰火仓", + "expanded_ids": "⿰火⿱人㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "人", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炞", + "codepoint": "U+709E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-709E", + "status": "exact_ids", + "ids": "⿰火卞", + "canonical_ids": "⿰火卞", + "expanded_ids": "⿰火⿱亠卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "卜", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炟", + "codepoint": "U+709F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-709F", + "status": "exact_ids", + "ids": "⿰火旦", + "canonical_ids": "⿰火旦", + "expanded_ids": "⿰火⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炠", + "codepoint": "U+70A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70A0", + "status": "exact_ids", + "ids": "⿰火甲", + "canonical_ids": "⿰火甲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "甲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炡", + "codepoint": "U+70A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70A1", + "status": "exact_ids", + "ids": "⿰火正", + "canonical_ids": "⿰火正", + "expanded_ids": "⿰火⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "止", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炢", + "codepoint": "U+70A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70A2", + "status": "exact_ids", + "ids": "⿰火术", + "canonical_ids": "⿰火术", + "expanded_ids": "⿰火⿻木丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炣", + "codepoint": "U+70A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70A3", + "status": "exact_ids", + "ids": "⿰火可", + "canonical_ids": "⿰火可", + "expanded_ids": "⿰火⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炤", + "codepoint": "U+70A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70A4", + "status": "exact_ids", + "ids": "⿰火召", + "canonical_ids": "⿰火召", + "expanded_ids": "⿰火⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炥", + "codepoint": "U+70A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70A5", + "status": "exact_ids", + "ids": "⿰火弗", + "canonical_ids": "⿰火弗", + "expanded_ids": "⿰火⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "弓", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炦", + "codepoint": "U+70A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70A6", + "status": "exact_ids", + "ids": "⿰火犮", + "canonical_ids": "⿰火犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炧", + "codepoint": "U+70A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70A7", + "status": "exact_ids", + "ids": "⿰火㐌", + "canonical_ids": "⿰火㐌", + "expanded_ids": "⿰火⿱⿻丿一⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丿", + "乜", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炨", + "codepoint": "U+70A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70A8", + "status": "exact_ids", + "ids": "⿰火它", + "canonical_ids": "⿰火它", + "expanded_ids": "⿰火⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炩", + "codepoint": "U+70A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70A9", + "status": "exact_ids", + "ids": "⿰火令", + "canonical_ids": "⿰火令", + "expanded_ids": "⿰火⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "火", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炪", + "codepoint": "U+70AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70AA", + "status": "exact_ids", + "ids": "⿰火出", + "canonical_ids": "⿰火出", + "expanded_ids": "⿰火⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炫", + "codepoint": "U+70AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70AB", + "status": "exact_ids", + "ids": "⿰火玄", + "canonical_ids": "⿰火玄", + "expanded_ids": "⿰火⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炬", + "codepoint": "U+70AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70AC", + "status": "exact_ids", + "ids": "⿰火巨", + "canonical_ids": "⿰火巨", + "expanded_ids": "⿰火巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炭", + "codepoint": "U+70AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70AD", + "status": "exact_ids", + "ids": "⿱山灰", + "canonical_ids": "⿱山灰", + "expanded_ids": "⿱山⿱厂火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "山", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炮", + "codepoint": "U+70AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70AE", + "status": "exact_ids", + "ids": "⿰火包", + "canonical_ids": "⿰火包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炯", + "codepoint": "U+70AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70AF", + "status": "exact_ids", + "ids": "⿰火冋", + "canonical_ids": "⿰火冋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炰", + "codepoint": "U+70B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70B0", + "status": "exact_ids", + "ids": "⿱包灬", + "canonical_ids": "⿱包灬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炱", + "codepoint": "U+70B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70B1", + "status": "exact_ids", + "ids": "⿱台火", + "canonical_ids": "⿱台火", + "expanded_ids": "⿱⿱厶口火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炲", + "codepoint": "U+70B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70B2", + "status": "exact_ids", + "ids": "⿰火台", + "canonical_ids": "⿰火台", + "expanded_ids": "⿰火⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炳", + "codepoint": "U+70B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70B3", + "status": "exact_ids", + "ids": "⿰火丙", + "canonical_ids": "⿰火丙", + "expanded_ids": "⿰火⿱一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炴", + "codepoint": "U+70B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70B4", + "status": "exact_ids", + "ids": "⿰火央", + "canonical_ids": "⿰火央", + "expanded_ids": "⿰火⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炵", + "codepoint": "U+70B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70B5", + "status": "exact_ids", + "ids": "⿰火冬", + "canonical_ids": "⿰火冬", + "expanded_ids": "⿰火⿱夂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "夂", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炶", + "codepoint": "U+70B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70B6", + "status": "exact_ids", + "ids": "⿰火占", + "canonical_ids": "⿰火占", + "expanded_ids": "⿰火⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炷", + "codepoint": "U+70B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70B7", + "status": "exact_ids", + "ids": "⿰火主", + "canonical_ids": "⿰火主", + "expanded_ids": "⿰火⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "火", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炸", + "codepoint": "U+70B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70B8", + "status": "exact_ids", + "ids": "⿰火乍", + "canonical_ids": "⿰火乍", + "expanded_ids": "⿰火乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "点", + "codepoint": "U+70B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70B9", + "status": "exact_ids", + "ids": "⿱占灬", + "canonical_ids": "⿱占灬", + "expanded_ids": "⿱⿱卜口灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "為", + "codepoint": "U+70BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70BA", + "status": "leaf_self_fallback", + "ids": "為", + "canonical_ids": "為", + "expanded_ids": "為", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "為" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炻", + "codepoint": "U+70BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70BB", + "status": "exact_ids", + "ids": "⿰火石", + "canonical_ids": "⿰火石", + "expanded_ids": "⿰火石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炼", + "codepoint": "U+70BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70BC", + "status": "exact_ids", + "ids": "⿰火𫠣", + "canonical_ids": "⿰火𫠣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "𫠣" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炽", + "codepoint": "U+70BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70BD", + "status": "exact_ids", + "ids": "⿰火只", + "canonical_ids": "⿰火只", + "expanded_ids": "⿰火⿱口八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炾", + "codepoint": "U+70BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70BE", + "status": "exact_ids", + "ids": "⿰火兄", + "canonical_ids": "⿰火兄", + "expanded_ids": "⿰火⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "炿", + "codepoint": "U+70BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70BF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烀", + "codepoint": "U+70C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70C0", + "status": "exact_ids", + "ids": "⿰火乎", + "canonical_ids": "⿰火乎", + "expanded_ids": "⿰火乎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乎", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烁", + "codepoint": "U+70C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70C1", + "status": "exact_ids", + "ids": "⿰火乐", + "canonical_ids": "⿰火乐", + "expanded_ids": "⿰火乐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乐", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烂", + "codepoint": "U+70C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70C2", + "status": "exact_ids", + "ids": "⿰火兰", + "canonical_ids": "⿰火兰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "火" + ], + "unresolved_leaves": [ + "三" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烃", + "codepoint": "U+70C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70C3", + "status": "exact_ids", + "ids": "⿰火𢀖", + "canonical_ids": "⿰火𢀖", + "expanded_ids": "⿰火⿱又工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "工", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烄", + "codepoint": "U+70C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70C4", + "status": "exact_ids", + "ids": "⿰火交", + "canonical_ids": "⿰火交", + "expanded_ids": "⿰火⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "火", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烅", + "codepoint": "U+70C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70C5", + "status": "exact_ids", + "ids": "⿰火血", + "canonical_ids": "⿰火血", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "血" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烆", + "codepoint": "U+70C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70C6", + "status": "exact_ids", + "ids": "⿰火行", + "canonical_ids": "⿰火行", + "expanded_ids": "⿰火⿰彳彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烇", + "codepoint": "U+70C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70C7", + "status": "exact_ids", + "ids": "⿰火全", + "canonical_ids": "⿰火全", + "expanded_ids": "⿰火⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "火", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烈", + "codepoint": "U+70C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70C8", + "status": "exact_ids", + "ids": "⿱列灬", + "canonical_ids": "⿱列灬", + "expanded_ids": "⿱⿰⿻夕一刂灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "夕", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烉", + "codepoint": "U+70C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70C9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烊", + "codepoint": "U+70CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70CA", + "status": "exact_ids", + "ids": "⿰火羊", + "canonical_ids": "⿰火羊", + "expanded_ids": "⿰火羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烋", + "codepoint": "U+70CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70CB", + "status": "exact_ids", + "ids": "⿱休灬", + "canonical_ids": "⿱休灬", + "expanded_ids": "⿱⿰亻木灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "木", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烌", + "codepoint": "U+70CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70CC", + "status": "exact_ids", + "ids": "⿰火休", + "canonical_ids": "⿰火休", + "expanded_ids": "⿰火⿰亻木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烍", + "codepoint": "U+70CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70CD", + "status": "exact_ids", + "ids": "⿰火先", + "canonical_ids": "⿰火先", + "expanded_ids": "⿰火⿱牛儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "火", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烎", + "codepoint": "U+70CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70CE", + "status": "exact_ids", + "ids": "⿱⿰干干火", + "canonical_ids": "⿱⿰干干火", + "expanded_ids": "⿱⿰⿱一十⿱一十火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烏", + "codepoint": "U+70CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70CF", + "status": "leaf_self_fallback", + "ids": "烏", + "canonical_ids": "烏", + "expanded_ids": "烏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "烏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烐", + "codepoint": "U+70D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70D0", + "status": "exact_ids", + "ids": "⿰火舟", + "canonical_ids": "⿰火舟", + "expanded_ids": "⿰火舟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烑", + "codepoint": "U+70D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70D1", + "status": "exact_ids", + "ids": "⿰火兆", + "canonical_ids": "⿰火兆", + "expanded_ids": "⿰火兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烒", + "codepoint": "U+70D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70D2", + "status": "exact_ids", + "ids": "⿰火式", + "canonical_ids": "⿰火式", + "expanded_ids": "⿰火⿱弋工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "弋", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烓", + "codepoint": "U+70D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70D3", + "status": "exact_ids", + "ids": "⿰火圭", + "canonical_ids": "⿰火圭", + "expanded_ids": "⿰火⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烔", + "codepoint": "U+70D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70D4", + "status": "exact_ids", + "ids": "⿰火同", + "canonical_ids": "⿰火同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烕", + "codepoint": "U+70D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70D5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烖", + "codepoint": "U+70D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70D6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烗", + "codepoint": "U+70D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70D7", + "status": "exact_ids", + "ids": "⿰火亥", + "canonical_ids": "⿰火亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烘", + "codepoint": "U+70D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70D8", + "status": "exact_ids", + "ids": "⿰火共", + "canonical_ids": "⿰火共", + "expanded_ids": "⿰火⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烙", + "codepoint": "U+70D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70D9", + "status": "exact_ids", + "ids": "⿰火各", + "canonical_ids": "⿰火各", + "expanded_ids": "⿰火⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烚", + "codepoint": "U+70DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70DA", + "status": "exact_ids", + "ids": "⿰火合", + "canonical_ids": "⿰火合", + "expanded_ids": "⿰火⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烛", + "codepoint": "U+70DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70DB", + "status": "exact_ids", + "ids": "⿰火虫", + "canonical_ids": "⿰火虫", + "expanded_ids": "⿰火虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烜", + "codepoint": "U+70DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70DC", + "status": "exact_ids", + "ids": "⿰火亘", + "canonical_ids": "⿰火亘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烝", + "codepoint": "U+70DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70DD", + "status": "exact_ids", + "ids": "⿱丞灬", + "canonical_ids": "⿱丞灬", + "expanded_ids": "⿱⿱⿱乛水一灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乛", + "水", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烞", + "codepoint": "U+70DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70DE", + "status": "exact_ids", + "ids": "⿰火朴", + "canonical_ids": "⿰火朴", + "expanded_ids": "⿰火⿰木卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烟", + "codepoint": "U+70DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70DF", + "status": "exact_ids", + "ids": "⿰火因", + "canonical_ids": "⿰火因", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烠", + "codepoint": "U+70E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70E0", + "status": "exact_ids", + "ids": "⿰火有", + "canonical_ids": "⿰火有", + "expanded_ids": "⿰火⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "月", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烡", + "codepoint": "U+70E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70E1", + "status": "exact_ids", + "ids": "⿱火共", + "canonical_ids": "⿱火共", + "expanded_ids": "⿱火⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烢", + "codepoint": "U+70E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70E2", + "status": "exact_ids", + "ids": "⿰火宅", + "canonical_ids": "⿰火宅", + "expanded_ids": "⿰火⿱宀⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "宀", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烣", + "codepoint": "U+70E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70E3", + "status": "exact_ids", + "ids": "⿰火灰", + "canonical_ids": "⿰火灰", + "expanded_ids": "⿰火⿱厂火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烤", + "codepoint": "U+70E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70E4", + "status": "exact_ids", + "ids": "⿰火考", + "canonical_ids": "⿰火考", + "expanded_ids": "⿰火⿱⿻土丿丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "丿", + "土", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烥", + "codepoint": "U+70E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70E5", + "status": "exact_ids", + "ids": "⿰火臣", + "canonical_ids": "⿰火臣", + "expanded_ids": "⿰火臣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烦", + "codepoint": "U+70E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70E6", + "status": "exact_ids", + "ids": "⿰火页", + "canonical_ids": "⿰火页", + "expanded_ids": "⿰火⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烧", + "codepoint": "U+70E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70E7", + "status": "exact_ids", + "ids": "⿰火尧", + "canonical_ids": "⿰火尧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "尧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烨", + "codepoint": "U+70E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70E8", + "status": "exact_ids", + "ids": "⿰火华", + "canonical_ids": "⿰火华", + "expanded_ids": "⿰火⿱⿰亻匕十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "十", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烩", + "codepoint": "U+70E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70E9", + "status": "exact_ids", + "ids": "⿰火会", + "canonical_ids": "⿰火会", + "expanded_ids": "⿰火⿱⿱人一⿱一厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "厶", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烪", + "codepoint": "U+70EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70EA", + "status": "exact_ids", + "ids": "⿰火关", + "canonical_ids": "⿰火关", + "expanded_ids": "⿰火⿱丷⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烫", + "codepoint": "U+70EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70EB", + "status": "exact_ids", + "ids": "⿱汤火", + "canonical_ids": "⿱汤火", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "火" + ], + "unresolved_leaves": [ + "𠃓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烬", + "codepoint": "U+70EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70EC", + "status": "exact_ids", + "ids": "⿰火尽", + "canonical_ids": "⿰火尽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "尸", + "火" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "热", + "codepoint": "U+70ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70ED", + "status": "exact_ids", + "ids": "⿱执灬", + "canonical_ids": "⿱执灬", + "expanded_ids": "⿱⿰扌⿻九丶灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "扌", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烮", + "codepoint": "U+70EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70EE", + "status": "exact_ids", + "ids": "⿱列火", + "canonical_ids": "⿱列火", + "expanded_ids": "⿱⿰⿻夕一刂火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "夕", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烯", + "codepoint": "U+70EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70EF", + "status": "exact_ids", + "ids": "⿰火希", + "canonical_ids": "⿰火希", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "火" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烰", + "codepoint": "U+70F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70F0", + "status": "exact_ids", + "ids": "⿰火孚", + "canonical_ids": "⿰火孚", + "expanded_ids": "⿰火⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "火", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烱", + "codepoint": "U+70F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70F1", + "status": "exact_ids", + "ids": "⿰火冏", + "canonical_ids": "⿰火冏", + "expanded_ids": "⿰火⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烲", + "codepoint": "U+70F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70F2", + "status": "exact_ids", + "ids": "⿱折火", + "canonical_ids": "⿱折火", + "expanded_ids": "⿱⿰扌斤火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "斤", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烳", + "codepoint": "U+70F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70F3", + "status": "exact_ids", + "ids": "⿰火甫", + "canonical_ids": "⿰火甫", + "expanded_ids": "⿰火甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烴", + "codepoint": "U+70F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70F4", + "status": "exact_ids", + "ids": "⿰火巠", + "canonical_ids": "⿰火巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烵", + "codepoint": "U+70F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70F5", + "status": "exact_ids", + "ids": "⿰火芍", + "canonical_ids": "⿰火芍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "艹" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烶", + "codepoint": "U+70F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70F6", + "status": "exact_ids", + "ids": "⿰火廷", + "canonical_ids": "⿰火廷", + "expanded_ids": "⿰火⿰廴⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "廴", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烷", + "codepoint": "U+70F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70F7", + "status": "exact_ids", + "ids": "⿰火完", + "canonical_ids": "⿰火完", + "expanded_ids": "⿰火⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "宀", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烸", + "codepoint": "U+70F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70F8", + "status": "exact_ids", + "ids": "⿰火每", + "canonical_ids": "⿰火每", + "expanded_ids": "⿰火⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "母", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烹", + "codepoint": "U+70F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70F9", + "status": "exact_ids", + "ids": "⿱亨灬", + "canonical_ids": "⿱亨灬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬" + ], + "unresolved_leaves": [ + "亨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烺", + "codepoint": "U+70FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70FA", + "status": "exact_ids", + "ids": "⿰火良", + "canonical_ids": "⿰火良", + "expanded_ids": "⿰火⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "火", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烻", + "codepoint": "U+70FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70FB", + "status": "exact_ids", + "ids": "⿰火延", + "canonical_ids": "⿰火延", + "expanded_ids": "⿰火⿰廴⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廴", + "止", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烼", + "codepoint": "U+70FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70FC", + "status": "exact_ids", + "ids": "⿰火豕", + "canonical_ids": "⿰火豕", + "expanded_ids": "⿰火豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烽", + "codepoint": "U+70FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70FD", + "status": "exact_ids", + "ids": "⿰火夆", + "canonical_ids": "⿰火夆", + "expanded_ids": "⿰火⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烾", + "codepoint": "U+70FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70FE", + "status": "exact_ids", + "ids": "⿱炎土", + "canonical_ids": "⿱炎土", + "expanded_ids": "⿱⿱火火土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "烿", + "codepoint": "U+70FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-70FF", + "status": "exact_ids", + "ids": "⿰火彤", + "canonical_ids": "⿰火彤", + "expanded_ids": "⿰火⿰丹彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丹", + "彡", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焀", + "codepoint": "U+7100", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7100", + "status": "exact_ids", + "ids": "⿰火谷", + "canonical_ids": "⿰火谷", + "expanded_ids": "⿰火⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焁", + "codepoint": "U+7101", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7101", + "status": "exact_ids", + "ids": "⿱吹火", + "canonical_ids": "⿱吹火", + "expanded_ids": "⿱⿰口欠火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "欠", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焂", + "codepoint": "U+7102", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7102", + "status": "exact_ids", + "ids": "⿱攸火", + "canonical_ids": "⿱攸火", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "攸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焃", + "codepoint": "U+7103", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7103", + "status": "exact_ids", + "ids": "⿰火赤", + "canonical_ids": "⿰火赤", + "expanded_ids": "⿰火赤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "赤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焄", + "codepoint": "U+7104", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7104", + "status": "exact_ids", + "ids": "⿱君灬", + "canonical_ids": "⿱君灬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "灬" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焅", + "codepoint": "U+7105", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7105", + "status": "exact_ids", + "ids": "⿰火告", + "canonical_ids": "⿰火告", + "expanded_ids": "⿰火⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "火", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焆", + "codepoint": "U+7106", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7106", + "status": "exact_ids", + "ids": "⿰火肙", + "canonical_ids": "⿰火肙", + "expanded_ids": "⿰火⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焇", + "codepoint": "U+7107", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7107", + "status": "exact_ids", + "ids": "⿰火肖", + "canonical_ids": "⿰火肖", + "expanded_ids": "⿰火⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焈", + "codepoint": "U+7108", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7108", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焉", + "codepoint": "U+7109", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7109", + "status": "exact_ids", + "ids": "⿱正𤆛", + "canonical_ids": "⿱正𤆛", + "expanded_ids": "⿱⿱一止⿱⿱卜乙灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乙", + "卜", + "止", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焊", + "codepoint": "U+710A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-710A", + "status": "exact_ids", + "ids": "⿰火旱", + "canonical_ids": "⿰火旱", + "expanded_ids": "⿰火⿱日⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "日", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焋", + "codepoint": "U+710B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-710B", + "status": "exact_ids", + "ids": "⿱壯火", + "canonical_ids": "⿱壯火", + "expanded_ids": "⿱⿰爿土火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "火", + "爿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焌", + "codepoint": "U+710C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-710C", + "status": "exact_ids", + "ids": "⿰火夋", + "canonical_ids": "⿰火夋", + "expanded_ids": "⿰火⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焍", + "codepoint": "U+710D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-710D", + "status": "exact_ids", + "ids": "⿰火弟", + "canonical_ids": "⿰火弟", + "expanded_ids": "⿰火⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焎", + "codepoint": "U+710E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-710E", + "status": "exact_ids", + "ids": "⿱折灬", + "canonical_ids": "⿱折灬", + "expanded_ids": "⿱⿰扌斤灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "斤", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焏", + "codepoint": "U+710F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-710F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焐", + "codepoint": "U+7110", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7110", + "status": "exact_ids", + "ids": "⿰火吾", + "canonical_ids": "⿰火吾", + "expanded_ids": "⿰火⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焑", + "codepoint": "U+7111", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7111", + "status": "exact_ids", + "ids": "⿰火困", + "canonical_ids": "⿰火困", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "困" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焒", + "codepoint": "U+7112", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7112", + "status": "exact_ids", + "ids": "⿰火吕", + "canonical_ids": "⿰火吕", + "expanded_ids": "⿰火⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焓", + "codepoint": "U+7113", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7113", + "status": "exact_ids", + "ids": "⿰火含", + "canonical_ids": "⿰火含", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "火" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焔", + "codepoint": "U+7114", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7114", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焕", + "codepoint": "U+7115", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7115", + "status": "exact_ids", + "ids": "⿰火奂", + "canonical_ids": "⿰火奂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "火" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焖", + "codepoint": "U+7116", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7116", + "status": "exact_ids", + "ids": "⿰火闷", + "canonical_ids": "⿰火闷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "闷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焗", + "codepoint": "U+7117", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7117", + "status": "exact_ids", + "ids": "⿰火局", + "canonical_ids": "⿰火局", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "局" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焘", + "codepoint": "U+7118", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7118", + "status": "exact_ids", + "ids": "⿱寿灬", + "canonical_ids": "⿱寿灬", + "expanded_ids": "⿱⿻丰寸灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "寸", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焙", + "codepoint": "U+7119", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7119", + "status": "exact_ids", + "ids": "⿰火咅", + "canonical_ids": "⿰火咅", + "expanded_ids": "⿰火⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "火", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焚", + "codepoint": "U+711A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-711A", + "status": "exact_ids", + "ids": "⿱⿰木木火", + "canonical_ids": "⿱⿰木木火", + "expanded_ids": "⿱⿰木木火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焛", + "codepoint": "U+711B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-711B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焜", + "codepoint": "U+711C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-711C", + "status": "exact_ids", + "ids": "⿰火昆", + "canonical_ids": "⿰火昆", + "expanded_ids": "⿰火⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焝", + "codepoint": "U+711D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-711D", + "status": "exact_ids", + "ids": "⿰火昏", + "canonical_ids": "⿰火昏", + "expanded_ids": "⿰火⿱氏日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "氏", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焞", + "codepoint": "U+711E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-711E", + "status": "exact_ids", + "ids": "⿰火享", + "canonical_ids": "⿰火享", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焟", + "codepoint": "U+711F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-711F", + "status": "exact_ids", + "ids": "⿰火昔", + "canonical_ids": "⿰火昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "火" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焠", + "codepoint": "U+7120", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7120", + "status": "exact_ids", + "ids": "⿰火卒", + "canonical_ids": "⿰火卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "無", + "codepoint": "U+7121", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7121", + "status": "leaf_self_fallback", + "ids": "無", + "canonical_ids": "無", + "expanded_ids": "無", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "無" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焢", + "codepoint": "U+7122", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7122", + "status": "exact_ids", + "ids": "⿰火空", + "canonical_ids": "⿰火空", + "expanded_ids": "⿰火⿱⿱宀八工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "工", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焣", + "codepoint": "U+7123", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7123", + "status": "exact_ids", + "ids": "⿱取灬", + "canonical_ids": "⿱取灬", + "expanded_ids": "⿱⿰耳又灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "灬", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焤", + "codepoint": "U+7124", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7124", + "status": "exact_ids", + "ids": "⿱府火", + "canonical_ids": "⿱府火", + "expanded_ids": "⿱⿱广⿰亻寸火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "广", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焥", + "codepoint": "U+7125", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7125", + "status": "exact_ids", + "ids": "⿰火宛", + "canonical_ids": "⿰火宛", + "expanded_ids": "⿰火⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焦", + "codepoint": "U+7126", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7126", + "status": "exact_ids", + "ids": "⿱隹灬", + "canonical_ids": "⿱隹灬", + "expanded_ids": "⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焧", + "codepoint": "U+7127", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7127", + "status": "exact_ids", + "ids": "⿰火忩", + "canonical_ids": "⿰火忩", + "expanded_ids": "⿰火⿱⿱八厶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "心", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焨", + "codepoint": "U+7128", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7128", + "status": "exact_ids", + "ids": "⿰火冐", + "canonical_ids": "⿰火冐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "火" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焩", + "codepoint": "U+7129", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7129", + "status": "exact_ids", + "ids": "⿰火朋", + "canonical_ids": "⿰火朋", + "expanded_ids": "⿰火⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焪", + "codepoint": "U+712A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-712A", + "status": "exact_ids", + "ids": "⿰火穹", + "canonical_ids": "⿰火穹", + "expanded_ids": "⿰火⿱⿱宀八弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "弓", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焫", + "codepoint": "U+712B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-712B", + "status": "exact_ids", + "ids": "⿰火芮", + "canonical_ids": "⿰火芮", + "expanded_ids": "⿰火⿱艹⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "火", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焬", + "codepoint": "U+712C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-712C", + "status": "exact_ids", + "ids": "⿰火易", + "canonical_ids": "⿰火易", + "expanded_ids": "⿰火⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "日", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焭", + "codepoint": "U+712D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-712D", + "status": "exact_ids", + "ids": "⿳炏冖几", + "canonical_ids": "⿳炏冖几", + "expanded_ids": "⿳⿰火火冖几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "几", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焮", + "codepoint": "U+712E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-712E", + "status": "exact_ids", + "ids": "⿰火欣", + "canonical_ids": "⿰火欣", + "expanded_ids": "⿰火⿰斤欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "欠", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焯", + "codepoint": "U+712F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-712F", + "status": "exact_ids", + "ids": "⿰火卓", + "canonical_ids": "⿰火卓", + "expanded_ids": "⿰火⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "日", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焰", + "codepoint": "U+7130", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7130", + "status": "exact_ids", + "ids": "⿰火臽", + "canonical_ids": "⿰火臽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "臼" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焱", + "codepoint": "U+7131", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7131", + "status": "exact_ids", + "ids": "⿱火⿰火火", + "canonical_ids": "⿱火⿰火火", + "expanded_ids": "⿱火⿰火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焲", + "codepoint": "U+7132", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7132", + "status": "exact_ids", + "ids": "⿰火夜", + "canonical_ids": "⿰火夜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "夜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焳", + "codepoint": "U+7133", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7133", + "status": "exact_ids", + "ids": "⿰火隹", + "canonical_ids": "⿰火隹", + "expanded_ids": "⿰火隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焴", + "codepoint": "U+7134", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7134", + "status": "exact_ids", + "ids": "⿰火育", + "canonical_ids": "⿰火育", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "育" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焵", + "codepoint": "U+7135", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7135", + "status": "exact_ids", + "ids": "⿰火岡", + "canonical_ids": "⿰火岡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "岡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "然", + "codepoint": "U+7136", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7136", + "status": "exact_ids", + "ids": "⿱肰灬", + "canonical_ids": "⿱肰灬", + "expanded_ids": "⿱⿰月⿻大丶灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "月", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焷", + "codepoint": "U+7137", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7137", + "status": "exact_ids", + "ids": "⿰火卑", + "canonical_ids": "⿰火卑", + "expanded_ids": "⿰火卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焸", + "codepoint": "U+7138", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7138", + "status": "exact_ids", + "ids": "⿱⿰日日火", + "canonical_ids": "⿱⿰日日火", + "expanded_ids": "⿱⿰日日火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焹", + "codepoint": "U+7139", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7139", + "status": "exact_ids", + "ids": "⿰火罔", + "canonical_ids": "⿰火罔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "罔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焺", + "codepoint": "U+713A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-713A", + "status": "exact_ids", + "ids": "⿰火昇", + "canonical_ids": "⿰火昇", + "expanded_ids": "⿰火⿱日升", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "升", + "日", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焻", + "codepoint": "U+713B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-713B", + "status": "exact_ids", + "ids": "⿰火昌", + "canonical_ids": "⿰火昌", + "expanded_ids": "⿰火⿱日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焼", + "codepoint": "U+713C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-713C", + "status": "exact_ids", + "ids": "⿰火尭", + "canonical_ids": "⿰火尭", + "expanded_ids": "⿰火⿱⿱十廾⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "十", + "廾", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焽", + "codepoint": "U+713D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-713D", + "status": "exact_ids", + "ids": "⿱明火", + "canonical_ids": "⿱明火", + "expanded_ids": "⿱⿰日月火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "月", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焾", + "codepoint": "U+713E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-713E", + "status": "exact_ids", + "ids": "⿰火念", + "canonical_ids": "⿰火念", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "心", + "火" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "焿", + "codepoint": "U+713F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-713F", + "status": "exact_ids", + "ids": "⿰火庚", + "canonical_ids": "⿰火庚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "庚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煀", + "codepoint": "U+7140", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7140", + "status": "exact_ids", + "ids": "⿰火屈", + "canonical_ids": "⿰火屈", + "expanded_ids": "⿰火⿱尸⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "尸", + "屮", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煁", + "codepoint": "U+7141", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7141", + "status": "exact_ids", + "ids": "⿰火甚", + "canonical_ids": "⿰火甚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "甘" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煂", + "codepoint": "U+7142", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7142", + "status": "exact_ids", + "ids": "⿰火革", + "canonical_ids": "⿰火革", + "expanded_ids": "⿰火革", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煃", + "codepoint": "U+7143", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7143", + "status": "exact_ids", + "ids": "⿰火奎", + "canonical_ids": "⿰火奎", + "expanded_ids": "⿰火⿱大⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "大", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煄", + "codepoint": "U+7144", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7144", + "status": "exact_ids", + "ids": "⿰火重", + "canonical_ids": "⿰火重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "火" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煅", + "codepoint": "U+7145", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7145", + "status": "exact_ids", + "ids": "⿰火段", + "canonical_ids": "⿰火段", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "段" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煆", + "codepoint": "U+7146", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7146", + "status": "exact_ids", + "ids": "⿰火叚", + "canonical_ids": "⿰火叚", + "expanded_ids": "⿰火叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煇", + "codepoint": "U+7147", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7147", + "status": "exact_ids", + "ids": "⿰火軍", + "canonical_ids": "⿰火軍", + "expanded_ids": "⿰火⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "火", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煈", + "codepoint": "U+7148", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7148", + "status": "exact_ids", + "ids": "⿰火風", + "canonical_ids": "⿰火風", + "expanded_ids": "⿰火風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煉", + "codepoint": "U+7149", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7149", + "status": "exact_ids", + "ids": "⿰火東", + "canonical_ids": "⿰火東", + "expanded_ids": "⿰火⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煊", + "codepoint": "U+714A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-714A", + "status": "exact_ids", + "ids": "⿰火宣", + "canonical_ids": "⿰火宣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "火" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煋", + "codepoint": "U+714B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-714B", + "status": "exact_ids", + "ids": "⿰火星", + "canonical_ids": "⿰火星", + "expanded_ids": "⿰火⿱日⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "火", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煌", + "codepoint": "U+714C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-714C", + "status": "exact_ids", + "ids": "⿰火皇", + "canonical_ids": "⿰火皇", + "expanded_ids": "⿰火⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "火", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煍", + "codepoint": "U+714D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-714D", + "status": "exact_ids", + "ids": "⿰火秋", + "canonical_ids": "⿰火秋", + "expanded_ids": "⿰火⿰⿻丿木火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煎", + "codepoint": "U+714E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-714E", + "status": "exact_ids", + "ids": "⿱前灬", + "canonical_ids": "⿱前灬", + "expanded_ids": "⿱⿱止⿰月刂灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "月", + "止", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煏", + "codepoint": "U+714F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-714F", + "status": "exact_ids", + "ids": "⿰火畐", + "canonical_ids": "⿰火畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煐", + "codepoint": "U+7150", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7150", + "status": "exact_ids", + "ids": "⿰火英", + "canonical_ids": "⿰火英", + "expanded_ids": "⿰火⿱艹⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "火", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煑", + "codepoint": "U+7151", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7151", + "status": "exact_ids", + "ids": "⿱者火", + "canonical_ids": "⿱者火", + "expanded_ids": "⿱⿱⿻土丿日火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煒", + "codepoint": "U+7152", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7152", + "status": "exact_ids", + "ids": "⿰火韋", + "canonical_ids": "⿰火韋", + "expanded_ids": "⿰火韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煓", + "codepoint": "U+7153", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7153", + "status": "exact_ids", + "ids": "⿰火耑", + "canonical_ids": "⿰火耑", + "expanded_ids": "⿰火⿱山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "火", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煔", + "codepoint": "U+7154", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7154", + "status": "exact_ids", + "ids": "⿰炎占", + "canonical_ids": "⿰炎占", + "expanded_ids": "⿰⿱火火⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煕", + "codepoint": "U+7155", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7155", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煖", + "codepoint": "U+7156", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7156", + "status": "exact_ids", + "ids": "⿰火爰", + "canonical_ids": "⿰火爰", + "expanded_ids": "⿰火⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "火", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煗", + "codepoint": "U+7157", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7157", + "status": "exact_ids", + "ids": "⿰火耎", + "canonical_ids": "⿰火耎", + "expanded_ids": "⿰火⿱而大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "火", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煘", + "codepoint": "U+7158", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7158", + "status": "exact_ids", + "ids": "⿰火咸", + "canonical_ids": "⿰火咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煙", + "codepoint": "U+7159", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7159", + "status": "exact_ids", + "ids": "⿰火垔", + "canonical_ids": "⿰火垔", + "expanded_ids": "⿰火⿱覀土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "火", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煚", + "codepoint": "U+715A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-715A", + "status": "exact_ids", + "ids": "⿱昛火", + "canonical_ids": "⿱昛火", + "expanded_ids": "⿱⿰日巨火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "日", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煛", + "codepoint": "U+715B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-715B", + "status": "exact_ids", + "ids": "⿱⿰目目火", + "canonical_ids": "⿱⿰目目火", + "expanded_ids": "⿱⿰目目火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煜", + "codepoint": "U+715C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-715C", + "status": "exact_ids", + "ids": "⿰火昱", + "canonical_ids": "⿰火昱", + "expanded_ids": "⿰火⿱日立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "火", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煝", + "codepoint": "U+715D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-715D", + "status": "exact_ids", + "ids": "⿰火眉", + "canonical_ids": "⿰火眉", + "expanded_ids": "⿰火⿱⿻尸丨目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "尸", + "火", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煞", + "codepoint": "U+715E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-715E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煟", + "codepoint": "U+715F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-715F", + "status": "exact_ids", + "ids": "⿰火胃", + "canonical_ids": "⿰火胃", + "expanded_ids": "⿰火⿱田月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "火", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煠", + "codepoint": "U+7160", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7160", + "status": "exact_ids", + "ids": "⿰火枼", + "canonical_ids": "⿰火枼", + "expanded_ids": "⿰火⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煡", + "codepoint": "U+7161", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7161", + "status": "exact_ids", + "ids": "⿰火建", + "canonical_ids": "⿰火建", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廴", + "火" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煢", + "codepoint": "U+7162", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7162", + "status": "exact_ids", + "ids": "⿳炏冖卂", + "canonical_ids": "⿳炏冖卂", + "expanded_ids": "⿳⿰火火冖⿱乁十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乁", + "冖", + "十", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煣", + "codepoint": "U+7163", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7163", + "status": "exact_ids", + "ids": "⿰火柔", + "canonical_ids": "⿰火柔", + "expanded_ids": "⿰火⿱矛木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "火", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煤", + "codepoint": "U+7164", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7164", + "status": "exact_ids", + "ids": "⿰火某", + "canonical_ids": "⿰火某", + "expanded_ids": "⿰火⿱甘木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "火", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煥", + "codepoint": "U+7165", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7165", + "status": "exact_ids", + "ids": "⿰火奐", + "canonical_ids": "⿰火奐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "奐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煦", + "codepoint": "U+7166", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7166", + "status": "exact_ids", + "ids": "⿱昫灬", + "canonical_ids": "⿱昫灬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "灬" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "照", + "codepoint": "U+7167", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7167", + "status": "exact_ids", + "ids": "⿱昭灬", + "canonical_ids": "⿱昭灬", + "expanded_ids": "⿱⿰日⿱刀口灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "日", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煨", + "codepoint": "U+7168", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7168", + "status": "exact_ids", + "ids": "⿰火畏", + "canonical_ids": "⿰火畏", + "expanded_ids": "⿰火⿱田氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氏", + "火", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煩", + "codepoint": "U+7169", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7169", + "status": "exact_ids", + "ids": "⿰火頁", + "canonical_ids": "⿰火頁", + "expanded_ids": "⿰火⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "火", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煪", + "codepoint": "U+716A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-716A", + "status": "exact_ids", + "ids": "⿰火酋", + "canonical_ids": "⿰火酋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "火" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煫", + "codepoint": "U+716B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-716B", + "status": "exact_ids", + "ids": "⿰火㒸", + "canonical_ids": "⿰火㒸", + "expanded_ids": "⿰火⿱八豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "火", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煬", + "codepoint": "U+716C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-716C", + "status": "exact_ids", + "ids": "⿰火昜", + "canonical_ids": "⿰火昜", + "expanded_ids": "⿰火⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煭", + "codepoint": "U+716D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-716D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煮", + "codepoint": "U+716E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-716E", + "status": "exact_ids", + "ids": "⿱者灬", + "canonical_ids": "⿱者灬", + "expanded_ids": "⿱⿱⿻土丿日灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煯", + "codepoint": "U+716F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-716F", + "status": "exact_ids", + "ids": "⿰火皆", + "canonical_ids": "⿰火皆", + "expanded_ids": "⿰火⿱⿰匕匕⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "日", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煰", + "codepoint": "U+7170", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7170", + "status": "exact_ids", + "ids": "⿰火品", + "canonical_ids": "⿰火品", + "expanded_ids": "⿰火⿱口⿰口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煱", + "codepoint": "U+7171", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7171", + "status": "exact_ids", + "ids": "⿰火咼", + "canonical_ids": "⿰火咼", + "expanded_ids": "⿰火⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煲", + "codepoint": "U+7172", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7172", + "status": "exact_ids", + "ids": "⿱保火", + "canonical_ids": "⿱保火", + "expanded_ids": "⿱⿰亻⿱口木火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煳", + "codepoint": "U+7173", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7173", + "status": "exact_ids", + "ids": "⿰火胡", + "canonical_ids": "⿰火胡", + "expanded_ids": "⿰火⿰⿻十口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "月", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煴", + "codepoint": "U+7174", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7174", + "status": "exact_ids", + "ids": "⿰火昷", + "canonical_ids": "⿰火昷", + "expanded_ids": "⿰火⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "火", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煵", + "codepoint": "U+7175", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7175", + "status": "exact_ids", + "ids": "⿰火南", + "canonical_ids": "⿰火南", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "南" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煶", + "codepoint": "U+7176", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7176", + "status": "exact_ids", + "ids": "⿰火是", + "canonical_ids": "⿰火是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "火" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煷", + "codepoint": "U+7177", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7177", + "status": "exact_ids", + "ids": "⿰火亮", + "canonical_ids": "⿰火亮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "亮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煸", + "codepoint": "U+7178", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7178", + "status": "exact_ids", + "ids": "⿰火扁", + "canonical_ids": "⿰火扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "火" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煹", + "codepoint": "U+7179", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7179", + "status": "exact_ids", + "ids": "⿰火冓", + "canonical_ids": "⿰火冓", + "expanded_ids": "⿰火⿱井⿱一⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "井", + "冂", + "土", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煺", + "codepoint": "U+717A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-717A", + "status": "exact_ids", + "ids": "⿰火退", + "canonical_ids": "⿰火退", + "expanded_ids": "⿰火⿰辶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "艮", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煻", + "codepoint": "U+717B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-717B", + "status": "exact_ids", + "ids": "⿰火唐", + "canonical_ids": "⿰火唐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煼", + "codepoint": "U+717C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-717C", + "status": "exact_ids", + "ids": "⿰火芻", + "canonical_ids": "⿰火芻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "芻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煽", + "codepoint": "U+717D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-717D", + "status": "exact_ids", + "ids": "⿰火扇", + "canonical_ids": "⿰火扇", + "expanded_ids": "⿰火⿱⿻一尸⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "尸", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煾", + "codepoint": "U+717E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-717E", + "status": "exact_ids", + "ids": "⿰火恩", + "canonical_ids": "⿰火恩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "火" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "煿", + "codepoint": "U+717F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-717F", + "status": "exact_ids", + "ids": "⿰火尃", + "canonical_ids": "⿰火尃", + "expanded_ids": "⿰火⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "火", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熀", + "codepoint": "U+7180", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7180", + "status": "exact_ids", + "ids": "⿰火晃", + "canonical_ids": "⿰火晃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "日", + "火" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熁", + "codepoint": "U+7181", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7181", + "status": "exact_ids", + "ids": "⿰火脅", + "canonical_ids": "⿰火脅", + "expanded_ids": "⿰火⿱⿱力⿰力力月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "月", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熂", + "codepoint": "U+7182", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7182", + "status": "exact_ids", + "ids": "⿰火氣", + "canonical_ids": "⿰火氣", + "expanded_ids": "⿰火⿱气⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "气", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熃", + "codepoint": "U+7183", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7183", + "status": "exact_ids", + "ids": "⿱務火", + "canonical_ids": "⿱務火", + "expanded_ids": "⿱⿰矛⿱夂力火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "夂", + "火", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熄", + "codepoint": "U+7184", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7184", + "status": "exact_ids", + "ids": "⿰火息", + "canonical_ids": "⿰火息", + "expanded_ids": "⿰火⿱⿻目丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "心", + "火", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熅", + "codepoint": "U+7185", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7185", + "status": "exact_ids", + "ids": "⿰火𥁕", + "canonical_ids": "⿰火𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "皿" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熆", + "codepoint": "U+7186", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7186", + "status": "exact_ids", + "ids": "⿰火盍", + "canonical_ids": "⿰火盍", + "expanded_ids": "⿰火⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "火", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熇", + "codepoint": "U+7187", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7187", + "status": "exact_ids", + "ids": "⿰火高", + "canonical_ids": "⿰火高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熈", + "codepoint": "U+7188", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7188", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熉", + "codepoint": "U+7189", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7189", + "status": "exact_ids", + "ids": "⿰火員", + "canonical_ids": "⿰火員", + "expanded_ids": "⿰火⿱口⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "火", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熊", + "codepoint": "U+718A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-718A", + "status": "exact_ids", + "ids": "⿱能灬", + "canonical_ids": "⿱能灬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬" + ], + "unresolved_leaves": [ + "能" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熋", + "codepoint": "U+718B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-718B", + "status": "exact_ids", + "ids": "⿱能火", + "canonical_ids": "⿱能火", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "能" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熌", + "codepoint": "U+718C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-718C", + "status": "exact_ids", + "ids": "⿰火閃", + "canonical_ids": "⿰火閃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "閃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熍", + "codepoint": "U+718D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-718D", + "status": "exact_ids", + "ids": "⿰火宫", + "canonical_ids": "⿰火宫", + "expanded_ids": "⿰火⿱宀⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "宀", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熎", + "codepoint": "U+718E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-718E", + "status": "exact_ids", + "ids": "⿰火䍃", + "canonical_ids": "⿰火䍃", + "expanded_ids": "⿰火⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "爪", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熏", + "codepoint": "U+718F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-718F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熐", + "codepoint": "U+7190", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7190", + "status": "exact_ids", + "ids": "⿰火冥", + "canonical_ids": "⿰火冥", + "expanded_ids": "⿰火⿱冖⿱日⿱亠八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "日", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熑", + "codepoint": "U+7191", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7191", + "status": "exact_ids", + "ids": "⿰火兼", + "canonical_ids": "⿰火兼", + "expanded_ids": "⿰火兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熒", + "codepoint": "U+7192", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7192", + "status": "exact_ids", + "ids": "⿳炏冖火", + "canonical_ids": "⿳炏冖火", + "expanded_ids": "⿳⿰火火冖火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熓", + "codepoint": "U+7193", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7193", + "status": "exact_ids", + "ids": "⿰火烏", + "canonical_ids": "⿰火烏", + "expanded_ids": "⿰火烏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "烏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熔", + "codepoint": "U+7194", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7194", + "status": "exact_ids", + "ids": "⿰火容", + "canonical_ids": "⿰火容", + "expanded_ids": "⿰火⿱宀⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熕", + "codepoint": "U+7195", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7195", + "status": "exact_ids", + "ids": "⿰火貢", + "canonical_ids": "⿰火貢", + "expanded_ids": "⿰火⿱工⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "工", + "火", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熖", + "codepoint": "U+7196", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7196", + "status": "exact_ids", + "ids": "⿰火舀", + "canonical_ids": "⿰火舀", + "expanded_ids": "⿰火⿱爫臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "爫", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熗", + "codepoint": "U+7197", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7197", + "status": "exact_ids", + "ids": "⿰火倉", + "canonical_ids": "⿰火倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熘", + "codepoint": "U+7198", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7198", + "status": "exact_ids", + "ids": "⿰火留", + "canonical_ids": "⿰火留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熙", + "codepoint": "U+7199", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7199", + "status": "exact_ids", + "ids": "⿱巸灬", + "canonical_ids": "⿱巸灬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巳", + "灬" + ], + "unresolved_leaves": [ + "𦣞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熚", + "codepoint": "U+719A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-719A", + "status": "exact_ids", + "ids": "⿰火畢", + "canonical_ids": "⿰火畢", + "expanded_ids": "⿰火畢", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "畢" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熛", + "codepoint": "U+719B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-719B", + "status": "exact_ids", + "ids": "⿰火票", + "canonical_ids": "⿰火票", + "expanded_ids": "⿰火⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "火", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熜", + "codepoint": "U+719C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-719C", + "status": "exact_ids", + "ids": "⿰火悤", + "canonical_ids": "⿰火悤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "火" + ], + "unresolved_leaves": [ + "囱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熝", + "codepoint": "U+719D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-719D", + "status": "exact_ids", + "ids": "⿰火鹿", + "canonical_ids": "⿰火鹿", + "expanded_ids": "⿰火鹿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熞", + "codepoint": "U+719E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-719E", + "status": "exact_ids", + "ids": "⿰火堅", + "canonical_ids": "⿰火堅", + "expanded_ids": "⿰火⿱⿰臣又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "土", + "火", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熟", + "codepoint": "U+719F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-719F", + "status": "exact_ids", + "ids": "⿱孰灬", + "canonical_ids": "⿱孰灬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "灬" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熠", + "codepoint": "U+71A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71A0", + "status": "exact_ids", + "ids": "⿰火習", + "canonical_ids": "⿰火習", + "expanded_ids": "⿰火⿱⿰习习⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "习", + "日", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熡", + "codepoint": "U+71A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71A1", + "status": "exact_ids", + "ids": "⿰火婁", + "canonical_ids": "⿰火婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熢", + "codepoint": "U+71A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71A2", + "status": "exact_ids", + "ids": "⿰火逢", + "canonical_ids": "⿰火逢", + "expanded_ids": "⿰火⿰辶⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "火", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熣", + "codepoint": "U+71A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71A3", + "status": "exact_ids", + "ids": "⿰火崔", + "canonical_ids": "⿰火崔", + "expanded_ids": "⿰火⿱山隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "火", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熤", + "codepoint": "U+71A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71A4", + "status": "exact_ids", + "ids": "⿰火翌", + "canonical_ids": "⿰火翌", + "expanded_ids": "⿰火⿱⿰习习立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "火", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熥", + "codepoint": "U+71A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71A5", + "status": "exact_ids", + "ids": "⿰火通", + "canonical_ids": "⿰火通", + "expanded_ids": "⿰火⿰辶⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "火", + "辶", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熦", + "codepoint": "U+71A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71A6", + "status": "exact_ids", + "ids": "⿰火雀", + "canonical_ids": "⿰火雀", + "expanded_ids": "⿰火⿱小隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "火", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熧", + "codepoint": "U+71A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71A7", + "status": "exact_ids", + "ids": "⿱從火", + "canonical_ids": "⿱從火", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "從" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熨", + "codepoint": "U+71A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71A8", + "status": "exact_ids", + "ids": "⿱尉火", + "canonical_ids": "⿱尉火", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "尉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熩", + "codepoint": "U+71A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71A9", + "status": "exact_ids", + "ids": "⿰火扈", + "canonical_ids": "⿰火扈", + "expanded_ids": "⿰火⿱⿻一尸⿱口巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "尸", + "巴", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熪", + "codepoint": "U+71AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71AA", + "status": "exact_ids", + "ids": "⿰火移", + "canonical_ids": "⿰火移", + "expanded_ids": "⿰火⿰⿻丿木⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "夕", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熫", + "codepoint": "U+71AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71AB", + "status": "exact_ids", + "ids": "⿰火庶", + "canonical_ids": "⿰火庶", + "expanded_ids": "⿰火⿱广⿱廿火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "廿", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熬", + "codepoint": "U+71AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71AC", + "status": "exact_ids", + "ids": "⿱敖灬", + "canonical_ids": "⿱敖灬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熭", + "codepoint": "U+71AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71AD", + "status": "exact_ids", + "ids": "⿱彗火", + "canonical_ids": "⿱彗火", + "expanded_ids": "⿱⿱⿰丰丰彐火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "彐", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熮", + "codepoint": "U+71AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71AE", + "status": "exact_ids", + "ids": "⿰火翏", + "canonical_ids": "⿰火翏", + "expanded_ids": "⿰火⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熯", + "codepoint": "U+71AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71AF", + "status": "exact_ids", + "ids": "⿰火𦰩", + "canonical_ids": "⿰火𦰩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "𦰩" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熰", + "codepoint": "U+71B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71B0", + "status": "exact_ids", + "ids": "⿰火區", + "canonical_ids": "⿰火區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熱", + "codepoint": "U+71B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71B1", + "status": "exact_ids", + "ids": "⿱埶灬", + "canonical_ids": "⿱埶灬", + "expanded_ids": "⿱⿰⿱⿱土儿土⿻九丶灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "儿", + "土", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熲", + "codepoint": "U+71B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71B2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熳", + "codepoint": "U+71B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71B3", + "status": "exact_ids", + "ids": "⿰火曼", + "canonical_ids": "⿰火曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熴", + "codepoint": "U+71B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71B4", + "status": "exact_ids", + "ids": "⿰火崑", + "canonical_ids": "⿰火崑", + "expanded_ids": "⿰火⿱山⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "山", + "日", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熵", + "codepoint": "U+71B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71B5", + "status": "exact_ids", + "ids": "⿰火商", + "canonical_ids": "⿰火商", + "expanded_ids": "⿰火⿱⿱亠八⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冂", + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熶", + "codepoint": "U+71B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71B6", + "status": "exact_ids", + "ids": "⿰火最", + "canonical_ids": "⿰火最", + "expanded_ids": "⿰火⿱曰⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "曰", + "火", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熷", + "codepoint": "U+71B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71B7", + "status": "exact_ids", + "ids": "⿰火曾", + "canonical_ids": "⿰火曾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熸", + "codepoint": "U+71B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71B8", + "status": "exact_ids", + "ids": "⿰火朁", + "canonical_ids": "⿰火朁", + "expanded_ids": "⿰火⿱⿰旡旡曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "旡", + "曰", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熹", + "codepoint": "U+71B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71B9", + "status": "exact_ids", + "ids": "⿱喜灬", + "canonical_ids": "⿱喜灬", + "expanded_ids": "⿱⿱⿱十豆口灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "灬", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熺", + "codepoint": "U+71BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71BA", + "status": "exact_ids", + "ids": "⿰火喜", + "canonical_ids": "⿰火喜", + "expanded_ids": "⿰火⿱⿱十豆口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "火", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熻", + "codepoint": "U+71BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71BB", + "status": "exact_ids", + "ids": "⿰火翕", + "canonical_ids": "⿰火翕", + "expanded_ids": "⿰火⿱⿱⿱人一口⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "人", + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熼", + "codepoint": "U+71BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71BC", + "status": "exact_ids", + "ids": "⿰火異", + "canonical_ids": "⿰火異", + "expanded_ids": "⿰火⿱田⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "火", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熽", + "codepoint": "U+71BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71BD", + "status": "exact_ids", + "ids": "⿰火肅", + "canonical_ids": "⿰火肅", + "expanded_ids": "⿰火⿻肀𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "肀", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熾", + "codepoint": "U+71BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71BE", + "status": "exact_ids", + "ids": "⿰火戠", + "canonical_ids": "⿰火戠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "火", + "立" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "熿", + "codepoint": "U+71BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71BF", + "status": "exact_ids", + "ids": "⿰火黄", + "canonical_ids": "⿰火黄", + "expanded_ids": "⿰火黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燀", + "codepoint": "U+71C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71C0", + "status": "exact_ids", + "ids": "⿰火單", + "canonical_ids": "⿰火單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燁", + "codepoint": "U+71C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71C1", + "status": "exact_ids", + "ids": "⿰火華", + "canonical_ids": "⿰火華", + "expanded_ids": "⿰火⿱艹𠦒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "艹", + "𠦒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燂", + "codepoint": "U+71C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71C2", + "status": "exact_ids", + "ids": "⿰火覃", + "canonical_ids": "⿰火覃", + "expanded_ids": "⿰火⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "火", + "襾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燃", + "codepoint": "U+71C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71C3", + "status": "exact_ids", + "ids": "⿰火然", + "canonical_ids": "⿰火然", + "expanded_ids": "⿰火⿱⿰月⿻大丶灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "月", + "火", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燄", + "codepoint": "U+71C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71C4", + "status": "exact_ids", + "ids": "⿰臽炎", + "canonical_ids": "⿰臽炎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "臼" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燅", + "codepoint": "U+71C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71C5", + "status": "exact_ids", + "ids": "⿰坴炎", + "canonical_ids": "⿰坴炎", + "expanded_ids": "⿰⿱⿱土儿土⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燆", + "codepoint": "U+71C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71C6", + "status": "exact_ids", + "ids": "⿰火喬", + "canonical_ids": "⿰火喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "火" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燇", + "codepoint": "U+71C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71C7", + "status": "exact_ids", + "ids": "⿰火尊", + "canonical_ids": "⿰火尊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "寸", + "火" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燈", + "codepoint": "U+71C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71C8", + "status": "exact_ids", + "ids": "⿰火登", + "canonical_ids": "⿰火登", + "expanded_ids": "⿰火⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "癶", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燉", + "codepoint": "U+71C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71C9", + "status": "exact_ids", + "ids": "⿰火敦", + "canonical_ids": "⿰火敦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "火" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燊", + "codepoint": "U+71CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71CA", + "status": "exact_ids", + "ids": "⿱焱木", + "canonical_ids": "⿱焱木", + "expanded_ids": "⿱⿱火⿰火火木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燋", + "codepoint": "U+71CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71CB", + "status": "exact_ids", + "ids": "⿰火焦", + "canonical_ids": "⿰火焦", + "expanded_ids": "⿰火⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "灬", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燌", + "codepoint": "U+71CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71CC", + "status": "exact_ids", + "ids": "⿰火賁", + "canonical_ids": "⿰火賁", + "expanded_ids": "⿰火⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "廾", + "火", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燍", + "codepoint": "U+71CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71CD", + "status": "exact_ids", + "ids": "⿰火斯", + "canonical_ids": "⿰火斯", + "expanded_ids": "⿰火⿰其斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "斤", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燎", + "codepoint": "U+71CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71CE", + "status": "exact_ids", + "ids": "⿰火尞", + "canonical_ids": "⿰火尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "火" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燏", + "codepoint": "U+71CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71CF", + "status": "exact_ids", + "ids": "⿰火矞", + "canonical_ids": "⿰火矞", + "expanded_ids": "⿰火⿱矛⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "火", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燐", + "codepoint": "U+71D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71D0", + "status": "exact_ids", + "ids": "⿰火粦", + "canonical_ids": "⿰火粦", + "expanded_ids": "⿰火⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燑", + "codepoint": "U+71D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71D1", + "status": "exact_ids", + "ids": "⿰火童", + "canonical_ids": "⿰火童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燒", + "codepoint": "U+71D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71D2", + "status": "exact_ids", + "ids": "⿰火堯", + "canonical_ids": "⿰火堯", + "expanded_ids": "⿰火⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燓", + "codepoint": "U+71D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71D3", + "status": "exact_ids", + "ids": "⿱棥火", + "canonical_ids": "⿱棥火", + "expanded_ids": "⿱⿲木⿱乂乂木火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燔", + "codepoint": "U+71D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71D4", + "status": "exact_ids", + "ids": "⿰火番", + "canonical_ids": "⿰火番", + "expanded_ids": "⿰火⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "木", + "火", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燕", + "codepoint": "U+71D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71D5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燖", + "codepoint": "U+71D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71D6", + "status": "exact_ids", + "ids": "⿰火尋", + "canonical_ids": "⿰火尋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "尋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燗", + "codepoint": "U+71D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71D7", + "status": "exact_ids", + "ids": "⿰火閒", + "canonical_ids": "⿰火閒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "閒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燘", + "codepoint": "U+71D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71D8", + "status": "exact_ids", + "ids": "⿰火閔", + "canonical_ids": "⿰火閔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "閔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燙", + "codepoint": "U+71D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71D9", + "status": "exact_ids", + "ids": "⿱湯火", + "canonical_ids": "⿱湯火", + "expanded_ids": "⿱⿰氵⿱⿱日一勿火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "氵", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燚", + "codepoint": "U+71DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71DA", + "status": "exact_ids", + "ids": "⿱⿰火火⿰火火", + "canonical_ids": "⿱⿰火火⿰火火", + "expanded_ids": "⿱⿰火火⿰火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燛", + "codepoint": "U+71DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71DB", + "status": "exact_ids", + "ids": "⿱臦火", + "canonical_ids": "⿱臦火", + "expanded_ids": "⿱⿰臣臣火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燜", + "codepoint": "U+71DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71DC", + "status": "exact_ids", + "ids": "⿰火悶", + "canonical_ids": "⿰火悶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "悶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燝", + "codepoint": "U+71DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71DD", + "status": "exact_ids", + "ids": "⿰火景", + "canonical_ids": "⿰火景", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "火" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燞", + "codepoint": "U+71DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71DE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "營", + "codepoint": "U+71DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71DF", + "status": "exact_ids", + "ids": "⿳炏冖呂", + "canonical_ids": "⿳炏冖呂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "火" + ], + "unresolved_leaves": [ + "呂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燠", + "codepoint": "U+71E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71E0", + "status": "exact_ids", + "ids": "⿰火奧", + "canonical_ids": "⿰火奧", + "expanded_ids": "⿰火⿱⿱宀⿱丿⿻木丷大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "大", + "宀", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燡", + "codepoint": "U+71E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71E1", + "status": "exact_ids", + "ids": "⿰火睪", + "canonical_ids": "⿰火睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "火", + "罒" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燢", + "codepoint": "U+71E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71E2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燣", + "codepoint": "U+71E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71E3", + "status": "exact_ids", + "ids": "⿰火稟", + "canonical_ids": "⿰火稟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亠", + "木", + "火" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燤", + "codepoint": "U+71E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71E4", + "status": "exact_ids", + "ids": "⿰火萬", + "canonical_ids": "⿰火萬", + "expanded_ids": "⿰火⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "田", + "禸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燥", + "codepoint": "U+71E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71E5", + "status": "exact_ids", + "ids": "⿰火喿", + "canonical_ids": "⿰火喿", + "expanded_ids": "⿰火⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燦", + "codepoint": "U+71E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71E6", + "status": "exact_ids", + "ids": "⿰火粲", + "canonical_ids": "⿰火粲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "火" + ], + "unresolved_leaves": [ + "𣦼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燧", + "codepoint": "U+71E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71E7", + "status": "exact_ids", + "ids": "⿰火遂", + "canonical_ids": "⿰火遂", + "expanded_ids": "⿰火⿰辶⿱八豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "火", + "豕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燨", + "codepoint": "U+71E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71E8", + "status": "exact_ids", + "ids": "⿰火義", + "canonical_ids": "⿰火義", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "義" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燩", + "codepoint": "U+71E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71E9", + "status": "exact_ids", + "ids": "⿰火敫", + "canonical_ids": "⿰火敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燪", + "codepoint": "U+71EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71EA", + "status": "exact_ids", + "ids": "⿰火葱", + "canonical_ids": "⿰火葱", + "expanded_ids": "⿰火⿱艹⿱⿻勿丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "勿", + "心", + "火", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燫", + "codepoint": "U+71EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71EB", + "status": "exact_ids", + "ids": "⿰火廉", + "canonical_ids": "⿰火廉", + "expanded_ids": "⿰火⿱广兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "广", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燬", + "codepoint": "U+71EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71EC", + "status": "exact_ids", + "ids": "⿰火毀", + "canonical_ids": "⿰火毀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "毀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燭", + "codepoint": "U+71ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71ED", + "status": "exact_ids", + "ids": "⿰火蜀", + "canonical_ids": "⿰火蜀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "罒" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燮", + "codepoint": "U+71EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71EE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燯", + "codepoint": "U+71EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71EF", + "status": "exact_ids", + "ids": "⿰火零", + "canonical_ids": "⿰火零", + "expanded_ids": "⿰火⿱雨⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "火", + "雨", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燰", + "codepoint": "U+71F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71F0", + "status": "exact_ids", + "ids": "⿰火愛", + "canonical_ids": "⿰火愛", + "expanded_ids": "⿰火⿳爫冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "夊", + "心", + "火", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燱", + "codepoint": "U+71F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71F1", + "status": "exact_ids", + "ids": "⿰火意", + "canonical_ids": "⿰火意", + "expanded_ids": "⿰火⿱⿱立日心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "日", + "火", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燲", + "codepoint": "U+71F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71F2", + "status": "exact_ids", + "ids": "⿰火䝱", + "canonical_ids": "⿰火䝱", + "expanded_ids": "⿰火⿱⿱力⿰力力⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "力", + "火", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燳", + "codepoint": "U+71F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71F3", + "status": "exact_ids", + "ids": "⿰火照", + "canonical_ids": "⿰火照", + "expanded_ids": "⿰火⿱⿰日⿱刀口灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "日", + "火", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燴", + "codepoint": "U+71F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71F4", + "status": "exact_ids", + "ids": "⿰火會", + "canonical_ids": "⿰火會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "火" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燵", + "codepoint": "U+71F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71F5", + "status": "exact_ids", + "ids": "⿰火達", + "canonical_ids": "⿰火達", + "expanded_ids": "⿰火⿰辶⿱土羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "火", + "羊", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燶", + "codepoint": "U+71F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71F6", + "status": "exact_ids", + "ids": "⿰火農", + "canonical_ids": "⿰火農", + "expanded_ids": "⿰火⿱曲辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "火", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燷", + "codepoint": "U+71F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71F7", + "status": "exact_ids", + "ids": "⿰火禀", + "canonical_ids": "⿰火禀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "禀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燸", + "codepoint": "U+71F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71F8", + "status": "exact_ids", + "ids": "⿰火需", + "canonical_ids": "⿰火需", + "expanded_ids": "⿰火⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燹", + "codepoint": "U+71F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71F9", + "status": "exact_ids", + "ids": "⿱⿰豕豕火", + "canonical_ids": "⿱⿰豕豕火", + "expanded_ids": "⿱⿰豕豕火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燺", + "codepoint": "U+71FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71FA", + "status": "exact_ids", + "ids": "⿰火槀", + "canonical_ids": "⿰火槀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "火" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燻", + "codepoint": "U+71FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71FB", + "status": "exact_ids", + "ids": "⿰火熏", + "canonical_ids": "⿰火熏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "熏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燼", + "codepoint": "U+71FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71FC", + "status": "exact_ids", + "ids": "⿰火盡", + "canonical_ids": "⿰火盡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "盡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燽", + "codepoint": "U+71FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71FD", + "status": "exact_ids", + "ids": "⿰火壽", + "canonical_ids": "⿰火壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燾", + "codepoint": "U+71FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71FE", + "status": "exact_ids", + "ids": "⿱壽灬", + "canonical_ids": "⿱壽灬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "燿", + "codepoint": "U+71FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-71FF", + "status": "exact_ids", + "ids": "⿰火翟", + "canonical_ids": "⿰火翟", + "expanded_ids": "⿰火⿱⿰习习隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "火", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爀", + "codepoint": "U+7200", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7200", + "status": "exact_ids", + "ids": "⿰火赫", + "canonical_ids": "⿰火赫", + "expanded_ids": "⿰火⿰赤赤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "赤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爁", + "codepoint": "U+7201", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7201", + "status": "exact_ids", + "ids": "⿰火監", + "canonical_ids": "⿰火監", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爂", + "codepoint": "U+7202", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7202", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爃", + "codepoint": "U+7203", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7203", + "status": "exact_ids", + "ids": "⿰火榮", + "canonical_ids": "⿰火榮", + "expanded_ids": "⿰火⿳⿰火火冖木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爄", + "codepoint": "U+7204", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7204", + "status": "exact_ids", + "ids": "⿰火厲", + "canonical_ids": "⿰火厲", + "expanded_ids": "⿰火⿱厂⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "火", + "田", + "禸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爅", + "codepoint": "U+7205", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7205", + "status": "exact_ids", + "ids": "⿰火墨", + "canonical_ids": "⿰火墨", + "expanded_ids": "⿰火⿱黑土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "火", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爆", + "codepoint": "U+7206", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7206", + "status": "exact_ids", + "ids": "⿰火暴", + "canonical_ids": "⿰火暴", + "expanded_ids": "⿰火⿱日⿱⿱廿廾氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "日", + "氺", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爇", + "codepoint": "U+7207", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7207", + "status": "exact_ids", + "ids": "⿱艹熱", + "canonical_ids": "⿱艹熱", + "expanded_ids": "⿱艹⿱⿰⿱⿱土儿土⿻九丶灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "儿", + "土", + "灬", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爈", + "codepoint": "U+7208", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7208", + "status": "exact_ids", + "ids": "⿰火慮", + "canonical_ids": "⿰火慮", + "expanded_ids": "⿰火⿱虍⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "火", + "田", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爉", + "codepoint": "U+7209", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7209", + "status": "exact_ids", + "ids": "⿰火巤", + "canonical_ids": "⿰火巤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "巤" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爊", + "codepoint": "U+720A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-720A", + "status": "exact_ids", + "ids": "⿰火麃", + "canonical_ids": "⿰火麃", + "expanded_ids": "⿰火⿱鹿灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "灬", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爋", + "codepoint": "U+720B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-720B", + "status": "exact_ids", + "ids": "⿰火勲", + "canonical_ids": "⿰火勲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "力", + "十", + "火", + "灬" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爌", + "codepoint": "U+720C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-720C", + "status": "exact_ids", + "ids": "⿰火廣", + "canonical_ids": "⿰火廣", + "expanded_ids": "⿰火⿱广黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "火", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爍", + "codepoint": "U+720D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-720D", + "status": "exact_ids", + "ids": "⿰火樂", + "canonical_ids": "⿰火樂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "樂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爎", + "codepoint": "U+720E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-720E", + "status": "exact_ids", + "ids": "⿰火寮", + "canonical_ids": "⿰火寮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "小", + "火" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爏", + "codepoint": "U+720F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-720F", + "status": "exact_ids", + "ids": "⿰火歷", + "canonical_ids": "⿰火歷", + "expanded_ids": "⿰火⿱⿱厂⿰⿻丿木⿻丿木止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厂", + "木", + "止", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爐", + "codepoint": "U+7210", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7210", + "status": "exact_ids", + "ids": "⿰火盧", + "canonical_ids": "⿰火盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "皿" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爑", + "codepoint": "U+7211", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7211", + "status": "exact_ids", + "ids": "⿰火蕉", + "canonical_ids": "⿰火蕉", + "expanded_ids": "⿰火⿱艹⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "灬", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爒", + "codepoint": "U+7212", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7212", + "status": "exact_ids", + "ids": "⿰炙尞", + "canonical_ids": "⿰炙尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "火" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爓", + "codepoint": "U+7213", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7213", + "status": "exact_ids", + "ids": "⿰火閻", + "canonical_ids": "⿰火閻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "閻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爔", + "codepoint": "U+7214", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7214", + "status": "exact_ids", + "ids": "⿰火羲", + "canonical_ids": "⿰火羲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "羲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爕", + "codepoint": "U+7215", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7215", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爖", + "codepoint": "U+7216", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7216", + "status": "exact_ids", + "ids": "⿰火龍", + "canonical_ids": "⿰火龍", + "expanded_ids": "⿰火龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爗", + "codepoint": "U+7217", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7217", + "status": "exact_ids", + "ids": "⿰火曅", + "canonical_ids": "⿰火曅", + "expanded_ids": "⿰火⿱日⿱艹𠦒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "火", + "艹", + "𠦒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 154, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爘", + "codepoint": "U+7218", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7218", + "status": "exact_ids", + "ids": "⿰火餐", + "canonical_ids": "⿰火餐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "火", + "艮" + ], + "unresolved_leaves": [ + "𣦼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爙", + "codepoint": "U+7219", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7219", + "status": "exact_ids", + "ids": "⿰火襄", + "canonical_ids": "⿰火襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爚", + "codepoint": "U+721A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-721A", + "status": "exact_ids", + "ids": "⿰火龠", + "canonical_ids": "⿰火龠", + "expanded_ids": "⿰火龠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "龠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爛", + "codepoint": "U+721B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-721B", + "status": "exact_ids", + "ids": "⿰火闌", + "canonical_ids": "⿰火闌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爜", + "codepoint": "U+721C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-721C", + "status": "exact_ids", + "ids": "⿰火叢", + "canonical_ids": "⿰火叢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "叢" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爝", + "codepoint": "U+721D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-721D", + "status": "exact_ids", + "ids": "⿰火爵", + "canonical_ids": "⿰火爵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "爵" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爞", + "codepoint": "U+721E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-721E", + "status": "exact_ids", + "ids": "⿰火蟲", + "canonical_ids": "⿰火蟲", + "expanded_ids": "⿰火⿱虫⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爟", + "codepoint": "U+721F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-721F", + "status": "exact_ids", + "ids": "⿰火雚", + "canonical_ids": "⿰火雚", + "expanded_ids": "⿰火⿱艹⿱⿰口口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "火", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爠", + "codepoint": "U+7220", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7220", + "status": "exact_ids", + "ids": "⿰火瞿", + "canonical_ids": "⿰火瞿", + "expanded_ids": "⿰火⿱⿰目目隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爡", + "codepoint": "U+7221", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7221", + "status": "exact_ids", + "ids": "⿰火蠆", + "canonical_ids": "⿰火蠆", + "expanded_ids": "⿰火⿱⿱艹⿻田禸虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "田", + "禸", + "艹", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爢", + "codepoint": "U+7222", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7222", + "status": "exact_ids", + "ids": "⿱靡灬", + "canonical_ids": "⿱靡灬", + "expanded_ids": "⿱⿱⿱广⿰木木非灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "木", + "灬", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爣", + "codepoint": "U+7223", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7223", + "status": "exact_ids", + "ids": "⿰火黨", + "canonical_ids": "⿰火黨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "火", + "黑" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爤", + "codepoint": "U+7224", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7224", + "status": "exact_ids", + "ids": "⿰火蘭", + "canonical_ids": "⿰火蘭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "艹" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爥", + "codepoint": "U+7225", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7225", + "status": "exact_ids", + "ids": "⿰火屬", + "canonical_ids": "⿰火屬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "屬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爦", + "codepoint": "U+7226", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7226", + "status": "exact_ids", + "ids": "⿰火覽", + "canonical_ids": "⿰火覽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "覽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爧", + "codepoint": "U+7227", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7227", + "status": "exact_ids", + "ids": "⿰火靈", + "canonical_ids": "⿰火靈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "工", + "火", + "雨" + ], + "unresolved_leaves": [ + "𠱠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爨", + "codepoint": "U+7228", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7228", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爩", + "codepoint": "U+7229", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7229", + "status": "exact_ids", + "ids": "⿰火鬱", + "canonical_ids": "⿰火鬱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "鬱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爪", + "codepoint": "U+722A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-722A", + "status": "leaf_self_fallback", + "ids": "爪", + "canonical_ids": "爪", + "expanded_ids": "爪", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爪" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爫", + "codepoint": "U+722B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-722B", + "status": "leaf_self_fallback", + "ids": "爫", + "canonical_ids": "爫", + "expanded_ids": "爫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爬", + "codepoint": "U+722C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-722C", + "status": "exact_ids", + "ids": "⿰爪巴", + "canonical_ids": "⿰爪巴", + "expanded_ids": "⿰爪巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "爪" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爭", + "codepoint": "U+722D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-722D", + "status": "exact_ids", + "ids": "⿱爫肀", + "canonical_ids": "⿱爫肀", + "expanded_ids": "⿱爫肀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爫", + "肀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爮", + "codepoint": "U+722E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-722E", + "status": "exact_ids", + "ids": "⿰爪包", + "canonical_ids": "⿰爪包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爪" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爯", + "codepoint": "U+722F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-722F", + "status": "exact_ids", + "ids": "⿱爫冉", + "canonical_ids": "⿱爫冉", + "expanded_ids": "⿱爫⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "土", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爰", + "codepoint": "U+7230", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7230", + "status": "exact_ids", + "ids": "⿱爫叐", + "canonical_ids": "⿱爫叐", + "expanded_ids": "⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爱", + "codepoint": "U+7231", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7231", + "status": "exact_ids", + "ids": "⿳爫冖友", + "canonical_ids": "⿳爫冖友", + "expanded_ids": "⿳爫冖⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "冖", + "又", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爲", + "codepoint": "U+7232", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7232", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爳", + "codepoint": "U+7233", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7233", + "status": "exact_ids", + "ids": "⿱爲了", + "canonical_ids": "⿱爲了", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "了" + ], + "unresolved_leaves": [ + "爲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爴", + "codepoint": "U+7234", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7234", + "status": "exact_ids", + "ids": "⿰國爪", + "canonical_ids": "⿰國爪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爪" + ], + "unresolved_leaves": [ + "國" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爵", + "codepoint": "U+7235", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7235", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "父", + "codepoint": "U+7236", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7236", + "status": "leaf_self_fallback", + "ids": "父", + "canonical_ids": "父", + "expanded_ids": "父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爷", + "codepoint": "U+7237", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7237", + "status": "exact_ids", + "ids": "⿱父卩", + "canonical_ids": "⿱父卩", + "expanded_ids": "⿱父卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爸", + "codepoint": "U+7238", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7238", + "status": "exact_ids", + "ids": "⿱父巴", + "canonical_ids": "⿱父巴", + "expanded_ids": "⿱父巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爹", + "codepoint": "U+7239", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7239", + "status": "exact_ids", + "ids": "⿱父多", + "canonical_ids": "⿱父多", + "expanded_ids": "⿱父⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爺", + "codepoint": "U+723A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-723A", + "status": "exact_ids", + "ids": "⿱父耶", + "canonical_ids": "⿱父耶", + "expanded_ids": "⿱父⿰耳阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "父", + "耳", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爻", + "codepoint": "U+723B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-723B", + "status": "exact_ids", + "ids": "⿱乂乂", + "canonical_ids": "⿱乂乂", + "expanded_ids": "⿱乂乂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爼", + "codepoint": "U+723C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-723C", + "status": "exact_ids", + "ids": "⿰爻且", + "canonical_ids": "⿰爻且", + "expanded_ids": "⿰⿱乂乂且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "乂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爽", + "codepoint": "U+723D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-723D", + "status": "exact_ids", + "ids": "⿻大㸚", + "canonical_ids": "⿻大㸚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大" + ], + "unresolved_leaves": [ + "㸚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爾", + "codepoint": "U+723E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-723E", + "status": "leaf_self_fallback", + "ids": "爾", + "canonical_ids": "爾", + "expanded_ids": "爾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "爿", + "codepoint": "U+723F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-723F", + "status": "leaf_self_fallback", + "ids": "爿", + "canonical_ids": "爿", + "expanded_ids": "爿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牀", + "codepoint": "U+7240", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7240", + "status": "exact_ids", + "ids": "⿰爿木", + "canonical_ids": "⿰爿木", + "expanded_ids": "⿰爿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "爿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牁", + "codepoint": "U+7241", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7241", + "status": "exact_ids", + "ids": "⿰爿可", + "canonical_ids": "⿰爿可", + "expanded_ids": "⿰爿⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "爿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牂", + "codepoint": "U+7242", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7242", + "status": "exact_ids", + "ids": "⿰爿羊", + "canonical_ids": "⿰爿羊", + "expanded_ids": "⿰爿羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爿", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牃", + "codepoint": "U+7243", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7243", + "status": "exact_ids", + "ids": "⿰爿枼", + "canonical_ids": "⿰爿枼", + "expanded_ids": "⿰爿⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木", + "爿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牄", + "codepoint": "U+7244", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7244", + "status": "exact_ids", + "ids": "⿰爿倉", + "canonical_ids": "⿰爿倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爿" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牅", + "codepoint": "U+7245", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7245", + "status": "exact_ids", + "ids": "⿰爿庸", + "canonical_ids": "⿰爿庸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爿" + ], + "unresolved_leaves": [ + "庸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牆", + "codepoint": "U+7246", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7246", + "status": "exact_ids", + "ids": "⿰爿嗇", + "canonical_ids": "⿰爿嗇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "爿" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "片", + "codepoint": "U+7247", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7247", + "status": "leaf_self_fallback", + "ids": "片", + "canonical_ids": "片", + "expanded_ids": "片", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "片" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "版", + "codepoint": "U+7248", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7248", + "status": "exact_ids", + "ids": "⿰片反", + "canonical_ids": "⿰片反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "片" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牉", + "codepoint": "U+7249", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7249", + "status": "exact_ids", + "ids": "⿰片半", + "canonical_ids": "⿰片半", + "expanded_ids": "⿰片半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半", + "片" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牊", + "codepoint": "U+724A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-724A", + "status": "exact_ids", + "ids": "⿰片召", + "canonical_ids": "⿰片召", + "expanded_ids": "⿰片⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "片" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牋", + "codepoint": "U+724B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-724B", + "status": "exact_ids", + "ids": "⿰片戔", + "canonical_ids": "⿰片戔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "片" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牌", + "codepoint": "U+724C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-724C", + "status": "exact_ids", + "ids": "⿰片卑", + "canonical_ids": "⿰片卑", + "expanded_ids": "⿰片卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "片" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牍", + "codepoint": "U+724D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-724D", + "status": "exact_ids", + "ids": "⿰片卖", + "canonical_ids": "⿰片卖", + "expanded_ids": "⿰片⿱十⿱乛⿻大冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "冫", + "十", + "大", + "片" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牎", + "codepoint": "U+724E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-724E", + "status": "exact_ids", + "ids": "⿰片怱", + "canonical_ids": "⿰片怱", + "expanded_ids": "⿰片⿱⿻勿丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "勿", + "心", + "片" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牏", + "codepoint": "U+724F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-724F", + "status": "exact_ids", + "ids": "⿰片俞", + "canonical_ids": "⿰片俞", + "expanded_ids": "⿰片⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "月", + "片" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牐", + "codepoint": "U+7250", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7250", + "status": "exact_ids", + "ids": "⿰片臿", + "canonical_ids": "⿰片臿", + "expanded_ids": "⿰片⿱⿱丿十臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "片", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牑", + "codepoint": "U+7251", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7251", + "status": "exact_ids", + "ids": "⿰片扁", + "canonical_ids": "⿰片扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "片" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牒", + "codepoint": "U+7252", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7252", + "status": "exact_ids", + "ids": "⿰片枼", + "canonical_ids": "⿰片枼", + "expanded_ids": "⿰片⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木", + "片" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牓", + "codepoint": "U+7253", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7253", + "status": "exact_ids", + "ids": "⿰片旁", + "canonical_ids": "⿰片旁", + "expanded_ids": "⿰片⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "方", + "片" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牔", + "codepoint": "U+7254", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7254", + "status": "exact_ids", + "ids": "⿰片尃", + "canonical_ids": "⿰片尃", + "expanded_ids": "⿰片⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "片", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牕", + "codepoint": "U+7255", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7255", + "status": "exact_ids", + "ids": "⿰片悤", + "canonical_ids": "⿰片悤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "片" + ], + "unresolved_leaves": [ + "囱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牖", + "codepoint": "U+7256", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7256", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牗", + "codepoint": "U+7257", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7257", + "status": "exact_ids", + "ids": "⿰片庸", + "canonical_ids": "⿰片庸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "片" + ], + "unresolved_leaves": [ + "庸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牘", + "codepoint": "U+7258", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7258", + "status": "exact_ids", + "ids": "⿰片賣", + "canonical_ids": "⿰片賣", + "expanded_ids": "⿰片⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "士", + "片", + "目", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牙", + "codepoint": "U+7259", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7259", + "status": "leaf_self_fallback", + "ids": "牙", + "canonical_ids": "牙", + "expanded_ids": "牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牚", + "codepoint": "U+725A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-725A", + "status": "exact_ids", + "ids": "⿱尚牙", + "canonical_ids": "⿱尚牙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "牙" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牛", + "codepoint": "U+725B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-725B", + "status": "leaf_self_fallback", + "ids": "牛", + "canonical_ids": "牛", + "expanded_ids": "牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牜", + "codepoint": "U+725C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-725C", + "status": "leaf_self_fallback", + "ids": "牜", + "canonical_ids": "牜", + "expanded_ids": "牜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牝", + "codepoint": "U+725D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-725D", + "status": "exact_ids", + "ids": "⿰牜匕", + "canonical_ids": "⿰牜匕", + "expanded_ids": "⿰牜匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牞", + "codepoint": "U+725E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-725E", + "status": "exact_ids", + "ids": "⿰牜力", + "canonical_ids": "⿰牜力", + "expanded_ids": "⿰牜力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牟", + "codepoint": "U+725F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-725F", + "status": "exact_ids", + "ids": "⿱厶牛", + "canonical_ids": "⿱厶牛", + "expanded_ids": "⿱厶牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牠", + "codepoint": "U+7260", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7260", + "status": "exact_ids", + "ids": "⿰牜也", + "canonical_ids": "⿰牜也", + "expanded_ids": "⿰牜⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牡", + "codepoint": "U+7261", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7261", + "status": "exact_ids", + "ids": "⿰牜土", + "canonical_ids": "⿰牜土", + "expanded_ids": "⿰牜土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牢", + "codepoint": "U+7262", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7262", + "status": "exact_ids", + "ids": "⿱宀牛", + "canonical_ids": "⿱宀牛", + "expanded_ids": "⿱宀牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牣", + "codepoint": "U+7263", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7263", + "status": "exact_ids", + "ids": "⿰牜刃", + "canonical_ids": "⿰牜刃", + "expanded_ids": "⿰牜⿻刀丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牤", + "codepoint": "U+7264", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7264", + "status": "exact_ids", + "ids": "⿰牜亡", + "canonical_ids": "⿰牜亡", + "expanded_ids": "⿰牜⿻亠乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牥", + "codepoint": "U+7265", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7265", + "status": "exact_ids", + "ids": "⿰牜方", + "canonical_ids": "⿰牜方", + "expanded_ids": "⿰牜方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牦", + "codepoint": "U+7266", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7266", + "status": "exact_ids", + "ids": "⿰牜毛", + "canonical_ids": "⿰牜毛", + "expanded_ids": "⿰牜毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牧", + "codepoint": "U+7267", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7267", + "status": "exact_ids", + "ids": "⿰牜攵", + "canonical_ids": "⿰牜攵", + "expanded_ids": "⿰牜攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牨", + "codepoint": "U+7268", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7268", + "status": "exact_ids", + "ids": "⿰牜亢", + "canonical_ids": "⿰牜亢", + "expanded_ids": "⿰牜⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "物", + "codepoint": "U+7269", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7269", + "status": "exact_ids", + "ids": "⿰牜勿", + "canonical_ids": "⿰牜勿", + "expanded_ids": "⿰牜勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牪", + "codepoint": "U+726A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-726A", + "status": "exact_ids", + "ids": "⿰牜牛", + "canonical_ids": "⿰牜牛", + "expanded_ids": "⿰牜牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牛", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牫", + "codepoint": "U+726B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-726B", + "status": "exact_ids", + "ids": "⿰牜戈", + "canonical_ids": "⿰牜戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牜" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牬", + "codepoint": "U+726C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-726C", + "status": "exact_ids", + "ids": "⿰牜𠂔", + "canonical_ids": "⿰牜𠂔", + "expanded_ids": "⿰牜𠂔", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牜", + "𠂔" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 76, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牭", + "codepoint": "U+726D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-726D", + "status": "exact_ids", + "ids": "⿰牜四", + "canonical_ids": "⿰牜四", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牜" + ], + "unresolved_leaves": [ + "四" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牮", + "codepoint": "U+726E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-726E", + "status": "exact_ids", + "ids": "⿱代牛", + "canonical_ids": "⿱代牛", + "expanded_ids": "⿱⿰亻弋牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "弋", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牯", + "codepoint": "U+726F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-726F", + "status": "exact_ids", + "ids": "⿰牜古", + "canonical_ids": "⿰牜古", + "expanded_ids": "⿰牜⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牰", + "codepoint": "U+7270", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7270", + "status": "exact_ids", + "ids": "⿰牜由", + "canonical_ids": "⿰牜由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牜" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牱", + "codepoint": "U+7271", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7271", + "status": "exact_ids", + "ids": "⿰牜可", + "canonical_ids": "⿰牜可", + "expanded_ids": "⿰牜⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牲", + "codepoint": "U+7272", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7272", + "status": "exact_ids", + "ids": "⿰牜生", + "canonical_ids": "⿰牜生", + "expanded_ids": "⿰牜⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "牛", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牳", + "codepoint": "U+7273", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7273", + "status": "exact_ids", + "ids": "⿰牜母", + "canonical_ids": "⿰牜母", + "expanded_ids": "⿰牜母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "母", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牴", + "codepoint": "U+7274", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7274", + "status": "exact_ids", + "ids": "⿰牜氐", + "canonical_ids": "⿰牜氐", + "expanded_ids": "⿰牜⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氏", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牵", + "codepoint": "U+7275", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7275", + "status": "exact_ids", + "ids": "⿳大冖牛", + "canonical_ids": "⿳大冖牛", + "expanded_ids": "⿳大冖牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "大", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牶", + "codepoint": "U+7276", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7276", + "status": "exact_ids", + "ids": "⿱龹牛", + "canonical_ids": "⿱龹牛", + "expanded_ids": "⿱龹牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牛", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牷", + "codepoint": "U+7277", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7277", + "status": "exact_ids", + "ids": "⿰牜全", + "canonical_ids": "⿰牜全", + "expanded_ids": "⿰牜⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "牜", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牸", + "codepoint": "U+7278", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7278", + "status": "exact_ids", + "ids": "⿰牜字", + "canonical_ids": "⿰牜字", + "expanded_ids": "⿰牜⿱宀子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "宀", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "特", + "codepoint": "U+7279", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7279", + "status": "exact_ids", + "ids": "⿰牜寺", + "canonical_ids": "⿰牜寺", + "expanded_ids": "⿰牜⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牺", + "codepoint": "U+727A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-727A", + "status": "exact_ids", + "ids": "⿰牜西", + "canonical_ids": "⿰牜西", + "expanded_ids": "⿰牜⿻⿱一儿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牻", + "codepoint": "U+727B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-727B", + "status": "exact_ids", + "ids": "⿰牜尨", + "canonical_ids": "⿰牜尨", + "expanded_ids": "⿰牜⿰尤彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "彡", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牼", + "codepoint": "U+727C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-727C", + "status": "exact_ids", + "ids": "⿰牜巠", + "canonical_ids": "⿰牜巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牜" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牽", + "codepoint": "U+727D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-727D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牾", + "codepoint": "U+727E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-727E", + "status": "exact_ids", + "ids": "⿰牜吾", + "canonical_ids": "⿰牜吾", + "expanded_ids": "⿰牜⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "牿", + "codepoint": "U+727F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-727F", + "status": "exact_ids", + "ids": "⿰牜告", + "canonical_ids": "⿰牜告", + "expanded_ids": "⿰牜⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犀", + "codepoint": "U+7280", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7280", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犁", + "codepoint": "U+7281", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7281", + "status": "exact_ids", + "ids": "⿱利牛", + "canonical_ids": "⿱利牛", + "expanded_ids": "⿱⿰⿻丿木刂牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "木", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犂", + "codepoint": "U+7282", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7282", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犃", + "codepoint": "U+7283", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7283", + "status": "exact_ids", + "ids": "⿰牜咅", + "canonical_ids": "⿰牜咅", + "expanded_ids": "⿰牜⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牜", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犄", + "codepoint": "U+7284", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7284", + "status": "exact_ids", + "ids": "⿰牜奇", + "canonical_ids": "⿰牜奇", + "expanded_ids": "⿰牜⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犅", + "codepoint": "U+7285", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7285", + "status": "exact_ids", + "ids": "⿰牜岡", + "canonical_ids": "⿰牜岡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牜" + ], + "unresolved_leaves": [ + "岡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犆", + "codepoint": "U+7286", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7286", + "status": "exact_ids", + "ids": "⿰牜直", + "canonical_ids": "⿰牜直", + "expanded_ids": "⿰牜⿱⿱十目乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "十", + "牜", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犇", + "codepoint": "U+7287", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7287", + "status": "exact_ids", + "ids": "⿱牛⿰牛牛", + "canonical_ids": "⿱牛⿰牛牛", + "expanded_ids": "⿱牛⿰牛牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犈", + "codepoint": "U+7288", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7288", + "status": "exact_ids", + "ids": "⿰牜卷", + "canonical_ids": "⿰牜卷", + "expanded_ids": "⿰牜⿱龹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "牜", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犉", + "codepoint": "U+7289", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7289", + "status": "exact_ids", + "ids": "⿰牜享", + "canonical_ids": "⿰牜享", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牜" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犊", + "codepoint": "U+728A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-728A", + "status": "exact_ids", + "ids": "⿰牜卖", + "canonical_ids": "⿰牜卖", + "expanded_ids": "⿰牜⿱十⿱乛⿻大冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "冫", + "十", + "大", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犋", + "codepoint": "U+728B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-728B", + "status": "exact_ids", + "ids": "⿰牜具", + "canonical_ids": "⿰牜具", + "expanded_ids": "⿰牜⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "牜", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犌", + "codepoint": "U+728C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-728C", + "status": "exact_ids", + "ids": "⿰牜叚", + "canonical_ids": "⿰牜叚", + "expanded_ids": "⿰牜叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犍", + "codepoint": "U+728D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-728D", + "status": "exact_ids", + "ids": "⿰牜建", + "canonical_ids": "⿰牜建", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廴", + "牜" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犎", + "codepoint": "U+728E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-728E", + "status": "exact_ids", + "ids": "⿱封牛", + "canonical_ids": "⿱封牛", + "expanded_ids": "⿱⿰⿱土土寸牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犏", + "codepoint": "U+728F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-728F", + "status": "exact_ids", + "ids": "⿰牜扁", + "canonical_ids": "⿰牜扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "牜" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犐", + "codepoint": "U+7290", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7290", + "status": "exact_ids", + "ids": "⿰牜科", + "canonical_ids": "⿰牜科", + "expanded_ids": "⿰牜⿰⿻丿木斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "斗", + "木", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犑", + "codepoint": "U+7291", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7291", + "status": "exact_ids", + "ids": "⿰牜狊", + "canonical_ids": "⿰牜狊", + "expanded_ids": "⿰牜⿱目⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "牜", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犒", + "codepoint": "U+7292", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7292", + "status": "exact_ids", + "ids": "⿰牜高", + "canonical_ids": "⿰牜高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牜" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犓", + "codepoint": "U+7293", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7293", + "status": "exact_ids", + "ids": "⿰牜芻", + "canonical_ids": "⿰牜芻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牜" + ], + "unresolved_leaves": [ + "芻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犔", + "codepoint": "U+7294", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7294", + "status": "exact_ids", + "ids": "⿰牜氣", + "canonical_ids": "⿰牜氣", + "expanded_ids": "⿰牜⿱气⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "气", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犕", + "codepoint": "U+7295", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7295", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犖", + "codepoint": "U+7296", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7296", + "status": "exact_ids", + "ids": "⿳炏冖牛", + "canonical_ids": "⿳炏冖牛", + "expanded_ids": "⿳⿰火火冖牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "火", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犗", + "codepoint": "U+7297", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7297", + "status": "exact_ids", + "ids": "⿰牜害", + "canonical_ids": "⿰牜害", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牜" + ], + "unresolved_leaves": [ + "害" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犘", + "codepoint": "U+7298", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7298", + "status": "exact_ids", + "ids": "⿱麻牛", + "canonical_ids": "⿱麻牛", + "expanded_ids": "⿱⿱广⿰木木牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "木", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犙", + "codepoint": "U+7299", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7299", + "status": "exact_ids", + "ids": "⿰牜參", + "canonical_ids": "⿰牜參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牜" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犚", + "codepoint": "U+729A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-729A", + "status": "exact_ids", + "ids": "⿱尉牛", + "canonical_ids": "⿱尉牛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牛" + ], + "unresolved_leaves": [ + "尉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犛", + "codepoint": "U+729B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-729B", + "status": "exact_ids", + "ids": "⿱𠩺牛", + "canonical_ids": "⿱𠩺牛", + "expanded_ids": "⿱⿱⿰⿻木冂攵厂牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "厂", + "攵", + "木", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犜", + "codepoint": "U+729C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-729C", + "status": "exact_ids", + "ids": "⿰牜敦", + "canonical_ids": "⿰牜敦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "牜" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犝", + "codepoint": "U+729D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-729D", + "status": "exact_ids", + "ids": "⿰牜童", + "canonical_ids": "⿰牜童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牜", + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犞", + "codepoint": "U+729E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-729E", + "status": "exact_ids", + "ids": "⿰牜喬", + "canonical_ids": "⿰牜喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "牜" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犟", + "codepoint": "U+729F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-729F", + "status": "exact_ids", + "ids": "⿱强牛", + "canonical_ids": "⿱强牛", + "expanded_ids": "⿱⿰弓⿱口虫牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "弓", + "牛", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犠", + "codepoint": "U+72A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72A0", + "status": "exact_ids", + "ids": "⿰牜義", + "canonical_ids": "⿰牜義", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牜" + ], + "unresolved_leaves": [ + "義" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犡", + "codepoint": "U+72A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72A1", + "status": "exact_ids", + "ids": "⿰牜厲", + "canonical_ids": "⿰牜厲", + "expanded_ids": "⿰牜⿱厂⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "牜", + "田", + "禸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犢", + "codepoint": "U+72A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72A2", + "status": "exact_ids", + "ids": "⿰牜賣", + "canonical_ids": "⿰牜賣", + "expanded_ids": "⿰牜⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "士", + "牜", + "目", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犣", + "codepoint": "U+72A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72A3", + "status": "exact_ids", + "ids": "⿰牜巤", + "canonical_ids": "⿰牜巤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牜" + ], + "unresolved_leaves": [ + "巤" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犤", + "codepoint": "U+72A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72A4", + "status": "exact_ids", + "ids": "⿰牜罷", + "canonical_ids": "⿰牜罷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牜", + "罒" + ], + "unresolved_leaves": [ + "能" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犥", + "codepoint": "U+72A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72A5", + "status": "exact_ids", + "ids": "⿰牜麃", + "canonical_ids": "⿰牜麃", + "expanded_ids": "⿰牜⿱鹿灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬", + "牜", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犦", + "codepoint": "U+72A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72A6", + "status": "exact_ids", + "ids": "⿰牜暴", + "canonical_ids": "⿰牜暴", + "expanded_ids": "⿰牜⿱日⿱⿱廿廾氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "日", + "氺", + "牜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犧", + "codepoint": "U+72A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72A7", + "status": "exact_ids", + "ids": "⿰牜羲", + "canonical_ids": "⿰牜羲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牜" + ], + "unresolved_leaves": [ + "羲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犨", + "codepoint": "U+72A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72A8", + "status": "exact_ids", + "ids": "⿱雔牛", + "canonical_ids": "⿱雔牛", + "expanded_ids": "⿱⿰隹隹牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牛", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犩", + "codepoint": "U+72A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72A9", + "status": "exact_ids", + "ids": "⿱魏牛", + "canonical_ids": "⿱魏牛", + "expanded_ids": "⿱⿰⿱⿻丿木女鬼牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "木", + "牛", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犪", + "codepoint": "U+72AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72AA", + "status": "exact_ids", + "ids": "⿰牜夔", + "canonical_ids": "⿰牜夔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "牜" + ], + "unresolved_leaves": [ + "夒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犫", + "codepoint": "U+72AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72AB", + "status": "exact_ids", + "ids": "⿱讎牛", + "canonical_ids": "⿱讎牛", + "expanded_ids": "⿱⿲隹言隹牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牛", + "言", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 143, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犬", + "codepoint": "U+72AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72AC", + "status": "exact_ids", + "ids": "⿻大丶", + "canonical_ids": "⿻大丶", + "expanded_ids": "⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "太" + ] + }, + { + "character": "犭", + "codepoint": "U+72AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72AD", + "status": "leaf_self_fallback", + "ids": "犭", + "canonical_ids": "犭", + "expanded_ids": "犭", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犮", + "codepoint": "U+72AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72AE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犯", + "codepoint": "U+72AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72AF", + "status": "exact_ids", + "ids": "⿰犭㔾", + "canonical_ids": "⿰犭㔾", + "expanded_ids": "⿰犭㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 68, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犰", + "codepoint": "U+72B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72B0", + "status": "exact_ids", + "ids": "⿰犭九", + "canonical_ids": "⿰犭九", + "expanded_ids": "⿰犭九", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犱", + "codepoint": "U+72B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72B1", + "status": "exact_ids", + "ids": "⿰犭丸", + "canonical_ids": "⿰犭丸", + "expanded_ids": "⿰犭⿻九丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犲", + "codepoint": "U+72B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72B2", + "status": "exact_ids", + "ids": "⿰犭才", + "canonical_ids": "⿰犭才", + "expanded_ids": "⿰犭才", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "才", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犳", + "codepoint": "U+72B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72B3", + "status": "exact_ids", + "ids": "⿰犭勺", + "canonical_ids": "⿰犭勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犴", + "codepoint": "U+72B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72B4", + "status": "exact_ids", + "ids": "⿰犭干", + "canonical_ids": "⿰犭干", + "expanded_ids": "⿰犭⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犵", + "codepoint": "U+72B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72B5", + "status": "exact_ids", + "ids": "⿰犭乞", + "canonical_ids": "⿰犭乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "状", + "codepoint": "U+72B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72B6", + "status": "exact_ids", + "ids": "⿰丬犬", + "canonical_ids": "⿰丬犬", + "expanded_ids": "⿰⿰冫丨⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丶", + "冫", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犷", + "codepoint": "U+72B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72B7", + "status": "exact_ids", + "ids": "⿰犭广", + "canonical_ids": "⿰犭广", + "expanded_ids": "⿰犭广", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犸", + "codepoint": "U+72B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72B8", + "status": "exact_ids", + "ids": "⿰犭马", + "canonical_ids": "⿰犭马", + "expanded_ids": "⿰犭马", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犹", + "codepoint": "U+72B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72B9", + "status": "exact_ids", + "ids": "⿰犭尤", + "canonical_ids": "⿰犭尤", + "expanded_ids": "⿰犭尤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犺", + "codepoint": "U+72BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72BA", + "status": "exact_ids", + "ids": "⿰犭亢", + "canonical_ids": "⿰犭亢", + "expanded_ids": "⿰犭⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犻", + "codepoint": "U+72BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72BB", + "status": "exact_ids", + "ids": "⿰犭巿", + "canonical_ids": "⿰犭巿", + "expanded_ids": "⿰犭⿻⿻冂丨一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犼", + "codepoint": "U+72BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72BC", + "status": "exact_ids", + "ids": "⿰犭孔", + "canonical_ids": "⿰犭孔", + "expanded_ids": "⿰犭⿰子乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "子", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犽", + "codepoint": "U+72BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72BD", + "status": "exact_ids", + "ids": "⿰犭牙", + "canonical_ids": "⿰犭牙", + "expanded_ids": "⿰犭牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犾", + "codepoint": "U+72BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72BE", + "status": "exact_ids", + "ids": "⿰犭犬", + "canonical_ids": "⿰犭犬", + "expanded_ids": "⿰犭⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "犿", + "codepoint": "U+72BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72BF", + "status": "exact_ids", + "ids": "⿰犭卞", + "canonical_ids": "⿰犭卞", + "expanded_ids": "⿰犭⿱亠卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "卜", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狀", + "codepoint": "U+72C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72C0", + "status": "exact_ids", + "ids": "⿰爿犬", + "canonical_ids": "⿰爿犬", + "expanded_ids": "⿰爿⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "爿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狁", + "codepoint": "U+72C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72C1", + "status": "exact_ids", + "ids": "⿰犭允", + "canonical_ids": "⿰犭允", + "expanded_ids": "⿰犭⿱厶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狂", + "codepoint": "U+72C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72C2", + "status": "exact_ids", + "ids": "⿰犭王", + "canonical_ids": "⿰犭王", + "expanded_ids": "⿰犭王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狃", + "codepoint": "U+72C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72C3", + "status": "exact_ids", + "ids": "⿰犭丑", + "canonical_ids": "⿰犭丑", + "expanded_ids": "⿰犭丑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狄", + "codepoint": "U+72C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72C4", + "status": "exact_ids", + "ids": "⿰犭火", + "canonical_ids": "⿰犭火", + "expanded_ids": "⿰犭火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狅", + "codepoint": "U+72C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72C5", + "status": "exact_ids", + "ids": "⿰犭壬", + "canonical_ids": "⿰犭壬", + "expanded_ids": "⿰犭⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狆", + "codepoint": "U+72C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72C6", + "status": "exact_ids", + "ids": "⿰犭中", + "canonical_ids": "⿰犭中", + "expanded_ids": "⿰犭⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狇", + "codepoint": "U+72C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72C7", + "status": "exact_ids", + "ids": "⿰犭木", + "canonical_ids": "⿰犭木", + "expanded_ids": "⿰犭木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狈", + "codepoint": "U+72C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72C8", + "status": "exact_ids", + "ids": "⿰犭贝", + "canonical_ids": "⿰犭贝", + "expanded_ids": "⿰犭⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狉", + "codepoint": "U+72C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72C9", + "status": "exact_ids", + "ids": "⿰犭丕", + "canonical_ids": "⿰犭丕", + "expanded_ids": "⿰犭⿱不一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狊", + "codepoint": "U+72CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72CA", + "status": "exact_ids", + "ids": "⿱目犬", + "canonical_ids": "⿱目犬", + "expanded_ids": "⿱目⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狋", + "codepoint": "U+72CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72CB", + "status": "exact_ids", + "ids": "⿰犭示", + "canonical_ids": "⿰犭示", + "expanded_ids": "⿰犭⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狌", + "codepoint": "U+72CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72CC", + "status": "exact_ids", + "ids": "⿰犭生", + "canonical_ids": "⿰犭生", + "expanded_ids": "⿰犭⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "牛", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狍", + "codepoint": "U+72CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72CD", + "status": "exact_ids", + "ids": "⿰犭包", + "canonical_ids": "⿰犭包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狎", + "codepoint": "U+72CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72CE", + "status": "exact_ids", + "ids": "⿰犭甲", + "canonical_ids": "⿰犭甲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "甲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狏", + "codepoint": "U+72CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72CF", + "status": "exact_ids", + "ids": "⿰犭㐌", + "canonical_ids": "⿰犭㐌", + "expanded_ids": "⿰犭⿱⿻丿一⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丿", + "乜", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狐", + "codepoint": "U+72D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72D0", + "status": "exact_ids", + "ids": "⿰犭瓜", + "canonical_ids": "⿰犭瓜", + "expanded_ids": "⿰犭瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "瓜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狑", + "codepoint": "U+72D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72D1", + "status": "exact_ids", + "ids": "⿰犭令", + "canonical_ids": "⿰犭令", + "expanded_ids": "⿰犭⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "犭", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狒", + "codepoint": "U+72D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72D2", + "status": "exact_ids", + "ids": "⿰犭弗", + "canonical_ids": "⿰犭弗", + "expanded_ids": "⿰犭⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "弓", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狓", + "codepoint": "U+72D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72D3", + "status": "exact_ids", + "ids": "⿰犭皮", + "canonical_ids": "⿰犭皮", + "expanded_ids": "⿰犭皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狔", + "codepoint": "U+72D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72D4", + "status": "exact_ids", + "ids": "⿰犭尼", + "canonical_ids": "⿰犭尼", + "expanded_ids": "⿰犭⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "尸", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狕", + "codepoint": "U+72D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72D5", + "status": "exact_ids", + "ids": "⿰犭幼", + "canonical_ids": "⿰犭幼", + "expanded_ids": "⿰犭⿰幺力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "幺", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狖", + "codepoint": "U+72D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72D6", + "status": "exact_ids", + "ids": "⿰犭穴", + "canonical_ids": "⿰犭穴", + "expanded_ids": "⿰犭⿱宀八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狗", + "codepoint": "U+72D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72D7", + "status": "exact_ids", + "ids": "⿰犭句", + "canonical_ids": "⿰犭句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狘", + "codepoint": "U+72D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72D8", + "status": "exact_ids", + "ids": "⿰犭戉", + "canonical_ids": "⿰犭戉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "犭" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狙", + "codepoint": "U+72D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72D9", + "status": "exact_ids", + "ids": "⿰犭且", + "canonical_ids": "⿰犭且", + "expanded_ids": "⿰犭且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狚", + "codepoint": "U+72DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72DA", + "status": "exact_ids", + "ids": "⿰犭旦", + "canonical_ids": "⿰犭旦", + "expanded_ids": "⿰犭⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狛", + "codepoint": "U+72DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72DB", + "status": "exact_ids", + "ids": "⿰犭白", + "canonical_ids": "⿰犭白", + "expanded_ids": "⿰犭⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狜", + "codepoint": "U+72DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72DC", + "status": "exact_ids", + "ids": "⿰犭古", + "canonical_ids": "⿰犭古", + "expanded_ids": "⿰犭⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狝", + "codepoint": "U+72DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72DD", + "status": "exact_ids", + "ids": "⿰犭尔", + "canonical_ids": "⿰犭尔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "犭" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狞", + "codepoint": "U+72DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72DE", + "status": "exact_ids", + "ids": "⿰犭宁", + "canonical_ids": "⿰犭宁", + "expanded_ids": "⿰犭⿱宀⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "宀", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狟", + "codepoint": "U+72DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72DF", + "status": "exact_ids", + "ids": "⿰犭亘", + "canonical_ids": "⿰犭亘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狠", + "codepoint": "U+72E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72E0", + "status": "exact_ids", + "ids": "⿰犭艮", + "canonical_ids": "⿰犭艮", + "expanded_ids": "⿰犭艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狡", + "codepoint": "U+72E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72E1", + "status": "exact_ids", + "ids": "⿰犭交", + "canonical_ids": "⿰犭交", + "expanded_ids": "⿰犭⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "父", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狢", + "codepoint": "U+72E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72E2", + "status": "exact_ids", + "ids": "⿰犭各", + "canonical_ids": "⿰犭各", + "expanded_ids": "⿰犭⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狣", + "codepoint": "U+72E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72E3", + "status": "exact_ids", + "ids": "⿰犭兆", + "canonical_ids": "⿰犭兆", + "expanded_ids": "⿰犭兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狤", + "codepoint": "U+72E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72E4", + "status": "exact_ids", + "ids": "⿰犭吉", + "canonical_ids": "⿰犭吉", + "expanded_ids": "⿰犭⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狥", + "codepoint": "U+72E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72E5", + "status": "exact_ids", + "ids": "⿰犭旬", + "canonical_ids": "⿰犭旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狦", + "codepoint": "U+72E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72E6", + "status": "exact_ids", + "ids": "⿰犭𠕋", + "canonical_ids": "⿰犭𠕋", + "expanded_ids": "⿰犭⿻冂井", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "井", + "冂", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狧", + "codepoint": "U+72E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72E7", + "status": "exact_ids", + "ids": "⿰犭舌", + "canonical_ids": "⿰犭舌", + "expanded_ids": "⿰犭⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狨", + "codepoint": "U+72E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72E8", + "status": "exact_ids", + "ids": "⿰犭戎", + "canonical_ids": "⿰犭戎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "犭" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狩", + "codepoint": "U+72E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72E9", + "status": "exact_ids", + "ids": "⿰犭守", + "canonical_ids": "⿰犭守", + "expanded_ids": "⿰犭⿱宀寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "寸", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狪", + "codepoint": "U+72EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72EA", + "status": "exact_ids", + "ids": "⿰犭同", + "canonical_ids": "⿰犭同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狫", + "codepoint": "U+72EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72EB", + "status": "exact_ids", + "ids": "⿰犭老", + "canonical_ids": "⿰犭老", + "expanded_ids": "⿰犭⿱⿻土丿匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "独", + "codepoint": "U+72EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72EC", + "status": "exact_ids", + "ids": "⿰犭虫", + "canonical_ids": "⿰犭虫", + "expanded_ids": "⿰犭虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狭", + "codepoint": "U+72ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72ED", + "status": "exact_ids", + "ids": "⿰犭夹", + "canonical_ids": "⿰犭夹", + "expanded_ids": "⿰犭⿻⿻一大丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狮", + "codepoint": "U+72EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72EE", + "status": "exact_ids", + "ids": "⿰犭师", + "canonical_ids": "⿰犭师", + "expanded_ids": "⿰犭⿰刂⿱一⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "刂", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狯", + "codepoint": "U+72EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72EF", + "status": "exact_ids", + "ids": "⿰犭会", + "canonical_ids": "⿰犭会", + "expanded_ids": "⿰犭⿱⿱人一⿱一厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "厶", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狰", + "codepoint": "U+72F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72F0", + "status": "exact_ids", + "ids": "⿰犭争", + "canonical_ids": "⿰犭争", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "争" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狱", + "codepoint": "U+72F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72F1", + "status": "exact_ids", + "ids": "⿰犭訧", + "canonical_ids": "⿰犭訧", + "expanded_ids": "⿰犭⿰言尤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "犭", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "獄" + ] + }, + { + "character": "狲", + "codepoint": "U+72F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72F2", + "status": "exact_ids", + "ids": "⿰犭孙", + "canonical_ids": "⿰犭孙", + "expanded_ids": "⿰犭⿰子小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "小", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狳", + "codepoint": "U+72F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72F3", + "status": "exact_ids", + "ids": "⿰犭余", + "canonical_ids": "⿰犭余", + "expanded_ids": "⿰犭⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狴", + "codepoint": "U+72F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72F4", + "status": "exact_ids", + "ids": "⿰犭坒", + "canonical_ids": "⿰犭坒", + "expanded_ids": "⿰犭⿱⿰匕匕土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "土", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狵", + "codepoint": "U+72F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72F5", + "status": "exact_ids", + "ids": "⿰犭尨", + "canonical_ids": "⿰犭尨", + "expanded_ids": "⿰犭⿰尤彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "彡", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狶", + "codepoint": "U+72F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72F6", + "status": "exact_ids", + "ids": "⿰犭希", + "canonical_ids": "⿰犭希", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "犭" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狷", + "codepoint": "U+72F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72F7", + "status": "exact_ids", + "ids": "⿰犭肙", + "canonical_ids": "⿰犭肙", + "expanded_ids": "⿰犭⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狸", + "codepoint": "U+72F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72F8", + "status": "exact_ids", + "ids": "⿰犭里", + "canonical_ids": "⿰犭里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狹", + "codepoint": "U+72F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72F9", + "status": "exact_ids", + "ids": "⿰犭夾", + "canonical_ids": "⿰犭夾", + "expanded_ids": "⿰犭⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狺", + "codepoint": "U+72FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72FA", + "status": "exact_ids", + "ids": "⿰犭言", + "canonical_ids": "⿰犭言", + "expanded_ids": "⿰犭言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狻", + "codepoint": "U+72FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72FB", + "status": "exact_ids", + "ids": "⿰犭夋", + "canonical_ids": "⿰犭夋", + "expanded_ids": "⿰犭⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狼", + "codepoint": "U+72FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72FC", + "status": "exact_ids", + "ids": "⿰犭良", + "canonical_ids": "⿰犭良", + "expanded_ids": "⿰犭⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "犭", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狽", + "codepoint": "U+72FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72FD", + "status": "exact_ids", + "ids": "⿰犭貝", + "canonical_ids": "⿰犭貝", + "expanded_ids": "⿰犭⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "犭", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狾", + "codepoint": "U+72FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72FE", + "status": "exact_ids", + "ids": "⿰犭折", + "canonical_ids": "⿰犭折", + "expanded_ids": "⿰犭⿰扌斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "斤", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "狿", + "codepoint": "U+72FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-72FF", + "status": "exact_ids", + "ids": "⿰犭延", + "canonical_ids": "⿰犭延", + "expanded_ids": "⿰犭⿰廴⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廴", + "止", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猀", + "codepoint": "U+7300", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7300", + "status": "exact_ids", + "ids": "⿰犭沙", + "canonical_ids": "⿰犭沙", + "expanded_ids": "⿰犭⿰氵⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "氵", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猁", + "codepoint": "U+7301", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7301", + "status": "exact_ids", + "ids": "⿰犭利", + "canonical_ids": "⿰犭利", + "expanded_ids": "⿰犭⿰⿻丿木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "木", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猂", + "codepoint": "U+7302", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7302", + "status": "exact_ids", + "ids": "⿰犭旱", + "canonical_ids": "⿰犭旱", + "expanded_ids": "⿰犭⿱日⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "日", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猃", + "codepoint": "U+7303", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7303", + "status": "exact_ids", + "ids": "⿰犭佥", + "canonical_ids": "⿰犭佥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "佥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猄", + "codepoint": "U+7304", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7304", + "status": "exact_ids", + "ids": "⿰犭京", + "canonical_ids": "⿰犭京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猅", + "codepoint": "U+7305", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7305", + "status": "exact_ids", + "ids": "⿰犭非", + "canonical_ids": "⿰犭非", + "expanded_ids": "⿰犭非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猆", + "codepoint": "U+7306", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7306", + "status": "exact_ids", + "ids": "⿱非犬", + "canonical_ids": "⿱非犬", + "expanded_ids": "⿱非⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猇", + "codepoint": "U+7307", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7307", + "status": "exact_ids", + "ids": "⿰犭虎", + "canonical_ids": "⿰犭虎", + "expanded_ids": "⿰犭⿱虍儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "犭", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猈", + "codepoint": "U+7308", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7308", + "status": "exact_ids", + "ids": "⿰犭卑", + "canonical_ids": "⿰犭卑", + "expanded_ids": "⿰犭卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猉", + "codepoint": "U+7309", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7309", + "status": "exact_ids", + "ids": "⿰犭其", + "canonical_ids": "⿰犭其", + "expanded_ids": "⿰犭其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猊", + "codepoint": "U+730A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-730A", + "status": "exact_ids", + "ids": "⿰犭兒", + "canonical_ids": "⿰犭兒", + "expanded_ids": "⿰犭⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "犭", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猋", + "codepoint": "U+730B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-730B", + "status": "exact_ids", + "ids": "⿱犬⿰犬犬", + "canonical_ids": "⿱犬⿰犬犬", + "expanded_ids": "⿱⿻大丶⿰⿻大丶⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猌", + "codepoint": "U+730C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-730C", + "status": "exact_ids", + "ids": "⿰來犬", + "canonical_ids": "⿰來犬", + "expanded_ids": "⿰⿻木⿰人人⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猍", + "codepoint": "U+730D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-730D", + "status": "exact_ids", + "ids": "⿰犭來", + "canonical_ids": "⿰犭來", + "expanded_ids": "⿰犭⿻木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "木", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猎", + "codepoint": "U+730E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-730E", + "status": "exact_ids", + "ids": "⿰犭昔", + "canonical_ids": "⿰犭昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "犭" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猏", + "codepoint": "U+730F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-730F", + "status": "exact_ids", + "ids": "⿰犭肩", + "canonical_ids": "⿰犭肩", + "expanded_ids": "⿰犭⿱⿻一尸月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "月", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猐", + "codepoint": "U+7310", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7310", + "status": "exact_ids", + "ids": "⿰犭羌", + "canonical_ids": "⿰犭羌", + "expanded_ids": "⿰犭⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "犭", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猑", + "codepoint": "U+7311", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7311", + "status": "exact_ids", + "ids": "⿰犭昆", + "canonical_ids": "⿰犭昆", + "expanded_ids": "⿰犭⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猒", + "codepoint": "U+7312", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7312", + "status": "exact_ids", + "ids": "⿰冐犬", + "canonical_ids": "⿰冐犬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "月" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猓", + "codepoint": "U+7313", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7313", + "status": "exact_ids", + "ids": "⿰犭果", + "canonical_ids": "⿰犭果", + "expanded_ids": "⿰犭⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "犭", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猔", + "codepoint": "U+7314", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7314", + "status": "exact_ids", + "ids": "⿰犭宗", + "canonical_ids": "⿰犭宗", + "expanded_ids": "⿰犭⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猕", + "codepoint": "U+7315", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7315", + "status": "exact_ids", + "ids": "⿰犭弥", + "canonical_ids": "⿰犭弥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "弓", + "犭" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猖", + "codepoint": "U+7316", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7316", + "status": "exact_ids", + "ids": "⿰犭昌", + "canonical_ids": "⿰犭昌", + "expanded_ids": "⿰犭⿱日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猗", + "codepoint": "U+7317", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7317", + "status": "exact_ids", + "ids": "⿰犭奇", + "canonical_ids": "⿰犭奇", + "expanded_ids": "⿰犭⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猘", + "codepoint": "U+7318", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7318", + "status": "exact_ids", + "ids": "⿰犭制", + "canonical_ids": "⿰犭制", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "制" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猙", + "codepoint": "U+7319", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7319", + "status": "exact_ids", + "ids": "⿰犭爭", + "canonical_ids": "⿰犭爭", + "expanded_ids": "⿰犭⿱爫肀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爫", + "犭", + "肀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猚", + "codepoint": "U+731A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-731A", + "status": "exact_ids", + "ids": "⿰犭隹", + "canonical_ids": "⿰犭隹", + "expanded_ids": "⿰犭隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猛", + "codepoint": "U+731B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-731B", + "status": "exact_ids", + "ids": "⿰犭孟", + "canonical_ids": "⿰犭孟", + "expanded_ids": "⿰犭⿱子皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "犭", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猜", + "codepoint": "U+731C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-731C", + "status": "exact_ids", + "ids": "⿰犭靑", + "canonical_ids": "⿰犭靑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "円", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猝", + "codepoint": "U+731D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-731D", + "status": "exact_ids", + "ids": "⿰犭卒", + "canonical_ids": "⿰犭卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猞", + "codepoint": "U+731E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-731E", + "status": "exact_ids", + "ids": "⿰犭舍", + "canonical_ids": "⿰犭舍", + "expanded_ids": "⿰犭⿱⿱人一⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "十", + "口", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猟", + "codepoint": "U+731F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-731F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猠", + "codepoint": "U+7320", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7320", + "status": "exact_ids", + "ids": "⿰犭典", + "canonical_ids": "⿰犭典", + "expanded_ids": "⿰犭典", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "典", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猡", + "codepoint": "U+7321", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7321", + "status": "exact_ids", + "ids": "⿰犭罗", + "canonical_ids": "⿰犭罗", + "expanded_ids": "⿰犭⿱罒夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "犭", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猢", + "codepoint": "U+7322", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7322", + "status": "exact_ids", + "ids": "⿰犭胡", + "canonical_ids": "⿰犭胡", + "expanded_ids": "⿰犭⿰⿻十口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "月", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猣", + "codepoint": "U+7323", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7323", + "status": "exact_ids", + "ids": "⿰犭㚇", + "canonical_ids": "⿰犭㚇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "夊", + "犭" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猤", + "codepoint": "U+7324", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7324", + "status": "exact_ids", + "ids": "⿰犭癸", + "canonical_ids": "⿰犭癸", + "expanded_ids": "⿰犭⿱癶⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "犭", + "癶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猥", + "codepoint": "U+7325", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7325", + "status": "exact_ids", + "ids": "⿰犭畏", + "canonical_ids": "⿰犭畏", + "expanded_ids": "⿰犭⿱田氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氏", + "犭", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猦", + "codepoint": "U+7326", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7326", + "status": "exact_ids", + "ids": "⿰犭風", + "canonical_ids": "⿰犭風", + "expanded_ids": "⿰犭風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猧", + "codepoint": "U+7327", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7327", + "status": "exact_ids", + "ids": "⿰犭咼", + "canonical_ids": "⿰犭咼", + "expanded_ids": "⿰犭⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猨", + "codepoint": "U+7328", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7328", + "status": "exact_ids", + "ids": "⿰犭爰", + "canonical_ids": "⿰犭爰", + "expanded_ids": "⿰犭⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "爫", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猩", + "codepoint": "U+7329", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7329", + "status": "exact_ids", + "ids": "⿰犭星", + "canonical_ids": "⿰犭星", + "expanded_ids": "⿰犭⿱日⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "牛", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猪", + "codepoint": "U+732A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-732A", + "status": "exact_ids", + "ids": "⿰犭者", + "canonical_ids": "⿰犭者", + "expanded_ids": "⿰犭⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猫", + "codepoint": "U+732B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-732B", + "status": "exact_ids", + "ids": "⿰犭苗", + "canonical_ids": "⿰犭苗", + "expanded_ids": "⿰犭⿱艹田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猬", + "codepoint": "U+732C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-732C", + "status": "exact_ids", + "ids": "⿰犭胃", + "canonical_ids": "⿰犭胃", + "expanded_ids": "⿰犭⿱田月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "犭", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猭", + "codepoint": "U+732D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-732D", + "status": "exact_ids", + "ids": "⿰犭彖", + "canonical_ids": "⿰犭彖", + "expanded_ids": "⿰犭⿱彑𧰨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "犭", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "献", + "codepoint": "U+732E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-732E", + "status": "exact_ids", + "ids": "⿰南犬", + "canonical_ids": "⿰南犬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大" + ], + "unresolved_leaves": [ + "南" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猯", + "codepoint": "U+732F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-732F", + "status": "exact_ids", + "ids": "⿰犭耑", + "canonical_ids": "⿰犭耑", + "expanded_ids": "⿰犭⿱山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "犭", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猰", + "codepoint": "U+7330", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7330", + "status": "exact_ids", + "ids": "⿰犭契", + "canonical_ids": "⿰犭契", + "expanded_ids": "⿰犭⿱⿰丰刀大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "大", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猱", + "codepoint": "U+7331", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7331", + "status": "exact_ids", + "ids": "⿰犭柔", + "canonical_ids": "⿰犭柔", + "expanded_ids": "⿰犭⿱矛木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "犭", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猲", + "codepoint": "U+7332", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7332", + "status": "exact_ids", + "ids": "⿰犭曷", + "canonical_ids": "⿰犭曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "犭" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猳", + "codepoint": "U+7333", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7333", + "status": "exact_ids", + "ids": "⿰犭叚", + "canonical_ids": "⿰犭叚", + "expanded_ids": "⿰犭叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猴", + "codepoint": "U+7334", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7334", + "status": "exact_ids", + "ids": "⿰犭侯", + "canonical_ids": "⿰犭侯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "侯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猵", + "codepoint": "U+7335", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7335", + "status": "exact_ids", + "ids": "⿰犭扁", + "canonical_ids": "⿰犭扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "犭" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猶", + "codepoint": "U+7336", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7336", + "status": "exact_ids", + "ids": "⿰犭酋", + "canonical_ids": "⿰犭酋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "犭" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猷", + "codepoint": "U+7337", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7337", + "status": "exact_ids", + "ids": "⿰酋犬", + "canonical_ids": "⿰酋犬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丷", + "大" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猸", + "codepoint": "U+7338", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7338", + "status": "exact_ids", + "ids": "⿰犭眉", + "canonical_ids": "⿰犭眉", + "expanded_ids": "⿰犭⿱⿻尸丨目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "尸", + "犭", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猹", + "codepoint": "U+7339", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7339", + "status": "exact_ids", + "ids": "⿰犭查", + "canonical_ids": "⿰犭查", + "expanded_ids": "⿰犭⿱木⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "木", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猺", + "codepoint": "U+733A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-733A", + "status": "exact_ids", + "ids": "⿰犭䍃", + "canonical_ids": "⿰犭䍃", + "expanded_ids": "⿰犭⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爪", + "犭", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猻", + "codepoint": "U+733B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-733B", + "status": "exact_ids", + "ids": "⿰犭孫", + "canonical_ids": "⿰犭孫", + "expanded_ids": "⿰犭⿰子⿱丿⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "子", + "小", + "幺", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猼", + "codepoint": "U+733C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-733C", + "status": "exact_ids", + "ids": "⿰犭尃", + "canonical_ids": "⿰犭尃", + "expanded_ids": "⿰犭⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "犭", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猽", + "codepoint": "U+733D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-733D", + "status": "exact_ids", + "ids": "⿰犭冥", + "canonical_ids": "⿰犭冥", + "expanded_ids": "⿰犭⿱冖⿱日⿱亠八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "日", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猾", + "codepoint": "U+733E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-733E", + "status": "exact_ids", + "ids": "⿰犭骨", + "canonical_ids": "⿰犭骨", + "expanded_ids": "⿰犭⿱冎月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "猿", + "codepoint": "U+733F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-733F", + "status": "exact_ids", + "ids": "⿰犭袁", + "canonical_ids": "⿰犭袁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "袁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獀", + "codepoint": "U+7340", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7340", + "status": "exact_ids", + "ids": "⿰犭叟", + "canonical_ids": "⿰犭叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "犭" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獁", + "codepoint": "U+7341", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7341", + "status": "exact_ids", + "ids": "⿰犭馬", + "canonical_ids": "⿰犭馬", + "expanded_ids": "⿰犭馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獂", + "codepoint": "U+7342", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7342", + "status": "exact_ids", + "ids": "⿰犭原", + "canonical_ids": "⿰犭原", + "expanded_ids": "⿰犭⿱厂⿱⿻日丶小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "小", + "日", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獃", + "codepoint": "U+7343", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7343", + "status": "exact_ids", + "ids": "⿰豈犬", + "canonical_ids": "⿰豈犬", + "expanded_ids": "⿰⿱山豆⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "山", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獄", + "codepoint": "U+7344", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7344", + "status": "exact_ids", + "ids": "⿰犭訧", + "canonical_ids": "⿰犭訧", + "expanded_ids": "⿰犭⿰言尤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "犭", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "狱" + ] + }, + { + "character": "獅", + "codepoint": "U+7345", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7345", + "status": "exact_ids", + "ids": "⿰犭師", + "canonical_ids": "⿰犭師", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "師" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獆", + "codepoint": "U+7346", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7346", + "status": "exact_ids", + "ids": "⿰犭皋", + "canonical_ids": "⿰犭皋", + "expanded_ids": "⿰犭⿱⿻日丶⿱大十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "十", + "大", + "日", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獇", + "codepoint": "U+7347", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7347", + "status": "exact_ids", + "ids": "⿰犭羗", + "canonical_ids": "⿰犭羗", + "expanded_ids": "⿰犭⿻⿱羊儿厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "犭", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獈", + "codepoint": "U+7348", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7348", + "status": "exact_ids", + "ids": "⿰犭益", + "canonical_ids": "⿰犭益", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獉", + "codepoint": "U+7349", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7349", + "status": "exact_ids", + "ids": "⿰犭秦", + "canonical_ids": "⿰犭秦", + "expanded_ids": "⿰犭⿱𡗗⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "犭", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獊", + "codepoint": "U+734A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-734A", + "status": "exact_ids", + "ids": "⿰犭倉", + "canonical_ids": "⿰犭倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獋", + "codepoint": "U+734B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-734B", + "status": "exact_ids", + "ids": "⿰犭臯", + "canonical_ids": "⿰犭臯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "臯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獌", + "codepoint": "U+734C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-734C", + "status": "exact_ids", + "ids": "⿰犭曼", + "canonical_ids": "⿰犭曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獍", + "codepoint": "U+734D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-734D", + "status": "exact_ids", + "ids": "⿰犭竟", + "canonical_ids": "⿰犭竟", + "expanded_ids": "⿰犭⿱立⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "犭", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獎", + "codepoint": "U+734E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-734E", + "status": "exact_ids", + "ids": "⿱將犬", + "canonical_ids": "⿱將犬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大" + ], + "unresolved_leaves": [ + "將" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獏", + "codepoint": "U+734F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-734F", + "status": "exact_ids", + "ids": "⿰犭莫", + "canonical_ids": "⿰犭莫", + "expanded_ids": "⿰犭⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "犭", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獐", + "codepoint": "U+7350", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7350", + "status": "exact_ids", + "ids": "⿰犭章", + "canonical_ids": "⿰犭章", + "expanded_ids": "⿰犭⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "犭", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獑", + "codepoint": "U+7351", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7351", + "status": "exact_ids", + "ids": "⿰犭斬", + "canonical_ids": "⿰犭斬", + "expanded_ids": "⿰犭⿰車斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "犭", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獒", + "codepoint": "U+7352", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7352", + "status": "exact_ids", + "ids": "⿱敖犬", + "canonical_ids": "⿱敖犬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獓", + "codepoint": "U+7353", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7353", + "status": "exact_ids", + "ids": "⿰犭敖", + "canonical_ids": "⿰犭敖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獔", + "codepoint": "U+7354", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7354", + "status": "exact_ids", + "ids": "⿰犭皐", + "canonical_ids": "⿰犭皐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "皐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獕", + "codepoint": "U+7355", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7355", + "status": "exact_ids", + "ids": "⿰犭崔", + "canonical_ids": "⿰犭崔", + "expanded_ids": "⿰犭⿱山隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "犭", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獖", + "codepoint": "U+7356", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7356", + "status": "exact_ids", + "ids": "⿰犭賁", + "canonical_ids": "⿰犭賁", + "expanded_ids": "⿰犭⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "廾", + "犭", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獗", + "codepoint": "U+7357", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7357", + "status": "exact_ids", + "ids": "⿰犭厥", + "canonical_ids": "⿰犭厥", + "expanded_ids": "⿰犭⿱厂⿰⿱䒑屮欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "厂", + "屮", + "欠", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獘", + "codepoint": "U+7358", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7358", + "status": "exact_ids", + "ids": "⿱敝犬", + "canonical_ids": "⿱敝犬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "攵" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獙", + "codepoint": "U+7359", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7359", + "status": "exact_ids", + "ids": "⿰犭敝", + "canonical_ids": "⿰犭敝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "犭" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獚", + "codepoint": "U+735A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-735A", + "status": "exact_ids", + "ids": "⿰犭黄", + "canonical_ids": "⿰犭黄", + "expanded_ids": "⿰犭黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獛", + "codepoint": "U+735B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-735B", + "status": "exact_ids", + "ids": "⿰犭菐", + "canonical_ids": "⿰犭菐", + "expanded_ids": "⿰犭⿱业⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "儿", + "犭", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獜", + "codepoint": "U+735C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-735C", + "status": "exact_ids", + "ids": "⿰犭粦", + "canonical_ids": "⿰犭粦", + "expanded_ids": "⿰犭⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "木", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獝", + "codepoint": "U+735D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-735D", + "status": "exact_ids", + "ids": "⿰犭矞", + "canonical_ids": "⿰犭矞", + "expanded_ids": "⿰犭⿱矛⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "犭", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獞", + "codepoint": "U+735E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-735E", + "status": "exact_ids", + "ids": "⿰犭童", + "canonical_ids": "⿰犭童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獟", + "codepoint": "U+735F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-735F", + "status": "exact_ids", + "ids": "⿰犭堯", + "canonical_ids": "⿰犭堯", + "expanded_ids": "⿰犭⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獠", + "codepoint": "U+7360", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7360", + "status": "exact_ids", + "ids": "⿰犭尞", + "canonical_ids": "⿰犭尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "犭" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獡", + "codepoint": "U+7361", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7361", + "status": "exact_ids", + "ids": "⿰犭舄", + "canonical_ids": "⿰犭舄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "臼" + ], + "unresolved_leaves": [ + "灳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獢", + "codepoint": "U+7362", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7362", + "status": "exact_ids", + "ids": "⿰犭喬", + "canonical_ids": "⿰犭喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "犭" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獣", + "codepoint": "U+7363", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7363", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獤", + "codepoint": "U+7364", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7364", + "status": "exact_ids", + "ids": "⿰犭敦", + "canonical_ids": "⿰犭敦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "犭" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獥", + "codepoint": "U+7365", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7365", + "status": "exact_ids", + "ids": "⿰犭敫", + "canonical_ids": "⿰犭敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獦", + "codepoint": "U+7366", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7366", + "status": "exact_ids", + "ids": "⿰犭葛", + "canonical_ids": "⿰犭葛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "犭", + "艹" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獧", + "codepoint": "U+7367", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7367", + "status": "exact_ids", + "ids": "⿰犭睘", + "canonical_ids": "⿰犭睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獨", + "codepoint": "U+7368", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7368", + "status": "exact_ids", + "ids": "⿰犭蜀", + "canonical_ids": "⿰犭蜀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "罒" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獩", + "codepoint": "U+7369", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7369", + "status": "exact_ids", + "ids": "⿰犭歲", + "canonical_ids": "⿰犭歲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "歲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獪", + "codepoint": "U+736A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-736A", + "status": "exact_ids", + "ids": "⿰犭會", + "canonical_ids": "⿰犭會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "犭" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獫", + "codepoint": "U+736B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-736B", + "status": "exact_ids", + "ids": "⿰犭僉", + "canonical_ids": "⿰犭僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獬", + "codepoint": "U+736C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-736C", + "status": "exact_ids", + "ids": "⿰犭解", + "canonical_ids": "⿰犭解", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "解" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獭", + "codepoint": "U+736D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-736D", + "status": "exact_ids", + "ids": "⿰犭赖", + "canonical_ids": "⿰犭赖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "木", + "犭" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獮", + "codepoint": "U+736E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-736E", + "status": "exact_ids", + "ids": "⿰犭爾", + "canonical_ids": "⿰犭爾", + "expanded_ids": "⿰犭爾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爾", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獯", + "codepoint": "U+736F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-736F", + "status": "exact_ids", + "ids": "⿰犭熏", + "canonical_ids": "⿰犭熏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "熏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獰", + "codepoint": "U+7370", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7370", + "status": "exact_ids", + "ids": "⿰犭寜", + "canonical_ids": "⿰犭寜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "寜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獱", + "codepoint": "U+7371", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7371", + "status": "exact_ids", + "ids": "⿰犭賓", + "canonical_ids": "⿰犭賓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獲", + "codepoint": "U+7372", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7372", + "status": "exact_ids", + "ids": "⿰犭蒦", + "canonical_ids": "⿰犭蒦", + "expanded_ids": "⿰犭⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "犭", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獳", + "codepoint": "U+7373", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7373", + "status": "exact_ids", + "ids": "⿰犭需", + "canonical_ids": "⿰犭需", + "expanded_ids": "⿰犭⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獴", + "codepoint": "U+7374", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7374", + "status": "exact_ids", + "ids": "⿰犭蒙", + "canonical_ids": "⿰犭蒙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "艹", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獵", + "codepoint": "U+7375", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7375", + "status": "exact_ids", + "ids": "⿰犭巤", + "canonical_ids": "⿰犭巤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "巤" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獶", + "codepoint": "U+7376", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7376", + "status": "exact_ids", + "ids": "⿰犭憂", + "canonical_ids": "⿰犭憂", + "expanded_ids": "⿰犭⿳⿻一⿻日丶冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "冖", + "夊", + "心", + "日", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 251, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獷", + "codepoint": "U+7377", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7377", + "status": "exact_ids", + "ids": "⿰犭廣", + "canonical_ids": "⿰犭廣", + "expanded_ids": "⿰犭⿱广黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "犭", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獸", + "codepoint": "U+7378", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7378", + "status": "exact_ids", + "ids": "⿰嘼犬", + "canonical_ids": "⿰嘼犬", + "expanded_ids": "⿰⿱⿱⿰口口田⿱一口⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "口", + "大", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獹", + "codepoint": "U+7379", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7379", + "status": "exact_ids", + "ids": "⿰犭盧", + "canonical_ids": "⿰犭盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "皿" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獺", + "codepoint": "U+737A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-737A", + "status": "exact_ids", + "ids": "⿰犭賴", + "canonical_ids": "⿰犭賴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "賴" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獻", + "codepoint": "U+737B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-737B", + "status": "exact_ids", + "ids": "⿰鬳犬", + "canonical_ids": "⿰鬳犬", + "expanded_ids": "⿰⿱虍鬲⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "虍", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獼", + "codepoint": "U+737C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-737C", + "status": "exact_ids", + "ids": "⿰犭彌", + "canonical_ids": "⿰犭彌", + "expanded_ids": "⿰犭⿰弓爾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "爾", + "犭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獽", + "codepoint": "U+737D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-737D", + "status": "exact_ids", + "ids": "⿰犭襄", + "canonical_ids": "⿰犭襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獾", + "codepoint": "U+737E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-737E", + "status": "exact_ids", + "ids": "⿰犭雚", + "canonical_ids": "⿰犭雚", + "expanded_ids": "⿰犭⿱艹⿱⿰口口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "犭", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "獿", + "codepoint": "U+737F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-737F", + "status": "exact_ids", + "ids": "⿰犭夒", + "canonical_ids": "⿰犭夒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "夒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玀", + "codepoint": "U+7380", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7380", + "status": "exact_ids", + "ids": "⿰犭羅", + "canonical_ids": "⿰犭羅", + "expanded_ids": "⿰犭⿱罒⿰⿻幺小隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "犭", + "罒", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玁", + "codepoint": "U+7381", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7381", + "status": "exact_ids", + "ids": "⿰犭嚴", + "canonical_ids": "⿰犭嚴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "犭" + ], + "unresolved_leaves": [ + "𠪚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玂", + "codepoint": "U+7382", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7382", + "status": "exact_ids", + "ids": "⿰犭蘄", + "canonical_ids": "⿰犭蘄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭" + ], + "unresolved_leaves": [ + "蘄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玃", + "codepoint": "U+7383", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7383", + "status": "exact_ids", + "ids": "⿰犭矍", + "canonical_ids": "⿰犭矍", + "expanded_ids": "⿰犭⿱⿰目目⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "犭", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玄", + "codepoint": "U+7384", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7384", + "status": "exact_ids", + "ids": "⿱亠幺", + "canonical_ids": "⿱亠幺", + "expanded_ids": "⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玅", + "codepoint": "U+7385", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7385", + "status": "exact_ids", + "ids": "⿰玄少", + "canonical_ids": "⿰玄少", + "expanded_ids": "⿰⿱亠幺⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亠", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玆", + "codepoint": "U+7386", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7386", + "status": "exact_ids", + "ids": "⿰玄玄", + "canonical_ids": "⿰玄玄", + "expanded_ids": "⿰⿱亠幺⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "率", + "codepoint": "U+7387", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7387", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玈", + "codepoint": "U+7388", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7388", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玉", + "codepoint": "U+7389", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7389", + "status": "exact_ids", + "ids": "⿻王丶", + "canonical_ids": "⿻王丶", + "expanded_ids": "⿻王丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "玊" + ] + }, + { + "character": "玊", + "codepoint": "U+738A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-738A", + "status": "exact_ids", + "ids": "⿻王丶", + "canonical_ids": "⿻王丶", + "expanded_ids": "⿻王丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "玉" + ] + }, + { + "character": "王", + "codepoint": "U+738B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-738B", + "status": "leaf_self_fallback", + "ids": "王", + "canonical_ids": "王", + "expanded_ids": "王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玌", + "codepoint": "U+738C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-738C", + "status": "exact_ids", + "ids": "⿰王乚", + "canonical_ids": "⿰王乚", + "expanded_ids": "⿰王乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玍", + "codepoint": "U+738D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-738D", + "status": "exact_ids", + "ids": "⿻丿王", + "canonical_ids": "⿻丿王", + "expanded_ids": "⿻丿王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玎", + "codepoint": "U+738E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-738E", + "status": "exact_ids", + "ids": "⿰王丁", + "canonical_ids": "⿰王丁", + "expanded_ids": "⿰王⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玏", + "codepoint": "U+738F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-738F", + "status": "exact_ids", + "ids": "⿰王力", + "canonical_ids": "⿰王力", + "expanded_ids": "⿰王力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玐", + "codepoint": "U+7390", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7390", + "status": "exact_ids", + "ids": "⿰王八", + "canonical_ids": "⿰王八", + "expanded_ids": "⿰王八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玑", + "codepoint": "U+7391", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7391", + "status": "exact_ids", + "ids": "⿰王几", + "canonical_ids": "⿰王几", + "expanded_ids": "⿰王几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玒", + "codepoint": "U+7392", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7392", + "status": "exact_ids", + "ids": "⿰王工", + "canonical_ids": "⿰王工", + "expanded_ids": "⿰王工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玓", + "codepoint": "U+7393", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7393", + "status": "exact_ids", + "ids": "⿰王勺", + "canonical_ids": "⿰王勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玔", + "codepoint": "U+7394", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7394", + "status": "exact_ids", + "ids": "⿰王川", + "canonical_ids": "⿰王川", + "expanded_ids": "⿰王川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "川", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玕", + "codepoint": "U+7395", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7395", + "status": "exact_ids", + "ids": "⿰王干", + "canonical_ids": "⿰王干", + "expanded_ids": "⿰王⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玖", + "codepoint": "U+7396", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7396", + "status": "exact_ids", + "ids": "⿰王久", + "canonical_ids": "⿰王久", + "expanded_ids": "⿰王久", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "久", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玗", + "codepoint": "U+7397", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7397", + "status": "exact_ids", + "ids": "⿰王于", + "canonical_ids": "⿰王于", + "expanded_ids": "⿰王⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玘", + "codepoint": "U+7398", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7398", + "status": "exact_ids", + "ids": "⿰王己", + "canonical_ids": "⿰王己", + "expanded_ids": "⿰王己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玙", + "codepoint": "U+7399", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7399", + "status": "exact_ids", + "ids": "⿰王与", + "canonical_ids": "⿰王与", + "expanded_ids": "⿰王与", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "与", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玚", + "codepoint": "U+739A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-739A", + "status": "exact_ids", + "ids": "⿰王𠃓", + "canonical_ids": "⿰王𠃓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "𠃓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玛", + "codepoint": "U+739B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-739B", + "status": "exact_ids", + "ids": "⿰王马", + "canonical_ids": "⿰王马", + "expanded_ids": "⿰王马", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玜", + "codepoint": "U+739C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-739C", + "status": "exact_ids", + "ids": "⿰王公", + "canonical_ids": "⿰王公", + "expanded_ids": "⿰王⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玝", + "codepoint": "U+739D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-739D", + "status": "exact_ids", + "ids": "⿰王午", + "canonical_ids": "⿰王午", + "expanded_ids": "⿰王⿱⿻丿一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "十", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玞", + "codepoint": "U+739E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-739E", + "status": "exact_ids", + "ids": "⿰王夫", + "canonical_ids": "⿰王夫", + "expanded_ids": "⿰王⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玟", + "codepoint": "U+739F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-739F", + "status": "exact_ids", + "ids": "⿰王文", + "canonical_ids": "⿰王文", + "expanded_ids": "⿰王文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玠", + "codepoint": "U+73A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73A0", + "status": "exact_ids", + "ids": "⿰王介", + "canonical_ids": "⿰王介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玡", + "codepoint": "U+73A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73A1", + "status": "exact_ids", + "ids": "⿰王牙", + "canonical_ids": "⿰王牙", + "expanded_ids": "⿰王牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玢", + "codepoint": "U+73A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73A2", + "status": "exact_ids", + "ids": "⿰王分", + "canonical_ids": "⿰王分", + "expanded_ids": "⿰王⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玣", + "codepoint": "U+73A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73A3", + "status": "exact_ids", + "ids": "⿰王卞", + "canonical_ids": "⿰王卞", + "expanded_ids": "⿰王⿱亠卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "卜", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玤", + "codepoint": "U+73A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73A4", + "status": "exact_ids", + "ids": "⿰王丰", + "canonical_ids": "⿰王丰", + "expanded_ids": "⿰王丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玥", + "codepoint": "U+73A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73A5", + "status": "exact_ids", + "ids": "⿰王月", + "canonical_ids": "⿰王月", + "expanded_ids": "⿰王月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玦", + "codepoint": "U+73A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73A6", + "status": "exact_ids", + "ids": "⿰王夬", + "canonical_ids": "⿰王夬", + "expanded_ids": "⿰王⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "大", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玧", + "codepoint": "U+73A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73A7", + "status": "exact_ids", + "ids": "⿰王允", + "canonical_ids": "⿰王允", + "expanded_ids": "⿰王⿱厶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玨", + "codepoint": "U+73A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73A8", + "status": "exact_ids", + "ids": "⿰王王", + "canonical_ids": "⿰王王", + "expanded_ids": "⿰王王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玩", + "codepoint": "U+73A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73A9", + "status": "exact_ids", + "ids": "⿰王元", + "canonical_ids": "⿰王元", + "expanded_ids": "⿰王⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玪", + "codepoint": "U+73AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73AA", + "status": "exact_ids", + "ids": "⿰王今", + "canonical_ids": "⿰王今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "王" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玫", + "codepoint": "U+73AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73AB", + "status": "exact_ids", + "ids": "⿰王攵", + "canonical_ids": "⿰王攵", + "expanded_ids": "⿰王攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玬", + "codepoint": "U+73AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73AC", + "status": "exact_ids", + "ids": "⿰王丹", + "canonical_ids": "⿰王丹", + "expanded_ids": "⿰王丹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丹", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玭", + "codepoint": "U+73AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73AD", + "status": "exact_ids", + "ids": "⿰王比", + "canonical_ids": "⿰王比", + "expanded_ids": "⿰王⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玮", + "codepoint": "U+73AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73AE", + "status": "exact_ids", + "ids": "⿰王韦", + "canonical_ids": "⿰王韦", + "expanded_ids": "⿰王韦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "韦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "环", + "codepoint": "U+73AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73AF", + "status": "exact_ids", + "ids": "⿰王不", + "canonical_ids": "⿰王不", + "expanded_ids": "⿰王不", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "现", + "codepoint": "U+73B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73B0", + "status": "exact_ids", + "ids": "⿰王见", + "canonical_ids": "⿰王见", + "expanded_ids": "⿰王⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玱", + "codepoint": "U+73B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73B1", + "status": "exact_ids", + "ids": "⿰王仓", + "canonical_ids": "⿰王仓", + "expanded_ids": "⿰王⿱人㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "人", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玲", + "codepoint": "U+73B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73B2", + "status": "exact_ids", + "ids": "⿰王令", + "canonical_ids": "⿰王令", + "expanded_ids": "⿰王⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "王", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玳", + "codepoint": "U+73B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73B3", + "status": "exact_ids", + "ids": "⿰王代", + "canonical_ids": "⿰王代", + "expanded_ids": "⿰王⿰亻弋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "弋", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玴", + "codepoint": "U+73B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73B4", + "status": "exact_ids", + "ids": "⿰王世", + "canonical_ids": "⿰王世", + "expanded_ids": "⿰王世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玵", + "codepoint": "U+73B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73B5", + "status": "exact_ids", + "ids": "⿰王甘", + "canonical_ids": "⿰王甘", + "expanded_ids": "⿰王甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玶", + "codepoint": "U+73B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73B6", + "status": "exact_ids", + "ids": "⿰王平", + "canonical_ids": "⿰王平", + "expanded_ids": "⿰王⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "十", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玷", + "codepoint": "U+73B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73B7", + "status": "exact_ids", + "ids": "⿰王占", + "canonical_ids": "⿰王占", + "expanded_ids": "⿰王⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玸", + "codepoint": "U+73B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73B8", + "status": "exact_ids", + "ids": "⿰王包", + "canonical_ids": "⿰王包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玹", + "codepoint": "U+73B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73B9", + "status": "exact_ids", + "ids": "⿰王玄", + "canonical_ids": "⿰王玄", + "expanded_ids": "⿰王⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玺", + "codepoint": "U+73BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73BA", + "status": "exact_ids", + "ids": "⿱尔玉", + "canonical_ids": "⿱尔玉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "小", + "王" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玻", + "codepoint": "U+73BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73BB", + "status": "exact_ids", + "ids": "⿰王皮", + "canonical_ids": "⿰王皮", + "expanded_ids": "⿰王皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玼", + "codepoint": "U+73BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73BC", + "status": "exact_ids", + "ids": "⿰王此", + "canonical_ids": "⿰王此", + "expanded_ids": "⿰王⿰止匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "止", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玽", + "codepoint": "U+73BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73BD", + "status": "exact_ids", + "ids": "⿰王句", + "canonical_ids": "⿰王句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玾", + "codepoint": "U+73BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73BE", + "status": "exact_ids", + "ids": "⿰王甲", + "canonical_ids": "⿰王甲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "甲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "玿", + "codepoint": "U+73BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73BF", + "status": "exact_ids", + "ids": "⿰王召", + "canonical_ids": "⿰王召", + "expanded_ids": "⿰王⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珀", + "codepoint": "U+73C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73C0", + "status": "exact_ids", + "ids": "⿰王白", + "canonical_ids": "⿰王白", + "expanded_ids": "⿰王⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珁", + "codepoint": "U+73C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73C1", + "status": "exact_ids", + "ids": "⿰王瓦", + "canonical_ids": "⿰王瓦", + "expanded_ids": "⿰王瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珂", + "codepoint": "U+73C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73C2", + "status": "exact_ids", + "ids": "⿰王可", + "canonical_ids": "⿰王可", + "expanded_ids": "⿰王⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珃", + "codepoint": "U+73C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73C3", + "status": "exact_ids", + "ids": "⿰王冉", + "canonical_ids": "⿰王冉", + "expanded_ids": "⿰王⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "土", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珄", + "codepoint": "U+73C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73C4", + "status": "exact_ids", + "ids": "⿰王生", + "canonical_ids": "⿰王生", + "expanded_ids": "⿰王⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "牛", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珅", + "codepoint": "U+73C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73C5", + "status": "exact_ids", + "ids": "⿰王申", + "canonical_ids": "⿰王申", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珆", + "codepoint": "U+73C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73C6", + "status": "exact_ids", + "ids": "⿰王台", + "canonical_ids": "⿰王台", + "expanded_ids": "⿰王⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珇", + "codepoint": "U+73C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73C7", + "status": "exact_ids", + "ids": "⿰王且", + "canonical_ids": "⿰王且", + "expanded_ids": "⿰王且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珈", + "codepoint": "U+73C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73C8", + "status": "exact_ids", + "ids": "⿰王加", + "canonical_ids": "⿰王加", + "expanded_ids": "⿰王⿰力口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珉", + "codepoint": "U+73C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73C9", + "status": "exact_ids", + "ids": "⿰王民", + "canonical_ids": "⿰王民", + "expanded_ids": "⿰王民", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "民", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珊", + "codepoint": "U+73CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73CA", + "status": "exact_ids", + "ids": "⿰王冊", + "canonical_ids": "⿰王冊", + "expanded_ids": "⿰王⿻冂廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "廾", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珋", + "codepoint": "U+73CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73CB", + "status": "exact_ids", + "ids": "⿰王卯", + "canonical_ids": "⿰王卯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "卯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珌", + "codepoint": "U+73CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73CC", + "status": "exact_ids", + "ids": "⿰王必", + "canonical_ids": "⿰王必", + "expanded_ids": "⿰王⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珍", + "codepoint": "U+73CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73CD", + "status": "exact_ids", + "ids": "⿰王㐱", + "canonical_ids": "⿰王㐱", + "expanded_ids": "⿰王⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "彡", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珎", + "codepoint": "U+73CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73CE", + "status": "exact_ids", + "ids": "⿰王尔", + "canonical_ids": "⿰王尔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "王" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珏", + "codepoint": "U+73CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73CF", + "status": "exact_ids", + "ids": "⿰王玉", + "canonical_ids": "⿰王玉", + "expanded_ids": "⿰王⿻王丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珐", + "codepoint": "U+73D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73D0", + "status": "exact_ids", + "ids": "⿰王去", + "canonical_ids": "⿰王去", + "expanded_ids": "⿰王⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珑", + "codepoint": "U+73D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73D1", + "status": "exact_ids", + "ids": "⿰王龙", + "canonical_ids": "⿰王龙", + "expanded_ids": "⿰王龙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珒", + "codepoint": "U+73D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73D2", + "status": "exact_ids", + "ids": "⿰王聿", + "canonical_ids": "⿰王聿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珓", + "codepoint": "U+73D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73D3", + "status": "exact_ids", + "ids": "⿰王交", + "canonical_ids": "⿰王交", + "expanded_ids": "⿰王⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "父", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珔", + "codepoint": "U+73D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73D4", + "status": "exact_ids", + "ids": "⿰王存", + "canonical_ids": "⿰王存", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "存" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珕", + "codepoint": "U+73D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73D5", + "status": "exact_ids", + "ids": "⿰王劦", + "canonical_ids": "⿰王劦", + "expanded_ids": "⿰王⿱力⿰力力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珖", + "codepoint": "U+73D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73D6", + "status": "exact_ids", + "ids": "⿰王光", + "canonical_ids": "⿰王光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "王" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珗", + "codepoint": "U+73D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73D7", + "status": "exact_ids", + "ids": "⿰王先", + "canonical_ids": "⿰王先", + "expanded_ids": "⿰王⿱牛儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "牛", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珘", + "codepoint": "U+73D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73D8", + "status": "exact_ids", + "ids": "⿰王舟", + "canonical_ids": "⿰王舟", + "expanded_ids": "⿰王舟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珙", + "codepoint": "U+73D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73D9", + "status": "exact_ids", + "ids": "⿰王共", + "canonical_ids": "⿰王共", + "expanded_ids": "⿰王⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珚", + "codepoint": "U+73DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73DA", + "status": "exact_ids", + "ids": "⿰王因", + "canonical_ids": "⿰王因", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珛", + "codepoint": "U+73DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73DB", + "status": "exact_ids", + "ids": "⿰王有", + "canonical_ids": "⿰王有", + "expanded_ids": "⿰王⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "月", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珜", + "codepoint": "U+73DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73DC", + "status": "exact_ids", + "ids": "⿰王羊", + "canonical_ids": "⿰王羊", + "expanded_ids": "⿰王羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珝", + "codepoint": "U+73DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73DD", + "status": "exact_ids", + "ids": "⿰王羽", + "canonical_ids": "⿰王羽", + "expanded_ids": "⿰王⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珞", + "codepoint": "U+73DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73DE", + "status": "exact_ids", + "ids": "⿰王各", + "canonical_ids": "⿰王各", + "expanded_ids": "⿰王⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珟", + "codepoint": "U+73DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73DF", + "status": "exact_ids", + "ids": "⿰王夙", + "canonical_ids": "⿰王夙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "夙" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珠", + "codepoint": "U+73E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73E0", + "status": "exact_ids", + "ids": "⿰王朱", + "canonical_ids": "⿰王朱", + "expanded_ids": "⿰王⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珡", + "codepoint": "U+73E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73E1", + "status": "exact_ids", + "ids": "⿱⿰王王人", + "canonical_ids": "⿱⿰王王人", + "expanded_ids": "⿱⿰王王人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珢", + "codepoint": "U+73E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73E2", + "status": "exact_ids", + "ids": "⿰王艮", + "canonical_ids": "⿰王艮", + "expanded_ids": "⿰王艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珣", + "codepoint": "U+73E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73E3", + "status": "exact_ids", + "ids": "⿰王旬", + "canonical_ids": "⿰王旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珤", + "codepoint": "U+73E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73E4", + "status": "exact_ids", + "ids": "⿰王缶", + "canonical_ids": "⿰王缶", + "expanded_ids": "⿰王缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珥", + "codepoint": "U+73E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73E5", + "status": "exact_ids", + "ids": "⿰王耳", + "canonical_ids": "⿰王耳", + "expanded_ids": "⿰王耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珦", + "codepoint": "U+73E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73E6", + "status": "exact_ids", + "ids": "⿰王向", + "canonical_ids": "⿰王向", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珧", + "codepoint": "U+73E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73E7", + "status": "exact_ids", + "ids": "⿰王兆", + "canonical_ids": "⿰王兆", + "expanded_ids": "⿰王兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珨", + "codepoint": "U+73E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73E8", + "status": "exact_ids", + "ids": "⿰王合", + "canonical_ids": "⿰王合", + "expanded_ids": "⿰王⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珩", + "codepoint": "U+73E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73E9", + "status": "exact_ids", + "ids": "⿰王行", + "canonical_ids": "⿰王行", + "expanded_ids": "⿰王⿰彳彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珪", + "codepoint": "U+73EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73EA", + "status": "exact_ids", + "ids": "⿰王圭", + "canonical_ids": "⿰王圭", + "expanded_ids": "⿰王⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珫", + "codepoint": "U+73EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73EB", + "status": "exact_ids", + "ids": "⿰王充", + "canonical_ids": "⿰王充", + "expanded_ids": "⿰王⿱亠⿱厶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "儿", + "厶", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珬", + "codepoint": "U+73EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73EC", + "status": "exact_ids", + "ids": "⿰王戌", + "canonical_ids": "⿰王戌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "戌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "班", + "codepoint": "U+73ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73ED", + "status": "exact_ids", + "ids": "⿲王刂王", + "canonical_ids": "⿲王刂王", + "expanded_ids": "⿲王刂王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珮", + "codepoint": "U+73EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73EE", + "status": "exact_ids", + "ids": "⿰王凧", + "canonical_ids": "⿰王凧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "凧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珯", + "codepoint": "U+73EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73EF", + "status": "exact_ids", + "ids": "⿰王老", + "canonical_ids": "⿰王老", + "expanded_ids": "⿰王⿱⿻土丿匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珰", + "codepoint": "U+73F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73F0", + "status": "exact_ids", + "ids": "⿰王当", + "canonical_ids": "⿰王当", + "expanded_ids": "⿰王⿱小彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "彐", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珱", + "codepoint": "U+73F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73F1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珲", + "codepoint": "U+73F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73F2", + "status": "exact_ids", + "ids": "⿰王军", + "canonical_ids": "⿰王军", + "expanded_ids": "⿰王⿱冖车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "王", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珳", + "codepoint": "U+73F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73F3", + "status": "exact_ids", + "ids": "⿰王彣", + "canonical_ids": "⿰王彣", + "expanded_ids": "⿰王⿰文彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "文", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珴", + "codepoint": "U+73F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73F4", + "status": "exact_ids", + "ids": "⿰王我", + "canonical_ids": "⿰王我", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "王" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珵", + "codepoint": "U+73F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73F5", + "status": "exact_ids", + "ids": "⿰王呈", + "canonical_ids": "⿰王呈", + "expanded_ids": "⿰王⿱口王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珶", + "codepoint": "U+73F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73F6", + "status": "exact_ids", + "ids": "⿰王弟", + "canonical_ids": "⿰王弟", + "expanded_ids": "⿰王⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珷", + "codepoint": "U+73F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73F7", + "status": "exact_ids", + "ids": "⿰王武", + "canonical_ids": "⿰王武", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "武" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珸", + "codepoint": "U+73F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73F8", + "status": "exact_ids", + "ids": "⿰王吾", + "canonical_ids": "⿰王吾", + "expanded_ids": "⿰王⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珹", + "codepoint": "U+73F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73F9", + "status": "exact_ids", + "ids": "⿰王成", + "canonical_ids": "⿰王成", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "成" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珺", + "codepoint": "U+73FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73FA", + "status": "exact_ids", + "ids": "⿰王君", + "canonical_ids": "⿰王君", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "王" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珻", + "codepoint": "U+73FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73FB", + "status": "exact_ids", + "ids": "⿰王每", + "canonical_ids": "⿰王每", + "expanded_ids": "⿰王⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "母", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珼", + "codepoint": "U+73FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73FC", + "status": "exact_ids", + "ids": "⿰王貝", + "canonical_ids": "⿰王貝", + "expanded_ids": "⿰王⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "王", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珽", + "codepoint": "U+73FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73FD", + "status": "exact_ids", + "ids": "⿰王廷", + "canonical_ids": "⿰王廷", + "expanded_ids": "⿰王⿰廴⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "廴", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "現", + "codepoint": "U+73FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73FE", + "status": "exact_ids", + "ids": "⿰王見", + "canonical_ids": "⿰王見", + "expanded_ids": "⿰王⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "王", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "珿", + "codepoint": "U+73FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-73FF", + "status": "exact_ids", + "ids": "⿰王足", + "canonical_ids": "⿰王足", + "expanded_ids": "⿰王⿱口龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "王", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琀", + "codepoint": "U+7400", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7400", + "status": "exact_ids", + "ids": "⿰王含", + "canonical_ids": "⿰王含", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "王" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琁", + "codepoint": "U+7401", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7401", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琂", + "codepoint": "U+7402", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7402", + "status": "exact_ids", + "ids": "⿰王言", + "canonical_ids": "⿰王言", + "expanded_ids": "⿰王言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "球", + "codepoint": "U+7403", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7403", + "status": "exact_ids", + "ids": "⿰王求", + "canonical_ids": "⿰王求", + "expanded_ids": "⿰王求", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "求", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琄", + "codepoint": "U+7404", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7404", + "status": "exact_ids", + "ids": "⿰王肙", + "canonical_ids": "⿰王肙", + "expanded_ids": "⿰王⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琅", + "codepoint": "U+7405", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7405", + "status": "exact_ids", + "ids": "⿰王良", + "canonical_ids": "⿰王良", + "expanded_ids": "⿰王⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "理", + "codepoint": "U+7406", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7406", + "status": "exact_ids", + "ids": "⿰王里", + "canonical_ids": "⿰王里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琇", + "codepoint": "U+7407", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7407", + "status": "exact_ids", + "ids": "⿰王秀", + "canonical_ids": "⿰王秀", + "expanded_ids": "⿰王⿱⿻丿木乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乃", + "木", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琈", + "codepoint": "U+7408", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7408", + "status": "exact_ids", + "ids": "⿰王孚", + "canonical_ids": "⿰王孚", + "expanded_ids": "⿰王⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "爫", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琉", + "codepoint": "U+7409", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7409", + "status": "exact_ids", + "ids": "⿰王㐬", + "canonical_ids": "⿰王㐬", + "expanded_ids": "⿰王⿱亠⿱厶川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "厶", + "川", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琊", + "codepoint": "U+740A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-740A", + "status": "exact_ids", + "ids": "⿰王邪", + "canonical_ids": "⿰王邪", + "expanded_ids": "⿰王⿰牙阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙", + "王", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琋", + "codepoint": "U+740B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-740B", + "status": "exact_ids", + "ids": "⿰王希", + "canonical_ids": "⿰王希", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "王" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琌", + "codepoint": "U+740C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-740C", + "status": "exact_ids", + "ids": "⿰王岑", + "canonical_ids": "⿰王岑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "山", + "王" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琍", + "codepoint": "U+740D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-740D", + "status": "exact_ids", + "ids": "⿰王利", + "canonical_ids": "⿰王利", + "expanded_ids": "⿰王⿰⿻丿木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "木", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琎", + "codepoint": "U+740E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-740E", + "status": "exact_ids", + "ids": "⿰王进", + "canonical_ids": "⿰王进", + "expanded_ids": "⿰王⿰辶井", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "井", + "王", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琏", + "codepoint": "U+740F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-740F", + "status": "exact_ids", + "ids": "⿰王连", + "canonical_ids": "⿰王连", + "expanded_ids": "⿰王⿰辶车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "车", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琐", + "codepoint": "U+7410", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7410", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琑", + "codepoint": "U+7411", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7411", + "status": "exact_ids", + "ids": "⿰王肖", + "canonical_ids": "⿰王肖", + "expanded_ids": "⿰王⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琒", + "codepoint": "U+7412", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7412", + "status": "exact_ids", + "ids": "⿰王夆", + "canonical_ids": "⿰王夆", + "expanded_ids": "⿰王⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琓", + "codepoint": "U+7413", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7413", + "status": "exact_ids", + "ids": "⿰王完", + "canonical_ids": "⿰王完", + "expanded_ids": "⿰王⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "宀", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琔", + "codepoint": "U+7414", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7414", + "status": "exact_ids", + "ids": "⿰王定", + "canonical_ids": "⿰王定", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "王" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琕", + "codepoint": "U+7415", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7415", + "status": "exact_ids", + "ids": "⿰王卑", + "canonical_ids": "⿰王卑", + "expanded_ids": "⿰王卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琖", + "codepoint": "U+7416", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7416", + "status": "exact_ids", + "ids": "⿰王戔", + "canonical_ids": "⿰王戔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琗", + "codepoint": "U+7417", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7417", + "status": "exact_ids", + "ids": "⿰王卒", + "canonical_ids": "⿰王卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琘", + "codepoint": "U+7418", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7418", + "status": "exact_ids", + "ids": "⿰王昏", + "canonical_ids": "⿰王昏", + "expanded_ids": "⿰王⿱氏日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "氏", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琙", + "codepoint": "U+7419", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7419", + "status": "exact_ids", + "ids": "⿰王或", + "canonical_ids": "⿰王或", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "或" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琚", + "codepoint": "U+741A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-741A", + "status": "exact_ids", + "ids": "⿰王居", + "canonical_ids": "⿰王居", + "expanded_ids": "⿰王⿱尸⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "尸", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琛", + "codepoint": "U+741B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-741B", + "status": "exact_ids", + "ids": "⿰王罙", + "canonical_ids": "⿰王罙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "王" + ], + "unresolved_leaves": [ + "⺳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琜", + "codepoint": "U+741C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-741C", + "status": "exact_ids", + "ids": "⿰王來", + "canonical_ids": "⿰王來", + "expanded_ids": "⿰王⿻木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "木", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琝", + "codepoint": "U+741D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-741D", + "status": "exact_ids", + "ids": "⿰王旻", + "canonical_ids": "⿰王旻", + "expanded_ids": "⿰王⿱日文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琞", + "codepoint": "U+741E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-741E", + "status": "exact_ids", + "ids": "⿱明玉", + "canonical_ids": "⿱明玉", + "expanded_ids": "⿱⿰日月⿻王丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "月", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琟", + "codepoint": "U+741F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-741F", + "status": "exact_ids", + "ids": "⿰王隹", + "canonical_ids": "⿰王隹", + "expanded_ids": "⿰王隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琠", + "codepoint": "U+7420", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7420", + "status": "exact_ids", + "ids": "⿰王典", + "canonical_ids": "⿰王典", + "expanded_ids": "⿰王典", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "典", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琡", + "codepoint": "U+7421", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7421", + "status": "exact_ids", + "ids": "⿰王叔", + "canonical_ids": "⿰王叔", + "expanded_ids": "⿰王⿰⿱上小又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "又", + "小", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琢", + "codepoint": "U+7422", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7422", + "status": "exact_ids", + "ids": "⿰王豕", + "canonical_ids": "⿰王豕", + "expanded_ids": "⿰王豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琣", + "codepoint": "U+7423", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7423", + "status": "exact_ids", + "ids": "⿰王咅", + "canonical_ids": "⿰王咅", + "expanded_ids": "⿰王⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "王", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琤", + "codepoint": "U+7424", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7424", + "status": "exact_ids", + "ids": "⿰王爭", + "canonical_ids": "⿰王爭", + "expanded_ids": "⿰王⿱爫肀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爫", + "王", + "肀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琥", + "codepoint": "U+7425", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7425", + "status": "exact_ids", + "ids": "⿰王虎", + "canonical_ids": "⿰王虎", + "expanded_ids": "⿰王⿱虍儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "王", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琦", + "codepoint": "U+7426", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7426", + "status": "exact_ids", + "ids": "⿰王奇", + "canonical_ids": "⿰王奇", + "expanded_ids": "⿰王⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琧", + "codepoint": "U+7427", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7427", + "status": "exact_ids", + "ids": "⿱亞玉", + "canonical_ids": "⿱亞玉", + "expanded_ids": "⿱亞⿻王丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亞", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琨", + "codepoint": "U+7428", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7428", + "status": "exact_ids", + "ids": "⿰王昆", + "canonical_ids": "⿰王昆", + "expanded_ids": "⿰王⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琩", + "codepoint": "U+7429", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7429", + "status": "exact_ids", + "ids": "⿰王昌", + "canonical_ids": "⿰王昌", + "expanded_ids": "⿰王⿱日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琪", + "codepoint": "U+742A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-742A", + "status": "exact_ids", + "ids": "⿰王其", + "canonical_ids": "⿰王其", + "expanded_ids": "⿰王其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琫", + "codepoint": "U+742B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-742B", + "status": "exact_ids", + "ids": "⿰王奉", + "canonical_ids": "⿰王奉", + "expanded_ids": "⿰王⿱𡗗⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "王", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琬", + "codepoint": "U+742C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-742C", + "status": "exact_ids", + "ids": "⿰王宛", + "canonical_ids": "⿰王宛", + "expanded_ids": "⿰王⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琭", + "codepoint": "U+742D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-742D", + "status": "exact_ids", + "ids": "⿰王录", + "canonical_ids": "⿰王录", + "expanded_ids": "⿰王⿱彐氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "氺", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琮", + "codepoint": "U+742E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-742E", + "status": "exact_ids", + "ids": "⿰王宗", + "canonical_ids": "⿰王宗", + "expanded_ids": "⿰王⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琯", + "codepoint": "U+742F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-742F", + "status": "exact_ids", + "ids": "⿰王官", + "canonical_ids": "⿰王官", + "expanded_ids": "⿰王⿱宀㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "宀", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琰", + "codepoint": "U+7430", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7430", + "status": "exact_ids", + "ids": "⿰王炎", + "canonical_ids": "⿰王炎", + "expanded_ids": "⿰王⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琱", + "codepoint": "U+7431", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7431", + "status": "exact_ids", + "ids": "⿰王周", + "canonical_ids": "⿰王周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琲", + "codepoint": "U+7432", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7432", + "status": "exact_ids", + "ids": "⿰王非", + "canonical_ids": "⿰王非", + "expanded_ids": "⿰王非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琳", + "codepoint": "U+7433", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7433", + "status": "exact_ids", + "ids": "⿰王林", + "canonical_ids": "⿰王林", + "expanded_ids": "⿰王⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琴", + "codepoint": "U+7434", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7434", + "status": "exact_ids", + "ids": "⿱⿰王王今", + "canonical_ids": "⿱⿰王王今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "王" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琵", + "codepoint": "U+7435", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7435", + "status": "exact_ids", + "ids": "⿱⿰王王比", + "canonical_ids": "⿱⿰王王比", + "expanded_ids": "⿱⿰王王⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琶", + "codepoint": "U+7436", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7436", + "status": "exact_ids", + "ids": "⿱⿰王王巴", + "canonical_ids": "⿱⿰王王巴", + "expanded_ids": "⿱⿰王王巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琷", + "codepoint": "U+7437", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7437", + "status": "exact_ids", + "ids": "⿰王羌", + "canonical_ids": "⿰王羌", + "expanded_ids": "⿰王⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "王", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琸", + "codepoint": "U+7438", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7438", + "status": "exact_ids", + "ids": "⿰王卓", + "canonical_ids": "⿰王卓", + "expanded_ids": "⿰王⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琹", + "codepoint": "U+7439", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7439", + "status": "exact_ids", + "ids": "⿱⿰王王木", + "canonical_ids": "⿱⿰王王木", + "expanded_ids": "⿱⿰王王木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琺", + "codepoint": "U+743A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-743A", + "status": "exact_ids", + "ids": "⿰王法", + "canonical_ids": "⿰王法", + "expanded_ids": "⿰王⿰氵⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "氵", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琻", + "codepoint": "U+743B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-743B", + "status": "exact_ids", + "ids": "⿰王金", + "canonical_ids": "⿰王金", + "expanded_ids": "⿰王金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琼", + "codepoint": "U+743C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-743C", + "status": "exact_ids", + "ids": "⿰王京", + "canonical_ids": "⿰王京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琽", + "codepoint": "U+743D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-743D", + "status": "exact_ids", + "ids": "⿰王者", + "canonical_ids": "⿰王者", + "expanded_ids": "⿰王⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琾", + "codepoint": "U+743E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-743E", + "status": "exact_ids", + "ids": "⿰王界", + "canonical_ids": "⿰王界", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "田" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "琿", + "codepoint": "U+743F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-743F", + "status": "exact_ids", + "ids": "⿰王軍", + "canonical_ids": "⿰王軍", + "expanded_ids": "⿰王⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "王", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑀", + "codepoint": "U+7440", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7440", + "status": "exact_ids", + "ids": "⿰王禹", + "canonical_ids": "⿰王禹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "禹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑁", + "codepoint": "U+7441", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7441", + "status": "exact_ids", + "ids": "⿰王冒", + "canonical_ids": "⿰王冒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "目" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑂", + "codepoint": "U+7442", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7442", + "status": "exact_ids", + "ids": "⿰王眉", + "canonical_ids": "⿰王眉", + "expanded_ids": "⿰王⿱⿻尸丨目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "尸", + "王", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑃", + "codepoint": "U+7443", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7443", + "status": "exact_ids", + "ids": "⿰王春", + "canonical_ids": "⿰王春", + "expanded_ids": "⿰王⿱𡗗日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "王", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑄", + "codepoint": "U+7444", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7444", + "status": "exact_ids", + "ids": "⿰王宣", + "canonical_ids": "⿰王宣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "王" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑅", + "codepoint": "U+7445", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7445", + "status": "exact_ids", + "ids": "⿰王是", + "canonical_ids": "⿰王是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "王" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑆", + "codepoint": "U+7446", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7446", + "status": "exact_ids", + "ids": "⿰王星", + "canonical_ids": "⿰王星", + "expanded_ids": "⿰王⿱日⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "牛", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑇", + "codepoint": "U+7447", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7447", + "status": "exact_ids", + "ids": "⿰王毒", + "canonical_ids": "⿰王毒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毋", + "王" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑈", + "codepoint": "U+7448", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7448", + "status": "exact_ids", + "ids": "⿰王柔", + "canonical_ids": "⿰王柔", + "expanded_ids": "⿰王⿱矛木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "王", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑉", + "codepoint": "U+7449", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7449", + "status": "exact_ids", + "ids": "⿰王昬", + "canonical_ids": "⿰王昬", + "expanded_ids": "⿰王⿱民日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "民", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑊", + "codepoint": "U+744A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-744A", + "status": "exact_ids", + "ids": "⿰王咸", + "canonical_ids": "⿰王咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑋", + "codepoint": "U+744B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-744B", + "status": "exact_ids", + "ids": "⿰王韋", + "canonical_ids": "⿰王韋", + "expanded_ids": "⿰王韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑌", + "codepoint": "U+744C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-744C", + "status": "exact_ids", + "ids": "⿰王耎", + "canonical_ids": "⿰王耎", + "expanded_ids": "⿰王⿱而大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "王", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑍", + "codepoint": "U+744D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-744D", + "status": "exact_ids", + "ids": "⿰王奐", + "canonical_ids": "⿰王奐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "奐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑎", + "codepoint": "U+744E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-744E", + "status": "exact_ids", + "ids": "⿰王皆", + "canonical_ids": "⿰王皆", + "expanded_ids": "⿰王⿱⿰匕匕⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑏", + "codepoint": "U+744F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-744F", + "status": "exact_ids", + "ids": "⿰王穿", + "canonical_ids": "⿰王穿", + "expanded_ids": "⿰王⿱⿱宀八牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "牙", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑐", + "codepoint": "U+7450", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7450", + "status": "exact_ids", + "ids": "⿰王前", + "canonical_ids": "⿰王前", + "expanded_ids": "⿰王⿱止⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "月", + "止", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑑", + "codepoint": "U+7451", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7451", + "status": "exact_ids", + "ids": "⿰王彖", + "canonical_ids": "⿰王彖", + "expanded_ids": "⿰王⿱彑𧰨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "王", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑒", + "codepoint": "U+7452", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7452", + "status": "exact_ids", + "ids": "⿰王昜", + "canonical_ids": "⿰王昜", + "expanded_ids": "⿰王⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑓", + "codepoint": "U+7453", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7453", + "status": "exact_ids", + "ids": "⿰王柬", + "canonical_ids": "⿰王柬", + "expanded_ids": "⿰王柬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "柬", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑔", + "codepoint": "U+7454", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7454", + "status": "exact_ids", + "ids": "⿰王泉", + "canonical_ids": "⿰王泉", + "expanded_ids": "⿰王⿱⿻日丶水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "水", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑕", + "codepoint": "U+7455", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7455", + "status": "exact_ids", + "ids": "⿰王叚", + "canonical_ids": "⿰王叚", + "expanded_ids": "⿰王叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑖", + "codepoint": "U+7456", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7456", + "status": "exact_ids", + "ids": "⿰王段", + "canonical_ids": "⿰王段", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "段" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑗", + "codepoint": "U+7457", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7457", + "status": "exact_ids", + "ids": "⿰王爰", + "canonical_ids": "⿰王爰", + "expanded_ids": "⿰王⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "爫", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑘", + "codepoint": "U+7458", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7458", + "status": "exact_ids", + "ids": "⿰王耶", + "canonical_ids": "⿰王耶", + "expanded_ids": "⿰王⿰耳阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "耳", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑙", + "codepoint": "U+7459", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7459", + "status": "exact_ids", + "ids": "⿰王𡿺", + "canonical_ids": "⿰王𡿺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "王" + ], + "unresolved_leaves": [ + "囟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑚", + "codepoint": "U+745A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-745A", + "status": "exact_ids", + "ids": "⿰王胡", + "canonical_ids": "⿰王胡", + "expanded_ids": "⿰王⿰⿻十口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "月", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑛", + "codepoint": "U+745B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-745B", + "status": "exact_ids", + "ids": "⿰王英", + "canonical_ids": "⿰王英", + "expanded_ids": "⿰王⿱艹⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "王", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑜", + "codepoint": "U+745C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-745C", + "status": "exact_ids", + "ids": "⿰王兪", + "canonical_ids": "⿰王兪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "兪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑝", + "codepoint": "U+745D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-745D", + "status": "exact_ids", + "ids": "⿰王皇", + "canonical_ids": "⿰王皇", + "expanded_ids": "⿰王⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑞", + "codepoint": "U+745E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-745E", + "status": "exact_ids", + "ids": "⿰王耑", + "canonical_ids": "⿰王耑", + "expanded_ids": "⿰王⿱山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "王", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑟", + "codepoint": "U+745F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-745F", + "status": "exact_ids", + "ids": "⿱⿰王王必", + "canonical_ids": "⿱⿰王王必", + "expanded_ids": "⿱⿰王王⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑠", + "codepoint": "U+7460", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7460", + "status": "exact_ids", + "ids": "⿰王留", + "canonical_ids": "⿰王留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑡", + "codepoint": "U+7461", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7461", + "status": "exact_ids", + "ids": "⿰王師", + "canonical_ids": "⿰王師", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "師" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑢", + "codepoint": "U+7462", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7462", + "status": "exact_ids", + "ids": "⿰王容", + "canonical_ids": "⿰王容", + "expanded_ids": "⿰王⿱宀⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑣", + "codepoint": "U+7463", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7463", + "status": "exact_ids", + "ids": "⿰王𧴪", + "canonical_ids": "⿰王𧴪", + "expanded_ids": "⿰王⿱小⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "小", + "王", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑤", + "codepoint": "U+7464", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7464", + "status": "exact_ids", + "ids": "⿰王䍃", + "canonical_ids": "⿰王䍃", + "expanded_ids": "⿰王⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爪", + "王", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "瑶" + ] + }, + { + "character": "瑥", + "codepoint": "U+7465", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7465", + "status": "exact_ids", + "ids": "⿰王𥁕", + "canonical_ids": "⿰王𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "皿" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑦", + "codepoint": "U+7466", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7466", + "status": "exact_ids", + "ids": "⿰王烏", + "canonical_ids": "⿰王烏", + "expanded_ids": "⿰王烏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "烏", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑧", + "codepoint": "U+7467", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7467", + "status": "exact_ids", + "ids": "⿰王秦", + "canonical_ids": "⿰王秦", + "expanded_ids": "⿰王⿱𡗗⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "王", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑨", + "codepoint": "U+7468", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7468", + "status": "exact_ids", + "ids": "⿰王晉", + "canonical_ids": "⿰王晉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "晉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑩", + "codepoint": "U+7469", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7469", + "status": "exact_ids", + "ids": "⿳炏冖玉", + "canonical_ids": "⿳炏冖玉", + "expanded_ids": "⿳⿰火火冖⿻王丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "冖", + "火", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑪", + "codepoint": "U+746A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-746A", + "status": "exact_ids", + "ids": "⿰王馬", + "canonical_ids": "⿰王馬", + "expanded_ids": "⿰王馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑫", + "codepoint": "U+746B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-746B", + "status": "exact_ids", + "ids": "⿰王舀", + "canonical_ids": "⿰王舀", + "expanded_ids": "⿰王⿱爫臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爫", + "王", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑬", + "codepoint": "U+746C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-746C", + "status": "exact_ids", + "ids": "⿱流玉", + "canonical_ids": "⿱流玉", + "expanded_ids": "⿱⿰氵⿱亠⿱厶川⿻王丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亠", + "厶", + "川", + "氵", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑭", + "codepoint": "U+746D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-746D", + "status": "exact_ids", + "ids": "⿰王唐", + "canonical_ids": "⿰王唐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑮", + "codepoint": "U+746E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-746E", + "status": "exact_ids", + "ids": "⿰王栗", + "canonical_ids": "⿰王栗", + "expanded_ids": "⿰王⿱覀木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "王", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑯", + "codepoint": "U+746F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-746F", + "status": "exact_ids", + "ids": "⿰王郎", + "canonical_ids": "⿰王郎", + "expanded_ids": "⿰王⿰⿻丶艮阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王", + "艮", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑰", + "codepoint": "U+7470", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7470", + "status": "exact_ids", + "ids": "⿰王鬼", + "canonical_ids": "⿰王鬼", + "expanded_ids": "⿰王鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑱", + "codepoint": "U+7471", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7471", + "status": "exact_ids", + "ids": "⿰王真", + "canonical_ids": "⿰王真", + "expanded_ids": "⿰王⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "王", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑲", + "codepoint": "U+7472", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7472", + "status": "exact_ids", + "ids": "⿰王倉", + "canonical_ids": "⿰王倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑳", + "codepoint": "U+7473", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7473", + "status": "exact_ids", + "ids": "⿰王差", + "canonical_ids": "⿰王差", + "expanded_ids": "⿰王⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "王", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑴", + "codepoint": "U+7474", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7474", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑵", + "codepoint": "U+7475", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7475", + "status": "exact_ids", + "ids": "⿰王蚤", + "canonical_ids": "⿰王蚤", + "expanded_ids": "⿰王⿱⿻又丶虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "又", + "王", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑶", + "codepoint": "U+7476", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7476", + "status": "exact_ids", + "ids": "⿰王䍃", + "canonical_ids": "⿰王䍃", + "expanded_ids": "⿰王⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爪", + "王", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "瑤" + ] + }, + { + "character": "瑷", + "codepoint": "U+7477", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7477", + "status": "exact_ids", + "ids": "⿰王爱", + "canonical_ids": "⿰王爱", + "expanded_ids": "⿰王⿳爫冖⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "冖", + "又", + "爫", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑸", + "codepoint": "U+7478", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7478", + "status": "exact_ids", + "ids": "⿰王宾", + "canonical_ids": "⿰王宾", + "expanded_ids": "⿰王⿱宀⿱丘八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "八", + "宀", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑹", + "codepoint": "U+7479", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7479", + "status": "exact_ids", + "ids": "⿰王荼", + "canonical_ids": "⿰王荼", + "expanded_ids": "⿰王⿱艹⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "王", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑺", + "codepoint": "U+747A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-747A", + "status": "exact_ids", + "ids": "⿰王常", + "canonical_ids": "⿰王常", + "expanded_ids": "⿰王⿳小冖⿱口⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "口", + "小", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑻", + "codepoint": "U+747B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-747B", + "status": "exact_ids", + "ids": "⿰王貫", + "canonical_ids": "⿰王貫", + "expanded_ids": "⿰王⿱毌⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "毌", + "王", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑼", + "codepoint": "U+747C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-747C", + "status": "exact_ids", + "ids": "⿰王專", + "canonical_ids": "⿰王專", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "寸", + "王" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑽", + "codepoint": "U+747D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-747D", + "status": "exact_ids", + "ids": "⿰王從", + "canonical_ids": "⿰王從", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "從" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑾", + "codepoint": "U+747E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-747E", + "status": "exact_ids", + "ids": "⿰王堇", + "canonical_ids": "⿰王堇", + "expanded_ids": "⿰王堇", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瑿", + "codepoint": "U+747F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-747F", + "status": "exact_ids", + "ids": "⿱殹玉", + "canonical_ids": "⿱殹玉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "几", + "又", + "王" + ], + "unresolved_leaves": [ + "医" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璀", + "codepoint": "U+7480", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7480", + "status": "exact_ids", + "ids": "⿰王崔", + "canonical_ids": "⿰王崔", + "expanded_ids": "⿰王⿱山隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "王", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璁", + "codepoint": "U+7481", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7481", + "status": "exact_ids", + "ids": "⿰王悤", + "canonical_ids": "⿰王悤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "王" + ], + "unresolved_leaves": [ + "囱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璂", + "codepoint": "U+7482", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7482", + "status": "exact_ids", + "ids": "⿰王基", + "canonical_ids": "⿰王基", + "expanded_ids": "⿰王⿱其土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "土", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璃", + "codepoint": "U+7483", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7483", + "status": "exact_ids", + "ids": "⿰王离", + "canonical_ids": "⿰王离", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "王", + "禸" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璄", + "codepoint": "U+7484", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7484", + "status": "exact_ids", + "ids": "⿰王竟", + "canonical_ids": "⿰王竟", + "expanded_ids": "⿰王⿱立⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "王", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璅", + "codepoint": "U+7485", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7485", + "status": "exact_ids", + "ids": "⿰王巢", + "canonical_ids": "⿰王巢", + "expanded_ids": "⿰王⿱巛⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "木", + "王", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璆", + "codepoint": "U+7486", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7486", + "status": "exact_ids", + "ids": "⿰王翏", + "canonical_ids": "⿰王翏", + "expanded_ids": "⿰王⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璇", + "codepoint": "U+7487", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7487", + "status": "exact_ids", + "ids": "⿰王旋", + "canonical_ids": "⿰王旋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "旋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璈", + "codepoint": "U+7488", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7488", + "status": "exact_ids", + "ids": "⿰王敖", + "canonical_ids": "⿰王敖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璉", + "codepoint": "U+7489", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7489", + "status": "exact_ids", + "ids": "⿰王連", + "canonical_ids": "⿰王連", + "expanded_ids": "⿰王⿰辶車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "車", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璊", + "codepoint": "U+748A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-748A", + "status": "exact_ids", + "ids": "⿰王㒼", + "canonical_ids": "⿰王㒼", + "expanded_ids": "⿰王⿱艹⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "王", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璋", + "codepoint": "U+748B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-748B", + "status": "exact_ids", + "ids": "⿰王章", + "canonical_ids": "⿰王章", + "expanded_ids": "⿰王⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "王", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璌", + "codepoint": "U+748C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-748C", + "status": "exact_ids", + "ids": "⿰王寅", + "canonical_ids": "⿰王寅", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "寅" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璍", + "codepoint": "U+748D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-748D", + "status": "exact_ids", + "ids": "⿰王華", + "canonical_ids": "⿰王華", + "expanded_ids": "⿰王⿱艹𠦒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "艹", + "𠦒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璎", + "codepoint": "U+748E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-748E", + "status": "exact_ids", + "ids": "⿰王婴", + "canonical_ids": "⿰王婴", + "expanded_ids": "⿰王⿱⿰⿻冂人⿻冂人女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "女", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璏", + "codepoint": "U+748F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-748F", + "status": "exact_ids", + "ids": "⿰王彘", + "canonical_ids": "⿰王彘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "彘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璐", + "codepoint": "U+7490", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7490", + "status": "exact_ids", + "ids": "⿰王路", + "canonical_ids": "⿰王路", + "expanded_ids": "⿰王⿰⿱口龰⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "王", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璑", + "codepoint": "U+7491", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7491", + "status": "exact_ids", + "ids": "⿰王無", + "canonical_ids": "⿰王無", + "expanded_ids": "⿰王無", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "無", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璒", + "codepoint": "U+7492", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7492", + "status": "exact_ids", + "ids": "⿰王登", + "canonical_ids": "⿰王登", + "expanded_ids": "⿰王⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "癶", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璓", + "codepoint": "U+7493", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7493", + "status": "exact_ids", + "ids": "⿰王莠", + "canonical_ids": "⿰王莠", + "expanded_ids": "⿰王⿱艹⿱⿻丿木乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乃", + "木", + "王", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璔", + "codepoint": "U+7494", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7494", + "status": "exact_ids", + "ids": "⿰王曾", + "canonical_ids": "⿰王曾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璕", + "codepoint": "U+7495", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7495", + "status": "exact_ids", + "ids": "⿰王尋", + "canonical_ids": "⿰王尋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "尋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璖", + "codepoint": "U+7496", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7496", + "status": "exact_ids", + "ids": "⿰王渠", + "canonical_ids": "⿰王渠", + "expanded_ids": "⿰王⿱⿰氵巨木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "木", + "氵", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璗", + "codepoint": "U+7497", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7497", + "status": "exact_ids", + "ids": "⿱湯玉", + "canonical_ids": "⿱湯玉", + "expanded_ids": "⿱⿰氵⿱⿱日一勿⿻王丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "勿", + "日", + "氵", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璘", + "codepoint": "U+7498", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7498", + "status": "exact_ids", + "ids": "⿰王粦", + "canonical_ids": "⿰王粦", + "expanded_ids": "⿰王⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "木", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璙", + "codepoint": "U+7499", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7499", + "status": "exact_ids", + "ids": "⿰王尞", + "canonical_ids": "⿰王尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "王" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璚", + "codepoint": "U+749A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-749A", + "status": "exact_ids", + "ids": "⿰王矞", + "canonical_ids": "⿰王矞", + "expanded_ids": "⿰王⿱矛⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "王", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璛", + "codepoint": "U+749B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-749B", + "status": "exact_ids", + "ids": "⿰王肅", + "canonical_ids": "⿰王肅", + "expanded_ids": "⿰王⿻肀𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "肀", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璜", + "codepoint": "U+749C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-749C", + "status": "exact_ids", + "ids": "⿰王黄", + "canonical_ids": "⿰王黄", + "expanded_ids": "⿰王黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璝", + "codepoint": "U+749D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-749D", + "status": "exact_ids", + "ids": "⿰王貴", + "canonical_ids": "⿰王貴", + "expanded_ids": "⿰王⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "王", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璞", + "codepoint": "U+749E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-749E", + "status": "exact_ids", + "ids": "⿰王菐", + "canonical_ids": "⿰王菐", + "expanded_ids": "⿰王⿱业⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "儿", + "王", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璟", + "codepoint": "U+749F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-749F", + "status": "exact_ids", + "ids": "⿰王景", + "canonical_ids": "⿰王景", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "王" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璠", + "codepoint": "U+74A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74A0", + "status": "exact_ids", + "ids": "⿰王番", + "canonical_ids": "⿰王番", + "expanded_ids": "⿰王⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "木", + "王", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璡", + "codepoint": "U+74A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74A1", + "status": "exact_ids", + "ids": "⿰王進", + "canonical_ids": "⿰王進", + "expanded_ids": "⿰王⿰辶隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "辶", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璢", + "codepoint": "U+74A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74A2", + "status": "exact_ids", + "ids": "⿰王畱", + "canonical_ids": "⿰王畱", + "expanded_ids": "⿰王⿱丣田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丣", + "王", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璣", + "codepoint": "U+74A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74A3", + "status": "exact_ids", + "ids": "⿰王幾", + "canonical_ids": "⿰王幾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "王" + ], + "unresolved_leaves": [ + "戍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璤", + "codepoint": "U+74A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74A4", + "status": "exact_ids", + "ids": "⿰王惠", + "canonical_ids": "⿰王惠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "心", + "王" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璥", + "codepoint": "U+74A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74A5", + "status": "exact_ids", + "ids": "⿰王敬", + "canonical_ids": "⿰王敬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "王", + "艹" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璦", + "codepoint": "U+74A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74A6", + "status": "exact_ids", + "ids": "⿰王愛", + "canonical_ids": "⿰王愛", + "expanded_ids": "⿰王⿳爫冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "夊", + "心", + "爫", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璧", + "codepoint": "U+74A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74A7", + "status": "exact_ids", + "ids": "⿱辟玉", + "canonical_ids": "⿱辟玉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "十", + "王", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璨", + "codepoint": "U+74A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74A8", + "status": "exact_ids", + "ids": "⿰王粲", + "canonical_ids": "⿰王粲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "王" + ], + "unresolved_leaves": [ + "𣦼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璩", + "codepoint": "U+74A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74A9", + "status": "exact_ids", + "ids": "⿰王豦", + "canonical_ids": "⿰王豦", + "expanded_ids": "⿰王⿱虍豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "虍", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璪", + "codepoint": "U+74AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74AA", + "status": "exact_ids", + "ids": "⿰王喿", + "canonical_ids": "⿰王喿", + "expanded_ids": "⿰王⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璫", + "codepoint": "U+74AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74AB", + "status": "exact_ids", + "ids": "⿰王當", + "canonical_ids": "⿰王當", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "王", + "田" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璬", + "codepoint": "U+74AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74AC", + "status": "exact_ids", + "ids": "⿰王敫", + "canonical_ids": "⿰王敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璭", + "codepoint": "U+74AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74AD", + "status": "exact_ids", + "ids": "⿰王運", + "canonical_ids": "⿰王運", + "expanded_ids": "⿰王⿰辶⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "王", + "車", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璮", + "codepoint": "U+74AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74AE", + "status": "exact_ids", + "ids": "⿰王亶", + "canonical_ids": "⿰王亶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "日", + "王" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璯", + "codepoint": "U+74AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74AF", + "status": "exact_ids", + "ids": "⿰王會", + "canonical_ids": "⿰王會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "王" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "環", + "codepoint": "U+74B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74B0", + "status": "exact_ids", + "ids": "⿰王睘", + "canonical_ids": "⿰王睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璱", + "codepoint": "U+74B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74B1", + "status": "exact_ids", + "ids": "⿰王瑟", + "canonical_ids": "⿰王瑟", + "expanded_ids": "⿰王⿱⿰王王⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璲", + "codepoint": "U+74B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74B2", + "status": "exact_ids", + "ids": "⿰王遂", + "canonical_ids": "⿰王遂", + "expanded_ids": "⿰王⿰辶⿱八豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "王", + "豕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璳", + "codepoint": "U+74B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74B3", + "status": "exact_ids", + "ids": "⿰王𧵺", + "canonical_ids": "⿰王𧵺", + "expanded_ids": "⿰王⿰⿱目八⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "木", + "王", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璴", + "codepoint": "U+74B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74B4", + "status": "exact_ids", + "ids": "⿰王楚", + "canonical_ids": "⿰王楚", + "expanded_ids": "⿰王⿱⿰木木疋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "王", + "疋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璵", + "codepoint": "U+74B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74B5", + "status": "exact_ids", + "ids": "⿰王與", + "canonical_ids": "⿰王與", + "expanded_ids": "⿰王與", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "與" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璶", + "codepoint": "U+74B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74B6", + "status": "exact_ids", + "ids": "⿰王盡", + "canonical_ids": "⿰王盡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "盡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璷", + "codepoint": "U+74B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74B7", + "status": "exact_ids", + "ids": "⿰王敷", + "canonical_ids": "⿰王敷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "敷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璸", + "codepoint": "U+74B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74B8", + "status": "exact_ids", + "ids": "⿰王賓", + "canonical_ids": "⿰王賓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璹", + "codepoint": "U+74B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74B9", + "status": "exact_ids", + "ids": "⿰王壽", + "canonical_ids": "⿰王壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璺", + "codepoint": "U+74BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74BA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璻", + "codepoint": "U+74BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74BB", + "status": "exact_ids", + "ids": "⿰王翠", + "canonical_ids": "⿰王翠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "王" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璼", + "codepoint": "U+74BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74BC", + "status": "exact_ids", + "ids": "⿰王監", + "canonical_ids": "⿰王監", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璽", + "codepoint": "U+74BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74BD", + "status": "exact_ids", + "ids": "⿱爾玉", + "canonical_ids": "⿱爾玉", + "expanded_ids": "⿱爾⿻王丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "爾", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璾", + "codepoint": "U+74BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74BE", + "status": "exact_ids", + "ids": "⿰王齊", + "canonical_ids": "⿰王齊", + "expanded_ids": "⿰王齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "璿", + "codepoint": "U+74BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74BF", + "status": "exact_ids", + "ids": "⿰王睿", + "canonical_ids": "⿰王睿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "卜", + "王" + ], + "unresolved_leaves": [ + "眘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓀", + "codepoint": "U+74C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74C0", + "status": "exact_ids", + "ids": "⿰王需", + "canonical_ids": "⿰王需", + "expanded_ids": "⿰王⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓁", + "codepoint": "U+74C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74C1", + "status": "exact_ids", + "ids": "⿰王蒦", + "canonical_ids": "⿰王蒦", + "expanded_ids": "⿰王⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "王", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓂", + "codepoint": "U+74C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74C2", + "status": "exact_ids", + "ids": "⿰王蓋", + "canonical_ids": "⿰王蓋", + "expanded_ids": "⿰王⿱艹⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "王", + "皿", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓃", + "codepoint": "U+74C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74C3", + "status": "exact_ids", + "ids": "⿰王畾", + "canonical_ids": "⿰王畾", + "expanded_ids": "⿰王⿱田⿰田田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓄", + "codepoint": "U+74C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74C4", + "status": "exact_ids", + "ids": "⿰王賣", + "canonical_ids": "⿰王賣", + "expanded_ids": "⿰王⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "士", + "王", + "目", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓅", + "codepoint": "U+74C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74C5", + "status": "exact_ids", + "ids": "⿰王樂", + "canonical_ids": "⿰王樂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "樂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓆", + "codepoint": "U+74C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74C6", + "status": "exact_ids", + "ids": "⿰王質", + "canonical_ids": "⿰王質", + "expanded_ids": "⿰王⿱⿰斤斤⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "斤", + "王", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓇", + "codepoint": "U+74C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74C7", + "status": "exact_ids", + "ids": "⿰王憂", + "canonical_ids": "⿰王憂", + "expanded_ids": "⿰王⿳⿻一⿻日丶冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "冖", + "夊", + "心", + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 251, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓈", + "codepoint": "U+74C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74C8", + "status": "exact_ids", + "ids": "⿰王黎", + "canonical_ids": "⿰王黎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "黎" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓉", + "codepoint": "U+74C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74C9", + "status": "exact_ids", + "ids": "⿰王賛", + "canonical_ids": "⿰王賛", + "expanded_ids": "⿰王⿱⿰⿻一大⿻一大⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "大", + "王", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓊", + "codepoint": "U+74CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74CA", + "status": "exact_ids", + "ids": "⿰王夐", + "canonical_ids": "⿰王夐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "夐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓋", + "codepoint": "U+74CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74CB", + "status": "exact_ids", + "ids": "⿰王適", + "canonical_ids": "⿰王適", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "辶" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓌", + "codepoint": "U+74CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74CC", + "status": "exact_ids", + "ids": "⿰王褱", + "canonical_ids": "⿰王褱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "褱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓍", + "codepoint": "U+74CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74CD", + "status": "exact_ids", + "ids": "⿰王隨", + "canonical_ids": "⿰王隨", + "expanded_ids": "⿰王⿰阝⿰辶⿱⿱牛一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "月", + "牛", + "王", + "辶", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓎", + "codepoint": "U+74CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74CE", + "status": "exact_ids", + "ids": "⿰王賴", + "canonical_ids": "⿰王賴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "賴" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓏", + "codepoint": "U+74CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74CF", + "status": "exact_ids", + "ids": "⿰王龍", + "canonical_ids": "⿰王龍", + "expanded_ids": "⿰王龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓐", + "codepoint": "U+74D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74D0", + "status": "exact_ids", + "ids": "⿰王盧", + "canonical_ids": "⿰王盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "皿" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓑", + "codepoint": "U+74D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74D1", + "status": "exact_ids", + "ids": "⿰王歷", + "canonical_ids": "⿰王歷", + "expanded_ids": "⿰王⿱⿱厂⿰⿻丿木⿻丿木止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厂", + "木", + "止", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓒", + "codepoint": "U+74D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74D2", + "status": "exact_ids", + "ids": "⿰王赞", + "canonical_ids": "⿰王赞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "赞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓓", + "codepoint": "U+74D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74D3", + "status": "exact_ids", + "ids": "⿰王闌", + "canonical_ids": "⿰王闌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓔", + "codepoint": "U+74D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74D4", + "status": "exact_ids", + "ids": "⿰王嬰", + "canonical_ids": "⿰王嬰", + "expanded_ids": "⿰王⿱⿰⿱目八⿱目八女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "女", + "王", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓕", + "codepoint": "U+74D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74D5", + "status": "exact_ids", + "ids": "⿱彌玉", + "canonical_ids": "⿱彌玉", + "expanded_ids": "⿱⿰弓爾⿻王丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "弓", + "爾", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓖", + "codepoint": "U+74D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74D6", + "status": "exact_ids", + "ids": "⿰王襄", + "canonical_ids": "⿰王襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓗", + "codepoint": "U+74D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74D7", + "status": "exact_ids", + "ids": "⿰王巂", + "canonical_ids": "⿰王巂", + "expanded_ids": "⿰王⿱⿱山隹⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "山", + "王", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓘", + "codepoint": "U+74D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74D8", + "status": "exact_ids", + "ids": "⿰王雚", + "canonical_ids": "⿰王雚", + "expanded_ids": "⿰王⿱艹⿱⿰口口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "王", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓙", + "codepoint": "U+74D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74D9", + "status": "exact_ids", + "ids": "⿰王燾", + "canonical_ids": "⿰王燾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬", + "王" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓚", + "codepoint": "U+74DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74DA", + "status": "exact_ids", + "ids": "⿰王贊", + "canonical_ids": "⿰王贊", + "expanded_ids": "⿰王⿱⿰⿱牛儿⿱牛儿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "牛", + "王", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓛", + "codepoint": "U+74DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74DB", + "status": "exact_ids", + "ids": "⿰王獻", + "canonical_ids": "⿰王獻", + "expanded_ids": "⿰王⿰⿱虍鬲⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "王", + "虍", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓜", + "codepoint": "U+74DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74DC", + "status": "leaf_self_fallback", + "ids": "瓜", + "canonical_ids": "瓜", + "expanded_ids": "瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓝", + "codepoint": "U+74DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74DD", + "status": "exact_ids", + "ids": "⿰瓜勺", + "canonical_ids": "⿰瓜勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓜" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓞", + "codepoint": "U+74DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74DE", + "status": "exact_ids", + "ids": "⿰瓜失", + "canonical_ids": "⿰瓜失", + "expanded_ids": "⿰瓜⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "瓜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓟", + "codepoint": "U+74DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74DF", + "status": "exact_ids", + "ids": "⿰瓜包", + "canonical_ids": "⿰瓜包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓜" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓠", + "codepoint": "U+74E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74E0", + "status": "exact_ids", + "ids": "⿰夸瓜", + "canonical_ids": "⿰夸瓜", + "expanded_ids": "⿰⿱大⿱一丂瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "瓜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓡", + "codepoint": "U+74E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74E1", + "status": "exact_ids", + "ids": "⿰幸瓜", + "canonical_ids": "⿰幸瓜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "瓜" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓢", + "codepoint": "U+74E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74E2", + "status": "exact_ids", + "ids": "⿰票瓜", + "canonical_ids": "⿰票瓜", + "expanded_ids": "⿰⿱覀⿱二小瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "瓜", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓣", + "codepoint": "U+74E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74E3", + "status": "exact_ids", + "ids": "⿲辛瓜辛", + "canonical_ids": "⿲辛瓜辛", + "expanded_ids": "⿲⿱立十瓜⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "瓜", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓤", + "codepoint": "U+74E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74E4", + "status": "exact_ids", + "ids": "⿰襄瓜", + "canonical_ids": "⿰襄瓜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓜" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓥", + "codepoint": "U+74E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74E5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓦", + "codepoint": "U+74E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74E6", + "status": "leaf_self_fallback", + "ids": "瓦", + "canonical_ids": "瓦", + "expanded_ids": "瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓧", + "codepoint": "U+74E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74E7", + "status": "exact_ids", + "ids": "⿰瓦十", + "canonical_ids": "⿰瓦十", + "expanded_ids": "⿰瓦十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓨", + "codepoint": "U+74E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74E8", + "status": "exact_ids", + "ids": "⿰工瓦", + "canonical_ids": "⿰工瓦", + "expanded_ids": "⿰工瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓩", + "codepoint": "U+74E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74E9", + "status": "exact_ids", + "ids": "⿰瓦千", + "canonical_ids": "⿰瓦千", + "expanded_ids": "⿰瓦⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓪", + "codepoint": "U+74EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74EA", + "status": "exact_ids", + "ids": "⿰瓦反", + "canonical_ids": "⿰瓦反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓦" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓫", + "codepoint": "U+74EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74EB", + "status": "exact_ids", + "ids": "⿱分瓦", + "canonical_ids": "⿱分瓦", + "expanded_ids": "⿱⿱八刀瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓬", + "codepoint": "U+74EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74EC", + "status": "exact_ids", + "ids": "⿰方瓦", + "canonical_ids": "⿰方瓦", + "expanded_ids": "⿰方瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓭", + "codepoint": "U+74ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74ED", + "status": "exact_ids", + "ids": "⿰冘瓦", + "canonical_ids": "⿰冘瓦", + "expanded_ids": "⿰⿻冖儿瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓮", + "codepoint": "U+74EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74EE", + "status": "exact_ids", + "ids": "⿱公瓦", + "canonical_ids": "⿱公瓦", + "expanded_ids": "⿱⿱八厶瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓯", + "codepoint": "U+74EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74EF", + "status": "exact_ids", + "ids": "⿰区瓦", + "canonical_ids": "⿰区瓦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓦" + ], + "unresolved_leaves": [ + "区" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓰", + "codepoint": "U+74F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74F0", + "status": "exact_ids", + "ids": "⿰瓦分", + "canonical_ids": "⿰瓦分", + "expanded_ids": "⿰瓦⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓱", + "codepoint": "U+74F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74F1", + "status": "exact_ids", + "ids": "⿰瓦毛", + "canonical_ids": "⿰瓦毛", + "expanded_ids": "⿰瓦毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓲", + "codepoint": "U+74F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74F2", + "status": "exact_ids", + "ids": "⿰瓦屯", + "canonical_ids": "⿰瓦屯", + "expanded_ids": "⿰瓦屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓳", + "codepoint": "U+74F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74F3", + "status": "exact_ids", + "ids": "⿰古瓦", + "canonical_ids": "⿰古瓦", + "expanded_ids": "⿰⿻十口瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓴", + "codepoint": "U+74F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74F4", + "status": "exact_ids", + "ids": "⿰令瓦", + "canonical_ids": "⿰令瓦", + "expanded_ids": "⿰⿱⿱人一龴瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "瓦", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓵", + "codepoint": "U+74F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74F5", + "status": "exact_ids", + "ids": "⿰台瓦", + "canonical_ids": "⿰台瓦", + "expanded_ids": "⿰⿱厶口瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓶", + "codepoint": "U+74F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74F6", + "status": "exact_ids", + "ids": "⿰并瓦", + "canonical_ids": "⿰并瓦", + "expanded_ids": "⿰⿱丷⿱一廾瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓷", + "codepoint": "U+74F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74F7", + "status": "exact_ids", + "ids": "⿱次瓦", + "canonical_ids": "⿱次瓦", + "expanded_ids": "⿱⿰冫欠瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "欠", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓸", + "codepoint": "U+74F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74F8", + "status": "exact_ids", + "ids": "⿰瓦百", + "canonical_ids": "⿰瓦百", + "expanded_ids": "⿰瓦⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "日", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓹", + "codepoint": "U+74F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74F9", + "status": "exact_ids", + "ids": "⿰肙瓦", + "canonical_ids": "⿰肙瓦", + "expanded_ids": "⿰⿱口月瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓺", + "codepoint": "U+74FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74FA", + "status": "exact_ids", + "ids": "⿰镸瓦", + "canonical_ids": "⿰镸瓦", + "expanded_ids": "⿰镸瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓦", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓻", + "codepoint": "U+74FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74FB", + "status": "exact_ids", + "ids": "⿰希瓦", + "canonical_ids": "⿰希瓦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "瓦" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓼", + "codepoint": "U+74FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74FC", + "status": "exact_ids", + "ids": "⿰瓦里", + "canonical_ids": "⿰瓦里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓦" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓽", + "codepoint": "U+74FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74FD", + "status": "exact_ids", + "ids": "⿱尚瓦", + "canonical_ids": "⿱尚瓦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "瓦" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓾", + "codepoint": "U+74FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74FE", + "status": "exact_ids", + "ids": "⿰委瓦", + "canonical_ids": "⿰委瓦", + "expanded_ids": "⿰⿱⿻丿木女瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "木", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瓿", + "codepoint": "U+74FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-74FF", + "status": "exact_ids", + "ids": "⿰咅瓦", + "canonical_ids": "⿰咅瓦", + "expanded_ids": "⿰⿱立口瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "瓦", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甀", + "codepoint": "U+7500", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7500", + "status": "exact_ids", + "ids": "⿰垂瓦", + "canonical_ids": "⿰垂瓦", + "expanded_ids": "⿰垂瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "垂", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甁", + "codepoint": "U+7501", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7501", + "status": "exact_ids", + "ids": "⿰幷瓦", + "canonical_ids": "⿰幷瓦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓦" + ], + "unresolved_leaves": [ + "幷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甂", + "codepoint": "U+7502", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7502", + "status": "exact_ids", + "ids": "⿰扁瓦", + "canonical_ids": "⿰扁瓦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "瓦" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甃", + "codepoint": "U+7503", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7503", + "status": "exact_ids", + "ids": "⿱秋瓦", + "canonical_ids": "⿱秋瓦", + "expanded_ids": "⿱⿰⿻丿木火瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "火", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甄", + "codepoint": "U+7504", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7504", + "status": "exact_ids", + "ids": "⿰垔瓦", + "canonical_ids": "⿰垔瓦", + "expanded_ids": "⿰⿱覀土瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "瓦", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甅", + "codepoint": "U+7505", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7505", + "status": "exact_ids", + "ids": "⿰瓦厘", + "canonical_ids": "⿰瓦厘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "瓦" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甆", + "codepoint": "U+7506", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7506", + "status": "exact_ids", + "ids": "⿱⿰玄玄瓦", + "canonical_ids": "⿱⿰玄玄瓦", + "expanded_ids": "⿱⿰⿱亠幺⿱亠幺瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甇", + "codepoint": "U+7507", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7507", + "status": "exact_ids", + "ids": "⿳炏冖瓦", + "canonical_ids": "⿳炏冖瓦", + "expanded_ids": "⿳⿰火火冖瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "火", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甈", + "codepoint": "U+7508", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7508", + "status": "exact_ids", + "ids": "⿰臬瓦", + "canonical_ids": "⿰臬瓦", + "expanded_ids": "⿰⿱⿻目丶木瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "木", + "瓦", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甉", + "codepoint": "U+7509", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7509", + "status": "exact_ids", + "ids": "⿰兼瓦", + "canonical_ids": "⿰兼瓦", + "expanded_ids": "⿰兼瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甊", + "codepoint": "U+750A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-750A", + "status": "exact_ids", + "ids": "⿰婁瓦", + "canonical_ids": "⿰婁瓦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓦" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甋", + "codepoint": "U+750B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-750B", + "status": "exact_ids", + "ids": "⿰啇瓦", + "canonical_ids": "⿰啇瓦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓦" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甌", + "codepoint": "U+750C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-750C", + "status": "exact_ids", + "ids": "⿰區瓦", + "canonical_ids": "⿰區瓦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓦" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甍", + "codepoint": "U+750D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-750D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甎", + "codepoint": "U+750E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-750E", + "status": "exact_ids", + "ids": "⿰專瓦", + "canonical_ids": "⿰專瓦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "寸", + "瓦" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甏", + "codepoint": "U+750F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-750F", + "status": "exact_ids", + "ids": "⿱彭瓦", + "canonical_ids": "⿱彭瓦", + "expanded_ids": "⿱⿰⿱十豆彡瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "彡", + "瓦", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甐", + "codepoint": "U+7510", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7510", + "status": "exact_ids", + "ids": "⿰粦瓦", + "canonical_ids": "⿰粦瓦", + "expanded_ids": "⿰⿱⿻木丷⿰夕⿻丨二瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "木", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甑", + "codepoint": "U+7511", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7511", + "status": "exact_ids", + "ids": "⿰曽瓦", + "canonical_ids": "⿰曽瓦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓦" + ], + "unresolved_leaves": [ + "曽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甒", + "codepoint": "U+7512", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7512", + "status": "exact_ids", + "ids": "⿰無瓦", + "canonical_ids": "⿰無瓦", + "expanded_ids": "⿰無瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "無", + "瓦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甓", + "codepoint": "U+7513", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7513", + "status": "exact_ids", + "ids": "⿱辟瓦", + "canonical_ids": "⿱辟瓦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "瓦", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甔", + "codepoint": "U+7514", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7514", + "status": "exact_ids", + "ids": "⿰詹瓦", + "canonical_ids": "⿰詹瓦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓦" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甕", + "codepoint": "U+7515", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7515", + "status": "exact_ids", + "ids": "⿱雍瓦", + "canonical_ids": "⿱雍瓦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓦" + ], + "unresolved_leaves": [ + "雍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甖", + "codepoint": "U+7516", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7516", + "status": "exact_ids", + "ids": "⿱⿰貝貝瓦", + "canonical_ids": "⿱⿰貝貝瓦", + "expanded_ids": "⿱⿰⿱目八⿱目八瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "瓦", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甗", + "codepoint": "U+7517", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7517", + "status": "exact_ids", + "ids": "⿰鬳瓦", + "canonical_ids": "⿰鬳瓦", + "expanded_ids": "⿰⿱虍鬲瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓦", + "虍", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甘", + "codepoint": "U+7518", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7518", + "status": "leaf_self_fallback", + "ids": "甘", + "canonical_ids": "甘", + "expanded_ids": "甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甙", + "codepoint": "U+7519", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7519", + "status": "exact_ids", + "ids": "⿱弋甘", + "canonical_ids": "⿱弋甘", + "expanded_ids": "⿱弋甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弋", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甚", + "codepoint": "U+751A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-751A", + "status": "exact_ids", + "ids": "⿱甘匹", + "canonical_ids": "⿱甘匹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甘" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甛", + "codepoint": "U+751B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-751B", + "status": "exact_ids", + "ids": "⿰甘舌", + "canonical_ids": "⿰甘舌", + "expanded_ids": "⿰甘⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甜", + "codepoint": "U+751C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-751C", + "status": "exact_ids", + "ids": "⿰舌甘", + "canonical_ids": "⿰舌甘", + "expanded_ids": "⿰⿱⿱丿十口甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甝", + "codepoint": "U+751D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-751D", + "status": "exact_ids", + "ids": "⿰虎甘", + "canonical_ids": "⿰虎甘", + "expanded_ids": "⿰⿱虍儿甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "甘", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甞", + "codepoint": "U+751E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-751E", + "status": "exact_ids", + "ids": "⿱尚甘", + "canonical_ids": "⿱尚甘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "甘" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "生", + "codepoint": "U+751F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-751F", + "status": "exact_ids", + "ids": "⿱牛一", + "canonical_ids": "⿱牛一", + "expanded_ids": "⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甠", + "codepoint": "U+7520", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7520", + "status": "exact_ids", + "ids": "⿰日生", + "canonical_ids": "⿰日生", + "expanded_ids": "⿰日⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甡", + "codepoint": "U+7521", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7521", + "status": "exact_ids", + "ids": "⿰生生", + "canonical_ids": "⿰生生", + "expanded_ids": "⿰⿱牛一⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "產", + "codepoint": "U+7522", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7522", + "status": "exact_ids", + "ids": "⿱产生", + "canonical_ids": "⿱产生", + "expanded_ids": "⿱⿱⿱亠八厂⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "八", + "厂", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [ + "産" + ] + }, + { + "character": "産", + "codepoint": "U+7523", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7523", + "status": "exact_ids", + "ids": "⿱产生", + "canonical_ids": "⿱产生", + "expanded_ids": "⿱⿱⿱亠八厂⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "八", + "厂", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [ + "產" + ] + }, + { + "character": "甤", + "codepoint": "U+7524", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7524", + "status": "exact_ids", + "ids": "⿰豕生", + "canonical_ids": "⿰豕生", + "expanded_ids": "⿰豕⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "牛", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甥", + "codepoint": "U+7525", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7525", + "status": "exact_ids", + "ids": "⿰生男", + "canonical_ids": "⿰生男", + "expanded_ids": "⿰⿱牛一⿱田力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "力", + "牛", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甦", + "codepoint": "U+7526", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7526", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甧", + "codepoint": "U+7527", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7527", + "status": "exact_ids", + "ids": "⿱⿰生生月", + "canonical_ids": "⿱⿰生生月", + "expanded_ids": "⿱⿰⿱牛一⿱牛一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "月", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "用", + "codepoint": "U+7528", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7528", + "status": "exact_ids", + "ids": "⿻月丨", + "canonical_ids": "⿻月丨", + "expanded_ids": "⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甩", + "codepoint": "U+7529", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7529", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甪", + "codepoint": "U+752A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-752A", + "status": "exact_ids", + "ids": "⿱丿用", + "canonical_ids": "⿱丿用", + "expanded_ids": "⿱丿⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丿", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甫", + "codepoint": "U+752B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-752B", + "status": "leaf_self_fallback", + "ids": "甫", + "canonical_ids": "甫", + "expanded_ids": "甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甬", + "codepoint": "U+752C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-752C", + "status": "exact_ids", + "ids": "⿱龴用", + "canonical_ids": "⿱龴用", + "expanded_ids": "⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甭", + "codepoint": "U+752D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-752D", + "status": "exact_ids", + "ids": "⿱不用", + "canonical_ids": "⿱不用", + "expanded_ids": "⿱不⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "丨", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甮", + "codepoint": "U+752E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-752E", + "status": "exact_ids", + "ids": "⿱勿用", + "canonical_ids": "⿱勿用", + "expanded_ids": "⿱勿⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "勿", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甯", + "codepoint": "U+752F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-752F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "田", + "codepoint": "U+7530", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7530", + "status": "leaf_self_fallback", + "ids": "田", + "canonical_ids": "田", + "expanded_ids": "田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "由", + "codepoint": "U+7531", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7531", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甲", + "codepoint": "U+7532", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7532", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "申", + "codepoint": "U+7533", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7533", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甴", + "codepoint": "U+7534", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7534", + "status": "exact_ids", + "ids": "⿻土凵", + "canonical_ids": "⿻土凵", + "expanded_ids": "⿻土凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "电", + "codepoint": "U+7535", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7535", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甶", + "codepoint": "U+7536", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7536", + "status": "exact_ids", + "ids": "⿻田丶", + "canonical_ids": "⿻田丶", + "expanded_ids": "⿻田丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "男", + "codepoint": "U+7537", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7537", + "status": "exact_ids", + "ids": "⿱田力", + "canonical_ids": "⿱田力", + "expanded_ids": "⿱田力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甸", + "codepoint": "U+7538", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7538", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甹", + "codepoint": "U+7539", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7539", + "status": "exact_ids", + "ids": "⿱由丂", + "canonical_ids": "⿱由丂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "町", + "codepoint": "U+753A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-753A", + "status": "exact_ids", + "ids": "⿰田丁", + "canonical_ids": "⿰田丁", + "expanded_ids": "⿰田⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "画", + "codepoint": "U+753B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-753B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甼", + "codepoint": "U+753C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-753C", + "status": "exact_ids", + "ids": "⿱田丁", + "canonical_ids": "⿱田丁", + "expanded_ids": "⿱田⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甽", + "codepoint": "U+753D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-753D", + "status": "exact_ids", + "ids": "⿰田川", + "canonical_ids": "⿰田川", + "expanded_ids": "⿰田川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "川", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甾", + "codepoint": "U+753E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-753E", + "status": "exact_ids", + "ids": "⿱巛田", + "canonical_ids": "⿱巛田", + "expanded_ids": "⿱巛田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "甿", + "codepoint": "U+753F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-753F", + "status": "exact_ids", + "ids": "⿰田亡", + "canonical_ids": "⿰田亡", + "expanded_ids": "⿰田⿻亠乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畀", + "codepoint": "U+7540", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7540", + "status": "exact_ids", + "ids": "⿱田丌", + "canonical_ids": "⿱田丌", + "expanded_ids": "⿱田丌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畁", + "codepoint": "U+7541", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7541", + "status": "exact_ids", + "ids": "⿱由丌", + "canonical_ids": "⿱由丌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畂", + "codepoint": "U+7542", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7542", + "status": "exact_ids", + "ids": "⿰田久", + "canonical_ids": "⿰田久", + "expanded_ids": "⿰田久", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "久", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畃", + "codepoint": "U+7543", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7543", + "status": "exact_ids", + "ids": "⿰申勺", + "canonical_ids": "⿰申勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "勺", + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畄", + "codepoint": "U+7544", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7544", + "status": "exact_ids", + "ids": "⿱小田", + "canonical_ids": "⿱小田", + "expanded_ids": "⿱小田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畅", + "codepoint": "U+7545", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7545", + "status": "exact_ids", + "ids": "⿰申𠃓", + "canonical_ids": "⿰申𠃓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "申", + "𠃓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畆", + "codepoint": "U+7546", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7546", + "status": "exact_ids", + "ids": "⿰亩厶", + "canonical_ids": "⿰亩厶", + "expanded_ids": "⿰⿱亠田厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "厶", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畇", + "codepoint": "U+7547", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7547", + "status": "exact_ids", + "ids": "⿰田匀", + "canonical_ids": "⿰田匀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田" + ], + "unresolved_leaves": [ + "匀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畈", + "codepoint": "U+7548", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7548", + "status": "exact_ids", + "ids": "⿰田反", + "canonical_ids": "⿰田反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畉", + "codepoint": "U+7549", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7549", + "status": "exact_ids", + "ids": "⿰田夫", + "canonical_ids": "⿰田夫", + "expanded_ids": "⿰田⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畊", + "codepoint": "U+754A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-754A", + "status": "exact_ids", + "ids": "⿰田井", + "canonical_ids": "⿰田井", + "expanded_ids": "⿰田井", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "井", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畋", + "codepoint": "U+754B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-754B", + "status": "exact_ids", + "ids": "⿰田攵", + "canonical_ids": "⿰田攵", + "expanded_ids": "⿰田攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "界", + "codepoint": "U+754C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-754C", + "status": "exact_ids", + "ids": "⿱田介", + "canonical_ids": "⿱田介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畍", + "codepoint": "U+754D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-754D", + "status": "exact_ids", + "ids": "⿰田介", + "canonical_ids": "⿰田介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畎", + "codepoint": "U+754E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-754E", + "status": "exact_ids", + "ids": "⿰田犬", + "canonical_ids": "⿰田犬", + "expanded_ids": "⿰田⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畏", + "codepoint": "U+754F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-754F", + "status": "exact_ids", + "ids": "⿱田氏", + "canonical_ids": "⿱田氏", + "expanded_ids": "⿱田氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氏", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畐", + "codepoint": "U+7550", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7550", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畑", + "codepoint": "U+7551", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7551", + "status": "exact_ids", + "ids": "⿰火田", + "canonical_ids": "⿰火田", + "expanded_ids": "⿰火田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畒", + "codepoint": "U+7552", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7552", + "status": "exact_ids", + "ids": "⿰亩人", + "canonical_ids": "⿰亩人", + "expanded_ids": "⿰⿱亠田人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "人", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畓", + "codepoint": "U+7553", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7553", + "status": "exact_ids", + "ids": "⿱水田", + "canonical_ids": "⿱水田", + "expanded_ids": "⿱水田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "水", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畔", + "codepoint": "U+7554", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7554", + "status": "exact_ids", + "ids": "⿰田半", + "canonical_ids": "⿰田半", + "expanded_ids": "⿰田半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畕", + "codepoint": "U+7555", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7555", + "status": "exact_ids", + "ids": "⿱田田", + "canonical_ids": "⿱田田", + "expanded_ids": "⿱田田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畖", + "codepoint": "U+7556", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7556", + "status": "exact_ids", + "ids": "⿰田瓜", + "canonical_ids": "⿰田瓜", + "expanded_ids": "⿰田瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓜", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畗", + "codepoint": "U+7557", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7557", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畘", + "codepoint": "U+7558", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7558", + "status": "exact_ids", + "ids": "⿰田冉", + "canonical_ids": "⿰田冉", + "expanded_ids": "⿰田⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "土", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "留", + "codepoint": "U+7559", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7559", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畚", + "codepoint": "U+755A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-755A", + "status": "exact_ids", + "ids": "⿱厶奋", + "canonical_ids": "⿱厶奋", + "expanded_ids": "⿱厶⿱大田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "大", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畛", + "codepoint": "U+755B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-755B", + "status": "exact_ids", + "ids": "⿰田㐱", + "canonical_ids": "⿰田㐱", + "expanded_ids": "⿰田⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "彡", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畜", + "codepoint": "U+755C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-755C", + "status": "exact_ids", + "ids": "⿱玄田", + "canonical_ids": "⿱玄田", + "expanded_ids": "⿱⿱亠幺田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畝", + "codepoint": "U+755D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-755D", + "status": "exact_ids", + "ids": "⿰亩久", + "canonical_ids": "⿰亩久", + "expanded_ids": "⿰⿱亠田久", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "久", + "亠", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畞", + "codepoint": "U+755E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-755E", + "status": "exact_ids", + "ids": "⿻十畂", + "canonical_ids": "⿻十畂", + "expanded_ids": "⿻十⿰田久", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "久", + "十", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畟", + "codepoint": "U+755F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-755F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畠", + "codepoint": "U+7560", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7560", + "status": "exact_ids", + "ids": "⿱白田", + "canonical_ids": "⿱白田", + "expanded_ids": "⿱⿻日丶田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畡", + "codepoint": "U+7561", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7561", + "status": "exact_ids", + "ids": "⿰田亥", + "canonical_ids": "⿰田亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畢", + "codepoint": "U+7562", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7562", + "status": "leaf_self_fallback", + "ids": "畢", + "canonical_ids": "畢", + "expanded_ids": "畢", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "畢" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畣", + "codepoint": "U+7563", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7563", + "status": "exact_ids", + "ids": "⿱合田", + "canonical_ids": "⿱合田", + "expanded_ids": "⿱⿱⿱人一口田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畤", + "codepoint": "U+7564", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7564", + "status": "exact_ids", + "ids": "⿰田寺", + "canonical_ids": "⿰田寺", + "expanded_ids": "⿰田⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "略", + "codepoint": "U+7565", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7565", + "status": "exact_ids", + "ids": "⿰田各", + "canonical_ids": "⿰田各", + "expanded_ids": "⿰田⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畦", + "codepoint": "U+7566", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7566", + "status": "exact_ids", + "ids": "⿰田圭", + "canonical_ids": "⿰田圭", + "expanded_ids": "⿰田⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畧", + "codepoint": "U+7567", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7567", + "status": "exact_ids", + "ids": "⿱田各", + "canonical_ids": "⿱田各", + "expanded_ids": "⿱田⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畨", + "codepoint": "U+7568", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7568", + "status": "exact_ids", + "ids": "⿱米田", + "canonical_ids": "⿱米田", + "expanded_ids": "⿱⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畩", + "codepoint": "U+7569", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7569", + "status": "exact_ids", + "ids": "⿰田衣", + "canonical_ids": "⿰田衣", + "expanded_ids": "⿰田衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "番", + "codepoint": "U+756A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-756A", + "status": "exact_ids", + "ids": "⿱釆田", + "canonical_ids": "⿱釆田", + "expanded_ids": "⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畫", + "codepoint": "U+756B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-756B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畬", + "codepoint": "U+756C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-756C", + "status": "exact_ids", + "ids": "⿱余田", + "canonical_ids": "⿱余田", + "expanded_ids": "⿱⿱⿱人一朩田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畭", + "codepoint": "U+756D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-756D", + "status": "exact_ids", + "ids": "⿰田余", + "canonical_ids": "⿰田余", + "expanded_ids": "⿰田⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畮", + "codepoint": "U+756E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-756E", + "status": "exact_ids", + "ids": "⿰田每", + "canonical_ids": "⿰田每", + "expanded_ids": "⿰田⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "母", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畯", + "codepoint": "U+756F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-756F", + "status": "exact_ids", + "ids": "⿰田夋", + "canonical_ids": "⿰田夋", + "expanded_ids": "⿰田⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "異", + "codepoint": "U+7570", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7570", + "status": "exact_ids", + "ids": "⿱田共", + "canonical_ids": "⿱田共", + "expanded_ids": "⿱田⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畱", + "codepoint": "U+7571", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7571", + "status": "exact_ids", + "ids": "⿱丣田", + "canonical_ids": "⿱丣田", + "expanded_ids": "⿱丣田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丣", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畲", + "codepoint": "U+7572", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7572", + "status": "exact_ids", + "ids": "⿱佘田", + "canonical_ids": "⿱佘田", + "expanded_ids": "⿱⿱人⿱二小田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "人", + "小", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畳", + "codepoint": "U+7573", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7573", + "status": "exact_ids", + "ids": "⿳田冖且", + "canonical_ids": "⿳田冖且", + "expanded_ids": "⿳田冖且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "冖", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畴", + "codepoint": "U+7574", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7574", + "status": "exact_ids", + "ids": "⿰田寿", + "canonical_ids": "⿰田寿", + "expanded_ids": "⿰田⿻丰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "寸", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畵", + "codepoint": "U+7575", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7575", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "當", + "codepoint": "U+7576", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7576", + "status": "exact_ids", + "ids": "⿱尚田", + "canonical_ids": "⿱尚田", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "田" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畷", + "codepoint": "U+7577", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7577", + "status": "exact_ids", + "ids": "⿰田叕", + "canonical_ids": "⿰田叕", + "expanded_ids": "⿰田⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畸", + "codepoint": "U+7578", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7578", + "status": "exact_ids", + "ids": "⿰田奇", + "canonical_ids": "⿰田奇", + "expanded_ids": "⿰田⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畹", + "codepoint": "U+7579", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7579", + "status": "exact_ids", + "ids": "⿰田宛", + "canonical_ids": "⿰田宛", + "expanded_ids": "⿰田⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畺", + "codepoint": "U+757A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-757A", + "status": "exact_ids", + "ids": "⿻三畕", + "canonical_ids": "⿻三畕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田" + ], + "unresolved_leaves": [ + "三" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畻", + "codepoint": "U+757B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-757B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畼", + "codepoint": "U+757C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-757C", + "status": "exact_ids", + "ids": "⿰田昜", + "canonical_ids": "⿰田昜", + "expanded_ids": "⿰田⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畽", + "codepoint": "U+757D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-757D", + "status": "exact_ids", + "ids": "⿰田重", + "canonical_ids": "⿰田重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "田" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畾", + "codepoint": "U+757E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-757E", + "status": "exact_ids", + "ids": "⿱田⿰田田", + "canonical_ids": "⿱田⿰田田", + "expanded_ids": "⿱田⿰田田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "畿", + "codepoint": "U+757F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-757F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疀", + "codepoint": "U+7580", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7580", + "status": "exact_ids", + "ids": "⿰甾疌", + "canonical_ids": "⿰甾疌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "田" + ], + "unresolved_leaves": [ + "疌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疁", + "codepoint": "U+7581", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7581", + "status": "exact_ids", + "ids": "⿰田翏", + "canonical_ids": "⿰田翏", + "expanded_ids": "⿰田⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疂", + "codepoint": "U+7582", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7582", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疃", + "codepoint": "U+7583", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7583", + "status": "exact_ids", + "ids": "⿰田童", + "canonical_ids": "⿰田童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疄", + "codepoint": "U+7584", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7584", + "status": "exact_ids", + "ids": "⿰田粦", + "canonical_ids": "⿰田粦", + "expanded_ids": "⿰田⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疅", + "codepoint": "U+7585", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7585", + "status": "exact_ids", + "ids": "⿰田畺", + "canonical_ids": "⿰田畺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田" + ], + "unresolved_leaves": [ + "三" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疆", + "codepoint": "U+7586", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7586", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疇", + "codepoint": "U+7587", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7587", + "status": "exact_ids", + "ids": "⿰田壽", + "canonical_ids": "⿰田壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疈", + "codepoint": "U+7588", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7588", + "status": "exact_ids", + "ids": "⿲畐刂畐", + "canonical_ids": "⿲畐刂畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疉", + "codepoint": "U+7589", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7589", + "status": "exact_ids", + "ids": "⿱畾宐", + "canonical_ids": "⿱畾宐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田" + ], + "unresolved_leaves": [ + "宐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疊", + "codepoint": "U+758A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-758A", + "status": "exact_ids", + "ids": "⿳畾冖且", + "canonical_ids": "⿳畾冖且", + "expanded_ids": "⿳⿱田⿰田田冖且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "冖", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疋", + "codepoint": "U+758B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-758B", + "status": "leaf_self_fallback", + "ids": "疋", + "canonical_ids": "疋", + "expanded_ids": "疋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "疋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疌", + "codepoint": "U+758C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-758C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疍", + "codepoint": "U+758D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-758D", + "status": "exact_ids", + "ids": "⿱疋旦", + "canonical_ids": "⿱疋旦", + "expanded_ids": "⿱疋⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "疋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疎", + "codepoint": "U+758E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-758E", + "status": "exact_ids", + "ids": "⿰疋束", + "canonical_ids": "⿰疋束", + "expanded_ids": "⿰疋⿻木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "疋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疏", + "codepoint": "U+758F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-758F", + "status": "exact_ids", + "ids": "⿰疋㐬", + "canonical_ids": "⿰疋㐬", + "expanded_ids": "⿰疋⿱亠⿱厶川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "厶", + "川", + "疋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疐", + "codepoint": "U+7590", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7590", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疑", + "codepoint": "U+7591", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7591", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疒", + "codepoint": "U+7592", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7592", + "status": "exact_ids", + "ids": "⿰冫广", + "canonical_ids": "⿰冫广", + "expanded_ids": "⿰冫广", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疓", + "codepoint": "U+7593", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7593", + "status": "exact_ids", + "ids": "⿱疒乃", + "canonical_ids": "⿱疒乃", + "expanded_ids": "⿱⿰冫广乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "冫", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疔", + "codepoint": "U+7594", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7594", + "status": "exact_ids", + "ids": "⿱疒丁", + "canonical_ids": "⿱疒丁", + "expanded_ids": "⿱⿰冫广⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "冫", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疕", + "codepoint": "U+7595", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7595", + "status": "exact_ids", + "ids": "⿱疒匕", + "canonical_ids": "⿱疒匕", + "expanded_ids": "⿱⿰冫广匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "匕", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疖", + "codepoint": "U+7596", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7596", + "status": "exact_ids", + "ids": "⿱疒卩", + "canonical_ids": "⿱疒卩", + "expanded_ids": "⿱⿰冫广卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "卩", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疗", + "codepoint": "U+7597", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7597", + "status": "exact_ids", + "ids": "⿱疒了", + "canonical_ids": "⿱疒了", + "expanded_ids": "⿱⿰冫广了", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "了", + "冫", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疘", + "codepoint": "U+7598", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7598", + "status": "exact_ids", + "ids": "⿱疒工", + "canonical_ids": "⿱疒工", + "expanded_ids": "⿱⿰冫广工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "工", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疙", + "codepoint": "U+7599", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7599", + "status": "exact_ids", + "ids": "⿱疒乞", + "canonical_ids": "⿱疒乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疚", + "codepoint": "U+759A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-759A", + "status": "exact_ids", + "ids": "⿱疒久", + "canonical_ids": "⿱疒久", + "expanded_ids": "⿱⿰冫广久", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "久", + "冫", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疛", + "codepoint": "U+759B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-759B", + "status": "exact_ids", + "ids": "⿱疒寸", + "canonical_ids": "⿱疒寸", + "expanded_ids": "⿱⿰冫广寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "寸", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疜", + "codepoint": "U+759C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-759C", + "status": "exact_ids", + "ids": "⿱疒下", + "canonical_ids": "⿱疒下", + "expanded_ids": "⿱⿰冫广⿱一卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冫", + "卜", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疝", + "codepoint": "U+759D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-759D", + "status": "exact_ids", + "ids": "⿱疒山", + "canonical_ids": "⿱疒山", + "expanded_ids": "⿱⿰冫广山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "山", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疞", + "codepoint": "U+759E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-759E", + "status": "exact_ids", + "ids": "⿱疒亏", + "canonical_ids": "⿱疒亏", + "expanded_ids": "⿱⿰冫广⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "冫", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疟", + "codepoint": "U+759F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-759F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疠", + "codepoint": "U+75A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75A0", + "status": "exact_ids", + "ids": "⿱疒万", + "canonical_ids": "⿱疒万", + "expanded_ids": "⿱⿰冫广万", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "万", + "冫", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疡", + "codepoint": "U+75A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75A1", + "status": "exact_ids", + "ids": "⿱疒𠃓", + "canonical_ids": "⿱疒𠃓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "𠃓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疢", + "codepoint": "U+75A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75A2", + "status": "exact_ids", + "ids": "⿱疒火", + "canonical_ids": "⿱疒火", + "expanded_ids": "⿱⿰冫广火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疣", + "codepoint": "U+75A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75A3", + "status": "exact_ids", + "ids": "⿱疒尤", + "canonical_ids": "⿱疒尤", + "expanded_ids": "⿱⿰冫广尤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "尤", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疤", + "codepoint": "U+75A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75A4", + "status": "exact_ids", + "ids": "⿱疒巴", + "canonical_ids": "⿱疒巴", + "expanded_ids": "⿱⿰冫广巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "巴", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疥", + "codepoint": "U+75A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75A5", + "status": "exact_ids", + "ids": "⿱疒介", + "canonical_ids": "⿱疒介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疦", + "codepoint": "U+75A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75A6", + "status": "exact_ids", + "ids": "⿱疒夬", + "canonical_ids": "⿱疒夬", + "expanded_ids": "⿱⿰冫广⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "冫", + "大", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疧", + "codepoint": "U+75A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75A7", + "status": "exact_ids", + "ids": "⿱疒氏", + "canonical_ids": "⿱疒氏", + "expanded_ids": "⿱⿰冫广氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疨", + "codepoint": "U+75A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75A8", + "status": "exact_ids", + "ids": "⿱疒牙", + "canonical_ids": "⿱疒牙", + "expanded_ids": "⿱⿰冫广牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "牙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疩", + "codepoint": "U+75A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75A9", + "status": "exact_ids", + "ids": "⿱疒卆", + "canonical_ids": "⿱疒卆", + "expanded_ids": "⿱⿰冫广⿱九十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "冫", + "十", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疪", + "codepoint": "U+75AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75AA", + "status": "exact_ids", + "ids": "⿱疒比", + "canonical_ids": "⿱疒比", + "expanded_ids": "⿱⿰冫广⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "匕", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疫", + "codepoint": "U+75AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75AB", + "status": "exact_ids", + "ids": "⿱疒殳", + "canonical_ids": "⿱疒殳", + "expanded_ids": "⿱⿰冫广⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "几", + "又", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疬", + "codepoint": "U+75AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75AC", + "status": "exact_ids", + "ids": "⿱疒历", + "canonical_ids": "⿱疒历", + "expanded_ids": "⿱⿰冫广⿱厂力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "力", + "厂", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疭", + "codepoint": "U+75AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75AD", + "status": "exact_ids", + "ids": "⿱疒从", + "canonical_ids": "⿱疒从", + "expanded_ids": "⿱⿰冫广⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冫", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疮", + "codepoint": "U+75AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75AE", + "status": "exact_ids", + "ids": "⿱疒仓", + "canonical_ids": "⿱疒仓", + "expanded_ids": "⿱⿰冫广⿱人㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "人", + "冫", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疯", + "codepoint": "U+75AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75AF", + "status": "exact_ids", + "ids": "⿱疒风", + "canonical_ids": "⿱疒风", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "风" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疰", + "codepoint": "U+75B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75B0", + "status": "exact_ids", + "ids": "⿱疒主", + "canonical_ids": "⿱疒主", + "expanded_ids": "⿱⿰冫广⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "冫", + "广", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疱", + "codepoint": "U+75B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75B1", + "status": "exact_ids", + "ids": "⿱疒包", + "canonical_ids": "⿱疒包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疲", + "codepoint": "U+75B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75B2", + "status": "exact_ids", + "ids": "⿱疒皮", + "canonical_ids": "⿱疒皮", + "expanded_ids": "⿱⿰冫广皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疳", + "codepoint": "U+75B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75B3", + "status": "exact_ids", + "ids": "⿱疒甘", + "canonical_ids": "⿱疒甘", + "expanded_ids": "⿱⿰冫广甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疴", + "codepoint": "U+75B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75B4", + "status": "exact_ids", + "ids": "⿱疒可", + "canonical_ids": "⿱疒可", + "expanded_ids": "⿱⿰冫广⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "冫", + "口", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疵", + "codepoint": "U+75B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75B5", + "status": "exact_ids", + "ids": "⿱疒此", + "canonical_ids": "⿱疒此", + "expanded_ids": "⿱⿰冫广⿰止匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "匕", + "广", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疶", + "codepoint": "U+75B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75B6", + "status": "exact_ids", + "ids": "⿱疒世", + "canonical_ids": "⿱疒世", + "expanded_ids": "⿱⿰冫广世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "冫", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疷", + "codepoint": "U+75B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75B7", + "status": "exact_ids", + "ids": "⿱疒氐", + "canonical_ids": "⿱疒氐", + "expanded_ids": "⿱⿰冫广⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "冫", + "广", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疸", + "codepoint": "U+75B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75B8", + "status": "exact_ids", + "ids": "⿱疒旦", + "canonical_ids": "⿱疒旦", + "expanded_ids": "⿱⿰冫广⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冫", + "广", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疹", + "codepoint": "U+75B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75B9", + "status": "exact_ids", + "ids": "⿱疒㐱", + "canonical_ids": "⿱疒㐱", + "expanded_ids": "⿱⿰冫广⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冫", + "广", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疺", + "codepoint": "U+75BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75BA", + "status": "exact_ids", + "ids": "⿱疒乏", + "canonical_ids": "⿱疒乏", + "expanded_ids": "⿱⿰冫广⿱丿之", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "之", + "冫", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疻", + "codepoint": "U+75BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75BB", + "status": "exact_ids", + "ids": "⿱疒只", + "canonical_ids": "⿱疒只", + "expanded_ids": "⿱⿰冫广⿱口八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冫", + "口", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疼", + "codepoint": "U+75BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75BC", + "status": "exact_ids", + "ids": "⿱疒冬", + "canonical_ids": "⿱疒冬", + "expanded_ids": "⿱⿰冫广⿱夂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "夂", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疽", + "codepoint": "U+75BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75BD", + "status": "exact_ids", + "ids": "⿱疒且", + "canonical_ids": "⿱疒且", + "expanded_ids": "⿱⿰冫广且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "冫", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疾", + "codepoint": "U+75BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75BE", + "status": "exact_ids", + "ids": "⿱疒矢", + "canonical_ids": "⿱疒矢", + "expanded_ids": "⿱⿰冫广⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "冫", + "大", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "疿", + "codepoint": "U+75BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75BF", + "status": "exact_ids", + "ids": "⿱疒弗", + "canonical_ids": "⿱疒弗", + "expanded_ids": "⿱⿰冫广⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "刂", + "广", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痀", + "codepoint": "U+75C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75C0", + "status": "exact_ids", + "ids": "⿱疒句", + "canonical_ids": "⿱疒句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痁", + "codepoint": "U+75C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75C1", + "status": "exact_ids", + "ids": "⿱疒占", + "canonical_ids": "⿱疒占", + "expanded_ids": "⿱⿰冫广⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "卜", + "口", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痂", + "codepoint": "U+75C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75C2", + "status": "exact_ids", + "ids": "⿱疒加", + "canonical_ids": "⿱疒加", + "expanded_ids": "⿱⿰冫广⿰力口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "力", + "口", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痃", + "codepoint": "U+75C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75C3", + "status": "exact_ids", + "ids": "⿱疒玄", + "canonical_ids": "⿱疒玄", + "expanded_ids": "⿱⿰冫广⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "冫", + "幺", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痄", + "codepoint": "U+75C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75C4", + "status": "exact_ids", + "ids": "⿱疒乍", + "canonical_ids": "⿱疒乍", + "expanded_ids": "⿱⿰冫广乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "冫", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "病", + "codepoint": "U+75C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75C5", + "status": "exact_ids", + "ids": "⿱疒丙", + "canonical_ids": "⿱疒丙", + "expanded_ids": "⿱⿰冫广⿱一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂", + "冫", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痆", + "codepoint": "U+75C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75C6", + "status": "exact_ids", + "ids": "⿱疒尼", + "canonical_ids": "⿱疒尼", + "expanded_ids": "⿱⿰冫广⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "匕", + "尸", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "症", + "codepoint": "U+75C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75C7", + "status": "exact_ids", + "ids": "⿱疒正", + "canonical_ids": "⿱疒正", + "expanded_ids": "⿱⿰冫广⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冫", + "广", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痈", + "codepoint": "U+75C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75C8", + "status": "exact_ids", + "ids": "⿱疒用", + "canonical_ids": "⿱疒用", + "expanded_ids": "⿱⿰冫广⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冫", + "广", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痉", + "codepoint": "U+75C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75C9", + "status": "exact_ids", + "ids": "⿱疒𢀖", + "canonical_ids": "⿱疒𢀖", + "expanded_ids": "⿱⿰冫广⿱又工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "又", + "工", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痊", + "codepoint": "U+75CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75CA", + "status": "exact_ids", + "ids": "⿱疒全", + "canonical_ids": "⿱疒全", + "expanded_ids": "⿱⿰冫广⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "冫", + "广", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痋", + "codepoint": "U+75CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75CB", + "status": "exact_ids", + "ids": "⿱疒虫", + "canonical_ids": "⿱疒虫", + "expanded_ids": "⿱⿰冫广虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痌", + "codepoint": "U+75CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75CC", + "status": "exact_ids", + "ids": "⿱疒同", + "canonical_ids": "⿱疒同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痍", + "codepoint": "U+75CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75CD", + "status": "exact_ids", + "ids": "⿱疒夷", + "canonical_ids": "⿱疒夷", + "expanded_ids": "⿱⿰冫广⿻大弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "大", + "广", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痎", + "codepoint": "U+75CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75CE", + "status": "exact_ids", + "ids": "⿱疒亥", + "canonical_ids": "⿱疒亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痏", + "codepoint": "U+75CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75CF", + "status": "exact_ids", + "ids": "⿱疒有", + "canonical_ids": "⿱疒有", + "expanded_ids": "⿱⿰冫广⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "冫", + "广", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痐", + "codepoint": "U+75D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75D0", + "status": "exact_ids", + "ids": "⿱疒回", + "canonical_ids": "⿱疒回", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痑", + "codepoint": "U+75D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75D1", + "status": "exact_ids", + "ids": "⿱疒多", + "canonical_ids": "⿱疒多", + "expanded_ids": "⿱⿰冫广⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "夕", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痒", + "codepoint": "U+75D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75D2", + "status": "exact_ids", + "ids": "⿱疒羊", + "canonical_ids": "⿱疒羊", + "expanded_ids": "⿱⿰冫广羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痓", + "codepoint": "U+75D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75D3", + "status": "exact_ids", + "ids": "⿱疒至", + "canonical_ids": "⿱疒至", + "expanded_ids": "⿱⿰冫广⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冫", + "厶", + "土", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痔", + "codepoint": "U+75D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75D4", + "status": "exact_ids", + "ids": "⿱疒寺", + "canonical_ids": "⿱疒寺", + "expanded_ids": "⿱⿰冫广⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "土", + "寸", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痕", + "codepoint": "U+75D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75D5", + "status": "exact_ids", + "ids": "⿱疒艮", + "canonical_ids": "⿱疒艮", + "expanded_ids": "⿱⿰冫广艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痖", + "codepoint": "U+75D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75D6", + "status": "exact_ids", + "ids": "⿱疒亚", + "canonical_ids": "⿱疒亚", + "expanded_ids": "⿱⿰冫广亚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亚", + "冫", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痗", + "codepoint": "U+75D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75D7", + "status": "exact_ids", + "ids": "⿱疒每", + "canonical_ids": "⿱疒每", + "expanded_ids": "⿱⿰冫广⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "冫", + "广", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痘", + "codepoint": "U+75D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75D8", + "status": "exact_ids", + "ids": "⿱疒豆", + "canonical_ids": "⿱疒豆", + "expanded_ids": "⿱⿰冫广豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痙", + "codepoint": "U+75D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75D9", + "status": "exact_ids", + "ids": "⿱疒巠", + "canonical_ids": "⿱疒巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痚", + "codepoint": "U+75DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75DA", + "status": "exact_ids", + "ids": "⿱疒孝", + "canonical_ids": "⿱疒孝", + "expanded_ids": "⿱⿰冫广⿱⿻土丿子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "冫", + "土", + "子", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痛", + "codepoint": "U+75DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75DB", + "status": "exact_ids", + "ids": "⿱疒甬", + "canonical_ids": "⿱疒甬", + "expanded_ids": "⿱⿰冫广⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冫", + "广", + "月", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痜", + "codepoint": "U+75DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75DC", + "status": "exact_ids", + "ids": "⿱疒秃", + "canonical_ids": "⿱疒秃", + "expanded_ids": "⿱⿰冫广⿱⿻丿木几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "冫", + "几", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痝", + "codepoint": "U+75DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75DD", + "status": "exact_ids", + "ids": "⿱疒尨", + "canonical_ids": "⿱疒尨", + "expanded_ids": "⿱⿰冫广⿰尤彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "尤", + "广", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痞", + "codepoint": "U+75DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75DE", + "status": "exact_ids", + "ids": "⿱疒否", + "canonical_ids": "⿱疒否", + "expanded_ids": "⿱⿰冫广⿱不口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "冫", + "口", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痟", + "codepoint": "U+75DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75DF", + "status": "exact_ids", + "ids": "⿱疒肖", + "canonical_ids": "⿱疒肖", + "expanded_ids": "⿱⿰冫广⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "小", + "广", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痠", + "codepoint": "U+75E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75E0", + "status": "exact_ids", + "ids": "⿱疒夋", + "canonical_ids": "⿱疒夋", + "expanded_ids": "⿱⿰冫广⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冫", + "厶", + "夂", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痡", + "codepoint": "U+75E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75E1", + "status": "exact_ids", + "ids": "⿱疒甫", + "canonical_ids": "⿱疒甫", + "expanded_ids": "⿱⿰冫广甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痢", + "codepoint": "U+75E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75E2", + "status": "exact_ids", + "ids": "⿱疒利", + "canonical_ids": "⿱疒利", + "expanded_ids": "⿱⿰冫广⿰⿻丿木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "冫", + "刂", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痣", + "codepoint": "U+75E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75E3", + "status": "exact_ids", + "ids": "⿱疒志", + "canonical_ids": "⿱疒志", + "expanded_ids": "⿱⿰冫广⿱士心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "士", + "广", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痤", + "codepoint": "U+75E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75E4", + "status": "exact_ids", + "ids": "⿱疒坐", + "canonical_ids": "⿱疒坐", + "expanded_ids": "⿱⿰冫广⿱⿰人人土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冫", + "土", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痥", + "codepoint": "U+75E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75E5", + "status": "exact_ids", + "ids": "⿱疒兌", + "canonical_ids": "⿱疒兌", + "expanded_ids": "⿱⿰冫广⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "冫", + "口", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痦", + "codepoint": "U+75E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75E6", + "status": "exact_ids", + "ids": "⿱疒吾", + "canonical_ids": "⿱疒吾", + "expanded_ids": "⿱⿰冫广⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "冫", + "口", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痧", + "codepoint": "U+75E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75E7", + "status": "exact_ids", + "ids": "⿱疒沙", + "canonical_ids": "⿱疒沙", + "expanded_ids": "⿱⿰冫广⿰氵⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "冫", + "小", + "广", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痨", + "codepoint": "U+75E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75E8", + "status": "exact_ids", + "ids": "⿱疒劳", + "canonical_ids": "⿱疒劳", + "expanded_ids": "⿱⿰冫广⿳艹冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "冫", + "力", + "广", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痩", + "codepoint": "U+75E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75E9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痪", + "codepoint": "U+75EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75EA", + "status": "exact_ids", + "ids": "⿱疒奂", + "canonical_ids": "⿱疒奂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "冫", + "大", + "广" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痫", + "codepoint": "U+75EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75EB", + "status": "exact_ids", + "ids": "⿱疒闲", + "canonical_ids": "⿱疒闲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "闲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痬", + "codepoint": "U+75EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75EC", + "status": "exact_ids", + "ids": "⿱疒易", + "canonical_ids": "⿱疒易", + "expanded_ids": "⿱⿰冫广⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "勿", + "广", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痭", + "codepoint": "U+75ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75ED", + "status": "exact_ids", + "ids": "⿱疒朋", + "canonical_ids": "⿱疒朋", + "expanded_ids": "⿱⿰冫广⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痮", + "codepoint": "U+75EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75EE", + "status": "exact_ids", + "ids": "⿱疒長", + "canonical_ids": "⿱疒長", + "expanded_ids": "⿱⿰冫广長", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "長" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痯", + "codepoint": "U+75EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75EF", + "status": "exact_ids", + "ids": "⿱疒官", + "canonical_ids": "⿱疒官", + "expanded_ids": "⿱⿰冫广⿱宀㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "冫", + "宀", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痰", + "codepoint": "U+75F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75F0", + "status": "exact_ids", + "ids": "⿱疒炎", + "canonical_ids": "⿱疒炎", + "expanded_ids": "⿱⿰冫广⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痱", + "codepoint": "U+75F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75F1", + "status": "exact_ids", + "ids": "⿱疒非", + "canonical_ids": "⿱疒非", + "expanded_ids": "⿱⿰冫广非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痲", + "codepoint": "U+75F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75F2", + "status": "exact_ids", + "ids": "⿱疒𣏟", + "canonical_ids": "⿱疒𣏟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "𣏟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痳", + "codepoint": "U+75F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75F3", + "status": "exact_ids", + "ids": "⿱疒林", + "canonical_ids": "⿱疒林", + "expanded_ids": "⿱⿰冫广⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痴", + "codepoint": "U+75F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75F4", + "status": "exact_ids", + "ids": "⿱疒知", + "canonical_ids": "⿱疒知", + "expanded_ids": "⿱⿰冫广⿰⿱⿻丿一大口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "冫", + "口", + "大", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痵", + "codepoint": "U+75F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75F5", + "status": "exact_ids", + "ids": "⿱疒季", + "canonical_ids": "⿱疒季", + "expanded_ids": "⿱⿰冫广⿱⿻丿木子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "冫", + "子", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痶", + "codepoint": "U+75F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75F6", + "status": "exact_ids", + "ids": "⿱疒典", + "canonical_ids": "⿱疒典", + "expanded_ids": "⿱⿰冫广典", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "典", + "冫", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痷", + "codepoint": "U+75F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75F7", + "status": "exact_ids", + "ids": "⿱疒奄", + "canonical_ids": "⿱疒奄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "大", + "广" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痸", + "codepoint": "U+75F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75F8", + "status": "exact_ids", + "ids": "⿱疒制", + "canonical_ids": "⿱疒制", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "制" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痹", + "codepoint": "U+75F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75F9", + "status": "exact_ids", + "ids": "⿱疒畀", + "canonical_ids": "⿱疒畀", + "expanded_ids": "⿱⿰冫广⿱田丌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "冫", + "广", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痺", + "codepoint": "U+75FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75FA", + "status": "exact_ids", + "ids": "⿱疒卑", + "canonical_ids": "⿱疒卑", + "expanded_ids": "⿱⿰冫广卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "卑", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痻", + "codepoint": "U+75FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75FB", + "status": "exact_ids", + "ids": "⿱疒昏", + "canonical_ids": "⿱疒昏", + "expanded_ids": "⿱⿰冫广⿱氏日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "日", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痼", + "codepoint": "U+75FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75FC", + "status": "exact_ids", + "ids": "⿱疒固", + "canonical_ids": "⿱疒固", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "固" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痽", + "codepoint": "U+75FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75FD", + "status": "exact_ids", + "ids": "⿱疒隹", + "canonical_ids": "⿱疒隹", + "expanded_ids": "⿱⿰冫广隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痾", + "codepoint": "U+75FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75FE", + "status": "exact_ids", + "ids": "⿱疒阿", + "canonical_ids": "⿱疒阿", + "expanded_ids": "⿱⿰冫广⿰阝⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "冫", + "口", + "广", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "痿", + "codepoint": "U+75FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-75FF", + "status": "exact_ids", + "ids": "⿱疒委", + "canonical_ids": "⿱疒委", + "expanded_ids": "⿱⿰冫广⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "冫", + "女", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘀", + "codepoint": "U+7600", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7600", + "status": "exact_ids", + "ids": "⿱疒於", + "canonical_ids": "⿱疒於", + "expanded_ids": "⿱⿰冫广⿰方⿱人冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冫", + "广", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘁", + "codepoint": "U+7601", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7601", + "status": "exact_ids", + "ids": "⿱疒卒", + "canonical_ids": "⿱疒卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘂", + "codepoint": "U+7602", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7602", + "status": "exact_ids", + "ids": "⿱疒亞", + "canonical_ids": "⿱疒亞", + "expanded_ids": "⿱⿰冫广亞", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亞", + "冫", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘃", + "codepoint": "U+7603", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7603", + "status": "exact_ids", + "ids": "⿱疒豖", + "canonical_ids": "⿱疒豖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "豖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘄", + "codepoint": "U+7604", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7604", + "status": "exact_ids", + "ids": "⿱疒昔", + "canonical_ids": "⿱疒昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "日" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘅", + "codepoint": "U+7605", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7605", + "status": "exact_ids", + "ids": "⿱疒单", + "canonical_ids": "⿱疒单", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "单" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘆", + "codepoint": "U+7606", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7606", + "status": "exact_ids", + "ids": "⿱疒参", + "canonical_ids": "⿱疒参", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "参" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘇", + "codepoint": "U+7607", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7607", + "status": "exact_ids", + "ids": "⿱疒重", + "canonical_ids": "⿱疒重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "冫", + "十", + "广" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘈", + "codepoint": "U+7608", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7608", + "status": "exact_ids", + "ids": "⿱疒契", + "canonical_ids": "⿱疒契", + "expanded_ids": "⿱⿰冫广⿱⿰丰刀大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "冫", + "刀", + "大", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘉", + "codepoint": "U+7609", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7609", + "status": "exact_ids", + "ids": "⿱疒兪", + "canonical_ids": "⿱疒兪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "兪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘊", + "codepoint": "U+760A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-760A", + "status": "exact_ids", + "ids": "⿱疒侯", + "canonical_ids": "⿱疒侯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "侯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘋", + "codepoint": "U+760B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-760B", + "status": "exact_ids", + "ids": "⿱疒風", + "canonical_ids": "⿱疒風", + "expanded_ids": "⿱⿰冫广風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘌", + "codepoint": "U+760C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-760C", + "status": "exact_ids", + "ids": "⿱疒剌", + "canonical_ids": "⿱疒剌", + "expanded_ids": "⿱⿰冫广⿰⿻木口刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "刂", + "口", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘍", + "codepoint": "U+760D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-760D", + "status": "exact_ids", + "ids": "⿱疒昜", + "canonical_ids": "⿱疒昜", + "expanded_ids": "⿱⿰冫广⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冫", + "勿", + "广", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘎", + "codepoint": "U+760E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-760E", + "status": "exact_ids", + "ids": "⿱疒甚", + "canonical_ids": "⿱疒甚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "甘" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘏", + "codepoint": "U+760F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-760F", + "status": "exact_ids", + "ids": "⿱疒者", + "canonical_ids": "⿱疒者", + "expanded_ids": "⿱⿰冫广⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "冫", + "土", + "广", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘐", + "codepoint": "U+7610", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7610", + "status": "exact_ids", + "ids": "⿱疒臾", + "canonical_ids": "⿱疒臾", + "expanded_ids": "⿱⿰冫广⿻人臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冫", + "广", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘑", + "codepoint": "U+7611", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7611", + "status": "exact_ids", + "ids": "⿱疒咼", + "canonical_ids": "⿱疒咼", + "expanded_ids": "⿱⿰冫广⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "冫", + "口", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘒", + "codepoint": "U+7612", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7612", + "status": "exact_ids", + "ids": "⿱疒軍", + "canonical_ids": "⿱疒軍", + "expanded_ids": "⿱⿰冫广⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "冫", + "广", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘓", + "codepoint": "U+7613", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7613", + "status": "exact_ids", + "ids": "⿱疒奐", + "canonical_ids": "⿱疒奐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "奐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘔", + "codepoint": "U+7614", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7614", + "status": "exact_ids", + "ids": "⿱疒苦", + "canonical_ids": "⿱疒苦", + "expanded_ids": "⿱⿰冫广⿱艹⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "十", + "口", + "广", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘕", + "codepoint": "U+7615", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7615", + "status": "exact_ids", + "ids": "⿱疒叚", + "canonical_ids": "⿱疒叚", + "expanded_ids": "⿱⿰冫广叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "叚", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘖", + "codepoint": "U+7616", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7616", + "status": "exact_ids", + "ids": "⿱疒音", + "canonical_ids": "⿱疒音", + "expanded_ids": "⿱⿰冫广⿱立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘗", + "codepoint": "U+7617", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7617", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘘", + "codepoint": "U+7618", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7618", + "status": "exact_ids", + "ids": "⿱疒娄", + "canonical_ids": "⿱疒娄", + "expanded_ids": "⿱⿰冫广⿱⿻木丷女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "冫", + "女", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘙", + "codepoint": "U+7619", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7619", + "status": "exact_ids", + "ids": "⿱疒蚤", + "canonical_ids": "⿱疒蚤", + "expanded_ids": "⿱⿰冫广⿱⿻又丶虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "冫", + "又", + "广", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘚", + "codepoint": "U+761A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-761A", + "status": "exact_ids", + "ids": "⿱疒欮", + "canonical_ids": "⿱疒欮", + "expanded_ids": "⿱⿰冫广⿰⿱䒑屮欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "冫", + "屮", + "广", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘛", + "codepoint": "U+761B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-761B", + "status": "exact_ids", + "ids": "⿱疒恝", + "canonical_ids": "⿱疒恝", + "expanded_ids": "⿱⿰冫广⿱⿰丰刀心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "冫", + "刀", + "广", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘜", + "codepoint": "U+761C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-761C", + "status": "exact_ids", + "ids": "⿱疒息", + "canonical_ids": "⿱疒息", + "expanded_ids": "⿱⿰冫广⿱⿻目丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "冫", + "广", + "心", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘝", + "codepoint": "U+761D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-761D", + "status": "exact_ids", + "ids": "⿱疒眔", + "canonical_ids": "⿱疒眔", + "expanded_ids": "⿱⿰冫广⿱罒氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "氺", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘞", + "codepoint": "U+761E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-761E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘟", + "codepoint": "U+761F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-761F", + "status": "exact_ids", + "ids": "⿱疒𥁕", + "canonical_ids": "⿱疒𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "皿" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘠", + "codepoint": "U+7620", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7620", + "status": "exact_ids", + "ids": "⿱疒脊", + "canonical_ids": "⿱疒脊", + "expanded_ids": "⿱⿰冫广⿱兆月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "冫", + "广", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘡", + "codepoint": "U+7621", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7621", + "status": "exact_ids", + "ids": "⿱疒倉", + "canonical_ids": "⿱疒倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘢", + "codepoint": "U+7622", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7622", + "status": "exact_ids", + "ids": "⿱疒般", + "canonical_ids": "⿱疒般", + "expanded_ids": "⿱⿰冫广⿰舟⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "几", + "又", + "广", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘣", + "codepoint": "U+7623", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7623", + "status": "exact_ids", + "ids": "⿱疒鬼", + "canonical_ids": "⿱疒鬼", + "expanded_ids": "⿱⿰冫广鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘤", + "codepoint": "U+7624", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7624", + "status": "exact_ids", + "ids": "⿱疒留", + "canonical_ids": "⿱疒留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘥", + "codepoint": "U+7625", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7625", + "status": "exact_ids", + "ids": "⿱疒差", + "canonical_ids": "⿱疒差", + "expanded_ids": "⿱⿰冫广⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "工", + "广", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘦", + "codepoint": "U+7626", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7626", + "status": "exact_ids", + "ids": "⿱疒叟", + "canonical_ids": "⿱疒叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "又", + "广" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘧", + "codepoint": "U+7627", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7627", + "status": "exact_ids", + "ids": "⿱疒虐", + "canonical_ids": "⿱疒虐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "虐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘨", + "codepoint": "U+7628", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7628", + "status": "exact_ids", + "ids": "⿱疒真", + "canonical_ids": "⿱疒真", + "expanded_ids": "⿱⿰冫广⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "冫", + "十", + "广", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘩", + "codepoint": "U+7629", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7629", + "status": "exact_ids", + "ids": "⿱疒荅", + "canonical_ids": "⿱疒荅", + "expanded_ids": "⿱⿰冫广⿱艹⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冫", + "口", + "广", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘪", + "codepoint": "U+762A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-762A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘫", + "codepoint": "U+762B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-762B", + "status": "exact_ids", + "ids": "⿱疒难", + "canonical_ids": "⿱疒难", + "expanded_ids": "⿱⿰冫广⿰又隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "又", + "广", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘬", + "codepoint": "U+762C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-762C", + "status": "exact_ids", + "ids": "⿱疒張", + "canonical_ids": "⿱疒張", + "expanded_ids": "⿱⿰冫广⿰弓長", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "弓", + "長" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘭", + "codepoint": "U+762D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-762D", + "status": "exact_ids", + "ids": "⿱疒票", + "canonical_ids": "⿱疒票", + "expanded_ids": "⿱⿰冫广⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "冫", + "小", + "广", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘮", + "codepoint": "U+762E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-762E", + "status": "exact_ids", + "ids": "⿱疒參", + "canonical_ids": "⿱疒參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘯", + "codepoint": "U+762F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-762F", + "status": "exact_ids", + "ids": "⿱疒族", + "canonical_ids": "⿱疒族", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "族" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘰", + "codepoint": "U+7630", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7630", + "status": "exact_ids", + "ids": "⿱疒累", + "canonical_ids": "⿱疒累", + "expanded_ids": "⿱⿰冫广⿱田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "小", + "幺", + "广", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘱", + "codepoint": "U+7631", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7631", + "status": "exact_ids", + "ids": "⿱㾜心", + "canonical_ids": "⿱㾜心", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心" + ], + "unresolved_leaves": [ + "㾜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘲", + "codepoint": "U+7632", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7632", + "status": "exact_ids", + "ids": "⿱疒從", + "canonical_ids": "⿱疒從", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "從" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘳", + "codepoint": "U+7633", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7633", + "status": "exact_ids", + "ids": "⿱疒翏", + "canonical_ids": "⿱疒翏", + "expanded_ids": "⿱⿰冫广⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "冫", + "广", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘴", + "codepoint": "U+7634", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7634", + "status": "exact_ids", + "ids": "⿱疒章", + "canonical_ids": "⿱疒章", + "expanded_ids": "⿱⿰冫广⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "十", + "广", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘵", + "codepoint": "U+7635", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7635", + "status": "exact_ids", + "ids": "⿱疒祭", + "canonical_ids": "⿱疒祭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘶", + "codepoint": "U+7636", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7636", + "status": "exact_ids", + "ids": "⿱疒欶", + "canonical_ids": "⿱疒欶", + "expanded_ids": "⿱⿰冫广⿰⿻木口欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "口", + "广", + "木", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘷", + "codepoint": "U+7637", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7637", + "status": "exact_ids", + "ids": "⿱疒敕", + "canonical_ids": "⿱疒敕", + "expanded_ids": "⿱⿰冫广⿰⿻木口攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "口", + "广", + "攵", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘸", + "codepoint": "U+7638", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7638", + "status": "exact_ids", + "ids": "⿱疒𦙲", + "canonical_ids": "⿱疒𦙲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "𦙲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘹", + "codepoint": "U+7639", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7639", + "status": "exact_ids", + "ids": "⿱疒釣", + "canonical_ids": "⿱疒釣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "金" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘺", + "codepoint": "U+763A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-763A", + "status": "exact_ids", + "ids": "⿱疒屚", + "canonical_ids": "⿱疒屚", + "expanded_ids": "⿱⿰冫广⿱尸雨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "尸", + "广", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘻", + "codepoint": "U+763B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-763B", + "status": "exact_ids", + "ids": "⿱疒婁", + "canonical_ids": "⿱疒婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘼", + "codepoint": "U+763C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-763C", + "status": "exact_ids", + "ids": "⿱疒莫", + "canonical_ids": "⿱疒莫", + "expanded_ids": "⿱⿰冫广⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "大", + "广", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘽", + "codepoint": "U+763D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-763D", + "status": "exact_ids", + "ids": "⿱疒堇", + "canonical_ids": "⿱疒堇", + "expanded_ids": "⿱⿰冫广堇", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "堇", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘾", + "codepoint": "U+763E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-763E", + "status": "exact_ids", + "ids": "⿱疒隐", + "canonical_ids": "⿱疒隐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "彐", + "心", + "阝" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瘿", + "codepoint": "U+763F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-763F", + "status": "exact_ids", + "ids": "⿱疒婴", + "canonical_ids": "⿱疒婴", + "expanded_ids": "⿱⿰冫广⿱⿰⿻冂人⿻冂人女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "冫", + "女", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癀", + "codepoint": "U+7640", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7640", + "status": "exact_ids", + "ids": "⿱疒黄", + "canonical_ids": "⿱疒黄", + "expanded_ids": "⿱⿰冫广黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癁", + "codepoint": "U+7641", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7641", + "status": "exact_ids", + "ids": "⿱疒復", + "canonical_ids": "⿱疒復", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "彳" + ], + "unresolved_leaves": [ + "复" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "療", + "codepoint": "U+7642", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7642", + "status": "exact_ids", + "ids": "⿱疒尞", + "canonical_ids": "⿱疒尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "小", + "广" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癃", + "codepoint": "U+7643", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7643", + "status": "exact_ids", + "ids": "⿱疒隆", + "canonical_ids": "⿱疒隆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "隆" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癄", + "codepoint": "U+7644", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7644", + "status": "exact_ids", + "ids": "⿱疒焦", + "canonical_ids": "⿱疒焦", + "expanded_ids": "⿱⿰冫广⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "灬", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癅", + "codepoint": "U+7645", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7645", + "status": "exact_ids", + "ids": "⿱疒畱", + "canonical_ids": "⿱疒畱", + "expanded_ids": "⿱⿰冫广⿱丣田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丣", + "冫", + "广", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癆", + "codepoint": "U+7646", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7646", + "status": "exact_ids", + "ids": "⿱疒勞", + "canonical_ids": "⿱疒勞", + "expanded_ids": "⿱⿰冫广⿳⿰火火冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "冫", + "力", + "广", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癇", + "codepoint": "U+7647", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7647", + "status": "exact_ids", + "ids": "⿱疒閒", + "canonical_ids": "⿱疒閒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "閒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癈", + "codepoint": "U+7648", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7648", + "status": "exact_ids", + "ids": "⿱疒發", + "canonical_ids": "⿱疒發", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "發" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癉", + "codepoint": "U+7649", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7649", + "status": "exact_ids", + "ids": "⿱疒單", + "canonical_ids": "⿱疒單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癊", + "codepoint": "U+764A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-764A", + "status": "exact_ids", + "ids": "⿱疒陰", + "canonical_ids": "⿱疒陰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "二", + "人", + "冫", + "厶", + "广", + "阝" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癋", + "codepoint": "U+764B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-764B", + "status": "exact_ids", + "ids": "⿱疒惡", + "canonical_ids": "⿱疒惡", + "expanded_ids": "⿱⿰冫广⿱亞心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亞", + "冫", + "广", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癌", + "codepoint": "U+764C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-764C", + "status": "exact_ids", + "ids": "⿱疒嵒", + "canonical_ids": "⿱疒嵒", + "expanded_ids": "⿱⿰冫广⿱⿱口⿰口口山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "口", + "山", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癍", + "codepoint": "U+764D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-764D", + "status": "exact_ids", + "ids": "⿱疒斑", + "canonical_ids": "⿱疒斑", + "expanded_ids": "⿱⿰冫广⿲王文王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "文", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癎", + "codepoint": "U+764E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-764E", + "status": "exact_ids", + "ids": "⿱疒間", + "canonical_ids": "⿱疒間", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "間" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癏", + "codepoint": "U+764F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-764F", + "status": "exact_ids", + "ids": "⿱疒睘", + "canonical_ids": "⿱疒睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癐", + "codepoint": "U+7650", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7650", + "status": "exact_ids", + "ids": "⿱疒會", + "canonical_ids": "⿱疒會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "曰" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癑", + "codepoint": "U+7651", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7651", + "status": "exact_ids", + "ids": "⿱疒農", + "canonical_ids": "⿱疒農", + "expanded_ids": "⿱⿰冫广⿱曲辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "曲", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癒", + "codepoint": "U+7652", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7652", + "status": "exact_ids", + "ids": "⿱疒愈", + "canonical_ids": "⿱疒愈", + "expanded_ids": "⿱⿰冫广⿱⿱⿱人一⿰月刂心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冫", + "刂", + "广", + "心", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癓", + "codepoint": "U+7653", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7653", + "status": "exact_ids", + "ids": "⿱疒微", + "canonical_ids": "⿱疒微", + "expanded_ids": "⿱⿰冫广⿰彳⿰⿳山冖几攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "冫", + "几", + "山", + "广", + "彳", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 251, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癔", + "codepoint": "U+7654", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7654", + "status": "exact_ids", + "ids": "⿱疒意", + "canonical_ids": "⿱疒意", + "expanded_ids": "⿱⿰冫广⿱⿱立日心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "心", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癕", + "codepoint": "U+7655", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7655", + "status": "exact_ids", + "ids": "⿱疒雍", + "canonical_ids": "⿱疒雍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "雍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癖", + "codepoint": "U+7656", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7656", + "status": "exact_ids", + "ids": "⿱疒辟", + "canonical_ids": "⿱疒辟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "十", + "广", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癗", + "codepoint": "U+7657", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7657", + "status": "exact_ids", + "ids": "⿱疒雷", + "canonical_ids": "⿱疒雷", + "expanded_ids": "⿱⿰冫广⿱雨田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "田", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癘", + "codepoint": "U+7658", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7658", + "status": "exact_ids", + "ids": "⿱疒萬", + "canonical_ids": "⿱疒萬", + "expanded_ids": "⿱⿰冫广⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "田", + "禸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癙", + "codepoint": "U+7659", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7659", + "status": "exact_ids", + "ids": "⿱疒鼠", + "canonical_ids": "⿱疒鼠", + "expanded_ids": "⿱⿰冫广鼠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癚", + "codepoint": "U+765A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-765A", + "status": "exact_ids", + "ids": "⿱疒詹", + "canonical_ids": "⿱疒詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癛", + "codepoint": "U+765B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-765B", + "status": "exact_ids", + "ids": "⿱疒稟", + "canonical_ids": "⿱疒稟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亠", + "冫", + "广", + "木" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癜", + "codepoint": "U+765C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-765C", + "status": "exact_ids", + "ids": "⿱疒殿", + "canonical_ids": "⿱疒殿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "殿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癝", + "codepoint": "U+765D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-765D", + "status": "exact_ids", + "ids": "⿱疒禀", + "canonical_ids": "⿱疒禀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "禀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癞", + "codepoint": "U+765E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-765E", + "status": "exact_ids", + "ids": "⿱疒赖", + "canonical_ids": "⿱疒赖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "冫", + "口", + "广", + "木" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癟", + "codepoint": "U+765F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-765F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癠", + "codepoint": "U+7660", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7660", + "status": "exact_ids", + "ids": "⿱疒齊", + "canonical_ids": "⿱疒齊", + "expanded_ids": "⿱⿰冫广齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癡", + "codepoint": "U+7661", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7661", + "status": "exact_ids", + "ids": "⿱疒疑", + "canonical_ids": "⿱疒疑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "疑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癢", + "codepoint": "U+7662", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7662", + "status": "exact_ids", + "ids": "⿱疒飬", + "canonical_ids": "⿱疒飬", + "expanded_ids": "⿱⿰冫广⿱⿱丷⿻一大⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "丷", + "冫", + "大", + "广", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癣", + "codepoint": "U+7663", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7663", + "status": "exact_ids", + "ids": "⿱疒鲜", + "canonical_ids": "⿱疒鲜", + "expanded_ids": "⿱⿰冫广⿰鱼羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "羊", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癤", + "codepoint": "U+7664", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7664", + "status": "exact_ids", + "ids": "⿱疒節", + "canonical_ids": "⿱疒節", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "卩", + "广", + "艮" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癥", + "codepoint": "U+7665", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7665", + "status": "exact_ids", + "ids": "⿱疒徵", + "canonical_ids": "⿱疒徵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "徵" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癦", + "codepoint": "U+7666", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7666", + "status": "exact_ids", + "ids": "⿱疒墨", + "canonical_ids": "⿱疒墨", + "expanded_ids": "⿱⿰冫广⿱黑土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "土", + "广", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癧", + "codepoint": "U+7667", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7667", + "status": "exact_ids", + "ids": "⿱疒歷", + "canonical_ids": "⿱疒歷", + "expanded_ids": "⿱⿰冫广⿱⿱厂⿰⿻丿木⿻丿木止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "冫", + "厂", + "广", + "木", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癨", + "codepoint": "U+7668", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7668", + "status": "exact_ids", + "ids": "⿱疒霍", + "canonical_ids": "⿱疒霍", + "expanded_ids": "⿱⿰冫广⿱雨隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "隹", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癩", + "codepoint": "U+7669", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7669", + "status": "exact_ids", + "ids": "⿱疒賴", + "canonical_ids": "⿱疒賴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "賴" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癪", + "codepoint": "U+766A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-766A", + "status": "exact_ids", + "ids": "⿱疒積", + "canonical_ids": "⿱疒積", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "八", + "冫", + "广", + "木", + "目" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癫", + "codepoint": "U+766B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-766B", + "status": "exact_ids", + "ids": "⿱疒颠", + "canonical_ids": "⿱疒颠", + "expanded_ids": "⿱⿰冫广⿰⿱十⿻⿱目八一⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "八", + "冂", + "冫", + "十", + "广", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 374, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癬", + "codepoint": "U+766C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-766C", + "status": "exact_ids", + "ids": "⿱疒鮮", + "canonical_ids": "⿱疒鮮", + "expanded_ids": "⿱⿰冫广⿰魚羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "羊", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癭", + "codepoint": "U+766D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-766D", + "status": "exact_ids", + "ids": "⿱疒嬰", + "canonical_ids": "⿱疒嬰", + "expanded_ids": "⿱⿰冫广⿱⿰⿱目八⿱目八女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冫", + "女", + "广", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癮", + "codepoint": "U+766E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-766E", + "status": "exact_ids", + "ids": "⿱疒隱", + "canonical_ids": "⿱疒隱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广" + ], + "unresolved_leaves": [ + "隱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癯", + "codepoint": "U+766F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-766F", + "status": "exact_ids", + "ids": "⿱疒瞿", + "canonical_ids": "⿱疒瞿", + "expanded_ids": "⿱⿰冫广⿱⿰目目隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癰", + "codepoint": "U+7670", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7670", + "status": "exact_ids", + "ids": "⿱疒雝", + "canonical_ids": "⿱疒雝", + "expanded_ids": "⿱⿰冫广⿰⿱巛⿱口巴隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "口", + "巛", + "巴", + "广", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癱", + "codepoint": "U+7671", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7671", + "status": "exact_ids", + "ids": "⿱疒難", + "canonical_ids": "⿱疒難", + "expanded_ids": "⿱⿰冫广⿰堇隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "堇", + "广", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癲", + "codepoint": "U+7672", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7672", + "status": "exact_ids", + "ids": "⿱疒顛", + "canonical_ids": "⿱疒顛", + "expanded_ids": "⿱⿰冫广⿰⿱十⿻⿱目八一⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "冫", + "十", + "广", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 374, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癳", + "codepoint": "U+7673", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7673", + "status": "exact_ids", + "ids": "⿱疒纍", + "canonical_ids": "⿱疒纍", + "expanded_ids": "⿱⿰冫广⿱⿱田⿰田田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "小", + "幺", + "广", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癴", + "codepoint": "U+7674", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7674", + "status": "exact_ids", + "ids": "⿱𤼙手", + "canonical_ids": "⿱𤼙手", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "手" + ], + "unresolved_leaves": [ + "𤼙" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癵", + "codepoint": "U+7675", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7675", + "status": "exact_ids", + "ids": "⿱𤼙肉", + "canonical_ids": "⿱𤼙肉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [ + "𤼙" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癶", + "codepoint": "U+7676", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7676", + "status": "leaf_self_fallback", + "ids": "癶", + "canonical_ids": "癶", + "expanded_ids": "癶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "癶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癷", + "codepoint": "U+7677", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7677", + "status": "exact_ids", + "ids": "⿱癶干", + "canonical_ids": "⿱癶干", + "expanded_ids": "⿱癶⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "癶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癸", + "codepoint": "U+7678", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7678", + "status": "exact_ids", + "ids": "⿱癶天", + "canonical_ids": "⿱癶天", + "expanded_ids": "⿱癶⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "癶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癹", + "codepoint": "U+7679", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7679", + "status": "exact_ids", + "ids": "⿱癶殳", + "canonical_ids": "⿱癶殳", + "expanded_ids": "⿱癶⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "癶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "発", + "codepoint": "U+767A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-767A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "登", + "codepoint": "U+767B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-767B", + "status": "exact_ids", + "ids": "⿱癶豆", + "canonical_ids": "⿱癶豆", + "expanded_ids": "⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "癶", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "發", + "codepoint": "U+767C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-767C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "白", + "codepoint": "U+767D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-767D", + "status": "exact_ids", + "ids": "⿻日丶", + "canonical_ids": "⿻日丶", + "expanded_ids": "⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "百", + "codepoint": "U+767E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-767E", + "status": "exact_ids", + "ids": "⿻一白", + "canonical_ids": "⿻一白", + "expanded_ids": "⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "癿", + "codepoint": "U+767F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-767F", + "status": "exact_ids", + "ids": "⿰白乚", + "canonical_ids": "⿰白乚", + "expanded_ids": "⿰⿻日丶乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乚", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皀", + "codepoint": "U+7680", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7680", + "status": "exact_ids", + "ids": "⿱白匕", + "canonical_ids": "⿱白匕", + "expanded_ids": "⿱⿻日丶匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皁", + "codepoint": "U+7681", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7681", + "status": "exact_ids", + "ids": "⿱白十", + "canonical_ids": "⿱白十", + "expanded_ids": "⿱⿻日丶十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "十", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皂", + "codepoint": "U+7682", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7682", + "status": "exact_ids", + "ids": "⿱白七", + "canonical_ids": "⿱白七", + "expanded_ids": "⿱⿻日丶七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丶", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皃", + "codepoint": "U+7683", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7683", + "status": "exact_ids", + "ids": "⿱白儿", + "canonical_ids": "⿱白儿", + "expanded_ids": "⿱⿻日丶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "儿", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "的", + "codepoint": "U+7684", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7684", + "status": "exact_ids", + "ids": "⿰白勺", + "canonical_ids": "⿰白勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皅", + "codepoint": "U+7685", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7685", + "status": "exact_ids", + "ids": "⿰白巴", + "canonical_ids": "⿰白巴", + "expanded_ids": "⿰⿻日丶巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "巴", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皆", + "codepoint": "U+7686", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7686", + "status": "exact_ids", + "ids": "⿱比白", + "canonical_ids": "⿱比白", + "expanded_ids": "⿱⿰匕匕⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皇", + "codepoint": "U+7687", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7687", + "status": "exact_ids", + "ids": "⿱白王", + "canonical_ids": "⿱白王", + "expanded_ids": "⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皈", + "codepoint": "U+7688", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7688", + "status": "exact_ids", + "ids": "⿰白反", + "canonical_ids": "⿰白反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皉", + "codepoint": "U+7689", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7689", + "status": "exact_ids", + "ids": "⿰白此", + "canonical_ids": "⿰白此", + "expanded_ids": "⿰⿻日丶⿰止匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "日", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皊", + "codepoint": "U+768A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-768A", + "status": "exact_ids", + "ids": "⿰白令", + "canonical_ids": "⿰白令", + "expanded_ids": "⿰⿻日丶⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "人", + "日", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皋", + "codepoint": "U+768B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-768B", + "status": "exact_ids", + "ids": "⿱白夲", + "canonical_ids": "⿱白夲", + "expanded_ids": "⿱⿻日丶⿱大十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "十", + "大", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皌", + "codepoint": "U+768C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-768C", + "status": "exact_ids", + "ids": "⿰白末", + "canonical_ids": "⿰白末", + "expanded_ids": "⿰⿻日丶⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皍", + "codepoint": "U+768D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-768D", + "status": "exact_ids", + "ids": "⿱白𠨐", + "canonical_ids": "⿱白𠨐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日" + ], + "unresolved_leaves": [ + "𠨐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皎", + "codepoint": "U+768E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-768E", + "status": "exact_ids", + "ids": "⿰白交", + "canonical_ids": "⿰白交", + "expanded_ids": "⿰⿻日丶⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亠", + "日", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皏", + "codepoint": "U+768F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-768F", + "status": "exact_ids", + "ids": "⿰白并", + "canonical_ids": "⿰白并", + "expanded_ids": "⿰⿻日丶⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "丷", + "廾", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皐", + "codepoint": "U+7690", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7690", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皑", + "codepoint": "U+7691", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7691", + "status": "exact_ids", + "ids": "⿰白岂", + "canonical_ids": "⿰白岂", + "expanded_ids": "⿰⿻日丶⿱山己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "山", + "己", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皒", + "codepoint": "U+7692", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7692", + "status": "exact_ids", + "ids": "⿰白我", + "canonical_ids": "⿰白我", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "十", + "日" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皓", + "codepoint": "U+7693", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7693", + "status": "exact_ids", + "ids": "⿰白告", + "canonical_ids": "⿰白告", + "expanded_ids": "⿰⿻日丶⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "日", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皔", + "codepoint": "U+7694", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7694", + "status": "exact_ids", + "ids": "⿰白旱", + "canonical_ids": "⿰白旱", + "expanded_ids": "⿰⿻日丶⿱日⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "十", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皕", + "codepoint": "U+7695", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7695", + "status": "exact_ids", + "ids": "⿰百百", + "canonical_ids": "⿰百百", + "expanded_ids": "⿰⿻一⿻日丶⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皖", + "codepoint": "U+7696", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7696", + "status": "exact_ids", + "ids": "⿰白完", + "canonical_ids": "⿰白完", + "expanded_ids": "⿰⿻日丶⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "儿", + "宀", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皗", + "codepoint": "U+7697", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7697", + "status": "exact_ids", + "ids": "⿰白周", + "canonical_ids": "⿰白周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皘", + "codepoint": "U+7698", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7698", + "status": "exact_ids", + "ids": "⿰白青", + "canonical_ids": "⿰白青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "月" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皙", + "codepoint": "U+7699", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7699", + "status": "exact_ids", + "ids": "⿱析白", + "canonical_ids": "⿱析白", + "expanded_ids": "⿱⿰木斤⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "斤", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皚", + "codepoint": "U+769A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-769A", + "status": "exact_ids", + "ids": "⿰白豈", + "canonical_ids": "⿰白豈", + "expanded_ids": "⿰⿻日丶⿱山豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "山", + "日", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皛", + "codepoint": "U+769B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-769B", + "status": "exact_ids", + "ids": "⿱白⿰白白", + "canonical_ids": "⿱白⿰白白", + "expanded_ids": "⿱⿻日丶⿰⿻日丶⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皜", + "codepoint": "U+769C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-769C", + "status": "exact_ids", + "ids": "⿰白高", + "canonical_ids": "⿰白高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皝", + "codepoint": "U+769D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-769D", + "status": "exact_ids", + "ids": "⿰皇光", + "canonical_ids": "⿰皇光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "儿", + "日", + "王" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皞", + "codepoint": "U+769E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-769E", + "status": "exact_ids", + "ids": "⿰白皋", + "canonical_ids": "⿰白皋", + "expanded_ids": "⿰⿻日丶⿱⿻日丶⿱大十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "十", + "大", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皟", + "codepoint": "U+769F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-769F", + "status": "exact_ids", + "ids": "⿰白責", + "canonical_ids": "⿰白責", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "八", + "日", + "目" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皠", + "codepoint": "U+76A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76A0", + "status": "exact_ids", + "ids": "⿰白崔", + "canonical_ids": "⿰白崔", + "expanded_ids": "⿰⿻日丶⿱山隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "山", + "日", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皡", + "codepoint": "U+76A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76A1", + "status": "exact_ids", + "ids": "⿰白皐", + "canonical_ids": "⿰白皐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日" + ], + "unresolved_leaves": [ + "皐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皢", + "codepoint": "U+76A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76A2", + "status": "exact_ids", + "ids": "⿰白堯", + "canonical_ids": "⿰白堯", + "expanded_ids": "⿰⿻日丶⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "儿", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皣", + "codepoint": "U+76A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76A3", + "status": "exact_ids", + "ids": "⿰白華", + "canonical_ids": "⿰白華", + "expanded_ids": "⿰⿻日丶⿱艹𠦒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "艹", + "𠦒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 154, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皤", + "codepoint": "U+76A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76A4", + "status": "exact_ids", + "ids": "⿰白番", + "canonical_ids": "⿰白番", + "expanded_ids": "⿰⿻日丶⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丷", + "丿", + "日", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皥", + "codepoint": "U+76A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76A5", + "status": "exact_ids", + "ids": "⿰白臯", + "canonical_ids": "⿰白臯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日" + ], + "unresolved_leaves": [ + "臯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皦", + "codepoint": "U+76A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76A6", + "status": "exact_ids", + "ids": "⿰白敫", + "canonical_ids": "⿰白敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皧", + "codepoint": "U+76A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76A7", + "status": "exact_ids", + "ids": "⿰白愛", + "canonical_ids": "⿰白愛", + "expanded_ids": "⿰⿻日丶⿳爫冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "冖", + "夊", + "心", + "日", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皨", + "codepoint": "U+76A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76A8", + "status": "exact_ids", + "ids": "⿱皛土", + "canonical_ids": "⿱皛土", + "expanded_ids": "⿱⿱⿻日丶⿰⿻日丶⿻日丶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皩", + "codepoint": "U+76A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76A9", + "status": "exact_ids", + "ids": "⿰皇晃", + "canonical_ids": "⿰皇晃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "儿", + "日", + "王" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皪", + "codepoint": "U+76AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76AA", + "status": "exact_ids", + "ids": "⿰白樂", + "canonical_ids": "⿰白樂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日" + ], + "unresolved_leaves": [ + "樂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皫", + "codepoint": "U+76AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76AB", + "status": "exact_ids", + "ids": "⿰白麃", + "canonical_ids": "⿰白麃", + "expanded_ids": "⿰⿻日丶⿱鹿灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "灬", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皬", + "codepoint": "U+76AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76AC", + "status": "exact_ids", + "ids": "⿰白霍", + "canonical_ids": "⿰白霍", + "expanded_ids": "⿰⿻日丶⿱雨隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "隹", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皭", + "codepoint": "U+76AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76AD", + "status": "exact_ids", + "ids": "⿰白爵", + "canonical_ids": "⿰白爵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日" + ], + "unresolved_leaves": [ + "爵" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皮", + "codepoint": "U+76AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76AE", + "status": "leaf_self_fallback", + "ids": "皮", + "canonical_ids": "皮", + "expanded_ids": "皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皯", + "codepoint": "U+76AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76AF", + "status": "exact_ids", + "ids": "⿰皮干", + "canonical_ids": "⿰皮干", + "expanded_ids": "⿰皮⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皰", + "codepoint": "U+76B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76B0", + "status": "exact_ids", + "ids": "⿰皮包", + "canonical_ids": "⿰皮包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皮" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皱", + "codepoint": "U+76B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76B1", + "status": "exact_ids", + "ids": "⿰刍皮", + "canonical_ids": "⿰刍皮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "皮" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皲", + "codepoint": "U+76B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76B2", + "status": "exact_ids", + "ids": "⿰军皮", + "canonical_ids": "⿰军皮", + "expanded_ids": "⿰⿱冖车皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "皮", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皳", + "codepoint": "U+76B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76B3", + "status": "exact_ids", + "ids": "⿰求皮", + "canonical_ids": "⿰求皮", + "expanded_ids": "⿰求皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "求", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皴", + "codepoint": "U+76B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76B4", + "status": "exact_ids", + "ids": "⿰夋皮", + "canonical_ids": "⿰夋皮", + "expanded_ids": "⿰⿱⿱厶儿夂皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皵", + "codepoint": "U+76B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76B5", + "status": "exact_ids", + "ids": "⿰昔皮", + "canonical_ids": "⿰昔皮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "皮" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皶", + "codepoint": "U+76B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76B6", + "status": "exact_ids", + "ids": "⿰查皮", + "canonical_ids": "⿰查皮", + "expanded_ids": "⿰⿱木⿱日一皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "木", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皷", + "codepoint": "U+76B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76B7", + "status": "exact_ids", + "ids": "⿰壴皮", + "canonical_ids": "⿰壴皮", + "expanded_ids": "⿰⿱十豆皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "皮", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皸", + "codepoint": "U+76B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76B8", + "status": "exact_ids", + "ids": "⿰軍皮", + "canonical_ids": "⿰軍皮", + "expanded_ids": "⿰⿱冖車皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "皮", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皹", + "codepoint": "U+76B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76B9", + "status": "exact_ids", + "ids": "⿰皮軍", + "canonical_ids": "⿰皮軍", + "expanded_ids": "⿰皮⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "皮", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皺", + "codepoint": "U+76BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76BA", + "status": "exact_ids", + "ids": "⿰芻皮", + "canonical_ids": "⿰芻皮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皮" + ], + "unresolved_leaves": [ + "芻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皻", + "codepoint": "U+76BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76BB", + "status": "exact_ids", + "ids": "⿰虘皮", + "canonical_ids": "⿰虘皮", + "expanded_ids": "⿰⿱虍且皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "皮", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皼", + "codepoint": "U+76BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76BC", + "status": "exact_ids", + "ids": "⿰壹皮", + "canonical_ids": "⿰壹皮", + "expanded_ids": "⿰⿳土冖豆皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "土", + "皮", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皽", + "codepoint": "U+76BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76BD", + "status": "exact_ids", + "ids": "⿰亶皮", + "canonical_ids": "⿰亶皮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "日", + "皮" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皾", + "codepoint": "U+76BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76BE", + "status": "exact_ids", + "ids": "⿰賣皮", + "canonical_ids": "⿰賣皮", + "expanded_ids": "⿰⿱士⿱罒⿱目八皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "士", + "皮", + "目", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "皿", + "codepoint": "U+76BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76BF", + "status": "leaf_self_fallback", + "ids": "皿", + "canonical_ids": "皿", + "expanded_ids": "皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盀", + "codepoint": "U+76C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76C0", + "status": "exact_ids", + "ids": "⿱卜皿", + "canonical_ids": "⿱卜皿", + "expanded_ids": "⿱卜皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盁", + "codepoint": "U+76C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76C1", + "status": "exact_ids", + "ids": "⿱乃皿", + "canonical_ids": "⿱乃皿", + "expanded_ids": "⿱乃皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盂", + "codepoint": "U+76C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76C2", + "status": "exact_ids", + "ids": "⿱于皿", + "canonical_ids": "⿱于皿", + "expanded_ids": "⿱⿻二亅皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盃", + "codepoint": "U+76C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76C3", + "status": "exact_ids", + "ids": "⿱不皿", + "canonical_ids": "⿱不皿", + "expanded_ids": "⿱不皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盄", + "codepoint": "U+76C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76C4", + "status": "exact_ids", + "ids": "⿱弔皿", + "canonical_ids": "⿱弔皿", + "expanded_ids": "⿱⿻弓丨皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "弓", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盅", + "codepoint": "U+76C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76C5", + "status": "exact_ids", + "ids": "⿱中皿", + "canonical_ids": "⿱中皿", + "expanded_ids": "⿱⿻口丨皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盆", + "codepoint": "U+76C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76C6", + "status": "exact_ids", + "ids": "⿱分皿", + "canonical_ids": "⿱分皿", + "expanded_ids": "⿱⿱八刀皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盇", + "codepoint": "U+76C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76C7", + "status": "exact_ids", + "ids": "⿱太皿", + "canonical_ids": "⿱太皿", + "expanded_ids": "⿱⿻大丶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盈", + "codepoint": "U+76C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76C8", + "status": "exact_ids", + "ids": "⿱夃皿", + "canonical_ids": "⿱夃皿", + "expanded_ids": "⿱⿻乃又皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "又", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盉", + "codepoint": "U+76C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76C9", + "status": "exact_ids", + "ids": "⿱禾皿", + "canonical_ids": "⿱禾皿", + "expanded_ids": "⿱⿻丿木皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "益", + "codepoint": "U+76CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76CA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盋", + "codepoint": "U+76CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76CB", + "status": "exact_ids", + "ids": "⿱犮皿", + "canonical_ids": "⿱犮皿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盌", + "codepoint": "U+76CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76CC", + "status": "exact_ids", + "ids": "⿱夗皿", + "canonical_ids": "⿱夗皿", + "expanded_ids": "⿱⿰夕㔾皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盍", + "codepoint": "U+76CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76CD", + "status": "exact_ids", + "ids": "⿱去皿", + "canonical_ids": "⿱去皿", + "expanded_ids": "⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盎", + "codepoint": "U+76CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76CE", + "status": "exact_ids", + "ids": "⿱央皿", + "canonical_ids": "⿱央皿", + "expanded_ids": "⿱⿻冂大皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盏", + "codepoint": "U+76CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76CF", + "status": "exact_ids", + "ids": "⿱戋皿", + "canonical_ids": "⿱戋皿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "皿" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盐", + "codepoint": "U+76D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76D0", + "status": "exact_ids", + "ids": "⿱圤皿", + "canonical_ids": "⿱圤皿", + "expanded_ids": "⿱⿰土卜皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "土", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "监", + "codepoint": "U+76D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76D1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盒", + "codepoint": "U+76D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76D2", + "status": "exact_ids", + "ids": "⿱合皿", + "canonical_ids": "⿱合皿", + "expanded_ids": "⿱⿱⿱人一口皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盓", + "codepoint": "U+76D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76D3", + "status": "exact_ids", + "ids": "⿱汙皿", + "canonical_ids": "⿱汙皿", + "expanded_ids": "⿱⿰氵⿻二亅皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "氵", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盔", + "codepoint": "U+76D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76D4", + "status": "exact_ids", + "ids": "⿱灰皿", + "canonical_ids": "⿱灰皿", + "expanded_ids": "⿱⿱厂火皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "火", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盕", + "codepoint": "U+76D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76D5", + "status": "exact_ids", + "ids": "⿱汎皿", + "canonical_ids": "⿱汎皿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "皿" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盖", + "codepoint": "U+76D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76D6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盗", + "codepoint": "U+76D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76D7", + "status": "exact_ids", + "ids": "⿱次皿", + "canonical_ids": "⿱次皿", + "expanded_ids": "⿱⿰冫欠皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "欠", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盘", + "codepoint": "U+76D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76D8", + "status": "exact_ids", + "ids": "⿱舟皿", + "canonical_ids": "⿱舟皿", + "expanded_ids": "⿱舟皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盙", + "codepoint": "U+76D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76D9", + "status": "exact_ids", + "ids": "⿱甫皿", + "canonical_ids": "⿱甫皿", + "expanded_ids": "⿱甫皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甫", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盚", + "codepoint": "U+76DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76DA", + "status": "exact_ids", + "ids": "⿱求皿", + "canonical_ids": "⿱求皿", + "expanded_ids": "⿱求皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "求", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盛", + "codepoint": "U+76DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76DB", + "status": "exact_ids", + "ids": "⿱成皿", + "canonical_ids": "⿱成皿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿" + ], + "unresolved_leaves": [ + "成" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盜", + "codepoint": "U+76DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76DC", + "status": "exact_ids", + "ids": "⿱㳄皿", + "canonical_ids": "⿱㳄皿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿" + ], + "unresolved_leaves": [ + "㳄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盝", + "codepoint": "U+76DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76DD", + "status": "exact_ids", + "ids": "⿱录皿", + "canonical_ids": "⿱录皿", + "expanded_ids": "⿱⿱彐氺皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "氺", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盞", + "codepoint": "U+76DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76DE", + "status": "exact_ids", + "ids": "⿱戔皿", + "canonical_ids": "⿱戔皿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盟", + "codepoint": "U+76DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76DF", + "status": "exact_ids", + "ids": "⿱明皿", + "canonical_ids": "⿱明皿", + "expanded_ids": "⿱⿰日月皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "月", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盠", + "codepoint": "U+76E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76E0", + "status": "exact_ids", + "ids": "⿱彖皿", + "canonical_ids": "⿱彖皿", + "expanded_ids": "⿱⿱彑𧰨皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "皿", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盡", + "codepoint": "U+76E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76E1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盢", + "codepoint": "U+76E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76E2", + "status": "exact_ids", + "ids": "⿱畎皿", + "canonical_ids": "⿱畎皿", + "expanded_ids": "⿱⿰田⿻大丶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "田", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "監", + "codepoint": "U+76E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76E3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盤", + "codepoint": "U+76E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76E4", + "status": "exact_ids", + "ids": "⿱般皿", + "canonical_ids": "⿱般皿", + "expanded_ids": "⿱⿰舟⿱几又皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "皿", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盥", + "codepoint": "U+76E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76E5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盦", + "codepoint": "U+76E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76E6", + "status": "exact_ids", + "ids": "⿱酓皿", + "canonical_ids": "⿱酓皿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "皿" + ], + "unresolved_leaves": [ + "㇇", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盧", + "codepoint": "U+76E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76E7", + "status": "exact_ids", + "ids": "⿱𧆨皿", + "canonical_ids": "⿱𧆨皿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盨", + "codepoint": "U+76E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76E8", + "status": "exact_ids", + "ids": "⿱須皿", + "canonical_ids": "⿱須皿", + "expanded_ids": "⿱⿰彡⿱⿱一丿⿱目八皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "彡", + "皿", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盩", + "codepoint": "U+76E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76E9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盪", + "codepoint": "U+76EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76EA", + "status": "exact_ids", + "ids": "⿱湯皿", + "canonical_ids": "⿱湯皿", + "expanded_ids": "⿱⿰氵⿱⿱日一勿皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "氵", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盫", + "codepoint": "U+76EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76EB", + "status": "exact_ids", + "ids": "⿱𨠭皿", + "canonical_ids": "⿱𨠭皿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿" + ], + "unresolved_leaves": [ + "𨠭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盬", + "codepoint": "U+76EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76EC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盭", + "codepoint": "U+76ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76ED", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "目", + "codepoint": "U+76EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76EE", + "status": "leaf_self_fallback", + "ids": "目", + "canonical_ids": "目", + "expanded_ids": "目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盯", + "codepoint": "U+76EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76EF", + "status": "exact_ids", + "ids": "⿰目丁", + "canonical_ids": "⿰目丁", + "expanded_ids": "⿰目⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盰", + "codepoint": "U+76F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76F0", + "status": "exact_ids", + "ids": "⿰目干", + "canonical_ids": "⿰目干", + "expanded_ids": "⿰目⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盱", + "codepoint": "U+76F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76F1", + "status": "exact_ids", + "ids": "⿰目于", + "canonical_ids": "⿰目于", + "expanded_ids": "⿰目⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盲", + "codepoint": "U+76F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76F2", + "status": "exact_ids", + "ids": "⿱亡目", + "canonical_ids": "⿱亡目", + "expanded_ids": "⿱⿻亠乚目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盳", + "codepoint": "U+76F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76F3", + "status": "exact_ids", + "ids": "⿰目亡", + "canonical_ids": "⿰目亡", + "expanded_ids": "⿰目⿻亠乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "直", + "codepoint": "U+76F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76F4", + "status": "exact_ids", + "ids": "⿱𥃭乚", + "canonical_ids": "⿱𥃭乚", + "expanded_ids": "⿱⿱十目乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "十", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盵", + "codepoint": "U+76F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76F5", + "status": "exact_ids", + "ids": "⿰目乞", + "canonical_ids": "⿰目乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盶", + "codepoint": "U+76F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76F6", + "status": "exact_ids", + "ids": "⿰目元", + "canonical_ids": "⿰目元", + "expanded_ids": "⿰目⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盷", + "codepoint": "U+76F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76F7", + "status": "exact_ids", + "ids": "⿰目匀", + "canonical_ids": "⿰目匀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "匀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "相", + "codepoint": "U+76F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76F8", + "status": "exact_ids", + "ids": "⿰木目", + "canonical_ids": "⿰木目", + "expanded_ids": "⿰木目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盹", + "codepoint": "U+76F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76F9", + "status": "exact_ids", + "ids": "⿰目屯", + "canonical_ids": "⿰目屯", + "expanded_ids": "⿰目屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盺", + "codepoint": "U+76FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76FA", + "status": "exact_ids", + "ids": "⿰目斤", + "canonical_ids": "⿰目斤", + "expanded_ids": "⿰目斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盻", + "codepoint": "U+76FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76FB", + "status": "exact_ids", + "ids": "⿰目兮", + "canonical_ids": "⿰目兮", + "expanded_ids": "⿰目⿱八丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "八", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盼", + "codepoint": "U+76FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76FC", + "status": "exact_ids", + "ids": "⿰目分", + "canonical_ids": "⿰目分", + "expanded_ids": "⿰目⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盽", + "codepoint": "U+76FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76FD", + "status": "exact_ids", + "ids": "⿰目丰", + "canonical_ids": "⿰目丰", + "expanded_ids": "⿰目丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盾", + "codepoint": "U+76FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76FE", + "status": "exact_ids", + "ids": "⿱⺁𥃭", + "canonical_ids": "⿱⺁𥃭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "目" + ], + "unresolved_leaves": [ + "⺁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "盿", + "codepoint": "U+76FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-76FF", + "status": "exact_ids", + "ids": "⿰目文", + "canonical_ids": "⿰目文", + "expanded_ids": "⿰目文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眀", + "codepoint": "U+7700", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7700", + "status": "exact_ids", + "ids": "⿰目月", + "canonical_ids": "⿰目月", + "expanded_ids": "⿰目月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "省", + "codepoint": "U+7701", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7701", + "status": "exact_ids", + "ids": "⿱少目", + "canonical_ids": "⿱少目", + "expanded_ids": "⿱⿱小丿目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眂", + "codepoint": "U+7702", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7702", + "status": "exact_ids", + "ids": "⿰目氏", + "canonical_ids": "⿰目氏", + "expanded_ids": "⿰目氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氏", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眃", + "codepoint": "U+7703", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7703", + "status": "exact_ids", + "ids": "⿰目云", + "canonical_ids": "⿰目云", + "expanded_ids": "⿰目⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眄", + "codepoint": "U+7704", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7704", + "status": "exact_ids", + "ids": "⿰目丏", + "canonical_ids": "⿰目丏", + "expanded_ids": "⿰目丏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丏", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眅", + "codepoint": "U+7705", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7705", + "status": "exact_ids", + "ids": "⿰目反", + "canonical_ids": "⿰目反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眆", + "codepoint": "U+7706", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7706", + "status": "exact_ids", + "ids": "⿰目方", + "canonical_ids": "⿰目方", + "expanded_ids": "⿰目方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眇", + "codepoint": "U+7707", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7707", + "status": "exact_ids", + "ids": "⿰目少", + "canonical_ids": "⿰目少", + "expanded_ids": "⿰目⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眈", + "codepoint": "U+7708", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7708", + "status": "exact_ids", + "ids": "⿰目冘", + "canonical_ids": "⿰目冘", + "expanded_ids": "⿰目⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眉", + "codepoint": "U+7709", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7709", + "status": "exact_ids", + "ids": "⿱𠃜目", + "canonical_ids": "⿱𠃜目", + "expanded_ids": "⿱⿻尸丨目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "尸", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眊", + "codepoint": "U+770A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-770A", + "status": "exact_ids", + "ids": "⿰目毛", + "canonical_ids": "⿰目毛", + "expanded_ids": "⿰目毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "看", + "codepoint": "U+770B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-770B", + "status": "exact_ids", + "ids": "⿱手目", + "canonical_ids": "⿱手目", + "expanded_ids": "⿱手目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "手", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "県", + "codepoint": "U+770C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-770C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眍", + "codepoint": "U+770D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-770D", + "status": "exact_ids", + "ids": "⿰目区", + "canonical_ids": "⿰目区", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "区" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眎", + "codepoint": "U+770E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-770E", + "status": "exact_ids", + "ids": "⿰目示", + "canonical_ids": "⿰目示", + "expanded_ids": "⿰目⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眏", + "codepoint": "U+770F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-770F", + "status": "exact_ids", + "ids": "⿰目央", + "canonical_ids": "⿰目央", + "expanded_ids": "⿰目⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眐", + "codepoint": "U+7710", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7710", + "status": "exact_ids", + "ids": "⿰目正", + "canonical_ids": "⿰目正", + "expanded_ids": "⿰目⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "止", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眑", + "codepoint": "U+7711", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7711", + "status": "exact_ids", + "ids": "⿰目幼", + "canonical_ids": "⿰目幼", + "expanded_ids": "⿰目⿰幺力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "幺", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眒", + "codepoint": "U+7712", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7712", + "status": "exact_ids", + "ids": "⿰目申", + "canonical_ids": "⿰目申", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眓", + "codepoint": "U+7713", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7713", + "status": "exact_ids", + "ids": "⿰目戉", + "canonical_ids": "⿰目戉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "目" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眔", + "codepoint": "U+7714", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7714", + "status": "exact_ids", + "ids": "⿱罒氺", + "canonical_ids": "⿱罒氺", + "expanded_ids": "⿱罒氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氺", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眕", + "codepoint": "U+7715", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7715", + "status": "exact_ids", + "ids": "⿰目㐱", + "canonical_ids": "⿰目㐱", + "expanded_ids": "⿰目⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "彡", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眖", + "codepoint": "U+7716", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7716", + "status": "exact_ids", + "ids": "⿰目兄", + "canonical_ids": "⿰目兄", + "expanded_ids": "⿰目⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眗", + "codepoint": "U+7717", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7717", + "status": "exact_ids", + "ids": "⿰目句", + "canonical_ids": "⿰目句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眘", + "codepoint": "U+7718", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7718", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眙", + "codepoint": "U+7719", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7719", + "status": "exact_ids", + "ids": "⿰目台", + "canonical_ids": "⿰目台", + "expanded_ids": "⿰目⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眚", + "codepoint": "U+771A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-771A", + "status": "exact_ids", + "ids": "⿱生目", + "canonical_ids": "⿱生目", + "expanded_ids": "⿱⿱牛一目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "牛", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眛", + "codepoint": "U+771B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-771B", + "status": "exact_ids", + "ids": "⿰目未", + "canonical_ids": "⿰目未", + "expanded_ids": "⿰目⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "眜" + ] + }, + { + "character": "眜", + "codepoint": "U+771C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-771C", + "status": "exact_ids", + "ids": "⿰目末", + "canonical_ids": "⿰目末", + "expanded_ids": "⿰目⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "眛" + ] + }, + { + "character": "眝", + "codepoint": "U+771D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-771D", + "status": "exact_ids", + "ids": "⿰目宁", + "canonical_ids": "⿰目宁", + "expanded_ids": "⿰目⿱宀⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "宀", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眞", + "codepoint": "U+771E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-771E", + "status": "exact_ids", + "ids": "⿻匕𥃺", + "canonical_ids": "⿻匕𥃺", + "expanded_ids": "⿻匕⿱⿱一儿目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "匕", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "真", + "codepoint": "U+771F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-771F", + "status": "exact_ids", + "ids": "⿱十具", + "canonical_ids": "⿱十具", + "expanded_ids": "⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眠", + "codepoint": "U+7720", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7720", + "status": "exact_ids", + "ids": "⿰目民", + "canonical_ids": "⿰目民", + "expanded_ids": "⿰目民", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "民", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眡", + "codepoint": "U+7721", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7721", + "status": "exact_ids", + "ids": "⿰目氐", + "canonical_ids": "⿰目氐", + "expanded_ids": "⿰目⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氏", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眢", + "codepoint": "U+7722", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7722", + "status": "exact_ids", + "ids": "⿱夗目", + "canonical_ids": "⿱夗目", + "expanded_ids": "⿱⿰夕㔾目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眣", + "codepoint": "U+7723", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7723", + "status": "exact_ids", + "ids": "⿰目失", + "canonical_ids": "⿰目失", + "expanded_ids": "⿰目⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眤", + "codepoint": "U+7724", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7724", + "status": "exact_ids", + "ids": "⿰目尼", + "canonical_ids": "⿰目尼", + "expanded_ids": "⿰目⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "尸", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眥", + "codepoint": "U+7725", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7725", + "status": "exact_ids", + "ids": "⿱此目", + "canonical_ids": "⿱此目", + "expanded_ids": "⿱⿰止匕目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "止", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眦", + "codepoint": "U+7726", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7726", + "status": "exact_ids", + "ids": "⿰目此", + "canonical_ids": "⿰目此", + "expanded_ids": "⿰目⿰止匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "止", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眧", + "codepoint": "U+7727", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7727", + "status": "exact_ids", + "ids": "⿰目召", + "canonical_ids": "⿰目召", + "expanded_ids": "⿰目⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眨", + "codepoint": "U+7728", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7728", + "status": "exact_ids", + "ids": "⿰目乏", + "canonical_ids": "⿰目乏", + "expanded_ids": "⿰目⿱丿之", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "之", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眩", + "codepoint": "U+7729", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7729", + "status": "exact_ids", + "ids": "⿰目玄", + "canonical_ids": "⿰目玄", + "expanded_ids": "⿰目⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眪", + "codepoint": "U+772A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-772A", + "status": "exact_ids", + "ids": "⿰目丙", + "canonical_ids": "⿰目丙", + "expanded_ids": "⿰目⿱一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眫", + "codepoint": "U+772B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-772B", + "status": "exact_ids", + "ids": "⿰目半", + "canonical_ids": "⿰目半", + "expanded_ids": "⿰目半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眬", + "codepoint": "U+772C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-772C", + "status": "exact_ids", + "ids": "⿰目龙", + "canonical_ids": "⿰目龙", + "expanded_ids": "⿰目龙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眭", + "codepoint": "U+772D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-772D", + "status": "exact_ids", + "ids": "⿰目圭", + "canonical_ids": "⿰目圭", + "expanded_ids": "⿰目⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眮", + "codepoint": "U+772E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-772E", + "status": "exact_ids", + "ids": "⿰目同", + "canonical_ids": "⿰目同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眯", + "codepoint": "U+772F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-772F", + "status": "exact_ids", + "ids": "⿰目米", + "canonical_ids": "⿰目米", + "expanded_ids": "⿰目⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眰", + "codepoint": "U+7730", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7730", + "status": "exact_ids", + "ids": "⿰目至", + "canonical_ids": "⿰目至", + "expanded_ids": "⿰目⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眱", + "codepoint": "U+7731", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7731", + "status": "exact_ids", + "ids": "⿰目夷", + "canonical_ids": "⿰目夷", + "expanded_ids": "⿰目⿻大弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "弓", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眲", + "codepoint": "U+7732", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7732", + "status": "exact_ids", + "ids": "⿰目耳", + "canonical_ids": "⿰目耳", + "expanded_ids": "⿰目耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眳", + "codepoint": "U+7733", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7733", + "status": "exact_ids", + "ids": "⿰目名", + "canonical_ids": "⿰目名", + "expanded_ids": "⿰目⿱夕口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夕", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眴", + "codepoint": "U+7734", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7734", + "status": "exact_ids", + "ids": "⿰目旬", + "canonical_ids": "⿰目旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眵", + "codepoint": "U+7735", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7735", + "status": "exact_ids", + "ids": "⿰目多", + "canonical_ids": "⿰目多", + "expanded_ids": "⿰目⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眶", + "codepoint": "U+7736", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7736", + "status": "exact_ids", + "ids": "⿰目匡", + "canonical_ids": "⿰目匡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "匡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眷", + "codepoint": "U+7737", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7737", + "status": "exact_ids", + "ids": "⿱龹目", + "canonical_ids": "⿱龹目", + "expanded_ids": "⿱龹目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眸", + "codepoint": "U+7738", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7738", + "status": "exact_ids", + "ids": "⿰目牟", + "canonical_ids": "⿰目牟", + "expanded_ids": "⿰目⿱厶牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "牛", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眹", + "codepoint": "U+7739", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7739", + "status": "exact_ids", + "ids": "⿰目关", + "canonical_ids": "⿰目关", + "expanded_ids": "⿰目⿱丷⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眺", + "codepoint": "U+773A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-773A", + "status": "exact_ids", + "ids": "⿰目兆", + "canonical_ids": "⿰目兆", + "expanded_ids": "⿰目兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眻", + "codepoint": "U+773B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-773B", + "status": "exact_ids", + "ids": "⿰目羊", + "canonical_ids": "⿰目羊", + "expanded_ids": "⿰目羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眼", + "codepoint": "U+773C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-773C", + "status": "exact_ids", + "ids": "⿰目艮", + "canonical_ids": "⿰目艮", + "expanded_ids": "⿰目艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眽", + "codepoint": "U+773D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-773D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眾", + "codepoint": "U+773E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-773E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "眿", + "codepoint": "U+773F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-773F", + "status": "exact_ids", + "ids": "⿰目永", + "canonical_ids": "⿰目永", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "永" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "着", + "codepoint": "U+7740", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7740", + "status": "exact_ids", + "ids": "⿱羊目", + "canonical_ids": "⿱羊目", + "expanded_ids": "⿱羊目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睁", + "codepoint": "U+7741", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7741", + "status": "exact_ids", + "ids": "⿰目争", + "canonical_ids": "⿰目争", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "争" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睂", + "codepoint": "U+7742", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7742", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睃", + "codepoint": "U+7743", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7743", + "status": "exact_ids", + "ids": "⿰目夋", + "canonical_ids": "⿰目夋", + "expanded_ids": "⿰目⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睄", + "codepoint": "U+7744", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7744", + "status": "exact_ids", + "ids": "⿰目肖", + "canonical_ids": "⿰目肖", + "expanded_ids": "⿰目⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睅", + "codepoint": "U+7745", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7745", + "status": "exact_ids", + "ids": "⿰目旱", + "canonical_ids": "⿰目旱", + "expanded_ids": "⿰目⿱日⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "日", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睆", + "codepoint": "U+7746", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7746", + "status": "exact_ids", + "ids": "⿰目完", + "canonical_ids": "⿰目完", + "expanded_ids": "⿰目⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "宀", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睇", + "codepoint": "U+7747", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7747", + "status": "exact_ids", + "ids": "⿰目弟", + "canonical_ids": "⿰目弟", + "expanded_ids": "⿰目⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睈", + "codepoint": "U+7748", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7748", + "status": "exact_ids", + "ids": "⿰目呈", + "canonical_ids": "⿰目呈", + "expanded_ids": "⿰目⿱口王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "王", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睉", + "codepoint": "U+7749", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7749", + "status": "exact_ids", + "ids": "⿰目坐", + "canonical_ids": "⿰目坐", + "expanded_ids": "⿰目⿱⿰人人土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "土", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睊", + "codepoint": "U+774A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-774A", + "status": "exact_ids", + "ids": "⿰目肙", + "canonical_ids": "⿰目肙", + "expanded_ids": "⿰目⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睋", + "codepoint": "U+774B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-774B", + "status": "exact_ids", + "ids": "⿰目我", + "canonical_ids": "⿰目我", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "目" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睌", + "codepoint": "U+774C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-774C", + "status": "exact_ids", + "ids": "⿰目免", + "canonical_ids": "⿰目免", + "expanded_ids": "⿰目免", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "免", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睍", + "codepoint": "U+774D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-774D", + "status": "exact_ids", + "ids": "⿰目目", + "canonical_ids": "⿰目目", + "expanded_ids": "⿰目目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睎", + "codepoint": "U+774E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-774E", + "status": "exact_ids", + "ids": "⿰目希", + "canonical_ids": "⿰目希", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "目" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睏", + "codepoint": "U+774F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-774F", + "status": "exact_ids", + "ids": "⿰目困", + "canonical_ids": "⿰目困", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "困" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睐", + "codepoint": "U+7750", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7750", + "status": "exact_ids", + "ids": "⿰目来", + "canonical_ids": "⿰目来", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "来" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睑", + "codepoint": "U+7751", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7751", + "status": "exact_ids", + "ids": "⿰目佥", + "canonical_ids": "⿰目佥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "佥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睒", + "codepoint": "U+7752", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7752", + "status": "exact_ids", + "ids": "⿰目炎", + "canonical_ids": "⿰目炎", + "expanded_ids": "⿰目⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睓", + "codepoint": "U+7753", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7753", + "status": "exact_ids", + "ids": "⿰目典", + "canonical_ids": "⿰目典", + "expanded_ids": "⿰目典", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "典", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睔", + "codepoint": "U+7754", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7754", + "status": "exact_ids", + "ids": "⿰目侖", + "canonical_ids": "⿰目侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "目" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睕", + "codepoint": "U+7755", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7755", + "status": "exact_ids", + "ids": "⿰目宛", + "canonical_ids": "⿰目宛", + "expanded_ids": "⿰目⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睖", + "codepoint": "U+7756", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7756", + "status": "exact_ids", + "ids": "⿰目夌", + "canonical_ids": "⿰目夌", + "expanded_ids": "⿰目⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睗", + "codepoint": "U+7757", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7757", + "status": "exact_ids", + "ids": "⿰目易", + "canonical_ids": "⿰目易", + "expanded_ids": "⿰目⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "日", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睘", + "codepoint": "U+7758", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7758", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睙", + "codepoint": "U+7759", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7759", + "status": "exact_ids", + "ids": "⿰目戾", + "canonical_ids": "⿰目戾", + "expanded_ids": "⿰目⿱⿻丿尸⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "大", + "尸", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睚", + "codepoint": "U+775A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-775A", + "status": "exact_ids", + "ids": "⿰目厓", + "canonical_ids": "⿰目厓", + "expanded_ids": "⿰目⿱厂⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "土", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睛", + "codepoint": "U+775B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-775B", + "status": "exact_ids", + "ids": "⿰目靑", + "canonical_ids": "⿰目靑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "円", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睜", + "codepoint": "U+775C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-775C", + "status": "exact_ids", + "ids": "⿰目爭", + "canonical_ids": "⿰目爭", + "expanded_ids": "⿰目⿱爫肀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爫", + "目", + "肀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睝", + "codepoint": "U+775D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-775D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睞", + "codepoint": "U+775E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-775E", + "status": "exact_ids", + "ids": "⿰目來", + "canonical_ids": "⿰目來", + "expanded_ids": "⿰目⿻木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睟", + "codepoint": "U+775F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-775F", + "status": "exact_ids", + "ids": "⿰目卒", + "canonical_ids": "⿰目卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睠", + "codepoint": "U+7760", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7760", + "status": "exact_ids", + "ids": "⿰目卷", + "canonical_ids": "⿰目卷", + "expanded_ids": "⿰目⿱龹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "目", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睡", + "codepoint": "U+7761", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7761", + "status": "exact_ids", + "ids": "⿰目垂", + "canonical_ids": "⿰目垂", + "expanded_ids": "⿰目垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "垂", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睢", + "codepoint": "U+7762", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7762", + "status": "exact_ids", + "ids": "⿰目隹", + "canonical_ids": "⿰目隹", + "expanded_ids": "⿰目隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "督", + "codepoint": "U+7763", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7763", + "status": "exact_ids", + "ids": "⿱叔目", + "canonical_ids": "⿱叔目", + "expanded_ids": "⿱⿰⿱上小又目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "又", + "小", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睤", + "codepoint": "U+7764", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7764", + "status": "exact_ids", + "ids": "⿰目畀", + "canonical_ids": "⿰目畀", + "expanded_ids": "⿰目⿱田丌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "田", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睥", + "codepoint": "U+7765", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7765", + "status": "exact_ids", + "ids": "⿰目卑", + "canonical_ids": "⿰目卑", + "expanded_ids": "⿰目卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睦", + "codepoint": "U+7766", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7766", + "status": "exact_ids", + "ids": "⿰目坴", + "canonical_ids": "⿰目坴", + "expanded_ids": "⿰目⿱⿱土儿土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睧", + "codepoint": "U+7767", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7767", + "status": "exact_ids", + "ids": "⿰目昏", + "canonical_ids": "⿰目昏", + "expanded_ids": "⿰目⿱氏日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "氏", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睨", + "codepoint": "U+7768", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7768", + "status": "exact_ids", + "ids": "⿰目兒", + "canonical_ids": "⿰目兒", + "expanded_ids": "⿰目⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睩", + "codepoint": "U+7769", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7769", + "status": "exact_ids", + "ids": "⿰目录", + "canonical_ids": "⿰目录", + "expanded_ids": "⿰目⿱彐氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "氺", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睪", + "codepoint": "U+776A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-776A", + "status": "exact_ids", + "ids": "⿱罒幸", + "canonical_ids": "⿱罒幸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "罒" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睫", + "codepoint": "U+776B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-776B", + "status": "exact_ids", + "ids": "⿰目疌", + "canonical_ids": "⿰目疌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "疌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睬", + "codepoint": "U+776C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-776C", + "status": "exact_ids", + "ids": "⿰目采", + "canonical_ids": "⿰目采", + "expanded_ids": "⿰目⿱爫木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "爫", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睭", + "codepoint": "U+776D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-776D", + "status": "exact_ids", + "ids": "⿰目周", + "canonical_ids": "⿰目周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睮", + "codepoint": "U+776E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-776E", + "status": "exact_ids", + "ids": "⿰目俞", + "canonical_ids": "⿰目俞", + "expanded_ids": "⿰目⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "月", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睯", + "codepoint": "U+776F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-776F", + "status": "exact_ids", + "ids": "⿱敃目", + "canonical_ids": "⿱敃目", + "expanded_ids": "⿱⿰民攵目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "民", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睰", + "codepoint": "U+7770", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7770", + "status": "exact_ids", + "ids": "⿰目若", + "canonical_ids": "⿰目若", + "expanded_ids": "⿰目⿱艹⿱⿻丿一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睱", + "codepoint": "U+7771", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7771", + "status": "exact_ids", + "ids": "⿰目叚", + "canonical_ids": "⿰目叚", + "expanded_ids": "⿰目叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睲", + "codepoint": "U+7772", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7772", + "status": "exact_ids", + "ids": "⿰目星", + "canonical_ids": "⿰目星", + "expanded_ids": "⿰目⿱日⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "牛", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睳", + "codepoint": "U+7773", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7773", + "status": "exact_ids", + "ids": "⿰目奎", + "canonical_ids": "⿰目奎", + "expanded_ids": "⿰目⿱大⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "大", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睴", + "codepoint": "U+7774", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7774", + "status": "exact_ids", + "ids": "⿰目軍", + "canonical_ids": "⿰目軍", + "expanded_ids": "⿰目⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "目", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睵", + "codepoint": "U+7775", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7775", + "status": "exact_ids", + "ids": "⿰目哉", + "canonical_ids": "⿰目哉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "哉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睶", + "codepoint": "U+7776", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7776", + "status": "exact_ids", + "ids": "⿰目春", + "canonical_ids": "⿰目春", + "expanded_ids": "⿰目⿱𡗗日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "目", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睷", + "codepoint": "U+7777", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7777", + "status": "exact_ids", + "ids": "⿰目建", + "canonical_ids": "⿰目建", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廴", + "目" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睸", + "codepoint": "U+7778", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7778", + "status": "exact_ids", + "ids": "⿰目眉", + "canonical_ids": "⿰目眉", + "expanded_ids": "⿰目⿱⿻尸丨目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "尸", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睹", + "codepoint": "U+7779", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7779", + "status": "exact_ids", + "ids": "⿰目者", + "canonical_ids": "⿰目者", + "expanded_ids": "⿰目⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睺", + "codepoint": "U+777A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-777A", + "status": "exact_ids", + "ids": "⿰目侯", + "canonical_ids": "⿰目侯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "侯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睻", + "codepoint": "U+777B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-777B", + "status": "exact_ids", + "ids": "⿰目宣", + "canonical_ids": "⿰目宣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "目" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睼", + "codepoint": "U+777C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-777C", + "status": "exact_ids", + "ids": "⿰目是", + "canonical_ids": "⿰目是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "目" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睽", + "codepoint": "U+777D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-777D", + "status": "exact_ids", + "ids": "⿰目癸", + "canonical_ids": "⿰目癸", + "expanded_ids": "⿰目⿱癶⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "癶", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睾", + "codepoint": "U+777E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-777E", + "status": "exact_ids", + "ids": "⿻丶睪", + "canonical_ids": "⿻丶睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "土", + "罒" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "睿", + "codepoint": "U+777F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-777F", + "status": "exact_ids", + "ids": "⿳卜冖眘", + "canonical_ids": "⿳卜冖眘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "卜" + ], + "unresolved_leaves": [ + "眘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞀", + "codepoint": "U+7780", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7780", + "status": "exact_ids", + "ids": "⿱敄目", + "canonical_ids": "⿱敄目", + "expanded_ids": "⿱⿰矛攵目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "目", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞁", + "codepoint": "U+7781", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7781", + "status": "exact_ids", + "ids": "⿰目狊", + "canonical_ids": "⿰目狊", + "expanded_ids": "⿰目⿱目⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞂", + "codepoint": "U+7782", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7782", + "status": "exact_ids", + "ids": "⿰盾犮", + "canonical_ids": "⿰盾犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "目" + ], + "unresolved_leaves": [ + "⺁", + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞃", + "codepoint": "U+7783", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7783", + "status": "exact_ids", + "ids": "⿰目盾", + "canonical_ids": "⿰目盾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "目" + ], + "unresolved_leaves": [ + "⺁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞄", + "codepoint": "U+7784", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7784", + "status": "exact_ids", + "ids": "⿰目苗", + "canonical_ids": "⿰目苗", + "expanded_ids": "⿰目⿱艹田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞅", + "codepoint": "U+7785", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7785", + "status": "exact_ids", + "ids": "⿰目秋", + "canonical_ids": "⿰目秋", + "expanded_ids": "⿰目⿰⿻丿木火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "火", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞆", + "codepoint": "U+7786", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7786", + "status": "exact_ids", + "ids": "⿰目贵", + "canonical_ids": "⿰目贵", + "expanded_ids": "⿰目⿱⿱⿻口丨一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "人", + "冂", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞇", + "codepoint": "U+7787", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7787", + "status": "exact_ids", + "ids": "⿰目迷", + "canonical_ids": "⿰目迷", + "expanded_ids": "⿰目⿰辶⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "目", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞈", + "codepoint": "U+7788", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7788", + "status": "exact_ids", + "ids": "⿰目翁", + "canonical_ids": "⿰目翁", + "expanded_ids": "⿰目⿱⿱八厶⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "八", + "厶", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞉", + "codepoint": "U+7789", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7789", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞊", + "codepoint": "U+778A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-778A", + "status": "exact_ids", + "ids": "⿰目唐", + "canonical_ids": "⿰目唐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞋", + "codepoint": "U+778B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-778B", + "status": "exact_ids", + "ids": "⿰目眞", + "canonical_ids": "⿰目眞", + "expanded_ids": "⿰目⿻匕⿱⿱一儿目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "匕", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞌", + "codepoint": "U+778C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-778C", + "status": "exact_ids", + "ids": "⿰目盍", + "canonical_ids": "⿰目盍", + "expanded_ids": "⿰目⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "皿", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞍", + "codepoint": "U+778D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-778D", + "status": "exact_ids", + "ids": "⿰目叟", + "canonical_ids": "⿰目叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "目" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞎", + "codepoint": "U+778E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-778E", + "status": "exact_ids", + "ids": "⿰目害", + "canonical_ids": "⿰目害", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "害" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞏", + "codepoint": "U+778F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-778F", + "status": "exact_ids", + "ids": "⿱罒袁", + "canonical_ids": "⿱罒袁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒" + ], + "unresolved_leaves": [ + "袁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞐", + "codepoint": "U+7790", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7790", + "status": "exact_ids", + "ids": "⿱目⿰目目", + "canonical_ids": "⿱目⿰目目", + "expanded_ids": "⿱目⿰目目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞑", + "codepoint": "U+7791", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7791", + "status": "exact_ids", + "ids": "⿰目冥", + "canonical_ids": "⿰目冥", + "expanded_ids": "⿰目⿱冖⿱日⿱亠八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "日", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞒", + "codepoint": "U+7792", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7792", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞓", + "codepoint": "U+7793", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7793", + "status": "exact_ids", + "ids": "⿰目訓", + "canonical_ids": "⿰目訓", + "expanded_ids": "⿰目⿰言川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "川", + "目", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞔", + "codepoint": "U+7794", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7794", + "status": "exact_ids", + "ids": "⿰目責", + "canonical_ids": "⿰目責", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞕", + "codepoint": "U+7795", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7795", + "status": "exact_ids", + "ids": "⿰目章", + "canonical_ids": "⿰目章", + "expanded_ids": "⿰目⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞖", + "codepoint": "U+7796", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7796", + "status": "exact_ids", + "ids": "⿱殹目", + "canonical_ids": "⿱殹目", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "目" + ], + "unresolved_leaves": [ + "医" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞗", + "codepoint": "U+7797", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7797", + "status": "exact_ids", + "ids": "⿰目鳥", + "canonical_ids": "⿰目鳥", + "expanded_ids": "⿰目鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞘", + "codepoint": "U+7798", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7798", + "status": "exact_ids", + "ids": "⿰目區", + "canonical_ids": "⿰目區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞙", + "codepoint": "U+7799", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7799", + "status": "exact_ids", + "ids": "⿰目莫", + "canonical_ids": "⿰目莫", + "expanded_ids": "⿰目⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞚", + "codepoint": "U+779A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-779A", + "status": "exact_ids", + "ids": "⿰目寅", + "canonical_ids": "⿰目寅", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "寅" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞛", + "codepoint": "U+779B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-779B", + "status": "exact_ids", + "ids": "⿰目從", + "canonical_ids": "⿰目從", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "從" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞜", + "codepoint": "U+779C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-779C", + "status": "exact_ids", + "ids": "⿰目婁", + "canonical_ids": "⿰目婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞝", + "codepoint": "U+779D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-779D", + "status": "exact_ids", + "ids": "⿰目离", + "canonical_ids": "⿰目离", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "目", + "禸" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞞", + "codepoint": "U+779E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-779E", + "status": "exact_ids", + "ids": "⿰目㒼", + "canonical_ids": "⿰目㒼", + "expanded_ids": "⿰目⿱艹⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞟", + "codepoint": "U+779F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-779F", + "status": "exact_ids", + "ids": "⿰目票", + "canonical_ids": "⿰目票", + "expanded_ids": "⿰目⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "目", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞠", + "codepoint": "U+77A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77A0", + "status": "exact_ids", + "ids": "⿰目堂", + "canonical_ids": "⿰目堂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "目" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞡", + "codepoint": "U+77A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77A1", + "status": "exact_ids", + "ids": "⿰目規", + "canonical_ids": "⿰目規", + "expanded_ids": "⿰目⿰⿻一大⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "大", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞢", + "codepoint": "U+77A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77A2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞣", + "codepoint": "U+77A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77A3", + "status": "exact_ids", + "ids": "⿰目患", + "canonical_ids": "⿰目患", + "expanded_ids": "⿰目⿱⿻⿱口口丨心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "心", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞤", + "codepoint": "U+77A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77A4", + "status": "exact_ids", + "ids": "⿰目閏", + "canonical_ids": "⿰目閏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "閏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞥", + "codepoint": "U+77A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77A5", + "status": "exact_ids", + "ids": "⿱敝目", + "canonical_ids": "⿱敝目", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "目" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞦", + "codepoint": "U+77A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77A6", + "status": "exact_ids", + "ids": "⿰目喜", + "canonical_ids": "⿰目喜", + "expanded_ids": "⿰目⿱⿱十豆口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "目", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞧", + "codepoint": "U+77A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77A7", + "status": "exact_ids", + "ids": "⿰目焦", + "canonical_ids": "⿰目焦", + "expanded_ids": "⿰目⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞨", + "codepoint": "U+77A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77A8", + "status": "exact_ids", + "ids": "⿰目菐", + "canonical_ids": "⿰目菐", + "expanded_ids": "⿰目⿱业⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "儿", + "目", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞩", + "codepoint": "U+77A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77A9", + "status": "exact_ids", + "ids": "⿰目属", + "canonical_ids": "⿰目属", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "目" + ], + "unresolved_leaves": [ + "禹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞪", + "codepoint": "U+77AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77AA", + "status": "exact_ids", + "ids": "⿰目登", + "canonical_ids": "⿰目登", + "expanded_ids": "⿰目⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "癶", + "目", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞫", + "codepoint": "U+77AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77AB", + "status": "exact_ids", + "ids": "⿰目覃", + "canonical_ids": "⿰目覃", + "expanded_ids": "⿰目⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "目", + "襾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞬", + "codepoint": "U+77AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77AC", + "status": "exact_ids", + "ids": "⿰目舜", + "canonical_ids": "⿰目舜", + "expanded_ids": "⿰目⿳爫冖⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "冖", + "夕", + "爫", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞭", + "codepoint": "U+77AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77AD", + "status": "exact_ids", + "ids": "⿰目尞", + "canonical_ids": "⿰目尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "目" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞮", + "codepoint": "U+77AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77AE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞯", + "codepoint": "U+77AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77AF", + "status": "exact_ids", + "ids": "⿰目閒", + "canonical_ids": "⿰目閒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "閒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞰", + "codepoint": "U+77B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77B0", + "status": "exact_ids", + "ids": "⿰目敢", + "canonical_ids": "⿰目敢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "敢" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞱", + "codepoint": "U+77B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77B1", + "status": "exact_ids", + "ids": "⿰目華", + "canonical_ids": "⿰目華", + "expanded_ids": "⿰目⿱艹𠦒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "艹", + "𠦒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞲", + "codepoint": "U+77B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77B2", + "status": "exact_ids", + "ids": "⿰目矞", + "canonical_ids": "⿰目矞", + "expanded_ids": "⿰目⿱矛⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "目", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞳", + "codepoint": "U+77B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77B3", + "status": "exact_ids", + "ids": "⿰目童", + "canonical_ids": "⿰目童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞴", + "codepoint": "U+77B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77B4", + "status": "exact_ids", + "ids": "⿰目無", + "canonical_ids": "⿰目無", + "expanded_ids": "⿰目無", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "無", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞵", + "codepoint": "U+77B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77B5", + "status": "exact_ids", + "ids": "⿰目粦", + "canonical_ids": "⿰目粦", + "expanded_ids": "⿰目⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞶", + "codepoint": "U+77B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77B6", + "status": "exact_ids", + "ids": "⿰目貴", + "canonical_ids": "⿰目貴", + "expanded_ids": "⿰目⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞷", + "codepoint": "U+77B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77B7", + "status": "exact_ids", + "ids": "⿰目間", + "canonical_ids": "⿰目間", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "間" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞸", + "codepoint": "U+77B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77B8", + "status": "exact_ids", + "ids": "⿰目葉", + "canonical_ids": "⿰目葉", + "expanded_ids": "⿰目⿱艹⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞹", + "codepoint": "U+77B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77B9", + "status": "exact_ids", + "ids": "⿰目愛", + "canonical_ids": "⿰目愛", + "expanded_ids": "⿰目⿳爫冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "夊", + "心", + "爫", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞺", + "codepoint": "U+77BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77BA", + "status": "exact_ids", + "ids": "⿰目會", + "canonical_ids": "⿰目會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "目" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞻", + "codepoint": "U+77BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77BB", + "status": "exact_ids", + "ids": "⿰目詹", + "canonical_ids": "⿰目詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞼", + "codepoint": "U+77BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77BC", + "status": "exact_ids", + "ids": "⿰目僉", + "canonical_ids": "⿰目僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞽", + "codepoint": "U+77BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77BD", + "status": "exact_ids", + "ids": "⿱鼓目", + "canonical_ids": "⿱鼓目", + "expanded_ids": "⿱⿰⿱十豆⿱十又目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "目", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞾", + "codepoint": "U+77BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77BE", + "status": "exact_ids", + "ids": "⿱⿰目目空", + "canonical_ids": "⿱⿰目目空", + "expanded_ids": "⿱⿰目目⿱⿱宀八工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "工", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "瞿", + "codepoint": "U+77BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77BF", + "status": "exact_ids", + "ids": "⿱⿰目目隹", + "canonical_ids": "⿱⿰目目隹", + "expanded_ids": "⿱⿰目目隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矀", + "codepoint": "U+77C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77C0", + "status": "exact_ids", + "ids": "⿰目微", + "canonical_ids": "⿰目微", + "expanded_ids": "⿰目⿰彳⿰⿳山冖几攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "几", + "山", + "彳", + "攵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矁", + "codepoint": "U+77C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77C1", + "status": "exact_ids", + "ids": "⿰目愁", + "canonical_ids": "⿰目愁", + "expanded_ids": "⿰目⿱⿰⿻丿木火心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "木", + "火", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矂", + "codepoint": "U+77C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77C2", + "status": "exact_ids", + "ids": "⿰目喿", + "canonical_ids": "⿰目喿", + "expanded_ids": "⿰目⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矃", + "codepoint": "U+77C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77C3", + "status": "exact_ids", + "ids": "⿰目寜", + "canonical_ids": "⿰目寜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "寜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矄", + "codepoint": "U+77C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77C4", + "status": "exact_ids", + "ids": "⿰目熏", + "canonical_ids": "⿰目熏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "熏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矅", + "codepoint": "U+77C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77C5", + "status": "exact_ids", + "ids": "⿰目翟", + "canonical_ids": "⿰目翟", + "expanded_ids": "⿰目⿱⿰习习隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矆", + "codepoint": "U+77C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77C6", + "status": "exact_ids", + "ids": "⿰目蒦", + "canonical_ids": "⿰目蒦", + "expanded_ids": "⿰目⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "目", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矇", + "codepoint": "U+77C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77C7", + "status": "exact_ids", + "ids": "⿰目蒙", + "canonical_ids": "⿰目蒙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "艹", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矈", + "codepoint": "U+77C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77C8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矉", + "codepoint": "U+77C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77C9", + "status": "exact_ids", + "ids": "⿰目賓", + "canonical_ids": "⿰目賓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矊", + "codepoint": "U+77CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77CA", + "status": "exact_ids", + "ids": "⿰目綿", + "canonical_ids": "⿰目綿", + "expanded_ids": "⿰目⿰⿻幺小⿱⿻日丶⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丶", + "冂", + "小", + "幺", + "日", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矋", + "codepoint": "U+77CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77CB", + "status": "exact_ids", + "ids": "⿰目厲", + "canonical_ids": "⿰目厲", + "expanded_ids": "⿰目⿱厂⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "田", + "目", + "禸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矌", + "codepoint": "U+77CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77CC", + "status": "exact_ids", + "ids": "⿰目廣", + "canonical_ids": "⿰目廣", + "expanded_ids": "⿰目⿱广黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "目", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矍", + "codepoint": "U+77CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77CD", + "status": "exact_ids", + "ids": "⿱⿰目目隻", + "canonical_ids": "⿱⿰目目隻", + "expanded_ids": "⿱⿰目目⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矎", + "codepoint": "U+77CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77CE", + "status": "exact_ids", + "ids": "⿰目夐", + "canonical_ids": "⿰目夐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "夐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矏", + "codepoint": "U+77CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77CF", + "status": "exact_ids", + "ids": "⿰目臱", + "canonical_ids": "⿰目臱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "臱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矐", + "codepoint": "U+77D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77D0", + "status": "exact_ids", + "ids": "⿰目霍", + "canonical_ids": "⿰目霍", + "expanded_ids": "⿰目⿱雨隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "隹", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矑", + "codepoint": "U+77D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77D1", + "status": "exact_ids", + "ids": "⿰目盧", + "canonical_ids": "⿰目盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "目" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矒", + "codepoint": "U+77D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77D2", + "status": "exact_ids", + "ids": "⿰目瞢", + "canonical_ids": "⿰目瞢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "瞢" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矓", + "codepoint": "U+77D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77D3", + "status": "exact_ids", + "ids": "⿰目龍", + "canonical_ids": "⿰目龍", + "expanded_ids": "⿰目龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矔", + "codepoint": "U+77D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77D4", + "status": "exact_ids", + "ids": "⿰目雚", + "canonical_ids": "⿰目雚", + "expanded_ids": "⿰目⿱艹⿱⿰口口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "目", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矕", + "codepoint": "U+77D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77D5", + "status": "exact_ids", + "ids": "⿱䜌目", + "canonical_ids": "⿱䜌目", + "expanded_ids": "⿱⿲⿱幺小言⿱幺小目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "目", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矖", + "codepoint": "U+77D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77D6", + "status": "exact_ids", + "ids": "⿰目麗", + "canonical_ids": "⿰目麗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "鹿" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矗", + "codepoint": "U+77D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77D7", + "status": "exact_ids", + "ids": "⿱直⿰直直", + "canonical_ids": "⿱直⿰直直", + "expanded_ids": "⿱⿱⿱十目乚⿰⿱⿱十目乚⿱⿱十目乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "十", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 336, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矘", + "codepoint": "U+77D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77D8", + "status": "exact_ids", + "ids": "⿰目黨", + "canonical_ids": "⿰目黨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "目", + "黑" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矙", + "codepoint": "U+77D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77D9", + "status": "exact_ids", + "ids": "⿰目闞", + "canonical_ids": "⿰目闞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "闞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矚", + "codepoint": "U+77DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77DA", + "status": "exact_ids", + "ids": "⿰目屬", + "canonical_ids": "⿰目屬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "屬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矛", + "codepoint": "U+77DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77DB", + "status": "leaf_self_fallback", + "ids": "矛", + "canonical_ids": "矛", + "expanded_ids": "矛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矜", + "codepoint": "U+77DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77DC", + "status": "exact_ids", + "ids": "⿰矛今", + "canonical_ids": "⿰矛今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "矛" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矝", + "codepoint": "U+77DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77DD", + "status": "exact_ids", + "ids": "⿰矛令", + "canonical_ids": "⿰矛令", + "expanded_ids": "⿰矛⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "矛", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矞", + "codepoint": "U+77DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77DE", + "status": "exact_ids", + "ids": "⿱矛冏", + "canonical_ids": "⿱矛冏", + "expanded_ids": "⿱矛⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矟", + "codepoint": "U+77DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77DF", + "status": "exact_ids", + "ids": "⿰矛肖", + "canonical_ids": "⿰矛肖", + "expanded_ids": "⿰矛⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矠", + "codepoint": "U+77E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77E0", + "status": "exact_ids", + "ids": "⿰矛昔", + "canonical_ids": "⿰矛昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "矛" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矡", + "codepoint": "U+77E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77E1", + "status": "exact_ids", + "ids": "⿰矛矍", + "canonical_ids": "⿰矛矍", + "expanded_ids": "⿰矛⿱⿰目目⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "目", + "矛", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矢", + "codepoint": "U+77E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77E2", + "status": "exact_ids", + "ids": "⿱𠂉大", + "canonical_ids": "⿱𠂉大", + "expanded_ids": "⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矣", + "codepoint": "U+77E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77E3", + "status": "exact_ids", + "ids": "⿱厶矢", + "canonical_ids": "⿱厶矢", + "expanded_ids": "⿱厶⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "厶", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矤", + "codepoint": "U+77E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77E4", + "status": "exact_ids", + "ids": "⿰弓矢", + "canonical_ids": "⿰弓矢", + "expanded_ids": "⿰弓⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "知", + "codepoint": "U+77E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77E5", + "status": "exact_ids", + "ids": "⿰矢口", + "canonical_ids": "⿰矢口", + "expanded_ids": "⿰⿱⿻丿一大口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矦", + "codepoint": "U+77E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77E6", + "status": "exact_ids", + "ids": "⿱厃矢", + "canonical_ids": "⿱厃矢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "厂", + "大" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矧", + "codepoint": "U+77E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77E7", + "status": "exact_ids", + "ids": "⿰矢引", + "canonical_ids": "⿰矢引", + "expanded_ids": "⿰⿱⿻丿一大⿰弓丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丿", + "大", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矨", + "codepoint": "U+77E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77E8", + "status": "exact_ids", + "ids": "⿰矢夭", + "canonical_ids": "⿰矢夭", + "expanded_ids": "⿰⿱⿻丿一大⿱丿大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矩", + "codepoint": "U+77E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77E9", + "status": "exact_ids", + "ids": "⿰矢巨", + "canonical_ids": "⿰矢巨", + "expanded_ids": "⿰⿱⿻丿一大巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "巨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矪", + "codepoint": "U+77EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77EA", + "status": "exact_ids", + "ids": "⿰矢舟", + "canonical_ids": "⿰矢舟", + "expanded_ids": "⿰⿱⿻丿一大舟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矫", + "codepoint": "U+77EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77EB", + "status": "exact_ids", + "ids": "⿰矢乔", + "canonical_ids": "⿰矢乔", + "expanded_ids": "⿰⿱⿻丿一大⿱丿⿱大儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "儿", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矬", + "codepoint": "U+77EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77EC", + "status": "exact_ids", + "ids": "⿰矢坐", + "canonical_ids": "⿰矢坐", + "expanded_ids": "⿰⿱⿻丿一大⿱⿰人人土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "土", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "短", + "codepoint": "U+77ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77ED", + "status": "exact_ids", + "ids": "⿰矢豆", + "canonical_ids": "⿰矢豆", + "expanded_ids": "⿰⿱⿻丿一大豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矮", + "codepoint": "U+77EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77EE", + "status": "exact_ids", + "ids": "⿰矢委", + "canonical_ids": "⿰矢委", + "expanded_ids": "⿰⿱⿻丿一大⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矯", + "codepoint": "U+77EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77EF", + "status": "exact_ids", + "ids": "⿰矢喬", + "canonical_ids": "⿰矢喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "大" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矰", + "codepoint": "U+77F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77F0", + "status": "exact_ids", + "ids": "⿰矢曾", + "canonical_ids": "⿰矢曾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矱", + "codepoint": "U+77F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77F1", + "status": "exact_ids", + "ids": "⿰矢蒦", + "canonical_ids": "⿰矢蒦", + "expanded_ids": "⿰⿱⿻丿一大⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "大", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矲", + "codepoint": "U+77F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77F2", + "status": "exact_ids", + "ids": "⿰矢罷", + "canonical_ids": "⿰矢罷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "罒" + ], + "unresolved_leaves": [ + "能" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "石", + "codepoint": "U+77F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77F3", + "status": "leaf_self_fallback", + "ids": "石", + "canonical_ids": "石", + "expanded_ids": "石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矴", + "codepoint": "U+77F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77F4", + "status": "exact_ids", + "ids": "⿰石丁", + "canonical_ids": "⿰石丁", + "expanded_ids": "⿰石⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矵", + "codepoint": "U+77F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77F5", + "status": "exact_ids", + "ids": "⿰石刂", + "canonical_ids": "⿰石刂", + "expanded_ids": "⿰石刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矶", + "codepoint": "U+77F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77F6", + "status": "exact_ids", + "ids": "⿰石几", + "canonical_ids": "⿰石几", + "expanded_ids": "⿰石几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矷", + "codepoint": "U+77F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77F7", + "status": "exact_ids", + "ids": "⿰石子", + "canonical_ids": "⿰石子", + "expanded_ids": "⿰石子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矸", + "codepoint": "U+77F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77F8", + "status": "exact_ids", + "ids": "⿰石干", + "canonical_ids": "⿰石干", + "expanded_ids": "⿰石⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矹", + "codepoint": "U+77F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77F9", + "status": "exact_ids", + "ids": "⿰石兀", + "canonical_ids": "⿰石兀", + "expanded_ids": "⿰石⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矺", + "codepoint": "U+77FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77FA", + "status": "exact_ids", + "ids": "⿰石乇", + "canonical_ids": "⿰石乇", + "expanded_ids": "⿰石⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矻", + "codepoint": "U+77FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77FB", + "status": "exact_ids", + "ids": "⿰石乞", + "canonical_ids": "⿰石乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矼", + "codepoint": "U+77FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77FC", + "status": "exact_ids", + "ids": "⿰石工", + "canonical_ids": "⿰石工", + "expanded_ids": "⿰石工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矽", + "codepoint": "U+77FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77FD", + "status": "exact_ids", + "ids": "⿰石夕", + "canonical_ids": "⿰石夕", + "expanded_ids": "⿰石夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矾", + "codepoint": "U+77FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77FE", + "status": "exact_ids", + "ids": "⿰石凡", + "canonical_ids": "⿰石凡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "矿", + "codepoint": "U+77FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-77FF", + "status": "exact_ids", + "ids": "⿰石广", + "canonical_ids": "⿰石广", + "expanded_ids": "⿰石广", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砀", + "codepoint": "U+7800", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7800", + "status": "exact_ids", + "ids": "⿰石𠃓", + "canonical_ids": "⿰石𠃓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "𠃓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "码", + "codepoint": "U+7801", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7801", + "status": "exact_ids", + "ids": "⿰石马", + "canonical_ids": "⿰石马", + "expanded_ids": "⿰石马", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砂", + "codepoint": "U+7802", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7802", + "status": "exact_ids", + "ids": "⿰石少", + "canonical_ids": "⿰石少", + "expanded_ids": "⿰石⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砃", + "codepoint": "U+7803", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7803", + "status": "exact_ids", + "ids": "⿰石丹", + "canonical_ids": "⿰石丹", + "expanded_ids": "⿰石丹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丹", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砄", + "codepoint": "U+7804", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7804", + "status": "exact_ids", + "ids": "⿰石夬", + "canonical_ids": "⿰石夬", + "expanded_ids": "⿰石⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "大", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砅", + "codepoint": "U+7805", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7805", + "status": "exact_ids", + "ids": "⿰石水", + "canonical_ids": "⿰石水", + "expanded_ids": "⿰石水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "水", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砆", + "codepoint": "U+7806", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7806", + "status": "exact_ids", + "ids": "⿰石夫", + "canonical_ids": "⿰石夫", + "expanded_ids": "⿰石⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砇", + "codepoint": "U+7807", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7807", + "status": "exact_ids", + "ids": "⿰石文", + "canonical_ids": "⿰石文", + "expanded_ids": "⿰石文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砈", + "codepoint": "U+7808", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7808", + "status": "exact_ids", + "ids": "⿰石厄", + "canonical_ids": "⿰石厄", + "expanded_ids": "⿰石⿱厂㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砉", + "codepoint": "U+7809", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7809", + "status": "exact_ids", + "ids": "⿱丰石", + "canonical_ids": "⿱丰石", + "expanded_ids": "⿱丰石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砊", + "codepoint": "U+780A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-780A", + "status": "exact_ids", + "ids": "⿰石亢", + "canonical_ids": "⿰石亢", + "expanded_ids": "⿰石⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砋", + "codepoint": "U+780B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-780B", + "status": "exact_ids", + "ids": "⿰石止", + "canonical_ids": "⿰石止", + "expanded_ids": "⿰石止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砌", + "codepoint": "U+780C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-780C", + "status": "exact_ids", + "ids": "⿰石切", + "canonical_ids": "⿰石切", + "expanded_ids": "⿰石⿰七刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "刀", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砍", + "codepoint": "U+780D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-780D", + "status": "exact_ids", + "ids": "⿰石欠", + "canonical_ids": "⿰石欠", + "expanded_ids": "⿰石欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砎", + "codepoint": "U+780E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-780E", + "status": "exact_ids", + "ids": "⿰石介", + "canonical_ids": "⿰石介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砏", + "codepoint": "U+780F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-780F", + "status": "exact_ids", + "ids": "⿰石分", + "canonical_ids": "⿰石分", + "expanded_ids": "⿰石⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砐", + "codepoint": "U+7810", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7810", + "status": "exact_ids", + "ids": "⿰石及", + "canonical_ids": "⿰石及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "石" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砑", + "codepoint": "U+7811", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7811", + "status": "exact_ids", + "ids": "⿰石牙", + "canonical_ids": "⿰石牙", + "expanded_ids": "⿰石牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砒", + "codepoint": "U+7812", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7812", + "status": "exact_ids", + "ids": "⿰石比", + "canonical_ids": "⿰石比", + "expanded_ids": "⿰石⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砓", + "codepoint": "U+7813", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7813", + "status": "exact_ids", + "ids": "⿰石殳", + "canonical_ids": "⿰石殳", + "expanded_ids": "⿰石⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "研", + "codepoint": "U+7814", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7814", + "status": "exact_ids", + "ids": "⿰石开", + "canonical_ids": "⿰石开", + "expanded_ids": "⿰石⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廾", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砕", + "codepoint": "U+7815", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7815", + "status": "exact_ids", + "ids": "⿰石卆", + "canonical_ids": "⿰石卆", + "expanded_ids": "⿰石⿱九十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "十", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砖", + "codepoint": "U+7816", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7816", + "status": "exact_ids", + "ids": "⿰石专", + "canonical_ids": "⿰石专", + "expanded_ids": "⿰石专", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "专", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砗", + "codepoint": "U+7817", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7817", + "status": "exact_ids", + "ids": "⿰石车", + "canonical_ids": "⿰石车", + "expanded_ids": "⿰石车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砘", + "codepoint": "U+7818", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7818", + "status": "exact_ids", + "ids": "⿰石屯", + "canonical_ids": "⿰石屯", + "expanded_ids": "⿰石屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砙", + "codepoint": "U+7819", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7819", + "status": "exact_ids", + "ids": "⿰石瓦", + "canonical_ids": "⿰石瓦", + "expanded_ids": "⿰石瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓦", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砚", + "codepoint": "U+781A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-781A", + "status": "exact_ids", + "ids": "⿰石见", + "canonical_ids": "⿰石见", + "expanded_ids": "⿰石⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砛", + "codepoint": "U+781B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-781B", + "status": "exact_ids", + "ids": "⿰石今", + "canonical_ids": "⿰石今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "石" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砜", + "codepoint": "U+781C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-781C", + "status": "exact_ids", + "ids": "⿰石风", + "canonical_ids": "⿰石风", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "风" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砝", + "codepoint": "U+781D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-781D", + "status": "exact_ids", + "ids": "⿰石去", + "canonical_ids": "⿰石去", + "expanded_ids": "⿰石⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砞", + "codepoint": "U+781E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-781E", + "status": "exact_ids", + "ids": "⿰石末", + "canonical_ids": "⿰石末", + "expanded_ids": "⿰石⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "砵" + ] + }, + { + "character": "砟", + "codepoint": "U+781F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-781F", + "status": "exact_ids", + "ids": "⿰石乍", + "canonical_ids": "⿰石乍", + "expanded_ids": "⿰石乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砠", + "codepoint": "U+7820", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7820", + "status": "exact_ids", + "ids": "⿰石且", + "canonical_ids": "⿰石且", + "expanded_ids": "⿰石且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砡", + "codepoint": "U+7821", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7821", + "status": "exact_ids", + "ids": "⿰石玉", + "canonical_ids": "⿰石玉", + "expanded_ids": "⿰石⿻王丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砢", + "codepoint": "U+7822", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7822", + "status": "exact_ids", + "ids": "⿰石可", + "canonical_ids": "⿰石可", + "expanded_ids": "⿰石⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砣", + "codepoint": "U+7823", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7823", + "status": "exact_ids", + "ids": "⿰石它", + "canonical_ids": "⿰石它", + "expanded_ids": "⿰石⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砤", + "codepoint": "U+7824", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7824", + "status": "exact_ids", + "ids": "⿰石㐌", + "canonical_ids": "⿰石㐌", + "expanded_ids": "⿰石⿱⿻丿一⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丿", + "乜", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砥", + "codepoint": "U+7825", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7825", + "status": "exact_ids", + "ids": "⿰石氐", + "canonical_ids": "⿰石氐", + "expanded_ids": "⿰石⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氏", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砦", + "codepoint": "U+7826", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7826", + "status": "exact_ids", + "ids": "⿱此石", + "canonical_ids": "⿱此石", + "expanded_ids": "⿱⿰止匕石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "止", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砧", + "codepoint": "U+7827", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7827", + "status": "exact_ids", + "ids": "⿰石占", + "canonical_ids": "⿰石占", + "expanded_ids": "⿰石⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砨", + "codepoint": "U+7828", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7828", + "status": "exact_ids", + "ids": "⿰石戹", + "canonical_ids": "⿰石戹", + "expanded_ids": "⿰石⿱⿻丶尸乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乙", + "尸", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砩", + "codepoint": "U+7829", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7829", + "status": "exact_ids", + "ids": "⿰石弗", + "canonical_ids": "⿰石弗", + "expanded_ids": "⿰石⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "弓", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砪", + "codepoint": "U+782A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-782A", + "status": "exact_ids", + "ids": "⿰石母", + "canonical_ids": "⿰石母", + "expanded_ids": "⿰石母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "母", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砫", + "codepoint": "U+782B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-782B", + "status": "exact_ids", + "ids": "⿰石主", + "canonical_ids": "⿰石主", + "expanded_ids": "⿰石⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砬", + "codepoint": "U+782C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-782C", + "status": "exact_ids", + "ids": "⿰石立", + "canonical_ids": "⿰石立", + "expanded_ids": "⿰石立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砭", + "codepoint": "U+782D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-782D", + "status": "exact_ids", + "ids": "⿰石乏", + "canonical_ids": "⿰石乏", + "expanded_ids": "⿰石⿱丿之", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "之", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砮", + "codepoint": "U+782E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-782E", + "status": "exact_ids", + "ids": "⿱奴石", + "canonical_ids": "⿱奴石", + "expanded_ids": "⿱⿰女又石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "女", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砯", + "codepoint": "U+782F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-782F", + "status": "exact_ids", + "ids": "⿰石氷", + "canonical_ids": "⿰石氷", + "expanded_ids": "⿰石⿻水丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "水", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砰", + "codepoint": "U+7830", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7830", + "status": "exact_ids", + "ids": "⿰石平", + "canonical_ids": "⿰石平", + "expanded_ids": "⿰石⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "十", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砱", + "codepoint": "U+7831", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7831", + "status": "exact_ids", + "ids": "⿰石令", + "canonical_ids": "⿰石令", + "expanded_ids": "⿰石⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "石", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砲", + "codepoint": "U+7832", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7832", + "status": "exact_ids", + "ids": "⿰石包", + "canonical_ids": "⿰石包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砳", + "codepoint": "U+7833", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7833", + "status": "exact_ids", + "ids": "⿰石石", + "canonical_ids": "⿰石石", + "expanded_ids": "⿰石石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "破", + "codepoint": "U+7834", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7834", + "status": "exact_ids", + "ids": "⿰石皮", + "canonical_ids": "⿰石皮", + "expanded_ids": "⿰石皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皮", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砵", + "codepoint": "U+7835", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7835", + "status": "exact_ids", + "ids": "⿰石本", + "canonical_ids": "⿰石本", + "expanded_ids": "⿰石⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "砞" + ] + }, + { + "character": "砶", + "codepoint": "U+7836", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7836", + "status": "exact_ids", + "ids": "⿰石白", + "canonical_ids": "⿰石白", + "expanded_ids": "⿰石⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砷", + "codepoint": "U+7837", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7837", + "status": "exact_ids", + "ids": "⿰石申", + "canonical_ids": "⿰石申", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砸", + "codepoint": "U+7838", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7838", + "status": "exact_ids", + "ids": "⿰石匝", + "canonical_ids": "⿰石匝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "匝" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砹", + "codepoint": "U+7839", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7839", + "status": "exact_ids", + "ids": "⿰石艾", + "canonical_ids": "⿰石艾", + "expanded_ids": "⿰石⿱艹乂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "石", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砺", + "codepoint": "U+783A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-783A", + "status": "exact_ids", + "ids": "⿰石厉", + "canonical_ids": "⿰石厉", + "expanded_ids": "⿰石⿱厂万", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "万", + "厂", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砻", + "codepoint": "U+783B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-783B", + "status": "exact_ids", + "ids": "⿱龙石", + "canonical_ids": "⿱龙石", + "expanded_ids": "⿱龙石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砼", + "codepoint": "U+783C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-783C", + "status": "exact_ids", + "ids": "⿰石仝", + "canonical_ids": "⿰石仝", + "expanded_ids": "⿰石⿱人工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "工", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砽", + "codepoint": "U+783D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-783D", + "status": "exact_ids", + "ids": "⿰石用", + "canonical_ids": "⿰石用", + "expanded_ids": "⿰石⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砾", + "codepoint": "U+783E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-783E", + "status": "exact_ids", + "ids": "⿰石乐", + "canonical_ids": "⿰石乐", + "expanded_ids": "⿰石乐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乐", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "砿", + "codepoint": "U+783F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-783F", + "status": "exact_ids", + "ids": "⿰石広", + "canonical_ids": "⿰石広", + "expanded_ids": "⿰石⿱广厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "广", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "础", + "codepoint": "U+7840", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7840", + "status": "exact_ids", + "ids": "⿰石出", + "canonical_ids": "⿰石出", + "expanded_ids": "⿰石⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硁", + "codepoint": "U+7841", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7841", + "status": "exact_ids", + "ids": "⿰石𢀖", + "canonical_ids": "⿰石𢀖", + "expanded_ids": "⿰石⿱又工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "工", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硂", + "codepoint": "U+7842", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7842", + "status": "exact_ids", + "ids": "⿰石全", + "canonical_ids": "⿰石全", + "expanded_ids": "⿰石⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "王", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硃", + "codepoint": "U+7843", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7843", + "status": "exact_ids", + "ids": "⿰石朱", + "canonical_ids": "⿰石朱", + "expanded_ids": "⿰石⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硄", + "codepoint": "U+7844", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7844", + "status": "exact_ids", + "ids": "⿰石光", + "canonical_ids": "⿰石光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "石" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硅", + "codepoint": "U+7845", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7845", + "status": "exact_ids", + "ids": "⿰石圭", + "canonical_ids": "⿰石圭", + "expanded_ids": "⿰石⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硆", + "codepoint": "U+7846", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7846", + "status": "exact_ids", + "ids": "⿰石合", + "canonical_ids": "⿰石合", + "expanded_ids": "⿰石⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硇", + "codepoint": "U+7847", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7847", + "status": "exact_ids", + "ids": "⿰石囟", + "canonical_ids": "⿰石囟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "囟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硈", + "codepoint": "U+7848", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7848", + "status": "exact_ids", + "ids": "⿰石吉", + "canonical_ids": "⿰石吉", + "expanded_ids": "⿰石⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硉", + "codepoint": "U+7849", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7849", + "status": "exact_ids", + "ids": "⿰石聿", + "canonical_ids": "⿰石聿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硊", + "codepoint": "U+784A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-784A", + "status": "exact_ids", + "ids": "⿰石危", + "canonical_ids": "⿰石危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "石" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硋", + "codepoint": "U+784B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-784B", + "status": "exact_ids", + "ids": "⿰石亥", + "canonical_ids": "⿰石亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硌", + "codepoint": "U+784C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-784C", + "status": "exact_ids", + "ids": "⿰石各", + "canonical_ids": "⿰石各", + "expanded_ids": "⿰石⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硍", + "codepoint": "U+784D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-784D", + "status": "exact_ids", + "ids": "⿰石艮", + "canonical_ids": "⿰石艮", + "expanded_ids": "⿰石艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硎", + "codepoint": "U+784E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-784E", + "status": "exact_ids", + "ids": "⿰石刑", + "canonical_ids": "⿰石刑", + "expanded_ids": "⿰石⿰⿱一廾刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "廾", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硏", + "codepoint": "U+784F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-784F", + "status": "exact_ids", + "ids": "⿰石幵", + "canonical_ids": "⿰石幵", + "expanded_ids": "⿰石⿰⿱一十⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硐", + "codepoint": "U+7850", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7850", + "status": "exact_ids", + "ids": "⿰石同", + "canonical_ids": "⿰石同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硑", + "codepoint": "U+7851", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7851", + "status": "exact_ids", + "ids": "⿰石并", + "canonical_ids": "⿰石并", + "expanded_ids": "⿰石⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硒", + "codepoint": "U+7852", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7852", + "status": "exact_ids", + "ids": "⿰石西", + "canonical_ids": "⿰石西", + "expanded_ids": "⿰石⿻⿱一儿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硓", + "codepoint": "U+7853", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7853", + "status": "exact_ids", + "ids": "⿰石老", + "canonical_ids": "⿰石老", + "expanded_ids": "⿰石⿱⿻土丿匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硔", + "codepoint": "U+7854", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7854", + "status": "exact_ids", + "ids": "⿰石共", + "canonical_ids": "⿰石共", + "expanded_ids": "⿰石⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硕", + "codepoint": "U+7855", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7855", + "status": "exact_ids", + "ids": "⿰石页", + "canonical_ids": "⿰石页", + "expanded_ids": "⿰石⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硖", + "codepoint": "U+7856", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7856", + "status": "exact_ids", + "ids": "⿰石夹", + "canonical_ids": "⿰石夹", + "expanded_ids": "⿰石⿻⿻一大丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硗", + "codepoint": "U+7857", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7857", + "status": "exact_ids", + "ids": "⿰石尧", + "canonical_ids": "⿰石尧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "尧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硘", + "codepoint": "U+7858", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7858", + "status": "exact_ids", + "ids": "⿰石回", + "canonical_ids": "⿰石回", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硙", + "codepoint": "U+7859", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7859", + "status": "exact_ids", + "ids": "⿰石岂", + "canonical_ids": "⿰石岂", + "expanded_ids": "⿰石⿱山己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "己", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硚", + "codepoint": "U+785A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-785A", + "status": "exact_ids", + "ids": "⿰石乔", + "canonical_ids": "⿰石乔", + "expanded_ids": "⿰石⿱丿⿱大儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "大", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硛", + "codepoint": "U+785B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-785B", + "status": "exact_ids", + "ids": "⿰石亦", + "canonical_ids": "⿰石亦", + "expanded_ids": "⿰石亦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硜", + "codepoint": "U+785C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-785C", + "status": "exact_ids", + "ids": "⿰石巠", + "canonical_ids": "⿰石巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硝", + "codepoint": "U+785D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-785D", + "status": "exact_ids", + "ids": "⿰石肖", + "canonical_ids": "⿰石肖", + "expanded_ids": "⿰石⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硞", + "codepoint": "U+785E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-785E", + "status": "exact_ids", + "ids": "⿰石告", + "canonical_ids": "⿰石告", + "expanded_ids": "⿰石⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硟", + "codepoint": "U+785F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-785F", + "status": "exact_ids", + "ids": "⿰石延", + "canonical_ids": "⿰石延", + "expanded_ids": "⿰石⿰廴⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廴", + "止", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硠", + "codepoint": "U+7860", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7860", + "status": "exact_ids", + "ids": "⿰石良", + "canonical_ids": "⿰石良", + "expanded_ids": "⿰石⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "石", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硡", + "codepoint": "U+7861", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7861", + "status": "exact_ids", + "ids": "⿰石宏", + "canonical_ids": "⿰石宏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "石" + ], + "unresolved_leaves": [ + "厷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硢", + "codepoint": "U+7862", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7862", + "status": "exact_ids", + "ids": "⿰石余", + "canonical_ids": "⿰石余", + "expanded_ids": "⿰石⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硣", + "codepoint": "U+7863", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7863", + "status": "exact_ids", + "ids": "⿰石孝", + "canonical_ids": "⿰石孝", + "expanded_ids": "⿰石⿱⿻土丿子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "子", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硤", + "codepoint": "U+7864", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7864", + "status": "exact_ids", + "ids": "⿰石夾", + "canonical_ids": "⿰石夾", + "expanded_ids": "⿰石⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硥", + "codepoint": "U+7865", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7865", + "status": "exact_ids", + "ids": "⿰石尨", + "canonical_ids": "⿰石尨", + "expanded_ids": "⿰石⿰尤彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "彡", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硦", + "codepoint": "U+7866", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7866", + "status": "exact_ids", + "ids": "⿰石弄", + "canonical_ids": "⿰石弄", + "expanded_ids": "⿰石⿱王廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "王", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硧", + "codepoint": "U+7867", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7867", + "status": "exact_ids", + "ids": "⿰石甬", + "canonical_ids": "⿰石甬", + "expanded_ids": "⿰石⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "石", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硨", + "codepoint": "U+7868", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7868", + "status": "exact_ids", + "ids": "⿰石車", + "canonical_ids": "⿰石車", + "expanded_ids": "⿰石車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硩", + "codepoint": "U+7869", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7869", + "status": "exact_ids", + "ids": "⿱折石", + "canonical_ids": "⿱折石", + "expanded_ids": "⿱⿰扌斤石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "斤", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硪", + "codepoint": "U+786A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-786A", + "status": "exact_ids", + "ids": "⿰石我", + "canonical_ids": "⿰石我", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "石" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硫", + "codepoint": "U+786B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-786B", + "status": "exact_ids", + "ids": "⿰石㐬", + "canonical_ids": "⿰石㐬", + "expanded_ids": "⿰石⿱亠⿱厶川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "厶", + "川", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硬", + "codepoint": "U+786C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-786C", + "status": "exact_ids", + "ids": "⿰石更", + "canonical_ids": "⿰石更", + "expanded_ids": "⿰石更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "更", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硭", + "codepoint": "U+786D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-786D", + "status": "exact_ids", + "ids": "⿰石芒", + "canonical_ids": "⿰石芒", + "expanded_ids": "⿰石⿱艹⿻亠乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "石", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "确", + "codepoint": "U+786E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-786E", + "status": "exact_ids", + "ids": "⿰石角", + "canonical_ids": "⿰石角", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "石" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硯", + "codepoint": "U+786F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-786F", + "status": "exact_ids", + "ids": "⿰石見", + "canonical_ids": "⿰石見", + "expanded_ids": "⿰石⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硰", + "codepoint": "U+7870", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7870", + "status": "exact_ids", + "ids": "⿱沙石", + "canonical_ids": "⿱沙石", + "expanded_ids": "⿱⿰氵⿱小丿石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "氵", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硱", + "codepoint": "U+7871", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7871", + "status": "exact_ids", + "ids": "⿰石困", + "canonical_ids": "⿰石困", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "困" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硲", + "codepoint": "U+7872", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7872", + "status": "exact_ids", + "ids": "⿰石谷", + "canonical_ids": "⿰石谷", + "expanded_ids": "⿰石⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硳", + "codepoint": "U+7873", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7873", + "status": "exact_ids", + "ids": "⿰石赤", + "canonical_ids": "⿰石赤", + "expanded_ids": "⿰石赤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "赤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硴", + "codepoint": "U+7874", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7874", + "status": "exact_ids", + "ids": "⿰石花", + "canonical_ids": "⿰石花", + "expanded_ids": "⿰石⿱艹⿰亻匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "石", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硵", + "codepoint": "U+7875", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7875", + "status": "exact_ids", + "ids": "⿰石卤", + "canonical_ids": "⿰石卤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "石" + ], + "unresolved_leaves": [ + "龱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硶", + "codepoint": "U+7876", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7876", + "status": "exact_ids", + "ids": "⿰石岑", + "canonical_ids": "⿰石岑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "山", + "石" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硷", + "codepoint": "U+7877", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7877", + "status": "exact_ids", + "ids": "⿰石佥", + "canonical_ids": "⿰石佥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "佥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硸", + "codepoint": "U+7878", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7878", + "status": "exact_ids", + "ids": "⿰石岸", + "canonical_ids": "⿰石岸", + "expanded_ids": "⿰石⿱山⿱厂⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "厂", + "山", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硹", + "codepoint": "U+7879", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7879", + "status": "exact_ids", + "ids": "⿰石松", + "canonical_ids": "⿰石松", + "expanded_ids": "⿰石⿰木⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "木", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硺", + "codepoint": "U+787A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-787A", + "status": "exact_ids", + "ids": "⿰石豖", + "canonical_ids": "⿰石豖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "豖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硻", + "codepoint": "U+787B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-787B", + "status": "exact_ids", + "ids": "⿱臤石", + "canonical_ids": "⿱臤石", + "expanded_ids": "⿱⿰臣又石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "石", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硼", + "codepoint": "U+787C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-787C", + "status": "exact_ids", + "ids": "⿰石朋", + "canonical_ids": "⿰石朋", + "expanded_ids": "⿰石⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硽", + "codepoint": "U+787D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-787D", + "status": "exact_ids", + "ids": "⿰石奄", + "canonical_ids": "⿰石奄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "石" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硾", + "codepoint": "U+787E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-787E", + "status": "exact_ids", + "ids": "⿰石垂", + "canonical_ids": "⿰石垂", + "expanded_ids": "⿰石垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "垂", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "硿", + "codepoint": "U+787F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-787F", + "status": "exact_ids", + "ids": "⿰石空", + "canonical_ids": "⿰石空", + "expanded_ids": "⿰石⿱⿱宀八工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "工", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碀", + "codepoint": "U+7880", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7880", + "status": "exact_ids", + "ids": "⿰石爭", + "canonical_ids": "⿰石爭", + "expanded_ids": "⿰石⿱爫肀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爫", + "石", + "肀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碁", + "codepoint": "U+7881", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7881", + "status": "exact_ids", + "ids": "⿱其石", + "canonical_ids": "⿱其石", + "expanded_ids": "⿱其石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碂", + "codepoint": "U+7882", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7882", + "status": "exact_ids", + "ids": "⿰石宗", + "canonical_ids": "⿰石宗", + "expanded_ids": "⿰石⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碃", + "codepoint": "U+7883", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7883", + "status": "exact_ids", + "ids": "⿰石青", + "canonical_ids": "⿰石青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "石" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碄", + "codepoint": "U+7884", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7884", + "status": "exact_ids", + "ids": "⿰石林", + "canonical_ids": "⿰石林", + "expanded_ids": "⿰石⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碅", + "codepoint": "U+7885", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7885", + "status": "exact_ids", + "ids": "⿰石囷", + "canonical_ids": "⿰石囷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "囷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碆", + "codepoint": "U+7886", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7886", + "status": "exact_ids", + "ids": "⿱波石", + "canonical_ids": "⿱波石", + "expanded_ids": "⿱⿰氵皮石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "皮", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碇", + "codepoint": "U+7887", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7887", + "status": "exact_ids", + "ids": "⿰石定", + "canonical_ids": "⿰石定", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "石" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碈", + "codepoint": "U+7888", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7888", + "status": "exact_ids", + "ids": "⿰石昏", + "canonical_ids": "⿰石昏", + "expanded_ids": "⿰石⿱氏日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "氏", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碉", + "codepoint": "U+7889", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7889", + "status": "exact_ids", + "ids": "⿰石周", + "canonical_ids": "⿰石周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碊", + "codepoint": "U+788A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-788A", + "status": "exact_ids", + "ids": "⿰石戔", + "canonical_ids": "⿰石戔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碋", + "codepoint": "U+788B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-788B", + "status": "exact_ids", + "ids": "⿰石岢", + "canonical_ids": "⿰石岢", + "expanded_ids": "⿰石⿱山⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "山", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碌", + "codepoint": "U+788C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-788C", + "status": "exact_ids", + "ids": "⿰石录", + "canonical_ids": "⿰石录", + "expanded_ids": "⿰石⿱彐氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "氺", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碍", + "codepoint": "U+788D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-788D", + "status": "exact_ids", + "ids": "⿰石㝵", + "canonical_ids": "⿰石㝵", + "expanded_ids": "⿰石⿱日寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "日", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碎", + "codepoint": "U+788E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-788E", + "status": "exact_ids", + "ids": "⿰石卒", + "canonical_ids": "⿰石卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碏", + "codepoint": "U+788F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-788F", + "status": "exact_ids", + "ids": "⿰石昔", + "canonical_ids": "⿰石昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "石" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碐", + "codepoint": "U+7890", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7890", + "status": "exact_ids", + "ids": "⿰石夌", + "canonical_ids": "⿰石夌", + "expanded_ids": "⿰石⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碑", + "codepoint": "U+7891", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7891", + "status": "exact_ids", + "ids": "⿰石卑", + "canonical_ids": "⿰石卑", + "expanded_ids": "⿰石卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碒", + "codepoint": "U+7892", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7892", + "status": "exact_ids", + "ids": "⿰石金", + "canonical_ids": "⿰石金", + "expanded_ids": "⿰石金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碓", + "codepoint": "U+7893", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7893", + "status": "exact_ids", + "ids": "⿰石隹", + "canonical_ids": "⿰石隹", + "expanded_ids": "⿰石隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碔", + "codepoint": "U+7894", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7894", + "status": "exact_ids", + "ids": "⿰石武", + "canonical_ids": "⿰石武", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "武" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碕", + "codepoint": "U+7895", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7895", + "status": "exact_ids", + "ids": "⿰石奇", + "canonical_ids": "⿰石奇", + "expanded_ids": "⿰石⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碖", + "codepoint": "U+7896", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7896", + "status": "exact_ids", + "ids": "⿰石侖", + "canonical_ids": "⿰石侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "石" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碗", + "codepoint": "U+7897", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7897", + "status": "exact_ids", + "ids": "⿰石宛", + "canonical_ids": "⿰石宛", + "expanded_ids": "⿰石⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碘", + "codepoint": "U+7898", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7898", + "status": "exact_ids", + "ids": "⿰石典", + "canonical_ids": "⿰石典", + "expanded_ids": "⿰石典", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "典", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碙", + "codepoint": "U+7899", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7899", + "status": "exact_ids", + "ids": "⿰石岡", + "canonical_ids": "⿰石岡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "岡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碚", + "codepoint": "U+789A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-789A", + "status": "exact_ids", + "ids": "⿰石咅", + "canonical_ids": "⿰石咅", + "expanded_ids": "⿰石⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "石", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碛", + "codepoint": "U+789B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-789B", + "status": "exact_ids", + "ids": "⿰石责", + "canonical_ids": "⿰石责", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "石" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碜", + "codepoint": "U+789C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-789C", + "status": "exact_ids", + "ids": "⿰石参", + "canonical_ids": "⿰石参", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "参" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碝", + "codepoint": "U+789D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-789D", + "status": "exact_ids", + "ids": "⿰石耎", + "canonical_ids": "⿰石耎", + "expanded_ids": "⿰石⿱而大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "石", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碞", + "codepoint": "U+789E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-789E", + "status": "exact_ids", + "ids": "⿱品石", + "canonical_ids": "⿱品石", + "expanded_ids": "⿱⿱口⿰口口石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碟", + "codepoint": "U+789F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-789F", + "status": "exact_ids", + "ids": "⿰石枼", + "canonical_ids": "⿰石枼", + "expanded_ids": "⿰石⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碠", + "codepoint": "U+78A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78A0", + "status": "exact_ids", + "ids": "⿰石亭", + "canonical_ids": "⿰石亭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "亭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碡", + "codepoint": "U+78A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78A1", + "status": "exact_ids", + "ids": "⿰石毒", + "canonical_ids": "⿰石毒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毋", + "石" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碢", + "codepoint": "U+78A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78A2", + "status": "exact_ids", + "ids": "⿰石咼", + "canonical_ids": "⿰石咼", + "expanded_ids": "⿰石⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碣", + "codepoint": "U+78A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78A3", + "status": "exact_ids", + "ids": "⿰石曷", + "canonical_ids": "⿰石曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "石" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碤", + "codepoint": "U+78A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78A4", + "status": "exact_ids", + "ids": "⿰石英", + "canonical_ids": "⿰石英", + "expanded_ids": "⿰石⿱艹⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "石", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碥", + "codepoint": "U+78A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78A5", + "status": "exact_ids", + "ids": "⿰石扁", + "canonical_ids": "⿰石扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "石" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碦", + "codepoint": "U+78A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78A6", + "status": "exact_ids", + "ids": "⿰石客", + "canonical_ids": "⿰石客", + "expanded_ids": "⿰石⿱宀⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "宀", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碧", + "codepoint": "U+78A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78A7", + "status": "exact_ids", + "ids": "⿱珀石", + "canonical_ids": "⿱珀石", + "expanded_ids": "⿱⿰王⿻日丶石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "王", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碨", + "codepoint": "U+78A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78A8", + "status": "exact_ids", + "ids": "⿰石畏", + "canonical_ids": "⿰石畏", + "expanded_ids": "⿰石⿱田氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氏", + "田", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碩", + "codepoint": "U+78A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78A9", + "status": "exact_ids", + "ids": "⿰石頁", + "canonical_ids": "⿰石頁", + "expanded_ids": "⿰石⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碪", + "codepoint": "U+78AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78AA", + "status": "exact_ids", + "ids": "⿰石甚", + "canonical_ids": "⿰石甚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甘", + "石" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碫", + "codepoint": "U+78AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78AB", + "status": "exact_ids", + "ids": "⿰石段", + "canonical_ids": "⿰石段", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "段" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碬", + "codepoint": "U+78AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78AC", + "status": "exact_ids", + "ids": "⿰石叚", + "canonical_ids": "⿰石叚", + "expanded_ids": "⿰石叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碭", + "codepoint": "U+78AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78AD", + "status": "exact_ids", + "ids": "⿰石昜", + "canonical_ids": "⿰石昜", + "expanded_ids": "⿰石⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碮", + "codepoint": "U+78AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78AE", + "status": "exact_ids", + "ids": "⿰石是", + "canonical_ids": "⿰石是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "石" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碯", + "codepoint": "U+78AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78AF", + "status": "exact_ids", + "ids": "⿰石𡿺", + "canonical_ids": "⿰石𡿺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "石" + ], + "unresolved_leaves": [ + "囟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碰", + "codepoint": "U+78B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78B0", + "status": "exact_ids", + "ids": "⿰石並", + "canonical_ids": "⿰石並", + "expanded_ids": "⿰石⿱丷亚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亚", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碱", + "codepoint": "U+78B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78B1", + "status": "exact_ids", + "ids": "⿰石咸", + "canonical_ids": "⿰石咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碲", + "codepoint": "U+78B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78B2", + "status": "exact_ids", + "ids": "⿰石帝", + "canonical_ids": "⿰石帝", + "expanded_ids": "⿰石⿳⿱亠八冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碳", + "codepoint": "U+78B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78B3", + "status": "exact_ids", + "ids": "⿰石炭", + "canonical_ids": "⿰石炭", + "expanded_ids": "⿰石⿱山⿱厂火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "山", + "火", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碴", + "codepoint": "U+78B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78B4", + "status": "exact_ids", + "ids": "⿰石查", + "canonical_ids": "⿰石查", + "expanded_ids": "⿰石⿱木⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "木", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碵", + "codepoint": "U+78B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78B5", + "status": "exact_ids", + "ids": "⿰石貞", + "canonical_ids": "⿰石貞", + "expanded_ids": "⿰石⿱卜⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "卜", + "目", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碶", + "codepoint": "U+78B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78B6", + "status": "exact_ids", + "ids": "⿰石契", + "canonical_ids": "⿰石契", + "expanded_ids": "⿰石⿱⿰丰刀大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "大", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碷", + "codepoint": "U+78B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78B7", + "status": "exact_ids", + "ids": "⿰石盾", + "canonical_ids": "⿰石盾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "目", + "石" + ], + "unresolved_leaves": [ + "⺁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碸", + "codepoint": "U+78B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78B8", + "status": "exact_ids", + "ids": "⿰石風", + "canonical_ids": "⿰石風", + "expanded_ids": "⿰石風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碹", + "codepoint": "U+78B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78B9", + "status": "exact_ids", + "ids": "⿰石宣", + "canonical_ids": "⿰石宣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "石" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "確", + "codepoint": "U+78BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78BA", + "status": "exact_ids", + "ids": "⿰石隺", + "canonical_ids": "⿰石隺", + "expanded_ids": "⿰石⿻冖隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "石", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碻", + "codepoint": "U+78BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78BB", + "status": "exact_ids", + "ids": "⿰石高", + "canonical_ids": "⿰石高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碼", + "codepoint": "U+78BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78BC", + "status": "exact_ids", + "ids": "⿰石馬", + "canonical_ids": "⿰石馬", + "expanded_ids": "⿰石馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碽", + "codepoint": "U+78BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78BD", + "status": "exact_ids", + "ids": "⿰石貢", + "canonical_ids": "⿰石貢", + "expanded_ids": "⿰石⿱工⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "工", + "目", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碾", + "codepoint": "U+78BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78BE", + "status": "exact_ids", + "ids": "⿰石展", + "canonical_ids": "⿰石展", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "展" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "碿", + "codepoint": "U+78BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78BF", + "status": "exact_ids", + "ids": "⿰石屑", + "canonical_ids": "⿰石屑", + "expanded_ids": "⿰石⿱尸⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "尸", + "月", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磀", + "codepoint": "U+78C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78C0", + "status": "exact_ids", + "ids": "⿰石逆", + "canonical_ids": "⿰石逆", + "expanded_ids": "⿰石⿰辶⿱䒑屮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "屮", + "石", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磁", + "codepoint": "U+78C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78C1", + "status": "exact_ids", + "ids": "⿰石兹", + "canonical_ids": "⿰石兹", + "expanded_ids": "⿰石⿱䒑⿰幺幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "幺", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磂", + "codepoint": "U+78C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78C2", + "status": "exact_ids", + "ids": "⿰石留", + "canonical_ids": "⿰石留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磃", + "codepoint": "U+78C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78C3", + "status": "exact_ids", + "ids": "⿰石虒", + "canonical_ids": "⿰石虒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "虒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磄", + "codepoint": "U+78C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78C4", + "status": "exact_ids", + "ids": "⿰石唐", + "canonical_ids": "⿰石唐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磅", + "codepoint": "U+78C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78C5", + "status": "exact_ids", + "ids": "⿰石旁", + "canonical_ids": "⿰石旁", + "expanded_ids": "⿰石⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "方", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磆", + "codepoint": "U+78C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78C6", + "status": "exact_ids", + "ids": "⿰石骨", + "canonical_ids": "⿰石骨", + "expanded_ids": "⿰石⿱冎月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磇", + "codepoint": "U+78C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78C7", + "status": "exact_ids", + "ids": "⿰石𣬉", + "canonical_ids": "⿰石𣬉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "石" + ], + "unresolved_leaves": [ + "囟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磈", + "codepoint": "U+78C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78C8", + "status": "exact_ids", + "ids": "⿰石鬼", + "canonical_ids": "⿰石鬼", + "expanded_ids": "⿰石鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磉", + "codepoint": "U+78C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78C9", + "status": "exact_ids", + "ids": "⿰石桑", + "canonical_ids": "⿰石桑", + "expanded_ids": "⿰石⿱⿱又⿰又又木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "木", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磊", + "codepoint": "U+78CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78CA", + "status": "exact_ids", + "ids": "⿱石⿰石石", + "canonical_ids": "⿱石⿰石石", + "expanded_ids": "⿱石⿰石石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磋", + "codepoint": "U+78CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78CB", + "status": "exact_ids", + "ids": "⿰石差", + "canonical_ids": "⿰石差", + "expanded_ids": "⿰石⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "石", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磌", + "codepoint": "U+78CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78CC", + "status": "exact_ids", + "ids": "⿰石真", + "canonical_ids": "⿰石真", + "expanded_ids": "⿰石⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "目", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磍", + "codepoint": "U+78CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78CD", + "status": "exact_ids", + "ids": "⿰石害", + "canonical_ids": "⿰石害", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "害" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磎", + "codepoint": "U+78CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78CE", + "status": "exact_ids", + "ids": "⿰石奚", + "canonical_ids": "⿰石奚", + "expanded_ids": "⿰石⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "幺", + "爪", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磏", + "codepoint": "U+78CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78CF", + "status": "exact_ids", + "ids": "⿰石兼", + "canonical_ids": "⿰石兼", + "expanded_ids": "⿰石兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磐", + "codepoint": "U+78D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78D0", + "status": "exact_ids", + "ids": "⿱般石", + "canonical_ids": "⿱般石", + "expanded_ids": "⿱⿰舟⿱几又石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "石", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磑", + "codepoint": "U+78D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78D1", + "status": "exact_ids", + "ids": "⿰石豈", + "canonical_ids": "⿰石豈", + "expanded_ids": "⿰石⿱山豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "石", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磒", + "codepoint": "U+78D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78D2", + "status": "exact_ids", + "ids": "⿰石員", + "canonical_ids": "⿰石員", + "expanded_ids": "⿰石⿱口⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "目", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磓", + "codepoint": "U+78D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78D3", + "status": "exact_ids", + "ids": "⿰石追", + "canonical_ids": "⿰石追", + "expanded_ids": "⿰石⿰辶⿱丿㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "丿", + "石", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磔", + "codepoint": "U+78D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78D4", + "status": "exact_ids", + "ids": "⿰石桀", + "canonical_ids": "⿰石桀", + "expanded_ids": "⿰石⿱⿰夕⿻丨二木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夕", + "木", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磕", + "codepoint": "U+78D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78D5", + "status": "exact_ids", + "ids": "⿰石盍", + "canonical_ids": "⿰石盍", + "expanded_ids": "⿰石⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "皿", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磖", + "codepoint": "U+78D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78D6", + "status": "exact_ids", + "ids": "⿰石習", + "canonical_ids": "⿰石習", + "expanded_ids": "⿰石⿱⿰习习⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "习", + "日", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磗", + "codepoint": "U+78D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78D7", + "status": "exact_ids", + "ids": "⿰石尃", + "canonical_ids": "⿰石尃", + "expanded_ids": "⿰石⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "甫", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磘", + "codepoint": "U+78D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78D8", + "status": "exact_ids", + "ids": "⿰石䍃", + "canonical_ids": "⿰石䍃", + "expanded_ids": "⿰石⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爪", + "石", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磙", + "codepoint": "U+78D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78D9", + "status": "exact_ids", + "ids": "⿰石衮", + "canonical_ids": "⿰石衮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "衮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磚", + "codepoint": "U+78DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78DA", + "status": "exact_ids", + "ids": "⿰石專", + "canonical_ids": "⿰石專", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "寸", + "石" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磛", + "codepoint": "U+78DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78DB", + "status": "exact_ids", + "ids": "⿱斬石", + "canonical_ids": "⿱斬石", + "expanded_ids": "⿱⿰車斤石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "石", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磜", + "codepoint": "U+78DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78DC", + "status": "exact_ids", + "ids": "⿰石祭", + "canonical_ids": "⿰石祭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磝", + "codepoint": "U+78DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78DD", + "status": "exact_ids", + "ids": "⿰石敖", + "canonical_ids": "⿰石敖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磞", + "codepoint": "U+78DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78DE", + "status": "exact_ids", + "ids": "⿰石崩", + "canonical_ids": "⿰石崩", + "expanded_ids": "⿰石⿱山⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "月", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磟", + "codepoint": "U+78DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78DF", + "status": "exact_ids", + "ids": "⿰石翏", + "canonical_ids": "⿰石翏", + "expanded_ids": "⿰石⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磠", + "codepoint": "U+78E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78E0", + "status": "exact_ids", + "ids": "⿰石鹵", + "canonical_ids": "⿰石鹵", + "expanded_ids": "⿰石鹵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "鹵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磡", + "codepoint": "U+78E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78E1", + "status": "exact_ids", + "ids": "⿰石勘", + "canonical_ids": "⿰石勘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "甘", + "石" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磢", + "codepoint": "U+78E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78E2", + "status": "exact_ids", + "ids": "⿰石爽", + "canonical_ids": "⿰石爽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "石" + ], + "unresolved_leaves": [ + "㸚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磣", + "codepoint": "U+78E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78E3", + "status": "exact_ids", + "ids": "⿰石參", + "canonical_ids": "⿰石參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磤", + "codepoint": "U+78E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78E4", + "status": "exact_ids", + "ids": "⿰石殷", + "canonical_ids": "⿰石殷", + "expanded_ids": "⿰石⿰㐆⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㐆", + "几", + "又", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磥", + "codepoint": "U+78E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78E5", + "status": "exact_ids", + "ids": "⿰石累", + "canonical_ids": "⿰石累", + "expanded_ids": "⿰石⿱田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "田", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磦", + "codepoint": "U+78E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78E6", + "status": "exact_ids", + "ids": "⿰石票", + "canonical_ids": "⿰石票", + "expanded_ids": "⿰石⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "石", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磧", + "codepoint": "U+78E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78E7", + "status": "exact_ids", + "ids": "⿰石責", + "canonical_ids": "⿰石責", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "石" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磨", + "codepoint": "U+78E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78E8", + "status": "exact_ids", + "ids": "⿱麻石", + "canonical_ids": "⿱麻石", + "expanded_ids": "⿱⿱广⿰木木石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "木", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磩", + "codepoint": "U+78E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78E9", + "status": "exact_ids", + "ids": "⿰石戚", + "canonical_ids": "⿰石戚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "戚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磪", + "codepoint": "U+78EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78EA", + "status": "exact_ids", + "ids": "⿰石崔", + "canonical_ids": "⿰石崔", + "expanded_ids": "⿰石⿱山隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "石", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磫", + "codepoint": "U+78EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78EB", + "status": "exact_ids", + "ids": "⿰石從", + "canonical_ids": "⿰石從", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "從" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磬", + "codepoint": "U+78EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78EC", + "status": "exact_ids", + "ids": "⿱殸石", + "canonical_ids": "⿱殸石", + "expanded_ids": "⿱⿰⿱士⿻尸丨⿱几又石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "几", + "又", + "士", + "尸", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磭", + "codepoint": "U+78ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78ED", + "status": "exact_ids", + "ids": "⿰石脣", + "canonical_ids": "⿰石脣", + "expanded_ids": "⿰石⿱辰月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "石", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磮", + "codepoint": "U+78EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78EE", + "status": "exact_ids", + "ids": "⿰石崙", + "canonical_ids": "⿰石崙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "山", + "石" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磯", + "codepoint": "U+78EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78EF", + "status": "exact_ids", + "ids": "⿰石幾", + "canonical_ids": "⿰石幾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "石" + ], + "unresolved_leaves": [ + "戍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磰", + "codepoint": "U+78F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78F0", + "status": "exact_ids", + "ids": "⿰石善", + "canonical_ids": "⿰石善", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "善" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磱", + "codepoint": "U+78F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78F1", + "status": "exact_ids", + "ids": "⿰石勞", + "canonical_ids": "⿰石勞", + "expanded_ids": "⿰石⿳⿰火火冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "火", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磲", + "codepoint": "U+78F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78F2", + "status": "exact_ids", + "ids": "⿰石渠", + "canonical_ids": "⿰石渠", + "expanded_ids": "⿰石⿱⿰氵巨木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "木", + "氵", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磳", + "codepoint": "U+78F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78F3", + "status": "exact_ids", + "ids": "⿰石曾", + "canonical_ids": "⿰石曾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磴", + "codepoint": "U+78F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78F4", + "status": "exact_ids", + "ids": "⿰石登", + "canonical_ids": "⿰石登", + "expanded_ids": "⿰石⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "癶", + "石", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磵", + "codepoint": "U+78F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78F5", + "status": "exact_ids", + "ids": "⿰石間", + "canonical_ids": "⿰石間", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "間" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磶", + "codepoint": "U+78F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78F6", + "status": "exact_ids", + "ids": "⿰石舄", + "canonical_ids": "⿰石舄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "臼" + ], + "unresolved_leaves": [ + "灳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磷", + "codepoint": "U+78F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78F7", + "status": "exact_ids", + "ids": "⿰石粦", + "canonical_ids": "⿰石粦", + "expanded_ids": "⿰石⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "木", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磸", + "codepoint": "U+78F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78F8", + "status": "exact_ids", + "ids": "⿰石奠", + "canonical_ids": "⿰石奠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "大", + "石" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磹", + "codepoint": "U+78F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78F9", + "status": "exact_ids", + "ids": "⿰石覃", + "canonical_ids": "⿰石覃", + "expanded_ids": "⿰石⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "石", + "襾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磺", + "codepoint": "U+78FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78FA", + "status": "exact_ids", + "ids": "⿰石黄", + "canonical_ids": "⿰石黄", + "expanded_ids": "⿰石黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磻", + "codepoint": "U+78FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78FB", + "status": "exact_ids", + "ids": "⿰石番", + "canonical_ids": "⿰石番", + "expanded_ids": "⿰石⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "木", + "田", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磼", + "codepoint": "U+78FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78FC", + "status": "exact_ids", + "ids": "⿰石集", + "canonical_ids": "⿰石集", + "expanded_ids": "⿰石⿱隹木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "石", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磽", + "codepoint": "U+78FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78FD", + "status": "exact_ids", + "ids": "⿰石堯", + "canonical_ids": "⿰石堯", + "expanded_ids": "⿰石⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磾", + "codepoint": "U+78FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78FE", + "status": "exact_ids", + "ids": "⿰石單", + "canonical_ids": "⿰石單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "磿", + "codepoint": "U+78FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-78FF", + "status": "exact_ids", + "ids": "⿱厤石", + "canonical_ids": "⿱厤石", + "expanded_ids": "⿱⿱厂⿰⿻丿木⿻丿木石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厂", + "木", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礀", + "codepoint": "U+7900", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7900", + "status": "exact_ids", + "ids": "⿰石閒", + "canonical_ids": "⿰石閒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "閒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礁", + "codepoint": "U+7901", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7901", + "status": "exact_ids", + "ids": "⿰石焦", + "canonical_ids": "⿰石焦", + "expanded_ids": "⿰石⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬", + "石", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礂", + "codepoint": "U+7902", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7902", + "status": "exact_ids", + "ids": "⿰石喜", + "canonical_ids": "⿰石喜", + "expanded_ids": "⿰石⿱⿱十豆口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "石", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礃", + "codepoint": "U+7903", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7903", + "status": "exact_ids", + "ids": "⿰石掌", + "canonical_ids": "⿰石掌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "手", + "石" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礄", + "codepoint": "U+7904", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7904", + "status": "exact_ids", + "ids": "⿰石喬", + "canonical_ids": "⿰石喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "石" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礅", + "codepoint": "U+7905", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7905", + "status": "exact_ids", + "ids": "⿰石敦", + "canonical_ids": "⿰石敦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "石" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礆", + "codepoint": "U+7906", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7906", + "status": "exact_ids", + "ids": "⿰石僉", + "canonical_ids": "⿰石僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礇", + "codepoint": "U+7907", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7907", + "status": "exact_ids", + "ids": "⿰石奧", + "canonical_ids": "⿰石奧", + "expanded_ids": "⿰石⿱⿱宀⿱丿⿻木丷大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "大", + "宀", + "木", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礈", + "codepoint": "U+7908", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7908", + "status": "exact_ids", + "ids": "⿰石遂", + "canonical_ids": "⿰石遂", + "expanded_ids": "⿰石⿰辶⿱八豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "石", + "豕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礉", + "codepoint": "U+7909", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7909", + "status": "exact_ids", + "ids": "⿰石敫", + "canonical_ids": "⿰石敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礊", + "codepoint": "U+790A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-790A", + "status": "exact_ids", + "ids": "⿱𣪠石", + "canonical_ids": "⿱𣪠石", + "expanded_ids": "⿱⿰⿱車凵⿱几又石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "凵", + "又", + "石", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礋", + "codepoint": "U+790B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-790B", + "status": "exact_ids", + "ids": "⿰石睪", + "canonical_ids": "⿰石睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "石", + "罒" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礌", + "codepoint": "U+790C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-790C", + "status": "exact_ids", + "ids": "⿰石雷", + "canonical_ids": "⿰石雷", + "expanded_ids": "⿰石⿱雨田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "石", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礍", + "codepoint": "U+790D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-790D", + "status": "exact_ids", + "ids": "⿰石葛", + "canonical_ids": "⿰石葛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "石", + "艹" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礎", + "codepoint": "U+790E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-790E", + "status": "exact_ids", + "ids": "⿰石楚", + "canonical_ids": "⿰石楚", + "expanded_ids": "⿰石⿱⿰木木疋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "疋", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礏", + "codepoint": "U+790F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-790F", + "status": "exact_ids", + "ids": "⿰石業", + "canonical_ids": "⿰石業", + "expanded_ids": "⿰石⿱业⿻羊八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "八", + "石", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礐", + "codepoint": "U+7910", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7910", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礑", + "codepoint": "U+7911", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7911", + "status": "exact_ids", + "ids": "⿰石當", + "canonical_ids": "⿰石當", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "田", + "石" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礒", + "codepoint": "U+7912", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7912", + "status": "exact_ids", + "ids": "⿰石義", + "canonical_ids": "⿰石義", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "義" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礓", + "codepoint": "U+7913", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7913", + "status": "exact_ids", + "ids": "⿰石畺", + "canonical_ids": "⿰石畺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "石" + ], + "unresolved_leaves": [ + "三" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礔", + "codepoint": "U+7914", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7914", + "status": "exact_ids", + "ids": "⿰石辟", + "canonical_ids": "⿰石辟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "石", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礕", + "codepoint": "U+7915", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7915", + "status": "exact_ids", + "ids": "⿱辟石", + "canonical_ids": "⿱辟石", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "石", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礖", + "codepoint": "U+7916", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7916", + "status": "exact_ids", + "ids": "⿰石與", + "canonical_ids": "⿰石與", + "expanded_ids": "⿰石與", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "與" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礗", + "codepoint": "U+7917", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7917", + "status": "exact_ids", + "ids": "⿰石賓", + "canonical_ids": "⿰石賓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礘", + "codepoint": "U+7918", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7918", + "status": "exact_ids", + "ids": "⿰石㬎", + "canonical_ids": "⿰石㬎", + "expanded_ids": "⿰石⿱日⿱⿰幺幺灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "日", + "灬", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礙", + "codepoint": "U+7919", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7919", + "status": "exact_ids", + "ids": "⿰石疑", + "canonical_ids": "⿰石疑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "疑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礚", + "codepoint": "U+791A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-791A", + "status": "exact_ids", + "ids": "⿰石蓋", + "canonical_ids": "⿰石蓋", + "expanded_ids": "⿰石⿱艹⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "皿", + "石", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礛", + "codepoint": "U+791B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-791B", + "status": "exact_ids", + "ids": "⿰石監", + "canonical_ids": "⿰石監", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礜", + "codepoint": "U+791C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-791C", + "status": "exact_ids", + "ids": "⿱與石", + "canonical_ids": "⿱與石", + "expanded_ids": "⿱與石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "與" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礝", + "codepoint": "U+791D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-791D", + "status": "exact_ids", + "ids": "⿰石需", + "canonical_ids": "⿰石需", + "expanded_ids": "⿰石⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礞", + "codepoint": "U+791E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-791E", + "status": "exact_ids", + "ids": "⿰石蒙", + "canonical_ids": "⿰石蒙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "艹", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礟", + "codepoint": "U+791F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-791F", + "status": "exact_ids", + "ids": "⿰石駁", + "canonical_ids": "⿰石駁", + "expanded_ids": "⿰石⿰馬⿱乂乂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "石", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礠", + "codepoint": "U+7920", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7920", + "status": "exact_ids", + "ids": "⿰石慈", + "canonical_ids": "⿰石慈", + "expanded_ids": "⿰石⿱⿱䒑⿰幺幺心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "幺", + "心", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礡", + "codepoint": "U+7921", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7921", + "status": "exact_ids", + "ids": "⿰石蒪", + "canonical_ids": "⿰石蒪", + "expanded_ids": "⿰石⿱艹⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "甫", + "石", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礢", + "codepoint": "U+7922", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7922", + "status": "exact_ids", + "ids": "⿰石飬", + "canonical_ids": "⿰石飬", + "expanded_ids": "⿰石⿱⿱丷⿻一大⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "丷", + "大", + "石", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礣", + "codepoint": "U+7923", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7923", + "status": "exact_ids", + "ids": "⿰石蔑", + "canonical_ids": "⿰石蔑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "石", + "艹" + ], + "unresolved_leaves": [ + "戌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礤", + "codepoint": "U+7924", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7924", + "status": "exact_ids", + "ids": "⿰石蔡", + "canonical_ids": "⿰石蔡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "艹" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礥", + "codepoint": "U+7925", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7925", + "status": "exact_ids", + "ids": "⿰石賢", + "canonical_ids": "⿰石賢", + "expanded_ids": "⿰石⿱⿰臣又⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "又", + "目", + "石", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礦", + "codepoint": "U+7926", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7926", + "status": "exact_ids", + "ids": "⿰石廣", + "canonical_ids": "⿰石廣", + "expanded_ids": "⿰石⿱广黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "石", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礧", + "codepoint": "U+7927", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7927", + "status": "exact_ids", + "ids": "⿰石畾", + "canonical_ids": "⿰石畾", + "expanded_ids": "⿰石⿱田⿰田田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礨", + "codepoint": "U+7928", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7928", + "status": "exact_ids", + "ids": "⿱畾石", + "canonical_ids": "⿱畾石", + "expanded_ids": "⿱⿱田⿰田田石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礩", + "codepoint": "U+7929", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7929", + "status": "exact_ids", + "ids": "⿰石質", + "canonical_ids": "⿰石質", + "expanded_ids": "⿰石⿱⿰斤斤⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "斤", + "目", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礪", + "codepoint": "U+792A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-792A", + "status": "exact_ids", + "ids": "⿰石厲", + "canonical_ids": "⿰石厲", + "expanded_ids": "⿰石⿱厂⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "田", + "石", + "禸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礫", + "codepoint": "U+792B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-792B", + "status": "exact_ids", + "ids": "⿰石樂", + "canonical_ids": "⿰石樂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石" + ], + "unresolved_leaves": [ + "樂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礬", + "codepoint": "U+792C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-792C", + "status": "exact_ids", + "ids": "⿱樊石", + "canonical_ids": "⿱樊石", + "expanded_ids": "⿱⿱⿲木⿱乂乂木大石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "大", + "木", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礭", + "codepoint": "U+792D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-792D", + "status": "exact_ids", + "ids": "⿰石霍", + "canonical_ids": "⿰石霍", + "expanded_ids": "⿰石⿱雨隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "隹", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礮", + "codepoint": "U+792E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-792E", + "status": "exact_ids", + "ids": "⿰石駮", + "canonical_ids": "⿰石駮", + "expanded_ids": "⿰石⿰馬⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "父", + "石", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礯", + "codepoint": "U+792F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-792F", + "status": "exact_ids", + "ids": "⿰石縈", + "canonical_ids": "⿰石縈", + "expanded_ids": "⿰石⿳⿰火火冖⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "小", + "幺", + "火", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礰", + "codepoint": "U+7930", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7930", + "status": "exact_ids", + "ids": "⿰石歷", + "canonical_ids": "⿰石歷", + "expanded_ids": "⿰石⿱⿱厂⿰⿻丿木⿻丿木止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厂", + "木", + "止", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礱", + "codepoint": "U+7931", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7931", + "status": "exact_ids", + "ids": "⿱龍石", + "canonical_ids": "⿱龍石", + "expanded_ids": "⿱龍石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礲", + "codepoint": "U+7932", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7932", + "status": "exact_ids", + "ids": "⿰石龍", + "canonical_ids": "⿰石龍", + "expanded_ids": "⿰石龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礳", + "codepoint": "U+7933", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7933", + "status": "exact_ids", + "ids": "⿰石磨", + "canonical_ids": "⿰石磨", + "expanded_ids": "⿰石⿱⿱广⿰木木石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "木", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礴", + "codepoint": "U+7934", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7934", + "status": "exact_ids", + "ids": "⿰石薄", + "canonical_ids": "⿰石薄", + "expanded_ids": "⿰石⿱艹⿰氵⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "氵", + "甫", + "石", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礵", + "codepoint": "U+7935", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7935", + "status": "exact_ids", + "ids": "⿰石霜", + "canonical_ids": "⿰石霜", + "expanded_ids": "⿰石⿱雨⿰木目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "目", + "石", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礶", + "codepoint": "U+7936", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7936", + "status": "exact_ids", + "ids": "⿰石雚", + "canonical_ids": "⿰石雚", + "expanded_ids": "⿰石⿱艹⿱⿰口口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "石", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礷", + "codepoint": "U+7937", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7937", + "status": "exact_ids", + "ids": "⿰石藍", + "canonical_ids": "⿰石藍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "艹" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礸", + "codepoint": "U+7938", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7938", + "status": "exact_ids", + "ids": "⿰石贊", + "canonical_ids": "⿰石贊", + "expanded_ids": "⿰石⿱⿰⿱牛儿⿱牛儿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "牛", + "目", + "石" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礹", + "codepoint": "U+7939", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7939", + "status": "exact_ids", + "ids": "⿰石嚴", + "canonical_ids": "⿰石嚴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "石" + ], + "unresolved_leaves": [ + "𠪚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "示", + "codepoint": "U+793A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-793A", + "status": "exact_ids", + "ids": "⿱二小", + "canonical_ids": "⿱二小", + "expanded_ids": "⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礻", + "codepoint": "U+793B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-793B", + "status": "leaf_self_fallback", + "ids": "礻", + "canonical_ids": "礻", + "expanded_ids": "礻", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礼", + "codepoint": "U+793C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-793C", + "status": "exact_ids", + "ids": "⿰礻乚", + "canonical_ids": "⿰礻乚", + "expanded_ids": "⿰礻乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礽", + "codepoint": "U+793D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-793D", + "status": "exact_ids", + "ids": "⿰礻乃", + "canonical_ids": "⿰礻乃", + "expanded_ids": "⿰礻乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "社", + "codepoint": "U+793E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-793E", + "status": "exact_ids", + "ids": "⿰礻土", + "canonical_ids": "⿰礻土", + "expanded_ids": "⿰礻土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "礿", + "codepoint": "U+793F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-793F", + "status": "exact_ids", + "ids": "⿰礻勺", + "canonical_ids": "⿰礻勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祀", + "codepoint": "U+7940", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7940", + "status": "exact_ids", + "ids": "⿰示巳", + "canonical_ids": "⿰示巳", + "expanded_ids": "⿰⿱二小巳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "巳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祁", + "codepoint": "U+7941", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7941", + "status": "exact_ids", + "ids": "⿰礻阝", + "canonical_ids": "⿰礻阝", + "expanded_ids": "⿰礻阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祂", + "codepoint": "U+7942", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7942", + "status": "exact_ids", + "ids": "⿰礻也", + "canonical_ids": "⿰礻也", + "expanded_ids": "⿰礻⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祃", + "codepoint": "U+7943", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7943", + "status": "exact_ids", + "ids": "⿰礻马", + "canonical_ids": "⿰礻马", + "expanded_ids": "⿰礻马", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祄", + "codepoint": "U+7944", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7944", + "status": "exact_ids", + "ids": "⿰礻介", + "canonical_ids": "⿰礻介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祅", + "codepoint": "U+7945", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7945", + "status": "exact_ids", + "ids": "⿰礻夭", + "canonical_ids": "⿰礻夭", + "expanded_ids": "⿰礻⿱丿大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祆", + "codepoint": "U+7946", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7946", + "status": "exact_ids", + "ids": "⿰礻天", + "canonical_ids": "⿰礻天", + "expanded_ids": "⿰礻⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祇", + "codepoint": "U+7947", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7947", + "status": "exact_ids", + "ids": "⿰礻氏", + "canonical_ids": "⿰礻氏", + "expanded_ids": "⿰礻氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氏", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祈", + "codepoint": "U+7948", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7948", + "status": "exact_ids", + "ids": "⿰礻斤", + "canonical_ids": "⿰礻斤", + "expanded_ids": "⿰礻斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祉", + "codepoint": "U+7949", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7949", + "status": "exact_ids", + "ids": "⿰礻止", + "canonical_ids": "⿰礻止", + "expanded_ids": "⿰礻止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祊", + "codepoint": "U+794A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-794A", + "status": "exact_ids", + "ids": "⿰礻方", + "canonical_ids": "⿰礻方", + "expanded_ids": "⿰礻方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祋", + "codepoint": "U+794B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-794B", + "status": "exact_ids", + "ids": "⿰礻殳", + "canonical_ids": "⿰礻殳", + "expanded_ids": "⿰礻⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祌", + "codepoint": "U+794C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-794C", + "status": "exact_ids", + "ids": "⿰礻中", + "canonical_ids": "⿰礻中", + "expanded_ids": "⿰礻⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祍", + "codepoint": "U+794D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-794D", + "status": "exact_ids", + "ids": "⿰礻壬", + "canonical_ids": "⿰礻壬", + "expanded_ids": "⿰礻⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祎", + "codepoint": "U+794E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-794E", + "status": "exact_ids", + "ids": "⿰礻韦", + "canonical_ids": "⿰礻韦", + "expanded_ids": "⿰礻韦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻", + "韦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祏", + "codepoint": "U+794F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-794F", + "status": "exact_ids", + "ids": "⿰礻石", + "canonical_ids": "⿰礻石", + "expanded_ids": "⿰礻石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祐", + "codepoint": "U+7950", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7950", + "status": "exact_ids", + "ids": "⿰礻右", + "canonical_ids": "⿰礻右", + "expanded_ids": "⿰礻⿱⿻丿一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祑", + "codepoint": "U+7951", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7951", + "status": "exact_ids", + "ids": "⿰礻失", + "canonical_ids": "⿰礻失", + "expanded_ids": "⿰礻⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祒", + "codepoint": "U+7952", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7952", + "status": "exact_ids", + "ids": "⿰礻召", + "canonical_ids": "⿰礻召", + "expanded_ids": "⿰礻⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祓", + "codepoint": "U+7953", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7953", + "status": "exact_ids", + "ids": "⿰示犮", + "canonical_ids": "⿰示犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祔", + "codepoint": "U+7954", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7954", + "status": "exact_ids", + "ids": "⿰礻付", + "canonical_ids": "⿰礻付", + "expanded_ids": "⿰礻⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祕", + "codepoint": "U+7955", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7955", + "status": "exact_ids", + "ids": "⿰示必", + "canonical_ids": "⿰示必", + "expanded_ids": "⿰⿱二小⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "二", + "小", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祖", + "codepoint": "U+7956", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7956", + "status": "exact_ids", + "ids": "⿰礻且", + "canonical_ids": "⿰礻且", + "expanded_ids": "⿰礻且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祗", + "codepoint": "U+7957", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7957", + "status": "exact_ids", + "ids": "⿰示氐", + "canonical_ids": "⿰示氐", + "expanded_ids": "⿰⿱二小⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "二", + "小", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祘", + "codepoint": "U+7958", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7958", + "status": "exact_ids", + "ids": "⿰示示", + "canonical_ids": "⿰示示", + "expanded_ids": "⿰⿱二小⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祙", + "codepoint": "U+7959", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7959", + "status": "exact_ids", + "ids": "⿰礻未", + "canonical_ids": "⿰礻未", + "expanded_ids": "⿰礻⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祚", + "codepoint": "U+795A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-795A", + "status": "exact_ids", + "ids": "⿰示乍", + "canonical_ids": "⿰示乍", + "expanded_ids": "⿰⿱二小乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "二", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祛", + "codepoint": "U+795B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-795B", + "status": "exact_ids", + "ids": "⿰示去", + "canonical_ids": "⿰示去", + "expanded_ids": "⿰⿱二小⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "土", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祜", + "codepoint": "U+795C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-795C", + "status": "exact_ids", + "ids": "⿰示古", + "canonical_ids": "⿰示古", + "expanded_ids": "⿰⿱二小⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "十", + "口", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祝", + "codepoint": "U+795D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-795D", + "status": "exact_ids", + "ids": "⿰礻兄", + "canonical_ids": "⿰礻兄", + "expanded_ids": "⿰礻⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "神", + "codepoint": "U+795E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-795E", + "status": "exact_ids", + "ids": "⿰礻申", + "canonical_ids": "⿰礻申", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祟", + "codepoint": "U+795F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-795F", + "status": "exact_ids", + "ids": "⿱出示", + "canonical_ids": "⿱出示", + "expanded_ids": "⿱⿻屮凵⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "凵", + "小", + "屮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祠", + "codepoint": "U+7960", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7960", + "status": "exact_ids", + "ids": "⿰示司", + "canonical_ids": "⿰示司", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小" + ], + "unresolved_leaves": [ + "司" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祡", + "codepoint": "U+7961", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7961", + "status": "exact_ids", + "ids": "⿱此示", + "canonical_ids": "⿱此示", + "expanded_ids": "⿱⿰止匕⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "匕", + "小", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祢", + "codepoint": "U+7962", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7962", + "status": "exact_ids", + "ids": "⿰礻尔", + "canonical_ids": "⿰礻尔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "礻" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祣", + "codepoint": "U+7963", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7963", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祤", + "codepoint": "U+7964", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7964", + "status": "exact_ids", + "ids": "⿰礻羽", + "canonical_ids": "⿰礻羽", + "expanded_ids": "⿰礻⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祥", + "codepoint": "U+7965", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7965", + "status": "exact_ids", + "ids": "⿰礻羊", + "canonical_ids": "⿰礻羊", + "expanded_ids": "⿰礻羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祦", + "codepoint": "U+7966", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7966", + "status": "exact_ids", + "ids": "⿰礻吴", + "canonical_ids": "⿰礻吴", + "expanded_ids": "⿰礻⿱口⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "大", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祧", + "codepoint": "U+7967", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7967", + "status": "exact_ids", + "ids": "⿰礻兆", + "canonical_ids": "⿰礻兆", + "expanded_ids": "⿰礻兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "票", + "codepoint": "U+7968", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7968", + "status": "exact_ids", + "ids": "⿱覀示", + "canonical_ids": "⿱覀示", + "expanded_ids": "⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祩", + "codepoint": "U+7969", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7969", + "status": "exact_ids", + "ids": "⿰礻朱", + "canonical_ids": "⿰礻朱", + "expanded_ids": "⿰礻⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祪", + "codepoint": "U+796A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-796A", + "status": "exact_ids", + "ids": "⿰礻危", + "canonical_ids": "⿰礻危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "礻" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祫", + "codepoint": "U+796B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-796B", + "status": "exact_ids", + "ids": "⿰礻合", + "canonical_ids": "⿰礻合", + "expanded_ids": "⿰礻⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祬", + "codepoint": "U+796C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-796C", + "status": "exact_ids", + "ids": "⿰礻至", + "canonical_ids": "⿰礻至", + "expanded_ids": "⿰礻⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祭", + "codepoint": "U+796D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-796D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祮", + "codepoint": "U+796E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-796E", + "status": "exact_ids", + "ids": "⿰礻吉", + "canonical_ids": "⿰礻吉", + "expanded_ids": "⿰礻⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祯", + "codepoint": "U+796F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-796F", + "status": "exact_ids", + "ids": "⿰礻贞", + "canonical_ids": "⿰礻贞", + "expanded_ids": "⿰礻⿱卜⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "卜", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祰", + "codepoint": "U+7970", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7970", + "status": "exact_ids", + "ids": "⿰礻告", + "canonical_ids": "⿰礻告", + "expanded_ids": "⿰礻⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祱", + "codepoint": "U+7971", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7971", + "status": "exact_ids", + "ids": "⿰礻兌", + "canonical_ids": "⿰礻兌", + "expanded_ids": "⿰礻⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祲", + "codepoint": "U+7972", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7972", + "status": "exact_ids", + "ids": "⿰礻𠬶", + "canonical_ids": "⿰礻𠬶", + "expanded_ids": "⿰礻⿳彐冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "又", + "彐", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祳", + "codepoint": "U+7973", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7973", + "status": "exact_ids", + "ids": "⿰礻辰", + "canonical_ids": "⿰礻辰", + "expanded_ids": "⿰礻辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祴", + "codepoint": "U+7974", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7974", + "status": "exact_ids", + "ids": "⿰礻戒", + "canonical_ids": "⿰礻戒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "礻" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祵", + "codepoint": "U+7975", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7975", + "status": "exact_ids", + "ids": "⿰礻困", + "canonical_ids": "⿰礻困", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻" + ], + "unresolved_leaves": [ + "困" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祶", + "codepoint": "U+7976", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7976", + "status": "exact_ids", + "ids": "⿰礻弟", + "canonical_ids": "⿰礻弟", + "expanded_ids": "⿰礻⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祷", + "codepoint": "U+7977", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7977", + "status": "exact_ids", + "ids": "⿰礻寿", + "canonical_ids": "⿰礻寿", + "expanded_ids": "⿰礻⿻丰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "寸", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祸", + "codepoint": "U+7978", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7978", + "status": "exact_ids", + "ids": "⿰礻呙", + "canonical_ids": "⿰礻呙", + "expanded_ids": "⿰礻⿱口⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祹", + "codepoint": "U+7979", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7979", + "status": "exact_ids", + "ids": "⿰礻匋", + "canonical_ids": "⿰礻匋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻" + ], + "unresolved_leaves": [ + "匋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祺", + "codepoint": "U+797A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-797A", + "status": "exact_ids", + "ids": "⿰示其", + "canonical_ids": "⿰示其", + "expanded_ids": "⿰⿱二小其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "其", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祻", + "codepoint": "U+797B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-797B", + "status": "exact_ids", + "ids": "⿰礻固", + "canonical_ids": "⿰礻固", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻" + ], + "unresolved_leaves": [ + "固" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祼", + "codepoint": "U+797C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-797C", + "status": "exact_ids", + "ids": "⿰礻果", + "canonical_ids": "⿰礻果", + "expanded_ids": "⿰礻⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祽", + "codepoint": "U+797D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-797D", + "status": "exact_ids", + "ids": "⿰礻卒", + "canonical_ids": "⿰礻卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祾", + "codepoint": "U+797E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-797E", + "status": "exact_ids", + "ids": "⿰礻夌", + "canonical_ids": "⿰礻夌", + "expanded_ids": "⿰礻⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "祿", + "codepoint": "U+797F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-797F", + "status": "exact_ids", + "ids": "⿰示彔", + "canonical_ids": "⿰示彔", + "expanded_ids": "⿰⿱二小⿱彑氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "彑", + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禀", + "codepoint": "U+7980", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7980", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禁", + "codepoint": "U+7981", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7981", + "status": "exact_ids", + "ids": "⿱⿰木木示", + "canonical_ids": "⿱⿰木木示", + "expanded_ids": "⿱⿰木木⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禂", + "codepoint": "U+7982", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7982", + "status": "exact_ids", + "ids": "⿰礻周", + "canonical_ids": "⿰礻周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禃", + "codepoint": "U+7983", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7983", + "status": "exact_ids", + "ids": "⿰礻直", + "canonical_ids": "⿰礻直", + "expanded_ids": "⿰礻⿱⿱十目乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "十", + "目", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禄", + "codepoint": "U+7984", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7984", + "status": "exact_ids", + "ids": "⿰礻录", + "canonical_ids": "⿰礻录", + "expanded_ids": "⿰礻⿱彐氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "氺", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禅", + "codepoint": "U+7985", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7985", + "status": "exact_ids", + "ids": "⿰礻単", + "canonical_ids": "⿰礻単", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻" + ], + "unresolved_leaves": [ + "単" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禆", + "codepoint": "U+7986", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7986", + "status": "exact_ids", + "ids": "⿰礻卑", + "canonical_ids": "⿰礻卑", + "expanded_ids": "⿰礻卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禇", + "codepoint": "U+7987", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7987", + "status": "exact_ids", + "ids": "⿰礻者", + "canonical_ids": "⿰礻者", + "expanded_ids": "⿰礻⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禈", + "codepoint": "U+7988", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7988", + "status": "exact_ids", + "ids": "⿰礻軍", + "canonical_ids": "⿰礻軍", + "expanded_ids": "⿰礻⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "礻", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禉", + "codepoint": "U+7989", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7989", + "status": "exact_ids", + "ids": "⿰礻酋", + "canonical_ids": "⿰礻酋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "礻" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禊", + "codepoint": "U+798A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-798A", + "status": "exact_ids", + "ids": "⿰示契", + "canonical_ids": "⿰示契", + "expanded_ids": "⿰⿱二小⿱⿰丰刀大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "二", + "刀", + "大", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禋", + "codepoint": "U+798B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-798B", + "status": "exact_ids", + "ids": "⿰礻垔", + "canonical_ids": "⿰礻垔", + "expanded_ids": "⿰礻⿱覀土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "礻", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禌", + "codepoint": "U+798C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-798C", + "status": "exact_ids", + "ids": "⿰礻兹", + "canonical_ids": "⿰礻兹", + "expanded_ids": "⿰礻⿱䒑⿰幺幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "幺", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禍", + "codepoint": "U+798D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-798D", + "status": "exact_ids", + "ids": "⿰礻咼", + "canonical_ids": "⿰礻咼", + "expanded_ids": "⿰礻⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禎", + "codepoint": "U+798E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-798E", + "status": "exact_ids", + "ids": "⿰礻貞", + "canonical_ids": "⿰礻貞", + "expanded_ids": "⿰礻⿱卜⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "卜", + "目", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "福", + "codepoint": "U+798F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-798F", + "status": "exact_ids", + "ids": "⿰礻畐", + "canonical_ids": "⿰礻畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禐", + "codepoint": "U+7990", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7990", + "status": "exact_ids", + "ids": "⿰礻爰", + "canonical_ids": "⿰礻爰", + "expanded_ids": "⿰礻⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "爫", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禑", + "codepoint": "U+7991", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7991", + "status": "exact_ids", + "ids": "⿰示禺", + "canonical_ids": "⿰示禺", + "expanded_ids": "⿰⿱二小⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "田", + "禸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禒", + "codepoint": "U+7992", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7992", + "status": "exact_ids", + "ids": "⿰礻彖", + "canonical_ids": "⿰礻彖", + "expanded_ids": "⿰礻⿱彑𧰨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "礻", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禓", + "codepoint": "U+7993", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7993", + "status": "exact_ids", + "ids": "⿰礻昜", + "canonical_ids": "⿰礻昜", + "expanded_ids": "⿰礻⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禔", + "codepoint": "U+7994", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7994", + "status": "exact_ids", + "ids": "⿰示是", + "canonical_ids": "⿰示是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "日" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禕", + "codepoint": "U+7995", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7995", + "status": "exact_ids", + "ids": "⿰礻韋", + "canonical_ids": "⿰礻韋", + "expanded_ids": "⿰礻韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禖", + "codepoint": "U+7996", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7996", + "status": "exact_ids", + "ids": "⿰礻某", + "canonical_ids": "⿰礻某", + "expanded_ids": "⿰礻⿱甘木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "甘", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禗", + "codepoint": "U+7997", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7997", + "status": "exact_ids", + "ids": "⿰礻思", + "canonical_ids": "⿰礻思", + "expanded_ids": "⿰礻⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "田", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禘", + "codepoint": "U+7998", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7998", + "status": "exact_ids", + "ids": "⿰礻帝", + "canonical_ids": "⿰礻帝", + "expanded_ids": "⿰礻⿳⿱亠八冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禙", + "codepoint": "U+7999", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7999", + "status": "exact_ids", + "ids": "⿰礻背", + "canonical_ids": "⿰礻背", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "礻" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禚", + "codepoint": "U+799A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-799A", + "status": "exact_ids", + "ids": "⿰礻羔", + "canonical_ids": "⿰礻羔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻" + ], + "unresolved_leaves": [ + "羔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禛", + "codepoint": "U+799B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-799B", + "status": "exact_ids", + "ids": "⿰示眞", + "canonical_ids": "⿰示眞", + "expanded_ids": "⿰⿱二小⿻匕⿱⿱一儿目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "二", + "儿", + "匕", + "小", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禜", + "codepoint": "U+799C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-799C", + "status": "exact_ids", + "ids": "⿳炏冖示", + "canonical_ids": "⿳炏冖示", + "expanded_ids": "⿳⿰火火冖⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "冖", + "小", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禝", + "codepoint": "U+799D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-799D", + "status": "exact_ids", + "ids": "⿰示畟", + "canonical_ids": "⿰示畟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小" + ], + "unresolved_leaves": [ + "畟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禞", + "codepoint": "U+799E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-799E", + "status": "exact_ids", + "ids": "⿰礻高", + "canonical_ids": "⿰礻高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禟", + "codepoint": "U+799F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-799F", + "status": "exact_ids", + "ids": "⿰礻唐", + "canonical_ids": "⿰礻唐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻" + ], + "unresolved_leaves": [ + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禠", + "codepoint": "U+79A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79A0", + "status": "exact_ids", + "ids": "⿰礻虒", + "canonical_ids": "⿰礻虒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻" + ], + "unresolved_leaves": [ + "虒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禡", + "codepoint": "U+79A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79A1", + "status": "exact_ids", + "ids": "⿰礻馬", + "canonical_ids": "⿰礻馬", + "expanded_ids": "⿰礻馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禢", + "codepoint": "U+79A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79A2", + "status": "exact_ids", + "ids": "⿰礻𦐇", + "canonical_ids": "⿰礻𦐇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "礻" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禣", + "codepoint": "U+79A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79A3", + "status": "exact_ids", + "ids": "⿰礻尃", + "canonical_ids": "⿰礻尃", + "expanded_ids": "⿰礻⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "甫", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禤", + "codepoint": "U+79A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79A4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禥", + "codepoint": "U+79A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79A5", + "status": "exact_ids", + "ids": "⿰礻基", + "canonical_ids": "⿰礻基", + "expanded_ids": "⿰礻⿱其土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "土", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禦", + "codepoint": "U+79A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79A6", + "status": "exact_ids", + "ids": "⿱御示", + "canonical_ids": "⿱御示", + "expanded_ids": "⿱⿰彳⿰𦈢卩⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "卩", + "小", + "彳", + "𦈢" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禧", + "codepoint": "U+79A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79A7", + "status": "exact_ids", + "ids": "⿰示喜", + "canonical_ids": "⿰示喜", + "expanded_ids": "⿰⿱二小⿱⿱十豆口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "十", + "口", + "小", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禨", + "codepoint": "U+79A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79A8", + "status": "exact_ids", + "ids": "⿰礻幾", + "canonical_ids": "⿰礻幾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "礻" + ], + "unresolved_leaves": [ + "戍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禩", + "codepoint": "U+79A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79A9", + "status": "exact_ids", + "ids": "⿰礻異", + "canonical_ids": "⿰礻異", + "expanded_ids": "⿰礻⿱田⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "田", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禪", + "codepoint": "U+79AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79AA", + "status": "exact_ids", + "ids": "⿰示單", + "canonical_ids": "⿰示單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禫", + "codepoint": "U+79AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79AB", + "status": "exact_ids", + "ids": "⿰礻覃", + "canonical_ids": "⿰礻覃", + "expanded_ids": "⿰礻⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "礻", + "襾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禬", + "codepoint": "U+79AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79AC", + "status": "exact_ids", + "ids": "⿰礻會", + "canonical_ids": "⿰礻會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "礻" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禭", + "codepoint": "U+79AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79AD", + "status": "exact_ids", + "ids": "⿰礻遂", + "canonical_ids": "⿰礻遂", + "expanded_ids": "⿰礻⿰辶⿱八豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "礻", + "豕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禮", + "codepoint": "U+79AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79AE", + "status": "exact_ids", + "ids": "⿰示豊", + "canonical_ids": "⿰示豊", + "expanded_ids": "⿰⿱二小⿱曲豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "曲", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禯", + "codepoint": "U+79AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79AF", + "status": "exact_ids", + "ids": "⿰礻農", + "canonical_ids": "⿰礻農", + "expanded_ids": "⿰礻⿱曲辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "礻", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禰", + "codepoint": "U+79B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79B0", + "status": "exact_ids", + "ids": "⿰礻爾", + "canonical_ids": "⿰礻爾", + "expanded_ids": "⿰礻爾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爾", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禱", + "codepoint": "U+79B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79B1", + "status": "exact_ids", + "ids": "⿰示壽", + "canonical_ids": "⿰示壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禲", + "codepoint": "U+79B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79B2", + "status": "exact_ids", + "ids": "⿰礻厲", + "canonical_ids": "⿰礻厲", + "expanded_ids": "⿰礻⿱厂⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "田", + "礻", + "禸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禳", + "codepoint": "U+79B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79B3", + "status": "exact_ids", + "ids": "⿰示襄", + "canonical_ids": "⿰示襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禴", + "codepoint": "U+79B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79B4", + "status": "exact_ids", + "ids": "⿰礻龠", + "canonical_ids": "⿰礻龠", + "expanded_ids": "⿰礻龠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻", + "龠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禵", + "codepoint": "U+79B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79B5", + "status": "exact_ids", + "ids": "⿰礻題", + "canonical_ids": "⿰礻題", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "日", + "目", + "礻" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禶", + "codepoint": "U+79B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79B6", + "status": "exact_ids", + "ids": "⿰礻贊", + "canonical_ids": "⿰礻贊", + "expanded_ids": "⿰礻⿱⿰⿱牛儿⿱牛儿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "牛", + "目", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禷", + "codepoint": "U+79B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79B7", + "status": "exact_ids", + "ids": "⿰礻類", + "canonical_ids": "⿰礻類", + "expanded_ids": "⿰礻⿰⿱⿻木丷大⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "丿", + "八", + "大", + "木", + "目", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禸", + "codepoint": "U+79B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79B8", + "status": "leaf_self_fallback", + "ids": "禸", + "canonical_ids": "禸", + "expanded_ids": "禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "禸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禹", + "codepoint": "U+79B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79B9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禺", + "codepoint": "U+79BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79BA", + "status": "exact_ids", + "ids": "⿻田禸", + "canonical_ids": "⿻田禸", + "expanded_ids": "⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "禸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "离", + "codepoint": "U+79BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79BB", + "status": "exact_ids", + "ids": "⿱㐫禸", + "canonical_ids": "⿱㐫禸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "禸" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禼", + "codepoint": "U+79BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79BC", + "status": "exact_ids", + "ids": "⿱卤禸", + "canonical_ids": "⿱卤禸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "禸" + ], + "unresolved_leaves": [ + "龱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禽", + "codepoint": "U+79BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79BD", + "status": "exact_ids", + "ids": "⿱人离", + "canonical_ids": "⿱人离", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "人", + "禸" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禾", + "codepoint": "U+79BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79BE", + "status": "exact_ids", + "ids": "⿻丿木", + "canonical_ids": "⿻丿木", + "expanded_ids": "⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "禿", + "codepoint": "U+79BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79BF", + "status": "exact_ids", + "ids": "⿱禾儿", + "canonical_ids": "⿱禾儿", + "expanded_ids": "⿱⿻丿木儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秀", + "codepoint": "U+79C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79C0", + "status": "exact_ids", + "ids": "⿱禾乃", + "canonical_ids": "⿱禾乃", + "expanded_ids": "⿱⿻丿木乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乃", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "私", + "codepoint": "U+79C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79C1", + "status": "exact_ids", + "ids": "⿰禾厶", + "canonical_ids": "⿰禾厶", + "expanded_ids": "⿰⿻丿木厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厶", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秂", + "codepoint": "U+79C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79C2", + "status": "exact_ids", + "ids": "⿱禾人", + "canonical_ids": "⿱禾人", + "expanded_ids": "⿱⿻丿木人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "人", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秃", + "codepoint": "U+79C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79C3", + "status": "exact_ids", + "ids": "⿱禾几", + "canonical_ids": "⿱禾几", + "expanded_ids": "⿱⿻丿木几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "几", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秄", + "codepoint": "U+79C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79C4", + "status": "exact_ids", + "ids": "⿰禾子", + "canonical_ids": "⿰禾子", + "expanded_ids": "⿰⿻丿木子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "子", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秅", + "codepoint": "U+79C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79C5", + "status": "exact_ids", + "ids": "⿰禾乇", + "canonical_ids": "⿰禾乇", + "expanded_ids": "⿰⿻丿木⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秆", + "codepoint": "U+79C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79C6", + "status": "exact_ids", + "ids": "⿰禾干", + "canonical_ids": "⿰禾干", + "expanded_ids": "⿰⿻丿木⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "十", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秇", + "codepoint": "U+79C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79C7", + "status": "exact_ids", + "ids": "⿰禾丸", + "canonical_ids": "⿰禾丸", + "expanded_ids": "⿰⿻丿木⿻九丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "九", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秈", + "codepoint": "U+79C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79C8", + "status": "exact_ids", + "ids": "⿰禾山", + "canonical_ids": "⿰禾山", + "expanded_ids": "⿰⿻丿木山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "山", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秉", + "codepoint": "U+79C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79C9", + "status": "exact_ids", + "ids": "⿻禾⺕", + "canonical_ids": "⿻禾⺕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "⺕" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秊", + "codepoint": "U+79CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79CA", + "status": "exact_ids", + "ids": "⿱禾千", + "canonical_ids": "⿱禾千", + "expanded_ids": "⿱⿻丿木⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秋", + "codepoint": "U+79CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79CB", + "status": "exact_ids", + "ids": "⿰禾火", + "canonical_ids": "⿰禾火", + "expanded_ids": "⿰⿻丿木火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秌", + "codepoint": "U+79CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79CC", + "status": "exact_ids", + "ids": "⿰火禾", + "canonical_ids": "⿰火禾", + "expanded_ids": "⿰火⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "种", + "codepoint": "U+79CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79CD", + "status": "exact_ids", + "ids": "⿰禾中", + "canonical_ids": "⿰禾中", + "expanded_ids": "⿰⿻丿木⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丿", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秎", + "codepoint": "U+79CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79CE", + "status": "exact_ids", + "ids": "⿰禾分", + "canonical_ids": "⿰禾分", + "expanded_ids": "⿰⿻丿木⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "八", + "刀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秏", + "codepoint": "U+79CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79CF", + "status": "exact_ids", + "ids": "⿰禾毛", + "canonical_ids": "⿰禾毛", + "expanded_ids": "⿰⿻丿木毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秐", + "codepoint": "U+79D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79D0", + "status": "exact_ids", + "ids": "⿰禾云", + "canonical_ids": "⿰禾云", + "expanded_ids": "⿰⿻丿木⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "二", + "厶", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "科", + "codepoint": "U+79D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79D1", + "status": "exact_ids", + "ids": "⿰禾斗", + "canonical_ids": "⿰禾斗", + "expanded_ids": "⿰⿻丿木斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "斗", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秒", + "codepoint": "U+79D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79D2", + "status": "exact_ids", + "ids": "⿰禾少", + "canonical_ids": "⿰禾少", + "expanded_ids": "⿰⿻丿木⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秓", + "codepoint": "U+79D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79D3", + "status": "exact_ids", + "ids": "⿰禾支", + "canonical_ids": "⿰禾支", + "expanded_ids": "⿰⿻丿木⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "又", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秔", + "codepoint": "U+79D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79D4", + "status": "exact_ids", + "ids": "⿰禾亢", + "canonical_ids": "⿰禾亢", + "expanded_ids": "⿰⿻丿木⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亠", + "几", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秕", + "codepoint": "U+79D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79D5", + "status": "exact_ids", + "ids": "⿰禾比", + "canonical_ids": "⿰禾比", + "expanded_ids": "⿰⿻丿木⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秖", + "codepoint": "U+79D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79D6", + "status": "exact_ids", + "ids": "⿰禾氏", + "canonical_ids": "⿰禾氏", + "expanded_ids": "⿰⿻丿木氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秗", + "codepoint": "U+79D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79D7", + "status": "exact_ids", + "ids": "⿰禾夭", + "canonical_ids": "⿰禾夭", + "expanded_ids": "⿰⿻丿木⿱丿大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秘", + "codepoint": "U+79D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79D8", + "status": "exact_ids", + "ids": "⿰禾必", + "canonical_ids": "⿰禾必", + "expanded_ids": "⿰⿻丿木⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秙", + "codepoint": "U+79D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79D9", + "status": "exact_ids", + "ids": "⿰禾古", + "canonical_ids": "⿰禾古", + "expanded_ids": "⿰⿻丿木⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秚", + "codepoint": "U+79DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79DA", + "status": "exact_ids", + "ids": "⿰禾半", + "canonical_ids": "⿰禾半", + "expanded_ids": "⿰⿻丿木半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "半", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秛", + "codepoint": "U+79DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79DB", + "status": "exact_ids", + "ids": "⿰禾皮", + "canonical_ids": "⿰禾皮", + "expanded_ids": "⿰⿻丿木皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秜", + "codepoint": "U+79DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79DC", + "status": "exact_ids", + "ids": "⿰禾尼", + "canonical_ids": "⿰禾尼", + "expanded_ids": "⿰⿻丿木⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "尸", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秝", + "codepoint": "U+79DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79DD", + "status": "exact_ids", + "ids": "⿰禾禾", + "canonical_ids": "⿰禾禾", + "expanded_ids": "⿰⿻丿木⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秞", + "codepoint": "U+79DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79DE", + "status": "exact_ids", + "ids": "⿰禾由", + "canonical_ids": "⿰禾由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "租", + "codepoint": "U+79DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79DF", + "status": "exact_ids", + "ids": "⿰禾且", + "canonical_ids": "⿰禾且", + "expanded_ids": "⿰⿻丿木且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "丿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秠", + "codepoint": "U+79E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79E0", + "status": "exact_ids", + "ids": "⿰禾丕", + "canonical_ids": "⿰禾丕", + "expanded_ids": "⿰⿻丿木⿱不一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不", + "丿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秡", + "codepoint": "U+79E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79E1", + "status": "exact_ids", + "ids": "⿰禾犮", + "canonical_ids": "⿰禾犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秢", + "codepoint": "U+79E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79E2", + "status": "exact_ids", + "ids": "⿰禾令", + "canonical_ids": "⿰禾令", + "expanded_ids": "⿰⿻丿木⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "木", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秣", + "codepoint": "U+79E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79E3", + "status": "exact_ids", + "ids": "⿰禾末", + "canonical_ids": "⿰禾末", + "expanded_ids": "⿰⿻丿木⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秤", + "codepoint": "U+79E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79E4", + "status": "exact_ids", + "ids": "⿰禾平", + "canonical_ids": "⿰禾平", + "expanded_ids": "⿰⿻丿木⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "丿", + "十", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秥", + "codepoint": "U+79E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79E5", + "status": "exact_ids", + "ids": "⿰禾占", + "canonical_ids": "⿰禾占", + "expanded_ids": "⿰⿻丿木⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "卜", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秦", + "codepoint": "U+79E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79E6", + "status": "exact_ids", + "ids": "⿱𡗗禾", + "canonical_ids": "⿱𡗗禾", + "expanded_ids": "⿱𡗗⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秧", + "codepoint": "U+79E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79E7", + "status": "exact_ids", + "ids": "⿰禾央", + "canonical_ids": "⿰禾央", + "expanded_ids": "⿰⿻丿木⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "冂", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秨", + "codepoint": "U+79E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79E8", + "status": "exact_ids", + "ids": "⿰禾乍", + "canonical_ids": "⿰禾乍", + "expanded_ids": "⿰⿻丿木乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乍", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秩", + "codepoint": "U+79E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79E9", + "status": "exact_ids", + "ids": "⿰禾失", + "canonical_ids": "⿰禾失", + "expanded_ids": "⿰⿻丿木⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秪", + "codepoint": "U+79EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79EA", + "status": "exact_ids", + "ids": "⿰禾氐", + "canonical_ids": "⿰禾氐", + "expanded_ids": "⿰⿻丿木⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "木", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秫", + "codepoint": "U+79EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79EB", + "status": "exact_ids", + "ids": "⿰禾朮", + "canonical_ids": "⿰禾朮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "朮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秬", + "codepoint": "U+79EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79EC", + "status": "exact_ids", + "ids": "⿰禾巨", + "canonical_ids": "⿰禾巨", + "expanded_ids": "⿰⿻丿木巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "巨", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秭", + "codepoint": "U+79ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79ED", + "status": "exact_ids", + "ids": "⿰禾𠂔", + "canonical_ids": "⿰禾𠂔", + "expanded_ids": "⿰⿻丿木𠂔", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "𠂔" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秮", + "codepoint": "U+79EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79EE", + "status": "exact_ids", + "ids": "⿰禾台", + "canonical_ids": "⿰禾台", + "expanded_ids": "⿰⿻丿木⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厶", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "积", + "codepoint": "U+79EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79EF", + "status": "exact_ids", + "ids": "⿰禾只", + "canonical_ids": "⿰禾只", + "expanded_ids": "⿰⿻丿木⿱口八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "八", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "称", + "codepoint": "U+79F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79F0", + "status": "exact_ids", + "ids": "⿰禾尔", + "canonical_ids": "⿰禾尔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "木" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秱", + "codepoint": "U+79F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79F1", + "status": "exact_ids", + "ids": "⿰禾同", + "canonical_ids": "⿰禾同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秲", + "codepoint": "U+79F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79F2", + "status": "exact_ids", + "ids": "⿰禾寺", + "canonical_ids": "⿰禾寺", + "expanded_ids": "⿰⿻丿木⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "寸", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秳", + "codepoint": "U+79F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79F3", + "status": "exact_ids", + "ids": "⿰禾舌", + "canonical_ids": "⿰禾舌", + "expanded_ids": "⿰⿻丿木⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秴", + "codepoint": "U+79F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79F4", + "status": "exact_ids", + "ids": "⿰禾合", + "canonical_ids": "⿰禾合", + "expanded_ids": "⿰⿻丿木⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秵", + "codepoint": "U+79F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79F5", + "status": "exact_ids", + "ids": "⿰禾因", + "canonical_ids": "⿰禾因", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秶", + "codepoint": "U+79F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79F6", + "status": "exact_ids", + "ids": "⿱次禾", + "canonical_ids": "⿱次禾", + "expanded_ids": "⿱⿰冫欠⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "冫", + "木", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秷", + "codepoint": "U+79F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79F7", + "status": "exact_ids", + "ids": "⿰禾至", + "canonical_ids": "⿰禾至", + "expanded_ids": "⿰⿻丿木⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "厶", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秸", + "codepoint": "U+79F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79F8", + "status": "exact_ids", + "ids": "⿰禾吉", + "canonical_ids": "⿰禾吉", + "expanded_ids": "⿰⿻丿木⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "士", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秹", + "codepoint": "U+79F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79F9", + "status": "exact_ids", + "ids": "⿰禾任", + "canonical_ids": "⿰禾任", + "expanded_ids": "⿰⿻丿木⿰亻⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "士", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秺", + "codepoint": "U+79FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79FA", + "status": "exact_ids", + "ids": "⿰禾宅", + "canonical_ids": "⿰禾宅", + "expanded_ids": "⿰⿻丿木⿱宀⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "移", + "codepoint": "U+79FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79FB", + "status": "exact_ids", + "ids": "⿰禾多", + "canonical_ids": "⿰禾多", + "expanded_ids": "⿰⿻丿木⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "夕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秼", + "codepoint": "U+79FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79FC", + "status": "exact_ids", + "ids": "⿰禾朱", + "canonical_ids": "⿰禾朱", + "expanded_ids": "⿰⿻丿木⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秽", + "codepoint": "U+79FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79FD", + "status": "exact_ids", + "ids": "⿰禾岁", + "canonical_ids": "⿰禾岁", + "expanded_ids": "⿰⿻丿木⿱山夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "夕", + "山", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秾", + "codepoint": "U+79FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79FE", + "status": "exact_ids", + "ids": "⿰禾农", + "canonical_ids": "⿰禾农", + "expanded_ids": "⿰⿻丿木农", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "农", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "秿", + "codepoint": "U+79FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-79FF", + "status": "exact_ids", + "ids": "⿰禾甫", + "canonical_ids": "⿰禾甫", + "expanded_ids": "⿰⿻丿木甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稀", + "codepoint": "U+7A00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A00", + "status": "exact_ids", + "ids": "⿰禾希", + "canonical_ids": "⿰禾希", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乂", + "木" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稁", + "codepoint": "U+7A01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A01", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稂", + "codepoint": "U+7A02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A02", + "status": "exact_ids", + "ids": "⿰禾良", + "canonical_ids": "⿰禾良", + "expanded_ids": "⿰⿻丿木⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "木", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稃", + "codepoint": "U+7A03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A03", + "status": "exact_ids", + "ids": "⿰禾孚", + "canonical_ids": "⿰禾孚", + "expanded_ids": "⿰⿻丿木⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "子", + "木", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稄", + "codepoint": "U+7A04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A04", + "status": "exact_ids", + "ids": "⿰禾夋", + "canonical_ids": "⿰禾夋", + "expanded_ids": "⿰⿻丿木⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "厶", + "夂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稅", + "codepoint": "U+7A05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A05", + "status": "exact_ids", + "ids": "⿰禾兌", + "canonical_ids": "⿰禾兌", + "expanded_ids": "⿰⿻丿木⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "八", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [ + "税" + ] + }, + { + "character": "稆", + "codepoint": "U+7A06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A06", + "status": "exact_ids", + "ids": "⿰禾吕", + "canonical_ids": "⿰禾吕", + "expanded_ids": "⿰⿻丿木⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稇", + "codepoint": "U+7A07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A07", + "status": "exact_ids", + "ids": "⿰禾困", + "canonical_ids": "⿰禾困", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "困" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稈", + "codepoint": "U+7A08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A08", + "status": "exact_ids", + "ids": "⿰禾旱", + "canonical_ids": "⿰禾旱", + "expanded_ids": "⿰⿻丿木⿱日⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "十", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稉", + "codepoint": "U+7A09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A09", + "status": "exact_ids", + "ids": "⿰禾更", + "canonical_ids": "⿰禾更", + "expanded_ids": "⿰⿻丿木更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "更", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稊", + "codepoint": "U+7A0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A0A", + "status": "exact_ids", + "ids": "⿰禾弟", + "canonical_ids": "⿰禾弟", + "expanded_ids": "⿰⿻丿木⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "程", + "codepoint": "U+7A0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A0B", + "status": "exact_ids", + "ids": "⿰禾呈", + "canonical_ids": "⿰禾呈", + "expanded_ids": "⿰⿻丿木⿱口王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "木", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稌", + "codepoint": "U+7A0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A0C", + "status": "exact_ids", + "ids": "⿰禾余", + "canonical_ids": "⿰禾余", + "expanded_ids": "⿰⿻丿木⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "木", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稍", + "codepoint": "U+7A0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A0D", + "status": "exact_ids", + "ids": "⿰禾肖", + "canonical_ids": "⿰禾肖", + "expanded_ids": "⿰⿻丿木⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "税", + "codepoint": "U+7A0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A0E", + "status": "exact_ids", + "ids": "⿰禾兌", + "canonical_ids": "⿰禾兌", + "expanded_ids": "⿰⿻丿木⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "八", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [ + "稅" + ] + }, + { + "character": "稏", + "codepoint": "U+7A0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A0F", + "status": "exact_ids", + "ids": "⿰禾亞", + "canonical_ids": "⿰禾亞", + "expanded_ids": "⿰⿻丿木亞", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亞", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稐", + "codepoint": "U+7A10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A10", + "status": "exact_ids", + "ids": "⿰禾侖", + "canonical_ids": "⿰禾侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "木" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稑", + "codepoint": "U+7A11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A11", + "status": "exact_ids", + "ids": "⿰禾坴", + "canonical_ids": "⿰禾坴", + "expanded_ids": "⿰⿻丿木⿱⿱土儿土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稒", + "codepoint": "U+7A12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A12", + "status": "exact_ids", + "ids": "⿰禾固", + "canonical_ids": "⿰禾固", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "固" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稓", + "codepoint": "U+7A13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A13", + "status": "exact_ids", + "ids": "⿰禾昔", + "canonical_ids": "⿰禾昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "日", + "木" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稔", + "codepoint": "U+7A14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A14", + "status": "exact_ids", + "ids": "⿰禾念", + "canonical_ids": "⿰禾念", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "心", + "木" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稕", + "codepoint": "U+7A15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A15", + "status": "exact_ids", + "ids": "⿰禾享", + "canonical_ids": "⿰禾享", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稖", + "codepoint": "U+7A16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A16", + "status": "exact_ids", + "ids": "⿰禾咅", + "canonical_ids": "⿰禾咅", + "expanded_ids": "⿰⿻丿木⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "木", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稗", + "codepoint": "U+7A17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A17", + "status": "exact_ids", + "ids": "⿰禾卑", + "canonical_ids": "⿰禾卑", + "expanded_ids": "⿰⿻丿木卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "卑", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稘", + "codepoint": "U+7A18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A18", + "status": "exact_ids", + "ids": "⿰禾其", + "canonical_ids": "⿰禾其", + "expanded_ids": "⿰⿻丿木其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "其", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稙", + "codepoint": "U+7A19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A19", + "status": "exact_ids", + "ids": "⿰禾直", + "canonical_ids": "⿰禾直", + "expanded_ids": "⿰⿻丿木⿱⿱十目乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乚", + "十", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稚", + "codepoint": "U+7A1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A1A", + "status": "exact_ids", + "ids": "⿰禾隹", + "canonical_ids": "⿰禾隹", + "expanded_ids": "⿰⿻丿木隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稛", + "codepoint": "U+7A1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A1B", + "status": "exact_ids", + "ids": "⿰禾囷", + "canonical_ids": "⿰禾囷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "囷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稜", + "codepoint": "U+7A1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A1C", + "status": "exact_ids", + "ids": "⿰禾夌", + "canonical_ids": "⿰禾夌", + "expanded_ids": "⿰⿻丿木⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "土", + "夂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稝", + "codepoint": "U+7A1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A1D", + "status": "exact_ids", + "ids": "⿰禾朋", + "canonical_ids": "⿰禾朋", + "expanded_ids": "⿰⿻丿木⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稞", + "codepoint": "U+7A1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A1E", + "status": "exact_ids", + "ids": "⿰禾果", + "canonical_ids": "⿰禾果", + "expanded_ids": "⿰⿻丿木⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稟", + "codepoint": "U+7A1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A1F", + "status": "exact_ids", + "ids": "⿱㐭禾", + "canonical_ids": "⿱㐭禾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亠", + "木" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稠", + "codepoint": "U+7A20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A20", + "status": "exact_ids", + "ids": "⿰禾周", + "canonical_ids": "⿰禾周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稡", + "codepoint": "U+7A21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A21", + "status": "exact_ids", + "ids": "⿰禾卒", + "canonical_ids": "⿰禾卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稢", + "codepoint": "U+7A22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A22", + "status": "exact_ids", + "ids": "⿰禾或", + "canonical_ids": "⿰禾或", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "或" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稣", + "codepoint": "U+7A23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A23", + "status": "exact_ids", + "ids": "⿰鱼禾", + "canonical_ids": "⿰鱼禾", + "expanded_ids": "⿰鱼⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稤", + "codepoint": "U+7A24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A24", + "status": "exact_ids", + "ids": "⿰禾京", + "canonical_ids": "⿰禾京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稥", + "codepoint": "U+7A25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A25", + "status": "exact_ids", + "ids": "⿱𤇕日", + "canonical_ids": "⿱𤇕日", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "𤇕" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稦", + "codepoint": "U+7A26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A26", + "status": "exact_ids", + "ids": "⿰禾韋", + "canonical_ids": "⿰禾韋", + "expanded_ids": "⿰⿻丿木韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稧", + "codepoint": "U+7A27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A27", + "status": "exact_ids", + "ids": "⿰禾契", + "canonical_ids": "⿰禾契", + "expanded_ids": "⿰⿻丿木⿱⿰丰刀大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "丿", + "刀", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稨", + "codepoint": "U+7A28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A28", + "status": "exact_ids", + "ids": "⿰禾扁", + "canonical_ids": "⿰禾扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "尸", + "木" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稩", + "codepoint": "U+7A29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A29", + "status": "exact_ids", + "ids": "⿰禾胃", + "canonical_ids": "⿰禾胃", + "expanded_ids": "⿰⿻丿木⿱田月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "月", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稪", + "codepoint": "U+7A2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A2A", + "status": "exact_ids", + "ids": "⿰禾复", + "canonical_ids": "⿰禾复", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "复" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稫", + "codepoint": "U+7A2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A2B", + "status": "exact_ids", + "ids": "⿰禾畐", + "canonical_ids": "⿰禾畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稬", + "codepoint": "U+7A2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A2C", + "status": "exact_ids", + "ids": "⿰禾耎", + "canonical_ids": "⿰禾耎", + "expanded_ids": "⿰⿻丿木⿱而大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "木", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稭", + "codepoint": "U+7A2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A2D", + "status": "exact_ids", + "ids": "⿰禾皆", + "canonical_ids": "⿰禾皆", + "expanded_ids": "⿰⿻丿木⿱⿰匕匕⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "匕", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "種", + "codepoint": "U+7A2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A2E", + "status": "exact_ids", + "ids": "⿰禾重", + "canonical_ids": "⿰禾重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "木" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稯", + "codepoint": "U+7A2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A2F", + "status": "exact_ids", + "ids": "⿰禾㚇", + "canonical_ids": "⿰禾㚇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "夊", + "木" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稰", + "codepoint": "U+7A30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A30", + "status": "exact_ids", + "ids": "⿰禾胥", + "canonical_ids": "⿰禾胥", + "expanded_ids": "⿰⿻丿木⿱疋月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "月", + "木", + "疋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稱", + "codepoint": "U+7A31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A31", + "status": "exact_ids", + "ids": "⿰禾爯", + "canonical_ids": "⿰禾爯", + "expanded_ids": "⿰⿻丿木⿱爫⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "冂", + "土", + "木", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稲", + "codepoint": "U+7A32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A32", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稳", + "codepoint": "U+7A33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A33", + "status": "exact_ids", + "ids": "⿰禾急", + "canonical_ids": "⿰禾急", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "彐", + "心", + "木" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稴", + "codepoint": "U+7A34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A34", + "status": "exact_ids", + "ids": "⿰禾兼", + "canonical_ids": "⿰禾兼", + "expanded_ids": "⿰⿻丿木兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "兼", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稵", + "codepoint": "U+7A35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A35", + "status": "exact_ids", + "ids": "⿰禾兹", + "canonical_ids": "⿰禾兹", + "expanded_ids": "⿰⿻丿木⿱䒑⿰幺幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "丿", + "幺", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稶", + "codepoint": "U+7A36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A36", + "status": "exact_ids", + "ids": "⿰禾彧", + "canonical_ids": "⿰禾彧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "彧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稷", + "codepoint": "U+7A37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A37", + "status": "exact_ids", + "ids": "⿰禾畟", + "canonical_ids": "⿰禾畟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "畟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稸", + "codepoint": "U+7A38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A38", + "status": "exact_ids", + "ids": "⿰禾畜", + "canonical_ids": "⿰禾畜", + "expanded_ids": "⿰⿻丿木⿱⿱亠幺田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亠", + "幺", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稹", + "codepoint": "U+7A39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A39", + "status": "exact_ids", + "ids": "⿰禾真", + "canonical_ids": "⿰禾真", + "expanded_ids": "⿰⿻丿木⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "十", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稺", + "codepoint": "U+7A3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A3A", + "status": "exact_ids", + "ids": "⿰禾屖", + "canonical_ids": "⿰禾屖", + "expanded_ids": "⿰⿻丿木⿱尸⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "尸", + "木", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稻", + "codepoint": "U+7A3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A3B", + "status": "exact_ids", + "ids": "⿰禾舀", + "canonical_ids": "⿰禾舀", + "expanded_ids": "⿰⿻丿木⿱爫臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "爫", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稼", + "codepoint": "U+7A3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A3C", + "status": "exact_ids", + "ids": "⿰禾家", + "canonical_ids": "⿰禾家", + "expanded_ids": "⿰⿻丿木⿱宀豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "宀", + "木", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稽", + "codepoint": "U+7A3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A3D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稾", + "codepoint": "U+7A3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A3E", + "status": "exact_ids", + "ids": "⿱高禾", + "canonical_ids": "⿱高禾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "稿", + "codepoint": "U+7A3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A3F", + "status": "exact_ids", + "ids": "⿰禾高", + "canonical_ids": "⿰禾高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穀", + "codepoint": "U+7A40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A40", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穁", + "codepoint": "U+7A41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A41", + "status": "exact_ids", + "ids": "⿰禾茸", + "canonical_ids": "⿰禾茸", + "expanded_ids": "⿰⿻丿木⿱艹耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "耳", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穂", + "codepoint": "U+7A42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A42", + "status": "exact_ids", + "ids": "⿰禾恵", + "canonical_ids": "⿰禾恵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "木" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穃", + "codepoint": "U+7A43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A43", + "status": "exact_ids", + "ids": "⿰禾容", + "canonical_ids": "⿰禾容", + "expanded_ids": "⿰⿻丿木⿱宀⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "八", + "口", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穄", + "codepoint": "U+7A44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A44", + "status": "exact_ids", + "ids": "⿰禾祭", + "canonical_ids": "⿰禾祭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穅", + "codepoint": "U+7A45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A45", + "status": "exact_ids", + "ids": "⿰禾康", + "canonical_ids": "⿰禾康", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "广", + "木" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穆", + "codepoint": "U+7A46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A46", + "status": "exact_ids", + "ids": "⿰禾㣎", + "canonical_ids": "⿰禾㣎", + "expanded_ids": "⿰⿻丿木⿱⿱⿻日丶小彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "小", + "彡", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穇", + "codepoint": "U+7A47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A47", + "status": "exact_ids", + "ids": "⿰禾參", + "canonical_ids": "⿰禾參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穈", + "codepoint": "U+7A48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A48", + "status": "exact_ids", + "ids": "⿱麻禾", + "canonical_ids": "⿱麻禾", + "expanded_ids": "⿱⿱广⿰木木⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穉", + "codepoint": "U+7A49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A49", + "status": "exact_ids", + "ids": "⿰禾犀", + "canonical_ids": "⿰禾犀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "犀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穊", + "codepoint": "U+7A4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A4A", + "status": "exact_ids", + "ids": "⿰禾既", + "canonical_ids": "⿰禾既", + "expanded_ids": "⿰⿻丿木⿰艮旡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "旡", + "木", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穋", + "codepoint": "U+7A4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A4B", + "status": "exact_ids", + "ids": "⿰禾翏", + "canonical_ids": "⿰禾翏", + "expanded_ids": "⿰⿻丿木⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "习", + "人", + "彡", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穌", + "codepoint": "U+7A4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A4C", + "status": "exact_ids", + "ids": "⿰魚禾", + "canonical_ids": "⿰魚禾", + "expanded_ids": "⿰魚⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "積", + "codepoint": "U+7A4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A4D", + "status": "exact_ids", + "ids": "⿰禾責", + "canonical_ids": "⿰禾責", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "八", + "木", + "目" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穎", + "codepoint": "U+7A4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A4E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穏", + "codepoint": "U+7A4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A4F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穐", + "codepoint": "U+7A50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A50", + "status": "exact_ids", + "ids": "⿰禾亀", + "canonical_ids": "⿰禾亀", + "expanded_ids": "⿰⿻丿木亀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穑", + "codepoint": "U+7A51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A51", + "status": "exact_ids", + "ids": "⿰禾啬", + "canonical_ids": "⿰禾啬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "啬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穒", + "codepoint": "U+7A52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A52", + "status": "exact_ids", + "ids": "⿱禾鳥", + "canonical_ids": "⿱禾鳥", + "expanded_ids": "⿱⿻丿木鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穓", + "codepoint": "U+7A53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A53", + "status": "exact_ids", + "ids": "⿰禾異", + "canonical_ids": "⿰禾異", + "expanded_ids": "⿰⿻丿木⿱田⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "廾", + "廿", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穔", + "codepoint": "U+7A54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A54", + "status": "exact_ids", + "ids": "⿰禾黄", + "canonical_ids": "⿰禾黄", + "expanded_ids": "⿰⿻丿木黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穕", + "codepoint": "U+7A55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A55", + "status": "exact_ids", + "ids": "⿰禾集", + "canonical_ids": "⿰禾集", + "expanded_ids": "⿰⿻丿木⿱隹木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穖", + "codepoint": "U+7A56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A56", + "status": "exact_ids", + "ids": "⿰禾幾", + "canonical_ids": "⿰禾幾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "幺", + "木" + ], + "unresolved_leaves": [ + "戍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穗", + "codepoint": "U+7A57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A57", + "status": "exact_ids", + "ids": "⿰禾惠", + "canonical_ids": "⿰禾惠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厶", + "心", + "木" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穘", + "codepoint": "U+7A58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A58", + "status": "exact_ids", + "ids": "⿰禾堯", + "canonical_ids": "⿰禾堯", + "expanded_ids": "⿰⿻丿木⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "儿", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穙", + "codepoint": "U+7A59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A59", + "status": "exact_ids", + "ids": "⿰禾菐", + "canonical_ids": "⿰禾菐", + "expanded_ids": "⿰⿻丿木⿱业⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "丿", + "儿", + "木", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穚", + "codepoint": "U+7A5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A5A", + "status": "exact_ids", + "ids": "⿰禾喬", + "canonical_ids": "⿰禾喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "木" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穛", + "codepoint": "U+7A5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A5B", + "status": "exact_ids", + "ids": "⿰禾焦", + "canonical_ids": "⿰禾焦", + "expanded_ids": "⿰⿻丿木⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "灬", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穜", + "codepoint": "U+7A5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A5C", + "status": "exact_ids", + "ids": "⿰禾童", + "canonical_ids": "⿰禾童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穝", + "codepoint": "U+7A5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A5D", + "status": "exact_ids", + "ids": "⿰禾最", + "canonical_ids": "⿰禾最", + "expanded_ids": "⿰⿻丿木⿱曰⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "又", + "曰", + "木", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穞", + "codepoint": "U+7A5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A5E", + "status": "exact_ids", + "ids": "⿰禾鲁", + "canonical_ids": "⿰禾鲁", + "expanded_ids": "⿰⿻丿木⿱鱼日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "日", + "木", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穟", + "codepoint": "U+7A5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A5F", + "status": "exact_ids", + "ids": "⿰禾遂", + "canonical_ids": "⿰禾遂", + "expanded_ids": "⿰⿻丿木⿰辶⿱八豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "八", + "木", + "豕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穠", + "codepoint": "U+7A60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A60", + "status": "exact_ids", + "ids": "⿰禾農", + "canonical_ids": "⿰禾農", + "expanded_ids": "⿰⿻丿木⿱曲辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "曲", + "木", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穡", + "codepoint": "U+7A61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A61", + "status": "exact_ids", + "ids": "⿰禾嗇", + "canonical_ids": "⿰禾嗇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "人", + "大", + "木" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穢", + "codepoint": "U+7A62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A62", + "status": "exact_ids", + "ids": "⿰禾歲", + "canonical_ids": "⿰禾歲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "歲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穣", + "codepoint": "U+7A63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A63", + "status": "exact_ids", + "ids": "⿰禾㐮", + "canonical_ids": "⿰禾㐮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "㐮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穤", + "codepoint": "U+7A64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A64", + "status": "exact_ids", + "ids": "⿰禾需", + "canonical_ids": "⿰禾需", + "expanded_ids": "⿰⿻丿木⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穥", + "codepoint": "U+7A65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A65", + "status": "exact_ids", + "ids": "⿰禾與", + "canonical_ids": "⿰禾與", + "expanded_ids": "⿰⿻丿木與", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "與" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穦", + "codepoint": "U+7A66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A66", + "status": "exact_ids", + "ids": "⿰禾賓", + "canonical_ids": "⿰禾賓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穧", + "codepoint": "U+7A67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A67", + "status": "exact_ids", + "ids": "⿰禾齊", + "canonical_ids": "⿰禾齊", + "expanded_ids": "⿰⿻丿木齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穨", + "codepoint": "U+7A68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A68", + "status": "exact_ids", + "ids": "⿰秃貴", + "canonical_ids": "⿰秃貴", + "expanded_ids": "⿰⿱⿻丿木几⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丿", + "八", + "几", + "口", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穩", + "codepoint": "U+7A69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A69", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穪", + "codepoint": "U+7A6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A6A", + "status": "exact_ids", + "ids": "⿰禾爾", + "canonical_ids": "⿰禾爾", + "expanded_ids": "⿰⿻丿木爾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "爾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穫", + "codepoint": "U+7A6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A6B", + "status": "exact_ids", + "ids": "⿰禾蒦", + "canonical_ids": "⿰禾蒦", + "expanded_ids": "⿰⿻丿木⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "又", + "木", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穬", + "codepoint": "U+7A6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A6C", + "status": "exact_ids", + "ids": "⿰禾廣", + "canonical_ids": "⿰禾廣", + "expanded_ids": "⿰⿻丿木⿱广黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "广", + "木", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穭", + "codepoint": "U+7A6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A6D", + "status": "exact_ids", + "ids": "⿰禾魯", + "canonical_ids": "⿰禾魯", + "expanded_ids": "⿰⿻丿木⿱魚日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "日", + "木", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穮", + "codepoint": "U+7A6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A6E", + "status": "exact_ids", + "ids": "⿰禾麃", + "canonical_ids": "⿰禾麃", + "expanded_ids": "⿰⿻丿木⿱鹿灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "灬", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穯", + "codepoint": "U+7A6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A6F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穰", + "codepoint": "U+7A70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A70", + "status": "exact_ids", + "ids": "⿰禾襄", + "canonical_ids": "⿰禾襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穱", + "codepoint": "U+7A71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A71", + "status": "exact_ids", + "ids": "⿰禾爵", + "canonical_ids": "⿰禾爵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "爵" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穲", + "codepoint": "U+7A72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A72", + "status": "exact_ids", + "ids": "⿰禾麗", + "canonical_ids": "⿰禾麗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "鹿" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穳", + "codepoint": "U+7A73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A73", + "status": "exact_ids", + "ids": "⿰禾贊", + "canonical_ids": "⿰禾贊", + "expanded_ids": "⿰⿻丿木⿱⿰⿱牛儿⿱牛儿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "八", + "木", + "牛", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穴", + "codepoint": "U+7A74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A74", + "status": "exact_ids", + "ids": "⿱宀八", + "canonical_ids": "⿱宀八", + "expanded_ids": "⿱宀八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穵", + "codepoint": "U+7A75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A75", + "status": "exact_ids", + "ids": "⿱穴乙", + "canonical_ids": "⿱穴乙", + "expanded_ids": "⿱⿱宀八乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "八", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "究", + "codepoint": "U+7A76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A76", + "status": "exact_ids", + "ids": "⿱穴九", + "canonical_ids": "⿱穴九", + "expanded_ids": "⿱⿱宀八九", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "八", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穷", + "codepoint": "U+7A77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A77", + "status": "exact_ids", + "ids": "⿱穴力", + "canonical_ids": "⿱穴力", + "expanded_ids": "⿱⿱宀八力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "力", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穸", + "codepoint": "U+7A78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A78", + "status": "exact_ids", + "ids": "⿱穴夕", + "canonical_ids": "⿱穴夕", + "expanded_ids": "⿱⿱宀八夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "夕", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穹", + "codepoint": "U+7A79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A79", + "status": "exact_ids", + "ids": "⿱穴弓", + "canonical_ids": "⿱穴弓", + "expanded_ids": "⿱⿱宀八弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "空", + "codepoint": "U+7A7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A7A", + "status": "exact_ids", + "ids": "⿱穴工", + "canonical_ids": "⿱穴工", + "expanded_ids": "⿱⿱宀八工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穻", + "codepoint": "U+7A7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A7B", + "status": "exact_ids", + "ids": "⿱穴于", + "canonical_ids": "⿱穴于", + "expanded_ids": "⿱⿱宀八⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "八", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穼", + "codepoint": "U+7A7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A7C", + "status": "exact_ids", + "ids": "⿱穴木", + "canonical_ids": "⿱穴木", + "expanded_ids": "⿱⿱宀八木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穽", + "codepoint": "U+7A7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A7D", + "status": "exact_ids", + "ids": "⿱穴井", + "canonical_ids": "⿱穴井", + "expanded_ids": "⿱⿱宀八井", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "井", + "八", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穾", + "codepoint": "U+7A7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A7E", + "status": "exact_ids", + "ids": "⿱穴夭", + "canonical_ids": "⿱穴夭", + "expanded_ids": "⿱⿱宀八⿱丿大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "八", + "大", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "穿", + "codepoint": "U+7A7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A7F", + "status": "exact_ids", + "ids": "⿱穴牙", + "canonical_ids": "⿱穴牙", + "expanded_ids": "⿱⿱宀八牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "牙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窀", + "codepoint": "U+7A80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A80", + "status": "exact_ids", + "ids": "⿱穴屯", + "canonical_ids": "⿱穴屯", + "expanded_ids": "⿱⿱宀八屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "屯" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "突", + "codepoint": "U+7A81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A81", + "status": "exact_ids", + "ids": "⿱穴犬", + "canonical_ids": "⿱穴犬", + "expanded_ids": "⿱⿱宀八⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "八", + "大", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窂", + "codepoint": "U+7A82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A82", + "status": "exact_ids", + "ids": "⿱穴牛", + "canonical_ids": "⿱穴牛", + "expanded_ids": "⿱⿱宀八牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窃", + "codepoint": "U+7A83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A83", + "status": "exact_ids", + "ids": "⿱穴切", + "canonical_ids": "⿱穴切", + "expanded_ids": "⿱⿱宀八⿰七刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "八", + "刀", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窄", + "codepoint": "U+7A84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A84", + "status": "exact_ids", + "ids": "⿱穴乍", + "canonical_ids": "⿱穴乍", + "expanded_ids": "⿱⿱宀八乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "八", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窅", + "codepoint": "U+7A85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A85", + "status": "exact_ids", + "ids": "⿱穴目", + "canonical_ids": "⿱穴目", + "expanded_ids": "⿱⿱宀八目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窆", + "codepoint": "U+7A86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A86", + "status": "exact_ids", + "ids": "⿱穴乏", + "canonical_ids": "⿱穴乏", + "expanded_ids": "⿱⿱宀八⿱丿之", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "之", + "八", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窇", + "codepoint": "U+7A87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A87", + "status": "exact_ids", + "ids": "⿱穴包", + "canonical_ids": "⿱穴包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窈", + "codepoint": "U+7A88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A88", + "status": "exact_ids", + "ids": "⿱穴幼", + "canonical_ids": "⿱穴幼", + "expanded_ids": "⿱⿱宀八⿰幺力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "力", + "宀", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窉", + "codepoint": "U+7A89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A89", + "status": "exact_ids", + "ids": "⿱穴丙", + "canonical_ids": "⿱穴丙", + "expanded_ids": "⿱⿱宀八⿱一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "八", + "冂", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窊", + "codepoint": "U+7A8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A8A", + "status": "exact_ids", + "ids": "⿱穴瓜", + "canonical_ids": "⿱穴瓜", + "expanded_ids": "⿱⿱宀八瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "瓜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窋", + "codepoint": "U+7A8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A8B", + "status": "exact_ids", + "ids": "⿱穴出", + "canonical_ids": "⿱穴出", + "expanded_ids": "⿱⿱宀八⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "凵", + "宀", + "屮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窌", + "codepoint": "U+7A8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A8C", + "status": "exact_ids", + "ids": "⿱穴卯", + "canonical_ids": "⿱穴卯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀" + ], + "unresolved_leaves": [ + "卯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窍", + "codepoint": "U+7A8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A8D", + "status": "exact_ids", + "ids": "⿱穴巧", + "canonical_ids": "⿱穴巧", + "expanded_ids": "⿱⿱宀八⿰工丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "八", + "宀", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窎", + "codepoint": "U+7A8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A8E", + "status": "exact_ids", + "ids": "⿱穴鸟", + "canonical_ids": "⿱穴鸟", + "expanded_ids": "⿱⿱宀八鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窏", + "codepoint": "U+7A8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A8F", + "status": "exact_ids", + "ids": "⿱穴汙", + "canonical_ids": "⿱穴汙", + "expanded_ids": "⿱⿱宀八⿰氵⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "八", + "宀", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窐", + "codepoint": "U+7A90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A90", + "status": "exact_ids", + "ids": "⿱穴圭", + "canonical_ids": "⿱穴圭", + "expanded_ids": "⿱⿱宀八⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "土", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窑", + "codepoint": "U+7A91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A91", + "status": "exact_ids", + "ids": "⿱穴缶", + "canonical_ids": "⿱穴缶", + "expanded_ids": "⿱⿱宀八缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窒", + "codepoint": "U+7A92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A92", + "status": "exact_ids", + "ids": "⿱穴至", + "canonical_ids": "⿱穴至", + "expanded_ids": "⿱⿱宀八⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "厶", + "土", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窓", + "codepoint": "U+7A93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A93", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窔", + "codepoint": "U+7A94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A94", + "status": "exact_ids", + "ids": "⿱穴交", + "canonical_ids": "⿱穴交", + "expanded_ids": "⿱⿱宀八⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "宀", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窕", + "codepoint": "U+7A95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A95", + "status": "exact_ids", + "ids": "⿱穴兆", + "canonical_ids": "⿱穴兆", + "expanded_ids": "⿱⿱宀八兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "八", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窖", + "codepoint": "U+7A96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A96", + "status": "exact_ids", + "ids": "⿱穴告", + "canonical_ids": "⿱穴告", + "expanded_ids": "⿱⿱宀八⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窗", + "codepoint": "U+7A97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A97", + "status": "exact_ids", + "ids": "⿱穴囱", + "canonical_ids": "⿱穴囱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀" + ], + "unresolved_leaves": [ + "囱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窘", + "codepoint": "U+7A98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A98", + "status": "exact_ids", + "ids": "⿱穴君", + "canonical_ids": "⿱穴君", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窙", + "codepoint": "U+7A99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A99", + "status": "exact_ids", + "ids": "⿱穴孝", + "canonical_ids": "⿱穴孝", + "expanded_ids": "⿱⿱宀八⿱⿻土丿子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "八", + "土", + "子", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窚", + "codepoint": "U+7A9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A9A", + "status": "exact_ids", + "ids": "⿱穴成", + "canonical_ids": "⿱穴成", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀" + ], + "unresolved_leaves": [ + "成" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窛", + "codepoint": "U+7A9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A9B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窜", + "codepoint": "U+7A9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A9C", + "status": "exact_ids", + "ids": "⿱穴串", + "canonical_ids": "⿱穴串", + "expanded_ids": "⿱⿱宀八⿻⿱口口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "八", + "口", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窝", + "codepoint": "U+7A9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A9D", + "status": "exact_ids", + "ids": "⿱穴呙", + "canonical_ids": "⿱穴呙", + "expanded_ids": "⿱⿱宀八⿱口⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "八", + "冂", + "口", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窞", + "codepoint": "U+7A9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A9E", + "status": "exact_ids", + "ids": "⿱穴臽", + "canonical_ids": "⿱穴臽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "臼" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窟", + "codepoint": "U+7A9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7A9F", + "status": "exact_ids", + "ids": "⿱穴屈", + "canonical_ids": "⿱穴屈", + "expanded_ids": "⿱⿱宀八⿱尸⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "凵", + "宀", + "尸", + "屮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窠", + "codepoint": "U+7AA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AA0", + "status": "exact_ids", + "ids": "⿱穴果", + "canonical_ids": "⿱穴果", + "expanded_ids": "⿱⿱宀八⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窡", + "codepoint": "U+7AA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AA1", + "status": "exact_ids", + "ids": "⿱穴叕", + "canonical_ids": "⿱穴叕", + "expanded_ids": "⿱⿱宀八⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "又", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窢", + "codepoint": "U+7AA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AA2", + "status": "exact_ids", + "ids": "⿱穴或", + "canonical_ids": "⿱穴或", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀" + ], + "unresolved_leaves": [ + "或" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窣", + "codepoint": "U+7AA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AA3", + "status": "exact_ids", + "ids": "⿱穴卒", + "canonical_ids": "⿱穴卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窤", + "codepoint": "U+7AA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AA4", + "status": "exact_ids", + "ids": "⿱穴昆", + "canonical_ids": "⿱穴昆", + "expanded_ids": "⿱⿱宀八⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "匕", + "宀", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窥", + "codepoint": "U+7AA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AA5", + "status": "exact_ids", + "ids": "⿱穴规", + "canonical_ids": "⿱穴规", + "expanded_ids": "⿱⿱宀八⿰⿻一大⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "八", + "冂", + "大", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窦", + "codepoint": "U+7AA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AA6", + "status": "exact_ids", + "ids": "⿱穴卖", + "canonical_ids": "⿱穴卖", + "expanded_ids": "⿱⿱宀八⿱十⿱乛⿻大冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "八", + "冫", + "十", + "大", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窧", + "codepoint": "U+7AA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AA7", + "status": "exact_ids", + "ids": "⿱穴卓", + "canonical_ids": "⿱穴卓", + "expanded_ids": "⿱⿱宀八⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "卜", + "宀", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窨", + "codepoint": "U+7AA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AA8", + "status": "exact_ids", + "ids": "⿱穴音", + "canonical_ids": "⿱穴音", + "expanded_ids": "⿱⿱宀八⿱立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窩", + "codepoint": "U+7AA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AA9", + "status": "exact_ids", + "ids": "⿱穴咼", + "canonical_ids": "⿱穴咼", + "expanded_ids": "⿱⿱宀八⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冎", + "口", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窪", + "codepoint": "U+7AAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AAA", + "status": "exact_ids", + "ids": "⿱穴洼", + "canonical_ids": "⿱穴洼", + "expanded_ids": "⿱⿱宀八⿰氵⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "土", + "宀", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窫", + "codepoint": "U+7AAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AAB", + "status": "exact_ids", + "ids": "⿱穴契", + "canonical_ids": "⿱穴契", + "expanded_ids": "⿱⿱宀八⿱⿰丰刀大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "八", + "刀", + "大", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窬", + "codepoint": "U+7AAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AAC", + "status": "exact_ids", + "ids": "⿱穴俞", + "canonical_ids": "⿱穴俞", + "expanded_ids": "⿱⿱宀八⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "八", + "刂", + "宀", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窭", + "codepoint": "U+7AAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AAD", + "status": "exact_ids", + "ids": "⿱穴娄", + "canonical_ids": "⿱穴娄", + "expanded_ids": "⿱⿱宀八⿱⿻木丷女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "八", + "女", + "宀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窮", + "codepoint": "U+7AAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AAE", + "status": "exact_ids", + "ids": "⿱穴躬", + "canonical_ids": "⿱穴躬", + "expanded_ids": "⿱⿱宀八⿰身弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "弓", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窯", + "codepoint": "U+7AAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AAF", + "status": "exact_ids", + "ids": "⿱穴羔", + "canonical_ids": "⿱穴羔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀" + ], + "unresolved_leaves": [ + "羔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窰", + "codepoint": "U+7AB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AB0", + "status": "exact_ids", + "ids": "⿱穴䍃", + "canonical_ids": "⿱穴䍃", + "expanded_ids": "⿱⿱宀八⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "爪", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窱", + "codepoint": "U+7AB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AB1", + "status": "exact_ids", + "ids": "⿱穴條", + "canonical_ids": "⿱穴條", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀" + ], + "unresolved_leaves": [ + "條" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窲", + "codepoint": "U+7AB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AB2", + "status": "exact_ids", + "ids": "⿱穴料", + "canonical_ids": "⿱穴料", + "expanded_ids": "⿱⿱宀八⿰⿻木丷斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "八", + "宀", + "斗", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窳", + "codepoint": "U+7AB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AB3", + "status": "exact_ids", + "ids": "⿱穴㼌", + "canonical_ids": "⿱穴㼌", + "expanded_ids": "⿱⿱宀八⿰瓜瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "瓜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窴", + "codepoint": "U+7AB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AB4", + "status": "exact_ids", + "ids": "⿱穴真", + "canonical_ids": "⿱穴真", + "expanded_ids": "⿱⿱宀八⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "宀", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窵", + "codepoint": "U+7AB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AB5", + "status": "exact_ids", + "ids": "⿱穴鳥", + "canonical_ids": "⿱穴鳥", + "expanded_ids": "⿱⿱宀八鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窶", + "codepoint": "U+7AB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AB6", + "status": "exact_ids", + "ids": "⿱穴婁", + "canonical_ids": "⿱穴婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窷", + "codepoint": "U+7AB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AB7", + "status": "exact_ids", + "ids": "⿱穴聊", + "canonical_ids": "⿱穴聊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "耳" + ], + "unresolved_leaves": [ + "卯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窸", + "codepoint": "U+7AB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AB8", + "status": "exact_ids", + "ids": "⿱穴悉", + "canonical_ids": "⿱穴悉", + "expanded_ids": "⿱⿱宀八⿱⿱丿⿻木丷心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "八", + "宀", + "心", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窹", + "codepoint": "U+7AB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AB9", + "status": "exact_ids", + "ids": "⿱穴𤕻", + "canonical_ids": "⿱穴𤕻", + "expanded_ids": "⿱⿱宀八⿰爿⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "八", + "口", + "宀", + "爿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窺", + "codepoint": "U+7ABA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ABA", + "status": "exact_ids", + "ids": "⿱穴規", + "canonical_ids": "⿱穴規", + "expanded_ids": "⿱⿱宀八⿰⿻一大⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "八", + "大", + "宀", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窻", + "codepoint": "U+7ABB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ABB", + "status": "exact_ids", + "ids": "⿱穴悤", + "canonical_ids": "⿱穴悤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "心" + ], + "unresolved_leaves": [ + "囱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窼", + "codepoint": "U+7ABC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ABC", + "status": "exact_ids", + "ids": "⿱穴巢", + "canonical_ids": "⿱穴巢", + "expanded_ids": "⿱⿱宀八⿱巛⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "巛", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窽", + "codepoint": "U+7ABD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ABD", + "status": "exact_ids", + "ids": "⿱穴疑", + "canonical_ids": "⿱穴疑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀" + ], + "unresolved_leaves": [ + "疑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窾", + "codepoint": "U+7ABE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ABE", + "status": "exact_ids", + "ids": "⿱穴款", + "canonical_ids": "⿱穴款", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀" + ], + "unresolved_leaves": [ + "款" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "窿", + "codepoint": "U+7ABF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ABF", + "status": "exact_ids", + "ids": "⿱穴隆", + "canonical_ids": "⿱穴隆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀" + ], + "unresolved_leaves": [ + "隆" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竀", + "codepoint": "U+7AC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AC0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竁", + "codepoint": "U+7AC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AC1", + "status": "exact_ids", + "ids": "⿱穴毳", + "canonical_ids": "⿱穴毳", + "expanded_ids": "⿱⿱宀八⿱毛⿰毛毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竂", + "codepoint": "U+7AC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AC2", + "status": "exact_ids", + "ids": "⿱穴尞", + "canonical_ids": "⿱穴尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "小" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竃", + "codepoint": "U+7AC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AC3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竄", + "codepoint": "U+7AC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AC4", + "status": "exact_ids", + "ids": "⿱穴鼠", + "canonical_ids": "⿱穴鼠", + "expanded_ids": "⿱⿱宀八鼠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竅", + "codepoint": "U+7AC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AC5", + "status": "exact_ids", + "ids": "⿱穴敫", + "canonical_ids": "⿱穴敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竆", + "codepoint": "U+7AC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AC6", + "status": "exact_ids", + "ids": "⿱穴躳", + "canonical_ids": "⿱穴躳", + "expanded_ids": "⿱⿱宀八⿰身⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竇", + "codepoint": "U+7AC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AC7", + "status": "exact_ids", + "ids": "⿱穴賣", + "canonical_ids": "⿱穴賣", + "expanded_ids": "⿱⿱宀八⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "士", + "宀", + "目", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竈", + "codepoint": "U+7AC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AC8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竉", + "codepoint": "U+7AC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AC9", + "status": "exact_ids", + "ids": "⿱穴龍", + "canonical_ids": "⿱穴龍", + "expanded_ids": "⿱⿱宀八龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竊", + "codepoint": "U+7ACA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ACA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "立", + "codepoint": "U+7ACB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ACB", + "status": "leaf_self_fallback", + "ids": "立", + "canonical_ids": "立", + "expanded_ids": "立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竌", + "codepoint": "U+7ACC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ACC", + "status": "exact_ids", + "ids": "⿰立几", + "canonical_ids": "⿰立几", + "expanded_ids": "⿰立几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竍", + "codepoint": "U+7ACD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ACD", + "status": "exact_ids", + "ids": "⿰立十", + "canonical_ids": "⿰立十", + "expanded_ids": "⿰立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竎", + "codepoint": "U+7ACE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ACE", + "status": "exact_ids", + "ids": "⿱立廾", + "canonical_ids": "⿱立廾", + "expanded_ids": "⿱立廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竏", + "codepoint": "U+7ACF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ACF", + "status": "exact_ids", + "ids": "⿰立千", + "canonical_ids": "⿰立千", + "expanded_ids": "⿰立⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竐", + "codepoint": "U+7AD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AD0", + "status": "exact_ids", + "ids": "⿰立殳", + "canonical_ids": "⿰立殳", + "expanded_ids": "⿰立⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竑", + "codepoint": "U+7AD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AD1", + "status": "exact_ids", + "ids": "⿰立厷", + "canonical_ids": "⿰立厷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立" + ], + "unresolved_leaves": [ + "厷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竒", + "codepoint": "U+7AD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AD2", + "status": "exact_ids", + "ids": "⿻六可", + "canonical_ids": "⿻六可", + "expanded_ids": "⿻⿱亠八⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "亠", + "八", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竓", + "codepoint": "U+7AD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AD3", + "status": "exact_ids", + "ids": "⿰立毛", + "canonical_ids": "⿰立毛", + "expanded_ids": "⿰立毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竔", + "codepoint": "U+7AD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AD4", + "status": "exact_ids", + "ids": "⿰立升", + "canonical_ids": "⿰立升", + "expanded_ids": "⿰立升", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "升", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竕", + "codepoint": "U+7AD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AD5", + "status": "exact_ids", + "ids": "⿰立分", + "canonical_ids": "⿰立分", + "expanded_ids": "⿰立⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竖", + "codepoint": "U+7AD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AD6", + "status": "exact_ids", + "ids": "⿱収立", + "canonical_ids": "⿱収立", + "expanded_ids": "⿱⿰⿰丨丨又立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "又", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竗", + "codepoint": "U+7AD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AD7", + "status": "exact_ids", + "ids": "⿰立少", + "canonical_ids": "⿰立少", + "expanded_ids": "⿰立⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竘", + "codepoint": "U+7AD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AD8", + "status": "exact_ids", + "ids": "⿰立句", + "canonical_ids": "⿰立句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "站", + "codepoint": "U+7AD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AD9", + "status": "exact_ids", + "ids": "⿰立占", + "canonical_ids": "⿰立占", + "expanded_ids": "⿰立⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竚", + "codepoint": "U+7ADA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ADA", + "status": "exact_ids", + "ids": "⿰立宁", + "canonical_ids": "⿰立宁", + "expanded_ids": "⿰立⿱宀⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "宀", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竛", + "codepoint": "U+7ADB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ADB", + "status": "exact_ids", + "ids": "⿰立令", + "canonical_ids": "⿰立令", + "expanded_ids": "⿰立⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "立", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竜", + "codepoint": "U+7ADC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ADC", + "status": "exact_ids", + "ids": "⿱立电", + "canonical_ids": "⿱立电", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竝", + "codepoint": "U+7ADD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ADD", + "status": "exact_ids", + "ids": "⿰立立", + "canonical_ids": "⿰立立", + "expanded_ids": "⿰立立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竞", + "codepoint": "U+7ADE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ADE", + "status": "exact_ids", + "ids": "⿱立兄", + "canonical_ids": "⿱立兄", + "expanded_ids": "⿱立⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竟", + "codepoint": "U+7ADF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ADF", + "status": "exact_ids", + "ids": "⿱立見", + "canonical_ids": "⿱立見", + "expanded_ids": "⿱立⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "章", + "codepoint": "U+7AE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AE0", + "status": "exact_ids", + "ids": "⿱立早", + "canonical_ids": "⿱立早", + "expanded_ids": "⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竡", + "codepoint": "U+7AE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AE1", + "status": "exact_ids", + "ids": "⿰立百", + "canonical_ids": "⿰立百", + "expanded_ids": "⿰立⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竢", + "codepoint": "U+7AE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AE2", + "status": "exact_ids", + "ids": "⿰立矣", + "canonical_ids": "⿰立矣", + "expanded_ids": "⿰立⿱厶⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "厶", + "大", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竣", + "codepoint": "U+7AE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AE3", + "status": "exact_ids", + "ids": "⿰立夋", + "canonical_ids": "⿰立夋", + "expanded_ids": "⿰立⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竤", + "codepoint": "U+7AE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AE4", + "status": "exact_ids", + "ids": "⿰立宏", + "canonical_ids": "⿰立宏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "立" + ], + "unresolved_leaves": [ + "厷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "童", + "codepoint": "U+7AE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AE5", + "status": "exact_ids", + "ids": "⿱立里", + "canonical_ids": "⿱立里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竦", + "codepoint": "U+7AE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AE6", + "status": "exact_ids", + "ids": "⿰立束", + "canonical_ids": "⿰立束", + "expanded_ids": "⿰立⿻木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竧", + "codepoint": "U+7AE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AE7", + "status": "exact_ids", + "ids": "⿰立身", + "canonical_ids": "⿰立身", + "expanded_ids": "⿰立身", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竨", + "codepoint": "U+7AE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AE8", + "status": "exact_ids", + "ids": "⿰立卓", + "canonical_ids": "⿰立卓", + "expanded_ids": "⿰立⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竩", + "codepoint": "U+7AE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AE9", + "status": "exact_ids", + "ids": "⿰立宜", + "canonical_ids": "⿰立宜", + "expanded_ids": "⿰立⿱宀且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "宀", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竪", + "codepoint": "U+7AEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AEA", + "status": "exact_ids", + "ids": "⿱臤立", + "canonical_ids": "⿱臤立", + "expanded_ids": "⿱⿰臣又立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "立", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竫", + "codepoint": "U+7AEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AEB", + "status": "exact_ids", + "ids": "⿰立爭", + "canonical_ids": "⿰立爭", + "expanded_ids": "⿰立⿱爫肀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爫", + "立", + "肀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竬", + "codepoint": "U+7AEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AEC", + "status": "exact_ids", + "ids": "⿰立禹", + "canonical_ids": "⿰立禹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立" + ], + "unresolved_leaves": [ + "禹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竭", + "codepoint": "U+7AED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AED", + "status": "exact_ids", + "ids": "⿰立曷", + "canonical_ids": "⿰立曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "立" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竮", + "codepoint": "U+7AEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AEE", + "status": "exact_ids", + "ids": "⿰立屏", + "canonical_ids": "⿰立屏", + "expanded_ids": "⿰立⿱尸⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "尸", + "廾", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "端", + "codepoint": "U+7AEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AEF", + "status": "exact_ids", + "ids": "⿰立耑", + "canonical_ids": "⿰立耑", + "expanded_ids": "⿰立⿱山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "立", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竰", + "codepoint": "U+7AF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AF0", + "status": "exact_ids", + "ids": "⿰立厘", + "canonical_ids": "⿰立厘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "立" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竱", + "codepoint": "U+7AF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AF1", + "status": "exact_ids", + "ids": "⿰立專", + "canonical_ids": "⿰立專", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "寸", + "立" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竲", + "codepoint": "U+7AF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AF2", + "status": "exact_ids", + "ids": "⿰立曾", + "canonical_ids": "⿰立曾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竳", + "codepoint": "U+7AF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AF3", + "status": "exact_ids", + "ids": "⿰立登", + "canonical_ids": "⿰立登", + "expanded_ids": "⿰立⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "癶", + "立", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竴", + "codepoint": "U+7AF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AF4", + "status": "exact_ids", + "ids": "⿰立尊", + "canonical_ids": "⿰立尊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "寸", + "立" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竵", + "codepoint": "U+7AF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AF5", + "status": "exact_ids", + "ids": "⿰立𩰬", + "canonical_ids": "⿰立𩰬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立" + ], + "unresolved_leaves": [ + "𩰬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "競", + "codepoint": "U+7AF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AF6", + "status": "exact_ids", + "ids": "⿰竞竞", + "canonical_ids": "⿰竞竞", + "expanded_ids": "⿰⿱立⿱口儿⿱立⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竷", + "codepoint": "U+7AF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AF7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竸", + "codepoint": "U+7AF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AF8", + "status": "exact_ids", + "ids": "⿰竟竟", + "canonical_ids": "⿰竟竟", + "expanded_ids": "⿰⿱立⿱目儿⿱立⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竹", + "codepoint": "U+7AF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AF9", + "status": "exact_ids", + "ids": "⿰亇亇", + "canonical_ids": "⿰亇亇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竺", + "codepoint": "U+7AFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AFA", + "status": "exact_ids", + "ids": "⿱竹二", + "canonical_ids": "⿱竹二", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竻", + "codepoint": "U+7AFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AFB", + "status": "exact_ids", + "ids": "⿱竹力", + "canonical_ids": "⿱竹力", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竼", + "codepoint": "U+7AFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AFC", + "status": "exact_ids", + "ids": "⿱竹凡", + "canonical_ids": "⿱竹凡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竽", + "codepoint": "U+7AFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AFD", + "status": "exact_ids", + "ids": "⿱竹于", + "canonical_ids": "⿱竹于", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竾", + "codepoint": "U+7AFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AFE", + "status": "exact_ids", + "ids": "⿱竹也", + "canonical_ids": "⿱竹也", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "竿", + "codepoint": "U+7AFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7AFF", + "status": "exact_ids", + "ids": "⿱竹干", + "canonical_ids": "⿱竹干", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笀", + "codepoint": "U+7B00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B00", + "status": "exact_ids", + "ids": "⿱竹亡", + "canonical_ids": "⿱竹亡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笁", + "codepoint": "U+7B01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B01", + "status": "exact_ids", + "ids": "⿱竹工", + "canonical_ids": "⿱竹工", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笂", + "codepoint": "U+7B02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B02", + "status": "exact_ids", + "ids": "⿱竹丸", + "canonical_ids": "⿱竹丸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笃", + "codepoint": "U+7B03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B03", + "status": "exact_ids", + "ids": "⿱竹马", + "canonical_ids": "⿱竹马", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "马" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笄", + "codepoint": "U+7B04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B04", + "status": "exact_ids", + "ids": "⿱竹开", + "canonical_ids": "⿱竹开", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廾" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笅", + "codepoint": "U+7B05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B05", + "status": "exact_ids", + "ids": "⿱竹爻", + "canonical_ids": "⿱竹爻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笆", + "codepoint": "U+7B06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B06", + "status": "exact_ids", + "ids": "⿱竹巴", + "canonical_ids": "⿱竹巴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笇", + "codepoint": "U+7B07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B07", + "status": "exact_ids", + "ids": "⿱竹卞", + "canonical_ids": "⿱竹卞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "卜" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笈", + "codepoint": "U+7B08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B08", + "status": "exact_ids", + "ids": "⿱竹及", + "canonical_ids": "⿱竹及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃" + ], + "unresolved_leaves": [ + "㇏", + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笉", + "codepoint": "U+7B09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B09", + "status": "exact_ids", + "ids": "⿱竹匀", + "canonical_ids": "⿱竹匀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "匀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笊", + "codepoint": "U+7B0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B0A", + "status": "exact_ids", + "ids": "⿱竹爪", + "canonical_ids": "⿱竹爪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爪" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笋", + "codepoint": "U+7B0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B0B", + "status": "exact_ids", + "ids": "⿱竹尹", + "canonical_ids": "⿱竹尹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笌", + "codepoint": "U+7B0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B0C", + "status": "exact_ids", + "ids": "⿱竹牙", + "canonical_ids": "⿱竹牙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笍", + "codepoint": "U+7B0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B0D", + "status": "exact_ids", + "ids": "⿱竹内", + "canonical_ids": "⿱竹内", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笎", + "codepoint": "U+7B0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B0E", + "status": "exact_ids", + "ids": "⿱竹元", + "canonical_ids": "⿱竹元", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笏", + "codepoint": "U+7B0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B0F", + "status": "exact_ids", + "ids": "⿱竹勿", + "canonical_ids": "⿱竹勿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笐", + "codepoint": "U+7B10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B10", + "status": "exact_ids", + "ids": "⿱竹亢", + "canonical_ids": "⿱竹亢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笑", + "codepoint": "U+7B11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B11", + "status": "exact_ids", + "ids": "⿱竹夭", + "canonical_ids": "⿱竹夭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笒", + "codepoint": "U+7B12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B12", + "status": "exact_ids", + "ids": "⿱竹今", + "canonical_ids": "⿱竹今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人" + ], + "unresolved_leaves": [ + "㇇", + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笓", + "codepoint": "U+7B13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B13", + "status": "exact_ids", + "ids": "⿱竹比", + "canonical_ids": "⿱竹比", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笔", + "codepoint": "U+7B14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B14", + "status": "exact_ids", + "ids": "⿱竹毛", + "canonical_ids": "⿱竹毛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笕", + "codepoint": "U+7B15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B15", + "status": "exact_ids", + "ids": "⿱竹见", + "canonical_ids": "⿱竹见", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笖", + "codepoint": "U+7B16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B16", + "status": "exact_ids", + "ids": "⿱竹以", + "canonical_ids": "⿱竹以", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "厶" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笗", + "codepoint": "U+7B17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B17", + "status": "exact_ids", + "ids": "⿱竹冬", + "canonical_ids": "⿱竹冬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "夂" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笘", + "codepoint": "U+7B18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B18", + "status": "exact_ids", + "ids": "⿱竹占", + "canonical_ids": "⿱竹占", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笙", + "codepoint": "U+7B19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B19", + "status": "exact_ids", + "ids": "⿱竹生", + "canonical_ids": "⿱竹生", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "牛" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笚", + "codepoint": "U+7B1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B1A", + "status": "exact_ids", + "ids": "⿱竹甲", + "canonical_ids": "⿱竹甲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "甲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笛", + "codepoint": "U+7B1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B1B", + "status": "exact_ids", + "ids": "⿱竹由", + "canonical_ids": "⿱竹由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笜", + "codepoint": "U+7B1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B1C", + "status": "exact_ids", + "ids": "⿱竹出", + "canonical_ids": "⿱竹出", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笝", + "codepoint": "U+7B1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B1D", + "status": "exact_ids", + "ids": "⿱竹㘝", + "canonical_ids": "⿱竹㘝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "㘝", + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笞", + "codepoint": "U+7B1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B1E", + "status": "exact_ids", + "ids": "⿱竹台", + "canonical_ids": "⿱竹台", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笟", + "codepoint": "U+7B1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B1F", + "status": "exact_ids", + "ids": "⿱竹瓜", + "canonical_ids": "⿱竹瓜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓜" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笠", + "codepoint": "U+7B20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B20", + "status": "exact_ids", + "ids": "⿱竹立", + "canonical_ids": "⿱竹立", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笡", + "codepoint": "U+7B21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B21", + "status": "exact_ids", + "ids": "⿱竹且", + "canonical_ids": "⿱竹且", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笢", + "codepoint": "U+7B22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B22", + "status": "exact_ids", + "ids": "⿱竹民", + "canonical_ids": "⿱竹民", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "民" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笣", + "codepoint": "U+7B23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B23", + "status": "exact_ids", + "ids": "⿱竹包", + "canonical_ids": "⿱竹包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笤", + "codepoint": "U+7B24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B24", + "status": "exact_ids", + "ids": "⿱竹召", + "canonical_ids": "⿱竹召", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笥", + "codepoint": "U+7B25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B25", + "status": "exact_ids", + "ids": "⿱竹司", + "canonical_ids": "⿱竹司", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "司" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "符", + "codepoint": "U+7B26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B26", + "status": "exact_ids", + "ids": "⿱竹付", + "canonical_ids": "⿱竹付", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笧", + "codepoint": "U+7B27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B27", + "status": "exact_ids", + "ids": "⿱竹册", + "canonical_ids": "⿱竹册", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "册" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笨", + "codepoint": "U+7B28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B28", + "status": "exact_ids", + "ids": "⿱竹本", + "canonical_ids": "⿱竹本", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笩", + "codepoint": "U+7B29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B29", + "status": "exact_ids", + "ids": "⿱竹代", + "canonical_ids": "⿱竹代", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "弋" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笪", + "codepoint": "U+7B2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B2A", + "status": "exact_ids", + "ids": "⿱竹旦", + "canonical_ids": "⿱竹旦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笫", + "codepoint": "U+7B2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B2B", + "status": "exact_ids", + "ids": "⿱竹𠂔", + "canonical_ids": "⿱竹𠂔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "𠂔" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "第", + "codepoint": "U+7B2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B2C", + "status": "exact_ids", + "ids": "⿱竹𢎨", + "canonical_ids": "⿱竹𢎨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丿", + "弓" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笭", + "codepoint": "U+7B2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B2D", + "status": "exact_ids", + "ids": "⿱竹令", + "canonical_ids": "⿱竹令", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "龴" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笮", + "codepoint": "U+7B2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B2E", + "status": "exact_ids", + "ids": "⿱竹乍", + "canonical_ids": "⿱竹乍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笯", + "codepoint": "U+7B2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B2F", + "status": "exact_ids", + "ids": "⿱竹奴", + "canonical_ids": "⿱竹奴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "女" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笰", + "codepoint": "U+7B30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B30", + "status": "exact_ids", + "ids": "⿱竹弗", + "canonical_ids": "⿱竹弗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "弓" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笱", + "codepoint": "U+7B31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B31", + "status": "exact_ids", + "ids": "⿱竹句", + "canonical_ids": "⿱竹句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笲", + "codepoint": "U+7B32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B32", + "status": "exact_ids", + "ids": "⿱竹弁", + "canonical_ids": "⿱竹弁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "廾" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笳", + "codepoint": "U+7B33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B33", + "status": "exact_ids", + "ids": "⿱竹加", + "canonical_ids": "⿱竹加", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笴", + "codepoint": "U+7B34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B34", + "status": "exact_ids", + "ids": "⿱竹可", + "canonical_ids": "⿱竹可", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笵", + "codepoint": "U+7B35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B35", + "status": "exact_ids", + "ids": "⿱竹氾", + "canonical_ids": "⿱竹氾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "氵" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笶", + "codepoint": "U+7B36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B36", + "status": "exact_ids", + "ids": "⿱竹矢", + "canonical_ids": "⿱竹矢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笷", + "codepoint": "U+7B37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B37", + "status": "exact_ids", + "ids": "⿱竹卯", + "canonical_ids": "⿱竹卯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "卯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笸", + "codepoint": "U+7B38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B38", + "status": "exact_ids", + "ids": "⿱竹叵", + "canonical_ids": "⿱竹叵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匚", + "口" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笹", + "codepoint": "U+7B39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B39", + "status": "exact_ids", + "ids": "⿱竹世", + "canonical_ids": "⿱竹世", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笺", + "codepoint": "U+7B3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B3A", + "status": "exact_ids", + "ids": "⿱竹戋", + "canonical_ids": "⿱竹戋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一" + ], + "unresolved_leaves": [ + "亇", + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笻", + "codepoint": "U+7B3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B3B", + "status": "exact_ids", + "ids": "⿱竹卭", + "canonical_ids": "⿱竹卭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "工" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笼", + "codepoint": "U+7B3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B3C", + "status": "exact_ids", + "ids": "⿱竹龙", + "canonical_ids": "⿱竹龙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "龙" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笽", + "codepoint": "U+7B3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B3D", + "status": "exact_ids", + "ids": "⿱竹皿", + "canonical_ids": "⿱竹皿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笾", + "codepoint": "U+7B3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B3E", + "status": "exact_ids", + "ids": "⿱竹边", + "canonical_ids": "⿱竹边", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "辶" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "笿", + "codepoint": "U+7B3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B3F", + "status": "exact_ids", + "ids": "⿱竹各", + "canonical_ids": "⿱竹各", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筀", + "codepoint": "U+7B40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B40", + "status": "exact_ids", + "ids": "⿱竹圭", + "canonical_ids": "⿱竹圭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筁", + "codepoint": "U+7B41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B41", + "status": "exact_ids", + "ids": "⿱竹曲", + "canonical_ids": "⿱竹曲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筂", + "codepoint": "U+7B42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B42", + "status": "exact_ids", + "ids": "⿱竹池", + "canonical_ids": "⿱竹池", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "氵" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筃", + "codepoint": "U+7B43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B43", + "status": "exact_ids", + "ids": "⿱竹因", + "canonical_ids": "⿱竹因", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筄", + "codepoint": "U+7B44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B44", + "status": "exact_ids", + "ids": "⿱竹兆", + "canonical_ids": "⿱竹兆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筅", + "codepoint": "U+7B45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B45", + "status": "exact_ids", + "ids": "⿱竹先", + "canonical_ids": "⿱竹先", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "牛" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筆", + "codepoint": "U+7B46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B46", + "status": "exact_ids", + "ids": "⿱竹聿", + "canonical_ids": "⿱竹聿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筇", + "codepoint": "U+7B47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B47", + "status": "exact_ids", + "ids": "⿱竹邛", + "canonical_ids": "⿱竹邛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "阝" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筈", + "codepoint": "U+7B48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B48", + "status": "exact_ids", + "ids": "⿱竹舌", + "canonical_ids": "⿱竹舌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "等", + "codepoint": "U+7B49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B49", + "status": "exact_ids", + "ids": "⿱竹寺", + "canonical_ids": "⿱竹寺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筊", + "codepoint": "U+7B4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B4A", + "status": "exact_ids", + "ids": "⿱竹交", + "canonical_ids": "⿱竹交", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "父" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筋", + "codepoint": "U+7B4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B4B", + "status": "exact_ids", + "ids": "⿱竹肋", + "canonical_ids": "⿱竹肋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "月" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筌", + "codepoint": "U+7B4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B4C", + "status": "exact_ids", + "ids": "⿱竹全", + "canonical_ids": "⿱竹全", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "王" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筍", + "codepoint": "U+7B4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B4D", + "status": "exact_ids", + "ids": "⿱竹旬", + "canonical_ids": "⿱竹旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筎", + "codepoint": "U+7B4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B4E", + "status": "exact_ids", + "ids": "⿱竹如", + "canonical_ids": "⿱竹如", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筏", + "codepoint": "U+7B4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B4F", + "status": "exact_ids", + "ids": "⿱竹伐", + "canonical_ids": "⿱竹伐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "亇", + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筐", + "codepoint": "U+7B50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B50", + "status": "exact_ids", + "ids": "⿱竹匡", + "canonical_ids": "⿱竹匡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "匡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筑", + "codepoint": "U+7B51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B51", + "status": "exact_ids", + "ids": "⿱竹巩", + "canonical_ids": "⿱竹巩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工" + ], + "unresolved_leaves": [ + "亇", + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筒", + "codepoint": "U+7B52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B52", + "status": "exact_ids", + "ids": "⿱竹同", + "canonical_ids": "⿱竹同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筓", + "codepoint": "U+7B53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B53", + "status": "exact_ids", + "ids": "⿱竹幵", + "canonical_ids": "⿱竹幵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "答", + "codepoint": "U+7B54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B54", + "status": "exact_ids", + "ids": "⿱竹合", + "canonical_ids": "⿱竹合", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筕", + "codepoint": "U+7B55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B55", + "status": "exact_ids", + "ids": "⿱竹行", + "canonical_ids": "⿱竹行", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "策", + "codepoint": "U+7B56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B56", + "status": "exact_ids", + "ids": "⿱竹朿", + "canonical_ids": "⿱竹朿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "木" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筗", + "codepoint": "U+7B57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B57", + "status": "exact_ids", + "ids": "⿱竹仲", + "canonical_ids": "⿱竹仲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亻", + "口" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筘", + "codepoint": "U+7B58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B58", + "status": "exact_ids", + "ids": "⿱竹扣", + "canonical_ids": "⿱竹扣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "扌" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筙", + "codepoint": "U+7B59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B59", + "status": "exact_ids", + "ids": "⿱竹耒", + "canonical_ids": "⿱竹耒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筚", + "codepoint": "U+7B5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B5A", + "status": "exact_ids", + "ids": "⿱竹毕", + "canonical_ids": "⿱竹毕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "十" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筛", + "codepoint": "U+7B5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B5B", + "status": "exact_ids", + "ids": "⿱竹师", + "canonical_ids": "⿱竹师", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "刂" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筜", + "codepoint": "U+7B5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B5C", + "status": "exact_ids", + "ids": "⿱竹当", + "canonical_ids": "⿱竹当", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "彐" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筝", + "codepoint": "U+7B5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B5D", + "status": "exact_ids", + "ids": "⿱竹争", + "canonical_ids": "⿱竹争", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "争" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筞", + "codepoint": "U+7B5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B5E", + "status": "exact_ids", + "ids": "⿱竹宋", + "canonical_ids": "⿱竹宋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "木" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筟", + "codepoint": "U+7B5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B5F", + "status": "exact_ids", + "ids": "⿱竹孚", + "canonical_ids": "⿱竹孚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "爫" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筠", + "codepoint": "U+7B60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B60", + "status": "exact_ids", + "ids": "⿱竹均", + "canonical_ids": "⿱竹均", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土" + ], + "unresolved_leaves": [ + "亇", + "匀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筡", + "codepoint": "U+7B61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B61", + "status": "exact_ids", + "ids": "⿱竹余", + "canonical_ids": "⿱竹余", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筢", + "codepoint": "U+7B62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B62", + "status": "exact_ids", + "ids": "⿱竹把", + "canonical_ids": "⿱竹把", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "扌" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筣", + "codepoint": "U+7B63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B63", + "status": "exact_ids", + "ids": "⿱竹利", + "canonical_ids": "⿱竹利", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "木" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筤", + "codepoint": "U+7B64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B64", + "status": "exact_ids", + "ids": "⿱竹良", + "canonical_ids": "⿱竹良", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "艮" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筥", + "codepoint": "U+7B65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B65", + "status": "exact_ids", + "ids": "⿱竹呂", + "canonical_ids": "⿱竹呂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "呂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筦", + "codepoint": "U+7B66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B66", + "status": "exact_ids", + "ids": "⿱竹完", + "canonical_ids": "⿱竹完", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "宀" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筧", + "codepoint": "U+7B67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B67", + "status": "exact_ids", + "ids": "⿱竹見", + "canonical_ids": "⿱竹見", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筨", + "codepoint": "U+7B68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B68", + "status": "exact_ids", + "ids": "⿱竹含", + "canonical_ids": "⿱竹含", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口" + ], + "unresolved_leaves": [ + "㇇", + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筩", + "codepoint": "U+7B69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B69", + "status": "exact_ids", + "ids": "⿱竹甬", + "canonical_ids": "⿱竹甬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "龴" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筪", + "codepoint": "U+7B6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B6A", + "status": "exact_ids", + "ids": "⿱竹匣", + "canonical_ids": "⿱竹匣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "匣" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筫", + "codepoint": "U+7B6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B6B", + "status": "exact_ids", + "ids": "⿱竹貝", + "canonical_ids": "⿱竹貝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筬", + "codepoint": "U+7B6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B6C", + "status": "exact_ids", + "ids": "⿱竹成", + "canonical_ids": "⿱竹成", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "成" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筭", + "codepoint": "U+7B6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B6D", + "status": "exact_ids", + "ids": "⿱竹弄", + "canonical_ids": "⿱竹弄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "王" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筮", + "codepoint": "U+7B6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B6E", + "status": "exact_ids", + "ids": "⿱竹巫", + "canonical_ids": "⿱竹巫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "工" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筯", + "codepoint": "U+7B6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B6F", + "status": "exact_ids", + "ids": "⿱竹助", + "canonical_ids": "⿱竹助", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "力" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筰", + "codepoint": "U+7B70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B70", + "status": "exact_ids", + "ids": "⿱竹作", + "canonical_ids": "⿱竹作", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "亻" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筱", + "codepoint": "U+7B71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B71", + "status": "exact_ids", + "ids": "⿱竹攸", + "canonical_ids": "⿱竹攸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "攸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筲", + "codepoint": "U+7B72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B72", + "status": "exact_ids", + "ids": "⿱竹肖", + "canonical_ids": "⿱竹肖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筳", + "codepoint": "U+7B73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B73", + "status": "exact_ids", + "ids": "⿱竹廷", + "canonical_ids": "⿱竹廷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "廴" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筴", + "codepoint": "U+7B74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B74", + "status": "exact_ids", + "ids": "⿱竹夾", + "canonical_ids": "⿱竹夾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筵", + "codepoint": "U+7B75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B75", + "status": "exact_ids", + "ids": "⿱竹延", + "canonical_ids": "⿱竹延", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廴", + "止" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筶", + "codepoint": "U+7B76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B76", + "status": "exact_ids", + "ids": "⿱竹告", + "canonical_ids": "⿱竹告", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筷", + "codepoint": "U+7B77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B77", + "status": "exact_ids", + "ids": "⿱竹快", + "canonical_ids": "⿱竹快", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "大", + "忄" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筸", + "codepoint": "U+7B78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B78", + "status": "exact_ids", + "ids": "⿱竹旱", + "canonical_ids": "⿱竹旱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "日" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筹", + "codepoint": "U+7B79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B79", + "status": "exact_ids", + "ids": "⿱竹寿", + "canonical_ids": "⿱竹寿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "寸" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筺", + "codepoint": "U+7B7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B7A", + "status": "exact_ids", + "ids": "⿱竹匤", + "canonical_ids": "⿱竹匤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "匤" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筻", + "codepoint": "U+7B7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B7B", + "status": "exact_ids", + "ids": "⿱竹更", + "canonical_ids": "⿱竹更", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "更" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筼", + "codepoint": "U+7B7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B7C", + "status": "exact_ids", + "ids": "⿱竹员", + "canonical_ids": "⿱竹员", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筽", + "codepoint": "U+7B7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B7D", + "status": "exact_ids", + "ids": "⿱竹吴", + "canonical_ids": "⿱竹吴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "大" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "签", + "codepoint": "U+7B7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B7E", + "status": "exact_ids", + "ids": "⿱竹佥", + "canonical_ids": "⿱竹佥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "佥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "筿", + "codepoint": "U+7B7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B7F", + "status": "exact_ids", + "ids": "⿱竹条", + "canonical_ids": "⿱竹条", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夂", + "木" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "简", + "codepoint": "U+7B80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B80", + "status": "exact_ids", + "ids": "⿱竹间", + "canonical_ids": "⿱竹间", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "间" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箁", + "codepoint": "U+7B81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B81", + "status": "exact_ids", + "ids": "⿱竹咅", + "canonical_ids": "⿱竹咅", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "立" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箂", + "codepoint": "U+7B82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B82", + "status": "exact_ids", + "ids": "⿱竹來", + "canonical_ids": "⿱竹來", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "木" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箃", + "codepoint": "U+7B83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B83", + "status": "exact_ids", + "ids": "⿱竹取", + "canonical_ids": "⿱竹取", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "耳" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箄", + "codepoint": "U+7B84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B84", + "status": "exact_ids", + "ids": "⿱竹卑", + "canonical_ids": "⿱竹卑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箅", + "codepoint": "U+7B85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B85", + "status": "exact_ids", + "ids": "⿱竹畀", + "canonical_ids": "⿱竹畀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "田" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箆", + "codepoint": "U+7B86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B86", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箇", + "codepoint": "U+7B87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B87", + "status": "exact_ids", + "ids": "⿱竹固", + "canonical_ids": "⿱竹固", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "固" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箈", + "codepoint": "U+7B88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B88", + "status": "exact_ids", + "ids": "⿱竹治", + "canonical_ids": "⿱竹治", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "氵" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箉", + "codepoint": "U+7B89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B89", + "status": "exact_ids", + "ids": "⿱竹拐", + "canonical_ids": "⿱竹拐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "扌" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箊", + "codepoint": "U+7B8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B8A", + "status": "exact_ids", + "ids": "⿱竹於", + "canonical_ids": "⿱竹於", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冫", + "方" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箋", + "codepoint": "U+7B8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B8B", + "status": "exact_ids", + "ids": "⿱竹戔", + "canonical_ids": "⿱竹戔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箌", + "codepoint": "U+7B8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B8C", + "status": "exact_ids", + "ids": "⿱竹到", + "canonical_ids": "⿱竹到", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "厶", + "土" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箍", + "codepoint": "U+7B8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B8D", + "status": "exact_ids", + "ids": "⿱竹㧜", + "canonical_ids": "⿱竹㧜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "亇", + "匝" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箎", + "codepoint": "U+7B8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B8E", + "status": "exact_ids", + "ids": "⿱竹虎", + "canonical_ids": "⿱竹虎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "虍" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箏", + "codepoint": "U+7B8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B8F", + "status": "exact_ids", + "ids": "⿱竹爭", + "canonical_ids": "⿱竹爭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爫", + "肀" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箐", + "codepoint": "U+7B90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B90", + "status": "exact_ids", + "ids": "⿱竹青", + "canonical_ids": "⿱竹青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "亇", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箑", + "codepoint": "U+7B91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B91", + "status": "exact_ids", + "ids": "⿱竹疌", + "canonical_ids": "⿱竹疌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "疌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箒", + "codepoint": "U+7B92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B92", + "status": "exact_ids", + "ids": "⿱竹帚", + "canonical_ids": "⿱竹帚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "彐" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箓", + "codepoint": "U+7B93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B93", + "status": "exact_ids", + "ids": "⿱竹录", + "canonical_ids": "⿱竹录", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "氺" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箔", + "codepoint": "U+7B94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B94", + "status": "exact_ids", + "ids": "⿱竹泊", + "canonical_ids": "⿱竹泊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "氵" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箕", + "codepoint": "U+7B95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B95", + "status": "exact_ids", + "ids": "⿱竹其", + "canonical_ids": "⿱竹其", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箖", + "codepoint": "U+7B96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B96", + "status": "exact_ids", + "ids": "⿱竹林", + "canonical_ids": "⿱竹林", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "算", + "codepoint": "U+7B97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B97", + "status": "exact_ids", + "ids": "⿱竹𥃲", + "canonical_ids": "⿱竹𥃲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "𥃲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箘", + "codepoint": "U+7B98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B98", + "status": "exact_ids", + "ids": "⿱竹囷", + "canonical_ids": "⿱竹囷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "囷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箙", + "codepoint": "U+7B99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B99", + "status": "exact_ids", + "ids": "⿱竹服", + "canonical_ids": "⿱竹服", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "又", + "月" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箚", + "codepoint": "U+7B9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B9A", + "status": "exact_ids", + "ids": "⿱竹㓣", + "canonical_ids": "⿱竹㓣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "口" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箛", + "codepoint": "U+7B9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B9B", + "status": "exact_ids", + "ids": "⿱竹孤", + "canonical_ids": "⿱竹孤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "瓜" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箜", + "codepoint": "U+7B9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B9C", + "status": "exact_ids", + "ids": "⿱竹空", + "canonical_ids": "⿱竹空", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "工" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箝", + "codepoint": "U+7B9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B9D", + "status": "exact_ids", + "ids": "⿱竹拑", + "canonical_ids": "⿱竹拑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "甘" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箞", + "codepoint": "U+7B9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B9E", + "status": "exact_ids", + "ids": "⿱竹卷", + "canonical_ids": "⿱竹卷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "龹" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箟", + "codepoint": "U+7B9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7B9F", + "status": "exact_ids", + "ids": "⿱竹昆", + "canonical_ids": "⿱竹昆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箠", + "codepoint": "U+7BA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BA0", + "status": "exact_ids", + "ids": "⿱竹垂", + "canonical_ids": "⿱竹垂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "垂" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "管", + "codepoint": "U+7BA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BA1", + "status": "exact_ids", + "ids": "⿱竹官", + "canonical_ids": "⿱竹官", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "宀" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箢", + "codepoint": "U+7BA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BA2", + "status": "exact_ids", + "ids": "⿱竹宛", + "canonical_ids": "⿱竹宛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箣", + "codepoint": "U+7BA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BA3", + "status": "exact_ids", + "ids": "⿱竹刺", + "canonical_ids": "⿱竹刺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "刂", + "木" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箤", + "codepoint": "U+7BA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BA4", + "status": "exact_ids", + "ids": "⿱竹卒", + "canonical_ids": "⿱竹卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箥", + "codepoint": "U+7BA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BA5", + "status": "exact_ids", + "ids": "⿱竹波", + "canonical_ids": "⿱竹波", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "皮" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箦", + "codepoint": "U+7BA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BA6", + "status": "exact_ids", + "ids": "⿱竹责", + "canonical_ids": "⿱竹责", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [ + "亇", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箧", + "codepoint": "U+7BA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BA7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箨", + "codepoint": "U+7BA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BA8", + "status": "exact_ids", + "ids": "⿱竹择", + "canonical_ids": "⿱竹择", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "又", + "扌" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箩", + "codepoint": "U+7BA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BA9", + "status": "exact_ids", + "ids": "⿱竹罗", + "canonical_ids": "⿱竹罗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "罒" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箪", + "codepoint": "U+7BAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BAA", + "status": "exact_ids", + "ids": "⿱竹単", + "canonical_ids": "⿱竹単", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "単" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箫", + "codepoint": "U+7BAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BAB", + "status": "exact_ids", + "ids": "⿱竹肃", + "canonical_ids": "⿱竹肃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "肃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箬", + "codepoint": "U+7BAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BAC", + "status": "exact_ids", + "ids": "⿱竹若", + "canonical_ids": "⿱竹若", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "艹" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箭", + "codepoint": "U+7BAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BAD", + "status": "exact_ids", + "ids": "⿱竹前", + "canonical_ids": "⿱竹前", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "月", + "止" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箮", + "codepoint": "U+7BAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BAE", + "status": "exact_ids", + "ids": "⿱竹宣", + "canonical_ids": "⿱竹宣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀" + ], + "unresolved_leaves": [ + "亇", + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箯", + "codepoint": "U+7BAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BAF", + "status": "exact_ids", + "ids": "⿱竹便", + "canonical_ids": "⿱竹便", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "更" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箰", + "codepoint": "U+7BB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BB0", + "status": "exact_ids", + "ids": "⿱筍子", + "canonical_ids": "⿱筍子", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子" + ], + "unresolved_leaves": [ + "亇", + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箱", + "codepoint": "U+7BB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BB1", + "status": "exact_ids", + "ids": "⿱竹相", + "canonical_ids": "⿱竹相", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "目" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箲", + "codepoint": "U+7BB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BB2", + "status": "exact_ids", + "ids": "⿱竹洗", + "canonical_ids": "⿱竹洗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "氵", + "牛" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箳", + "codepoint": "U+7BB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BB3", + "status": "exact_ids", + "ids": "⿱竹屏", + "canonical_ids": "⿱竹屏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "尸", + "廾" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箴", + "codepoint": "U+7BB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BB4", + "status": "exact_ids", + "ids": "⿱竹咸", + "canonical_ids": "⿱竹咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箵", + "codepoint": "U+7BB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BB5", + "status": "exact_ids", + "ids": "⿱竹省", + "canonical_ids": "⿱竹省", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "目" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箶", + "codepoint": "U+7BB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BB6", + "status": "exact_ids", + "ids": "⿱竹胡", + "canonical_ids": "⿱竹胡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "月" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箷", + "codepoint": "U+7BB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BB7", + "status": "exact_ids", + "ids": "⿱竹施", + "canonical_ids": "⿱竹施", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "人", + "方" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箸", + "codepoint": "U+7BB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BB8", + "status": "exact_ids", + "ids": "⿱竹者", + "canonical_ids": "⿱竹者", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箹", + "codepoint": "U+7BB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BB9", + "status": "exact_ids", + "ids": "⿱竹約", + "canonical_ids": "⿱竹約", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "亇", + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箺", + "codepoint": "U+7BBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BBA", + "status": "exact_ids", + "ids": "⿱竹春", + "canonical_ids": "⿱竹春", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "𡗗" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箻", + "codepoint": "U+7BBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BBB", + "status": "exact_ids", + "ids": "⿱竹律", + "canonical_ids": "⿱竹律", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳" + ], + "unresolved_leaves": [ + "亇", + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箼", + "codepoint": "U+7BBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BBC", + "status": "exact_ids", + "ids": "⿱竹屋", + "canonical_ids": "⿱竹屋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "尸" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箽", + "codepoint": "U+7BBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BBD", + "status": "exact_ids", + "ids": "⿱竹重", + "canonical_ids": "⿱竹重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十" + ], + "unresolved_leaves": [ + "亇", + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箾", + "codepoint": "U+7BBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BBE", + "status": "exact_ids", + "ids": "⿱竹削", + "canonical_ids": "⿱竹削", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "小", + "月" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "箿", + "codepoint": "U+7BBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BBF", + "status": "exact_ids", + "ids": "⿱竹咠", + "canonical_ids": "⿱竹咠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "耳" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "節", + "codepoint": "U+7BC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BC0", + "status": "exact_ids", + "ids": "⿱竹即", + "canonical_ids": "⿱竹即", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "艮" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篁", + "codepoint": "U+7BC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BC1", + "status": "exact_ids", + "ids": "⿱竹皇", + "canonical_ids": "⿱竹皇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "王" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篂", + "codepoint": "U+7BC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BC2", + "status": "exact_ids", + "ids": "⿱竹星", + "canonical_ids": "⿱竹星", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "牛" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篃", + "codepoint": "U+7BC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BC3", + "status": "exact_ids", + "ids": "⿱竹眉", + "canonical_ids": "⿱竹眉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "尸", + "目" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "範", + "codepoint": "U+7BC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BC4", + "status": "exact_ids", + "ids": "⿱竹𨊠", + "canonical_ids": "⿱竹𨊠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "車" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篅", + "codepoint": "U+7BC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BC5", + "status": "exact_ids", + "ids": "⿱竹耑", + "canonical_ids": "⿱竹耑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "而" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篆", + "codepoint": "U+7BC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BC6", + "status": "exact_ids", + "ids": "⿱竹彖", + "canonical_ids": "⿱竹彖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "𧰨" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篇", + "codepoint": "U+7BC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BC7", + "status": "exact_ids", + "ids": "⿱竹扁", + "canonical_ids": "⿱竹扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸" + ], + "unresolved_leaves": [ + "亇", + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篈", + "codepoint": "U+7BC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BC8", + "status": "exact_ids", + "ids": "⿱竹封", + "canonical_ids": "⿱竹封", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "築", + "codepoint": "U+7BC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BC9", + "status": "exact_ids", + "ids": "⿱筑木", + "canonical_ids": "⿱筑木", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "木" + ], + "unresolved_leaves": [ + "亇", + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篊", + "codepoint": "U+7BCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BCA", + "status": "exact_ids", + "ids": "⿱竹洪", + "canonical_ids": "⿱竹洪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "氵" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篋", + "codepoint": "U+7BCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BCB", + "status": "exact_ids", + "ids": "⿱竹匧", + "canonical_ids": "⿱竹匧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "匧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篌", + "codepoint": "U+7BCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BCC", + "status": "exact_ids", + "ids": "⿱竹侯", + "canonical_ids": "⿱竹侯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "侯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篍", + "codepoint": "U+7BCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BCD", + "status": "exact_ids", + "ids": "⿱竹秋", + "canonical_ids": "⿱竹秋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "火" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篎", + "codepoint": "U+7BCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BCE", + "status": "exact_ids", + "ids": "⿱竹眇", + "canonical_ids": "⿱竹眇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "目" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篏", + "codepoint": "U+7BCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BCF", + "status": "exact_ids", + "ids": "⿱竹𣢟", + "canonical_ids": "⿱竹𣢟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "甘" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篐", + "codepoint": "U+7BD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BD0", + "status": "exact_ids", + "ids": "⿱竹𣐝", + "canonical_ids": "⿱竹𣐝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "亇", + "匝" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篑", + "codepoint": "U+7BD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BD1", + "status": "exact_ids", + "ids": "⿱竹贵", + "canonical_ids": "⿱竹贵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "人", + "冂", + "口" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篒", + "codepoint": "U+7BD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BD2", + "status": "exact_ids", + "ids": "⿱竹食", + "canonical_ids": "⿱竹食", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篓", + "codepoint": "U+7BD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BD3", + "status": "exact_ids", + "ids": "⿱竹娄", + "canonical_ids": "⿱竹娄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "女", + "木" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篔", + "codepoint": "U+7BD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BD4", + "status": "exact_ids", + "ids": "⿱竹員", + "canonical_ids": "⿱竹員", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "目" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篕", + "codepoint": "U+7BD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BD5", + "status": "exact_ids", + "ids": "⿱竹盍", + "canonical_ids": "⿱竹盍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "皿" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篖", + "codepoint": "U+7BD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BD6", + "status": "exact_ids", + "ids": "⿱竹唐", + "canonical_ids": "⿱竹唐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篗", + "codepoint": "U+7BD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BD7", + "status": "exact_ids", + "ids": "⿱竹隻", + "canonical_ids": "⿱竹隻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "隹" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篘", + "codepoint": "U+7BD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BD8", + "status": "exact_ids", + "ids": "⿱竹芻", + "canonical_ids": "⿱竹芻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "芻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篙", + "codepoint": "U+7BD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BD9", + "status": "exact_ids", + "ids": "⿱竹高", + "canonical_ids": "⿱竹高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篚", + "codepoint": "U+7BDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BDA", + "status": "exact_ids", + "ids": "⿱竹匪", + "canonical_ids": "⿱竹匪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "匪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篛", + "codepoint": "U+7BDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BDB", + "status": "exact_ids", + "ids": "⿱竹弱", + "canonical_ids": "⿱竹弱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "弓" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篜", + "codepoint": "U+7BDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BDC", + "status": "exact_ids", + "ids": "⿱竹烝", + "canonical_ids": "⿱竹烝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乛", + "水", + "灬" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篝", + "codepoint": "U+7BDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BDD", + "status": "exact_ids", + "ids": "⿱竹冓", + "canonical_ids": "⿱竹冓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "井", + "冂", + "土" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篞", + "codepoint": "U+7BDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BDE", + "status": "exact_ids", + "ids": "⿱竹涅", + "canonical_ids": "⿱竹涅", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "日", + "氵" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篟", + "codepoint": "U+7BDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BDF", + "status": "exact_ids", + "ids": "⿱竹倩", + "canonical_ids": "⿱竹倩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻" + ], + "unresolved_leaves": [ + "亇", + "円", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篠", + "codepoint": "U+7BE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BE0", + "status": "exact_ids", + "ids": "⿱竹條", + "canonical_ids": "⿱竹條", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "條" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篡", + "codepoint": "U+7BE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BE1", + "status": "exact_ids", + "ids": "⿱算厶", + "canonical_ids": "⿱算厶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶" + ], + "unresolved_leaves": [ + "亇", + "𥃲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篢", + "codepoint": "U+7BE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BE2", + "status": "exact_ids", + "ids": "⿱竹貢", + "canonical_ids": "⿱竹貢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "工", + "目" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篣", + "codepoint": "U+7BE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BE3", + "status": "exact_ids", + "ids": "⿱竹旁", + "canonical_ids": "⿱竹旁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "方" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篤", + "codepoint": "U+7BE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BE4", + "status": "exact_ids", + "ids": "⿱竹馬", + "canonical_ids": "⿱竹馬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篥", + "codepoint": "U+7BE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BE5", + "status": "exact_ids", + "ids": "⿱竹栗", + "canonical_ids": "⿱竹栗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "覀" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篦", + "codepoint": "U+7BE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BE6", + "status": "exact_ids", + "ids": "⿱竹𣬉", + "canonical_ids": "⿱竹𣬉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕" + ], + "unresolved_leaves": [ + "亇", + "囟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篧", + "codepoint": "U+7BE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BE7", + "status": "exact_ids", + "ids": "⿱竹隺", + "canonical_ids": "⿱竹隺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "隹" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篨", + "codepoint": "U+7BE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BE8", + "status": "exact_ids", + "ids": "⿱竹除", + "canonical_ids": "⿱竹除", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "阝" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篩", + "codepoint": "U+7BE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BE9", + "status": "exact_ids", + "ids": "⿱竹師", + "canonical_ids": "⿱竹師", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "師" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篪", + "codepoint": "U+7BEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BEA", + "status": "exact_ids", + "ids": "⿱竹虒", + "canonical_ids": "⿱竹虒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "虒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篫", + "codepoint": "U+7BEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BEB", + "status": "exact_ids", + "ids": "⿱筑手", + "canonical_ids": "⿱筑手", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "手" + ], + "unresolved_leaves": [ + "亇", + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篬", + "codepoint": "U+7BEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BEC", + "status": "exact_ids", + "ids": "⿱竹倉", + "canonical_ids": "⿱竹倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篭", + "codepoint": "U+7BED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BED", + "status": "exact_ids", + "ids": "⿱竹竜", + "canonical_ids": "⿱竹竜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立" + ], + "unresolved_leaves": [ + "亇", + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篮", + "codepoint": "U+7BEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BEE", + "status": "exact_ids", + "ids": "⿱竹监", + "canonical_ids": "⿱竹监", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "监" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篯", + "codepoint": "U+7BEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BEF", + "status": "exact_ids", + "ids": "⿱竹钱", + "canonical_ids": "⿱竹钱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "钅" + ], + "unresolved_leaves": [ + "亇", + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篰", + "codepoint": "U+7BF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BF0", + "status": "exact_ids", + "ids": "⿱竹部", + "canonical_ids": "⿱竹部", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "立", + "阝" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篱", + "codepoint": "U+7BF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BF1", + "status": "exact_ids", + "ids": "⿱竹离", + "canonical_ids": "⿱竹离", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "禸" + ], + "unresolved_leaves": [ + "亇", + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篲", + "codepoint": "U+7BF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BF2", + "status": "exact_ids", + "ids": "⿱竹彗", + "canonical_ids": "⿱竹彗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "彐" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篳", + "codepoint": "U+7BF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BF3", + "status": "exact_ids", + "ids": "⿱竹畢", + "canonical_ids": "⿱竹畢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "畢" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篴", + "codepoint": "U+7BF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BF4", + "status": "exact_ids", + "ids": "⿱竹逐", + "canonical_ids": "⿱竹逐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豕", + "辶" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篵", + "codepoint": "U+7BF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BF5", + "status": "exact_ids", + "ids": "⿱竹從", + "canonical_ids": "⿱竹從", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "從" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篶", + "codepoint": "U+7BF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BF6", + "status": "exact_ids", + "ids": "⿱竹焉", + "canonical_ids": "⿱竹焉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乙", + "卜", + "止", + "灬" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篷", + "codepoint": "U+7BF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BF7", + "status": "exact_ids", + "ids": "⿱竹逢", + "canonical_ids": "⿱竹逢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "辶" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篸", + "codepoint": "U+7BF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BF8", + "status": "exact_ids", + "ids": "⿱竹參", + "canonical_ids": "⿱竹參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篹", + "codepoint": "U+7BF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BF9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篺", + "codepoint": "U+7BFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BFA", + "status": "exact_ids", + "ids": "⿱竹捭", + "canonical_ids": "⿱竹捭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "扌" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篻", + "codepoint": "U+7BFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BFB", + "status": "exact_ids", + "ids": "⿱竹票", + "canonical_ids": "⿱竹票", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "覀" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篼", + "codepoint": "U+7BFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BFC", + "status": "exact_ids", + "ids": "⿱竹兜", + "canonical_ids": "⿱竹兜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "兜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篽", + "codepoint": "U+7BFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BFD", + "status": "exact_ids", + "ids": "⿱竹御", + "canonical_ids": "⿱竹御", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "彳", + "𦈢" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篾", + "codepoint": "U+7BFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BFE", + "status": "exact_ids", + "ids": "⿱𥬥戍", + "canonical_ids": "⿱𥬥戍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目" + ], + "unresolved_leaves": [ + "亇", + "戍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "篿", + "codepoint": "U+7BFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7BFF", + "status": "exact_ids", + "ids": "⿱竹專", + "canonical_ids": "⿱竹專", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "寸" + ], + "unresolved_leaves": [ + "亇", + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簀", + "codepoint": "U+7C00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C00", + "status": "exact_ids", + "ids": "⿱竹責", + "canonical_ids": "⿱竹責", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "亇", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簁", + "codepoint": "U+7C01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C01", + "status": "exact_ids", + "ids": "⿱竹徙", + "canonical_ids": "⿱竹徙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "止" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簂", + "codepoint": "U+7C02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C02", + "status": "exact_ids", + "ids": "⿱竹國", + "canonical_ids": "⿱竹國", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "國" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簃", + "codepoint": "U+7C03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C03", + "status": "exact_ids", + "ids": "⿱竹移", + "canonical_ids": "⿱竹移", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "夕", + "木" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簄", + "codepoint": "U+7C04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C04", + "status": "exact_ids", + "ids": "⿱竹扈", + "canonical_ids": "⿱竹扈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "尸", + "巴" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簅", + "codepoint": "U+7C05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C05", + "status": "exact_ids", + "ids": "⿱竹產", + "canonical_ids": "⿱竹產", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "八", + "厂", + "牛" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簆", + "codepoint": "U+7C06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C06", + "status": "exact_ids", + "ids": "⿱竹寇", + "canonical_ids": "⿱竹寇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "寇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簇", + "codepoint": "U+7C07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C07", + "status": "exact_ids", + "ids": "⿱竹族", + "canonical_ids": "⿱竹族", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "族" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簈", + "codepoint": "U+7C08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C08", + "status": "exact_ids", + "ids": "⿱竹屛", + "canonical_ids": "⿱竹屛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸" + ], + "unresolved_leaves": [ + "亇", + "幷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簉", + "codepoint": "U+7C09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C09", + "status": "exact_ids", + "ids": "⿱竹造", + "canonical_ids": "⿱竹造", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛", + "辶" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簊", + "codepoint": "U+7C0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C0A", + "status": "exact_ids", + "ids": "⿱竹基", + "canonical_ids": "⿱竹基", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "土" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簋", + "codepoint": "U+7C0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C0B", + "status": "exact_ids", + "ids": "⿱筤皿", + "canonical_ids": "⿱筤皿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "皿", + "艮" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簌", + "codepoint": "U+7C0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C0C", + "status": "exact_ids", + "ids": "⿱竹欶", + "canonical_ids": "⿱竹欶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "欠" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簍", + "codepoint": "U+7C0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C0D", + "status": "exact_ids", + "ids": "⿱竹婁", + "canonical_ids": "⿱竹婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簎", + "codepoint": "U+7C0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C0E", + "status": "exact_ids", + "ids": "⿱竹措", + "canonical_ids": "⿱竹措", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "日" + ], + "unresolved_leaves": [ + "亇", + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簏", + "codepoint": "U+7C0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C0F", + "status": "exact_ids", + "ids": "⿱竹鹿", + "canonical_ids": "⿱竹鹿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鹿" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簐", + "codepoint": "U+7C10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C10", + "status": "exact_ids", + "ids": "⿱竹軟", + "canonical_ids": "⿱竹軟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "車" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簑", + "codepoint": "U+7C11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C11", + "status": "exact_ids", + "ids": "⿱竹衰", + "canonical_ids": "⿱竹衰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "衰" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簒", + "codepoint": "U+7C12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C12", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簓", + "codepoint": "U+7C13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C13", + "status": "exact_ids", + "ids": "⿱竹彫", + "canonical_ids": "⿱竹彫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡" + ], + "unresolved_leaves": [ + "亇", + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簔", + "codepoint": "U+7C14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C14", + "status": "exact_ids", + "ids": "⿱竹衰", + "canonical_ids": "⿱竹衰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "衰" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簕", + "codepoint": "U+7C15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C15", + "status": "exact_ids", + "ids": "⿱竹勒", + "canonical_ids": "⿱竹勒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "革" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簖", + "codepoint": "U+7C16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C16", + "status": "exact_ids", + "ids": "⿱竹断", + "canonical_ids": "⿱竹断", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "断" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簗", + "codepoint": "U+7C17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C17", + "status": "exact_ids", + "ids": "⿱竹梁", + "canonical_ids": "⿱竹梁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "梁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簘", + "codepoint": "U+7C18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C18", + "status": "exact_ids", + "ids": "⿱竹粛", + "canonical_ids": "⿱竹粛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "粛" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簙", + "codepoint": "U+7C19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C19", + "status": "exact_ids", + "ids": "⿱竹博", + "canonical_ids": "⿱竹博", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "寸", + "甫" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簚", + "codepoint": "U+7C1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C1A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簛", + "codepoint": "U+7C1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C1B", + "status": "exact_ids", + "ids": "⿱竹斯", + "canonical_ids": "⿱竹斯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "斤" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簜", + "codepoint": "U+7C1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C1C", + "status": "exact_ids", + "ids": "⿱竹湯", + "canonical_ids": "⿱竹湯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "氵" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簝", + "codepoint": "U+7C1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C1D", + "status": "exact_ids", + "ids": "⿱竹尞", + "canonical_ids": "⿱竹尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小" + ], + "unresolved_leaves": [ + "亇", + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簞", + "codepoint": "U+7C1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C1E", + "status": "exact_ids", + "ids": "⿱竹單", + "canonical_ids": "⿱竹單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簟", + "codepoint": "U+7C1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C1F", + "status": "exact_ids", + "ids": "⿱竹覃", + "canonical_ids": "⿱竹覃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "襾" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簠", + "codepoint": "U+7C20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C20", + "status": "exact_ids", + "ids": "⿱竹盙", + "canonical_ids": "⿱竹盙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甫", + "皿" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簡", + "codepoint": "U+7C21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C21", + "status": "exact_ids", + "ids": "⿱竹間", + "canonical_ids": "⿱竹間", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "間" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簢", + "codepoint": "U+7C22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C22", + "status": "exact_ids", + "ids": "⿱竹閔", + "canonical_ids": "⿱竹閔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "閔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簣", + "codepoint": "U+7C23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C23", + "status": "exact_ids", + "ids": "⿱竹貴", + "canonical_ids": "⿱竹貴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "目" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簤", + "codepoint": "U+7C24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C24", + "status": "exact_ids", + "ids": "⿱竹買", + "canonical_ids": "⿱竹買", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "罒" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簥", + "codepoint": "U+7C25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C25", + "status": "exact_ids", + "ids": "⿱竹喬", + "canonical_ids": "⿱竹喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大" + ], + "unresolved_leaves": [ + "亇", + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簦", + "codepoint": "U+7C26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C26", + "status": "exact_ids", + "ids": "⿱竹登", + "canonical_ids": "⿱竹登", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "癶", + "豆" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簧", + "codepoint": "U+7C27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C27", + "status": "exact_ids", + "ids": "⿱竹黄", + "canonical_ids": "⿱竹黄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "黄" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簨", + "codepoint": "U+7C28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C28", + "status": "exact_ids", + "ids": "⿱竹巽", + "canonical_ids": "⿱竹巽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "廾", + "廿" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簩", + "codepoint": "U+7C29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C29", + "status": "exact_ids", + "ids": "⿱竹勞", + "canonical_ids": "⿱竹勞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "火" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簪", + "codepoint": "U+7C2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C2A", + "status": "exact_ids", + "ids": "⿱竹朁", + "canonical_ids": "⿱竹朁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "旡", + "曰" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簫", + "codepoint": "U+7C2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C2B", + "status": "exact_ids", + "ids": "⿱竹肅", + "canonical_ids": "⿱竹肅", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "肀", + "𣶒" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簬", + "codepoint": "U+7C2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C2C", + "status": "exact_ids", + "ids": "⿱竹路", + "canonical_ids": "⿱竹路", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "龰" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簭", + "codepoint": "U+7C2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C2D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簮", + "codepoint": "U+7C2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C2E", + "status": "exact_ids", + "ids": "⿱竹替", + "canonical_ids": "⿱竹替", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "曰" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簯", + "codepoint": "U+7C2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C2F", + "status": "exact_ids", + "ids": "⿱竹棋", + "canonical_ids": "⿱竹棋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "木" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簰", + "codepoint": "U+7C30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C30", + "status": "exact_ids", + "ids": "⿱竹牌", + "canonical_ids": "⿱竹牌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "片" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簱", + "codepoint": "U+7C31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C31", + "status": "exact_ids", + "ids": "⿱竹𣄃", + "canonical_ids": "⿱竹𣄃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "方" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簲", + "codepoint": "U+7C32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C32", + "status": "exact_ids", + "ids": "⿱竹脾", + "canonical_ids": "⿱竹脾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "月" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簳", + "codepoint": "U+7C33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C33", + "status": "exact_ids", + "ids": "⿱竹幹", + "canonical_ids": "⿱竹幹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "幹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簴", + "codepoint": "U+7C34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C34", + "status": "exact_ids", + "ids": "⿱竹虡", + "canonical_ids": "⿱竹虡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "八", + "虍" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簵", + "codepoint": "U+7C35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C35", + "status": "exact_ids", + "ids": "⿱竹輅", + "canonical_ids": "⿱竹輅", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "車" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簶", + "codepoint": "U+7C36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C36", + "status": "exact_ids", + "ids": "⿱竹禄", + "canonical_ids": "⿱竹禄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "氺", + "礻" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簷", + "codepoint": "U+7C37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C37", + "status": "exact_ids", + "ids": "⿱竹詹", + "canonical_ids": "⿱竹詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簸", + "codepoint": "U+7C38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C38", + "status": "exact_ids", + "ids": "⿱竹𤿺", + "canonical_ids": "⿱竹𤿺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "𤿺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簹", + "codepoint": "U+7C39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C39", + "status": "exact_ids", + "ids": "⿱竹當", + "canonical_ids": "⿱竹當", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "田" + ], + "unresolved_leaves": [ + "亇", + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簺", + "codepoint": "U+7C3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C3A", + "status": "exact_ids", + "ids": "⿱竹塞", + "canonical_ids": "⿱竹塞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "土", + "宀" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簻", + "codepoint": "U+7C3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C3B", + "status": "exact_ids", + "ids": "⿱竹過", + "canonical_ids": "⿱竹過", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "辶" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簼", + "codepoint": "U+7C3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C3C", + "status": "exact_ids", + "ids": "⿱竹搆", + "canonical_ids": "⿱竹搆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "井", + "冂", + "土", + "扌" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簽", + "codepoint": "U+7C3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C3D", + "status": "exact_ids", + "ids": "⿱竹僉", + "canonical_ids": "⿱竹僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簾", + "codepoint": "U+7C3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C3E", + "status": "exact_ids", + "ids": "⿱竹廉", + "canonical_ids": "⿱竹廉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "广" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "簿", + "codepoint": "U+7C3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C3F", + "status": "exact_ids", + "ids": "⿱竹溥", + "canonical_ids": "⿱竹溥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "氵", + "甫" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籀", + "codepoint": "U+7C40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C40", + "status": "exact_ids", + "ids": "⿱竹㨨", + "canonical_ids": "⿱竹㨨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "㨨", + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籁", + "codepoint": "U+7C41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C41", + "status": "exact_ids", + "ids": "⿱竹赖", + "canonical_ids": "⿱竹赖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "木" + ], + "unresolved_leaves": [ + "⺈", + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籂", + "codepoint": "U+7C42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C42", + "status": "exact_ids", + "ids": "⿱竹飾", + "canonical_ids": "⿱竹飾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "亇", + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籃", + "codepoint": "U+7C43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C43", + "status": "exact_ids", + "ids": "⿱竹監", + "canonical_ids": "⿱竹監", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籄", + "codepoint": "U+7C44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C44", + "status": "exact_ids", + "ids": "⿱竹匱", + "canonical_ids": "⿱竹匱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "匱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籅", + "codepoint": "U+7C45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C45", + "status": "exact_ids", + "ids": "⿱竹與", + "canonical_ids": "⿱竹與", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "與" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籆", + "codepoint": "U+7C46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C46", + "status": "exact_ids", + "ids": "⿱竹蒦", + "canonical_ids": "⿱竹蒦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "艹", + "隹" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籇", + "codepoint": "U+7C47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C47", + "status": "exact_ids", + "ids": "⿱竹豪", + "canonical_ids": "⿱竹豪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "豪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籈", + "codepoint": "U+7C48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C48", + "status": "exact_ids", + "ids": "⿱竹甄", + "canonical_ids": "⿱竹甄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "瓦", + "覀" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籉", + "codepoint": "U+7C49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C49", + "status": "exact_ids", + "ids": "⿱竹臺", + "canonical_ids": "⿱竹臺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冖", + "厶", + "口", + "土", + "士" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籊", + "codepoint": "U+7C4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C4A", + "status": "exact_ids", + "ids": "⿱竹翟", + "canonical_ids": "⿱竹翟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "隹" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籋", + "codepoint": "U+7C4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C4B", + "status": "exact_ids", + "ids": "⿱竹爾", + "canonical_ids": "⿱竹爾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爾" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籌", + "codepoint": "U+7C4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C4C", + "status": "exact_ids", + "ids": "⿱竹壽", + "canonical_ids": "⿱竹壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籍", + "codepoint": "U+7C4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C4D", + "status": "exact_ids", + "ids": "⿱竹耤", + "canonical_ids": "⿱竹耤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "亇", + "耒", + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籎", + "codepoint": "U+7C4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C4E", + "status": "exact_ids", + "ids": "⿱竹疑", + "canonical_ids": "⿱竹疑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "疑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籏", + "codepoint": "U+7C4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C4F", + "status": "exact_ids", + "ids": "⿱竹旗", + "canonical_ids": "⿱竹旗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "旗" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籐", + "codepoint": "U+7C50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C50", + "status": "exact_ids", + "ids": "⿱竹滕", + "canonical_ids": "⿱竹滕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "亇", + "𣳾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籑", + "codepoint": "U+7C51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C51", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籒", + "codepoint": "U+7C52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C52", + "status": "exact_ids", + "ids": "⿱竹㩅", + "canonical_ids": "⿱竹㩅", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "㩅", + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籓", + "codepoint": "U+7C53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C53", + "status": "exact_ids", + "ids": "⿱竹潘", + "canonical_ids": "⿱竹潘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "木", + "氵", + "田" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籔", + "codepoint": "U+7C54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C54", + "status": "exact_ids", + "ids": "⿱竹數", + "canonical_ids": "⿱竹數", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵" + ], + "unresolved_leaves": [ + "亇", + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籕", + "codepoint": "U+7C55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C55", + "status": "exact_ids", + "ids": "⿱竹榴", + "canonical_ids": "⿱竹榴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "亇", + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籖", + "codepoint": "U+7C56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C56", + "status": "exact_ids", + "ids": "⿱竹韯", + "canonical_ids": "⿱竹韯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "韯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籗", + "codepoint": "U+7C57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C57", + "status": "exact_ids", + "ids": "⿱竹霍", + "canonical_ids": "⿱竹霍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "隹", + "雨" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籘", + "codepoint": "U+7C58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C58", + "status": "exact_ids", + "ids": "⿱竹縢", + "canonical_ids": "⿱竹縢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "月", + "龹" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籙", + "codepoint": "U+7C59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C59", + "status": "exact_ids", + "ids": "⿱竹録", + "canonical_ids": "⿱竹録", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "氺", + "金" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籚", + "codepoint": "U+7C5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C5A", + "status": "exact_ids", + "ids": "⿱竹盧", + "canonical_ids": "⿱竹盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿" + ], + "unresolved_leaves": [ + "亇", + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籛", + "codepoint": "U+7C5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C5B", + "status": "exact_ids", + "ids": "⿱竹錢", + "canonical_ids": "⿱竹錢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "亇", + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籜", + "codepoint": "U+7C5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C5C", + "status": "exact_ids", + "ids": "⿱竹擇", + "canonical_ids": "⿱竹擇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "扌", + "罒" + ], + "unresolved_leaves": [ + "亇", + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籝", + "codepoint": "U+7C5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C5D", + "status": "exact_ids", + "ids": "⿱竹嬴", + "canonical_ids": "⿱竹嬴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "嬴" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籞", + "codepoint": "U+7C5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C5E", + "status": "exact_ids", + "ids": "⿱竹禦", + "canonical_ids": "⿱竹禦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "卩", + "小", + "彳", + "𦈢" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籟", + "codepoint": "U+7C5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C5F", + "status": "exact_ids", + "ids": "⿱竹賴", + "canonical_ids": "⿱竹賴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "賴" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籠", + "codepoint": "U+7C60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C60", + "status": "exact_ids", + "ids": "⿱竹龍", + "canonical_ids": "⿱竹龍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "龍" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籡", + "codepoint": "U+7C61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C61", + "status": "exact_ids", + "ids": "⿱竹撿", + "canonical_ids": "⿱竹撿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌" + ], + "unresolved_leaves": [ + "亇", + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籢", + "codepoint": "U+7C62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C62", + "status": "exact_ids", + "ids": "⿱竹斂", + "canonical_ids": "⿱竹斂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵" + ], + "unresolved_leaves": [ + "亇", + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籣", + "codepoint": "U+7C63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C63", + "status": "exact_ids", + "ids": "⿱竹闌", + "canonical_ids": "⿱竹闌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籤", + "codepoint": "U+7C64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C64", + "status": "exact_ids", + "ids": "⿱竹韱", + "canonical_ids": "⿱竹韱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "韱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籥", + "codepoint": "U+7C65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C65", + "status": "exact_ids", + "ids": "⿱竹龠", + "canonical_ids": "⿱竹龠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "龠" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籦", + "codepoint": "U+7C66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C66", + "status": "exact_ids", + "ids": "⿱竹鍾", + "canonical_ids": "⿱竹鍾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "金" + ], + "unresolved_leaves": [ + "亇", + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籧", + "codepoint": "U+7C67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C67", + "status": "exact_ids", + "ids": "⿱竹遽", + "canonical_ids": "⿱竹遽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虍", + "豕", + "辶" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籨", + "codepoint": "U+7C68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C68", + "status": "exact_ids", + "ids": "⿱竹歛", + "canonical_ids": "⿱竹歛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠" + ], + "unresolved_leaves": [ + "亇", + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籩", + "codepoint": "U+7C69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C69", + "status": "exact_ids", + "ids": "⿱竹邊", + "canonical_ids": "⿱竹邊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "亇", + "臱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籪", + "codepoint": "U+7C6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C6A", + "status": "exact_ids", + "ids": "⿱竹斷", + "canonical_ids": "⿱竹斷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "斤", + "𠃊" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籫", + "codepoint": "U+7C6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C6B", + "status": "exact_ids", + "ids": "⿱竹贊", + "canonical_ids": "⿱竹贊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "牛", + "目" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籬", + "codepoint": "U+7C6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C6C", + "status": "exact_ids", + "ids": "⿱竹離", + "canonical_ids": "⿱竹離", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "禸", + "隹" + ], + "unresolved_leaves": [ + "亇", + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籭", + "codepoint": "U+7C6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C6D", + "status": "exact_ids", + "ids": "⿱竹麗", + "canonical_ids": "⿱竹麗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鹿" + ], + "unresolved_leaves": [ + "丽", + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籮", + "codepoint": "U+7C6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C6E", + "status": "exact_ids", + "ids": "⿱竹羅", + "canonical_ids": "⿱竹羅", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "罒", + "隹" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籯", + "codepoint": "U+7C6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C6F", + "status": "exact_ids", + "ids": "⿱竹贏", + "canonical_ids": "⿱竹贏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亇", + "贏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籰", + "codepoint": "U+7C70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C70", + "status": "exact_ids", + "ids": "⿱竹矍", + "canonical_ids": "⿱竹矍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "目", + "隹" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籱", + "codepoint": "U+7C71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C71", + "status": "exact_ids", + "ids": "⿱竹靃", + "canonical_ids": "⿱竹靃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "隹", + "雨" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籲", + "codepoint": "U+7C72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C72", + "status": "exact_ids", + "ids": "⿱竹龥", + "canonical_ids": "⿱竹龥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目", + "龠" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "米", + "codepoint": "U+7C73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C73", + "status": "exact_ids", + "ids": "⿻木丷", + "canonical_ids": "⿻木丷", + "expanded_ids": "⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籴", + "codepoint": "U+7C74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C74", + "status": "exact_ids", + "ids": "⿱入米", + "canonical_ids": "⿱入米", + "expanded_ids": "⿱入⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "入", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籵", + "codepoint": "U+7C75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C75", + "status": "exact_ids", + "ids": "⿰米十", + "canonical_ids": "⿰米十", + "expanded_ids": "⿰⿻木丷十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "十", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籶", + "codepoint": "U+7C76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C76", + "status": "exact_ids", + "ids": "⿰米几", + "canonical_ids": "⿰米几", + "expanded_ids": "⿰⿻木丷几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "几", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籷", + "codepoint": "U+7C77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C77", + "status": "exact_ids", + "ids": "⿰米乇", + "canonical_ids": "⿰米乇", + "expanded_ids": "⿰⿻木丷⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丷", + "丿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籸", + "codepoint": "U+7C78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C78", + "status": "exact_ids", + "ids": "⿰米卂", + "canonical_ids": "⿰米卂", + "expanded_ids": "⿰⿻木丷⿱乁十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "乁", + "十", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籹", + "codepoint": "U+7C79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C79", + "status": "exact_ids", + "ids": "⿰米女", + "canonical_ids": "⿰米女", + "expanded_ids": "⿰⿻木丷女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "女", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籺", + "codepoint": "U+7C7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C7A", + "status": "exact_ids", + "ids": "⿰米乞", + "canonical_ids": "⿰米乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "类", + "codepoint": "U+7C7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C7B", + "status": "exact_ids", + "ids": "⿱米大", + "canonical_ids": "⿱米大", + "expanded_ids": "⿱⿻木丷大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籼", + "codepoint": "U+7C7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C7C", + "status": "exact_ids", + "ids": "⿰米山", + "canonical_ids": "⿰米山", + "expanded_ids": "⿰⿻木丷山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "山", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籽", + "codepoint": "U+7C7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C7D", + "status": "exact_ids", + "ids": "⿰米子", + "canonical_ids": "⿰米子", + "expanded_ids": "⿰⿻木丷子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "子", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籾", + "codepoint": "U+7C7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C7E", + "status": "exact_ids", + "ids": "⿰米刃", + "canonical_ids": "⿰米刃", + "expanded_ids": "⿰⿻木丷⿻刀丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丷", + "刀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "籿", + "codepoint": "U+7C7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C7F", + "status": "exact_ids", + "ids": "⿰米寸", + "canonical_ids": "⿰米寸", + "expanded_ids": "⿰⿻木丷寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "寸", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粀", + "codepoint": "U+7C80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C80", + "status": "exact_ids", + "ids": "⿰米丈", + "canonical_ids": "⿰米丈", + "expanded_ids": "⿰⿻木丷丈", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丈", + "丷", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粁", + "codepoint": "U+7C81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C81", + "status": "exact_ids", + "ids": "⿰米千", + "canonical_ids": "⿰米千", + "expanded_ids": "⿰⿻木丷⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "十", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粂", + "codepoint": "U+7C82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C82", + "status": "exact_ids", + "ids": "⿱久米", + "canonical_ids": "⿱久米", + "expanded_ids": "⿱久⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "久", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粃", + "codepoint": "U+7C83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C83", + "status": "exact_ids", + "ids": "⿰米比", + "canonical_ids": "⿰米比", + "expanded_ids": "⿰⿻木丷⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "匕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粄", + "codepoint": "U+7C84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C84", + "status": "exact_ids", + "ids": "⿰米反", + "canonical_ids": "⿰米反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粅", + "codepoint": "U+7C85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C85", + "status": "exact_ids", + "ids": "⿰米勿", + "canonical_ids": "⿰米勿", + "expanded_ids": "⿰⿻木丷勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "勿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粆", + "codepoint": "U+7C86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C86", + "status": "exact_ids", + "ids": "⿰米少", + "canonical_ids": "⿰米少", + "expanded_ids": "⿰⿻木丷⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "小", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粇", + "codepoint": "U+7C87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C87", + "status": "exact_ids", + "ids": "⿰米亢", + "canonical_ids": "⿰米亢", + "expanded_ids": "⿰⿻木丷⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亠", + "几", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粈", + "codepoint": "U+7C88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C88", + "status": "exact_ids", + "ids": "⿰米丑", + "canonical_ids": "⿰米丑", + "expanded_ids": "⿰⿻木丷丑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑", + "丷", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粉", + "codepoint": "U+7C89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C89", + "status": "exact_ids", + "ids": "⿰米分", + "canonical_ids": "⿰米分", + "expanded_ids": "⿰⿻木丷⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "八", + "刀", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粊", + "codepoint": "U+7C8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C8A", + "status": "exact_ids", + "ids": "⿱比米", + "canonical_ids": "⿱比米", + "expanded_ids": "⿱⿰匕匕⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "匕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粋", + "codepoint": "U+7C8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C8B", + "status": "exact_ids", + "ids": "⿰米卆", + "canonical_ids": "⿰米卆", + "expanded_ids": "⿰⿻木丷⿱九十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "九", + "十", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粌", + "codepoint": "U+7C8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C8C", + "status": "exact_ids", + "ids": "⿰米引", + "canonical_ids": "⿰米引", + "expanded_ids": "⿰⿻木丷⿰弓丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "弓", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粍", + "codepoint": "U+7C8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C8D", + "status": "exact_ids", + "ids": "⿰米毛", + "canonical_ids": "⿰米毛", + "expanded_ids": "⿰⿻木丷毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粎", + "codepoint": "U+7C8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C8E", + "status": "exact_ids", + "ids": "⿰米尺", + "canonical_ids": "⿰米尺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "尸", + "木" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粏", + "codepoint": "U+7C8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C8F", + "status": "exact_ids", + "ids": "⿰米太", + "canonical_ids": "⿰米太", + "expanded_ids": "⿰⿻木丷⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丷", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粐", + "codepoint": "U+7C90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C90", + "status": "exact_ids", + "ids": "⿰米戸", + "canonical_ids": "⿰米戸", + "expanded_ids": "⿰⿻木丷⿻一尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "尸", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粑", + "codepoint": "U+7C91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C91", + "status": "exact_ids", + "ids": "⿰米巴", + "canonical_ids": "⿰米巴", + "expanded_ids": "⿰⿻木丷巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "巴", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粒", + "codepoint": "U+7C92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C92", + "status": "exact_ids", + "ids": "⿰米立", + "canonical_ids": "⿰米立", + "expanded_ids": "⿰⿻木丷立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粓", + "codepoint": "U+7C93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C93", + "status": "exact_ids", + "ids": "⿰米甘", + "canonical_ids": "⿰米甘", + "expanded_ids": "⿰⿻木丷甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粔", + "codepoint": "U+7C94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C94", + "status": "exact_ids", + "ids": "⿰米巨", + "canonical_ids": "⿰米巨", + "expanded_ids": "⿰⿻木丷巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "巨", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粕", + "codepoint": "U+7C95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C95", + "status": "exact_ids", + "ids": "⿰米白", + "canonical_ids": "⿰米白", + "expanded_ids": "⿰⿻木丷⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丷", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粖", + "codepoint": "U+7C96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C96", + "status": "exact_ids", + "ids": "⿰米末", + "canonical_ids": "⿰米末", + "expanded_ids": "⿰⿻木丷⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粗", + "codepoint": "U+7C97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C97", + "status": "exact_ids", + "ids": "⿰米且", + "canonical_ids": "⿰米且", + "expanded_ids": "⿰⿻木丷且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "丷", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粘", + "codepoint": "U+7C98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C98", + "status": "exact_ids", + "ids": "⿰米占", + "canonical_ids": "⿰米占", + "expanded_ids": "⿰⿻木丷⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "卜", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粙", + "codepoint": "U+7C99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C99", + "status": "exact_ids", + "ids": "⿰米由", + "canonical_ids": "⿰米由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粚", + "codepoint": "U+7C9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C9A", + "status": "exact_ids", + "ids": "⿰米㐌", + "canonical_ids": "⿰米㐌", + "expanded_ids": "⿰⿻木丷⿱⿻丿一⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丷", + "丿", + "乜", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粛", + "codepoint": "U+7C9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C9B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粜", + "codepoint": "U+7C9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C9C", + "status": "exact_ids", + "ids": "⿱出米", + "canonical_ids": "⿱出米", + "expanded_ids": "⿱⿻屮凵⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "凵", + "屮", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粝", + "codepoint": "U+7C9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C9D", + "status": "exact_ids", + "ids": "⿰米厉", + "canonical_ids": "⿰米厉", + "expanded_ids": "⿰⿻木丷⿱厂万", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "万", + "丷", + "厂", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粞", + "codepoint": "U+7C9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C9E", + "status": "exact_ids", + "ids": "⿰米西", + "canonical_ids": "⿰米西", + "expanded_ids": "⿰⿻木丷⿻⿱一儿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "儿", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粟", + "codepoint": "U+7C9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7C9F", + "status": "exact_ids", + "ids": "⿱覀米", + "canonical_ids": "⿱覀米", + "expanded_ids": "⿱覀⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粠", + "codepoint": "U+7CA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CA0", + "status": "exact_ids", + "ids": "⿰米共", + "canonical_ids": "⿰米共", + "expanded_ids": "⿰⿻木丷⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "廾", + "廿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粡", + "codepoint": "U+7CA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CA1", + "status": "exact_ids", + "ids": "⿰米同", + "canonical_ids": "⿰米同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粢", + "codepoint": "U+7CA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CA2", + "status": "exact_ids", + "ids": "⿱次米", + "canonical_ids": "⿱次米", + "expanded_ids": "⿱⿰冫欠⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "冫", + "木", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粣", + "codepoint": "U+7CA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CA3", + "status": "exact_ids", + "ids": "⿰米冊", + "canonical_ids": "⿰米冊", + "expanded_ids": "⿰⿻木丷⿻冂廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "冂", + "廾", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粤", + "codepoint": "U+7CA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CA4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粥", + "codepoint": "U+7CA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CA5", + "status": "exact_ids", + "ids": "⿲弓米弓", + "canonical_ids": "⿲弓米弓", + "expanded_ids": "⿲弓⿻木丷弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "弓", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粦", + "codepoint": "U+7CA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CA6", + "status": "exact_ids", + "ids": "⿱米舛", + "canonical_ids": "⿱米舛", + "expanded_ids": "⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粧", + "codepoint": "U+7CA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CA7", + "status": "exact_ids", + "ids": "⿰米庄", + "canonical_ids": "⿰米庄", + "expanded_ids": "⿰⿻木丷⿱广土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "土", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粨", + "codepoint": "U+7CA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CA8", + "status": "exact_ids", + "ids": "⿰米百", + "canonical_ids": "⿰米百", + "expanded_ids": "⿰⿻木丷⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "丷", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粩", + "codepoint": "U+7CA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CA9", + "status": "exact_ids", + "ids": "⿰米老", + "canonical_ids": "⿰米老", + "expanded_ids": "⿰⿻木丷⿱⿻土丿匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "匕", + "土", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粪", + "codepoint": "U+7CAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CAA", + "status": "exact_ids", + "ids": "⿱米共", + "canonical_ids": "⿱米共", + "expanded_ids": "⿱⿻木丷⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "廾", + "廿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粫", + "codepoint": "U+7CAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CAB", + "status": "exact_ids", + "ids": "⿰米而", + "canonical_ids": "⿰米而", + "expanded_ids": "⿰⿻木丷而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粬", + "codepoint": "U+7CAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CAC", + "status": "exact_ids", + "ids": "⿰米曲", + "canonical_ids": "⿰米曲", + "expanded_ids": "⿰⿻木丷曲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "曲", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粭", + "codepoint": "U+7CAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CAD", + "status": "exact_ids", + "ids": "⿰米合", + "canonical_ids": "⿰米合", + "expanded_ids": "⿰⿻木丷⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "人", + "口", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粮", + "codepoint": "U+7CAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CAE", + "status": "exact_ids", + "ids": "⿰米良", + "canonical_ids": "⿰米良", + "expanded_ids": "⿰⿻木丷⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丷", + "木", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粯", + "codepoint": "U+7CAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CAF", + "status": "exact_ids", + "ids": "⿰米見", + "canonical_ids": "⿰米見", + "expanded_ids": "⿰⿻木丷⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "儿", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粰", + "codepoint": "U+7CB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CB0", + "status": "exact_ids", + "ids": "⿰米孚", + "canonical_ids": "⿰米孚", + "expanded_ids": "⿰⿻木丷⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "子", + "木", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粱", + "codepoint": "U+7CB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CB1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粲", + "codepoint": "U+7CB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CB2", + "status": "exact_ids", + "ids": "⿱𣦼米", + "canonical_ids": "⿱𣦼米", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "𣦼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粳", + "codepoint": "U+7CB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CB3", + "status": "exact_ids", + "ids": "⿰米更", + "canonical_ids": "⿰米更", + "expanded_ids": "⿰⿻木丷更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "更", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粴", + "codepoint": "U+7CB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CB4", + "status": "exact_ids", + "ids": "⿰米里", + "canonical_ids": "⿰米里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粵", + "codepoint": "U+7CB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CB5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粶", + "codepoint": "U+7CB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CB6", + "status": "exact_ids", + "ids": "⿰米录", + "canonical_ids": "⿰米录", + "expanded_ids": "⿰⿻木丷⿱彐氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "彐", + "木", + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粷", + "codepoint": "U+7CB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CB7", + "status": "exact_ids", + "ids": "⿰米匊", + "canonical_ids": "⿰米匊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "匊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粸", + "codepoint": "U+7CB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CB8", + "status": "exact_ids", + "ids": "⿰米其", + "canonical_ids": "⿰米其", + "expanded_ids": "⿰⿻木丷其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "其", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粹", + "codepoint": "U+7CB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CB9", + "status": "exact_ids", + "ids": "⿰米卒", + "canonical_ids": "⿰米卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粺", + "codepoint": "U+7CBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CBA", + "status": "exact_ids", + "ids": "⿰米卑", + "canonical_ids": "⿰米卑", + "expanded_ids": "⿰⿻木丷卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "卑", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粻", + "codepoint": "U+7CBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CBB", + "status": "exact_ids", + "ids": "⿰米長", + "canonical_ids": "⿰米長", + "expanded_ids": "⿰⿻木丷長", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "長" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粼", + "codepoint": "U+7CBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CBC", + "status": "exact_ids", + "ids": "⿰粦巜", + "canonical_ids": "⿰粦巜", + "expanded_ids": "⿰⿱⿻木丷⿰夕⿻丨二巜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "巜", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粽", + "codepoint": "U+7CBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CBD", + "status": "exact_ids", + "ids": "⿰米宗", + "canonical_ids": "⿰米宗", + "expanded_ids": "⿰⿻木丷⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "二", + "宀", + "小", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "精", + "codepoint": "U+7CBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CBE", + "status": "exact_ids", + "ids": "⿰米青", + "canonical_ids": "⿰米青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "月", + "木" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "粿", + "codepoint": "U+7CBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CBF", + "status": "exact_ids", + "ids": "⿰米果", + "canonical_ids": "⿰米果", + "expanded_ids": "⿰⿻木丷⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糀", + "codepoint": "U+7CC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CC0", + "status": "exact_ids", + "ids": "⿰米花", + "canonical_ids": "⿰米花", + "expanded_ids": "⿰⿻木丷⿱艹⿰亻匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亻", + "匕", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糁", + "codepoint": "U+7CC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CC1", + "status": "exact_ids", + "ids": "⿰米参", + "canonical_ids": "⿰米参", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "参" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糂", + "codepoint": "U+7CC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CC2", + "status": "exact_ids", + "ids": "⿰米甚", + "canonical_ids": "⿰米甚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "甘" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糃", + "codepoint": "U+7CC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CC3", + "status": "exact_ids", + "ids": "⿰米昜", + "canonical_ids": "⿰米昜", + "expanded_ids": "⿰⿻木丷⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "勿", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糄", + "codepoint": "U+7CC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CC4", + "status": "exact_ids", + "ids": "⿰米扁", + "canonical_ids": "⿰米扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "尸", + "木" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糅", + "codepoint": "U+7CC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CC5", + "status": "exact_ids", + "ids": "⿰米柔", + "canonical_ids": "⿰米柔", + "expanded_ids": "⿰⿻木丷⿱矛木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糆", + "codepoint": "U+7CC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CC6", + "status": "exact_ids", + "ids": "⿰米面", + "canonical_ids": "⿰米面", + "expanded_ids": "⿰⿻木丷面", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "面" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糇", + "codepoint": "U+7CC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CC7", + "status": "exact_ids", + "ids": "⿰米侯", + "canonical_ids": "⿰米侯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "侯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糈", + "codepoint": "U+7CC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CC8", + "status": "exact_ids", + "ids": "⿰米胥", + "canonical_ids": "⿰米胥", + "expanded_ids": "⿰⿻木丷⿱疋月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "月", + "木", + "疋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糉", + "codepoint": "U+7CC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CC9", + "status": "exact_ids", + "ids": "⿰米㚇", + "canonical_ids": "⿰米㚇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "儿", + "夊", + "木" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糊", + "codepoint": "U+7CCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CCA", + "status": "exact_ids", + "ids": "⿰米胡", + "canonical_ids": "⿰米胡", + "expanded_ids": "⿰⿻木丷⿰⿻十口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "十", + "口", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糋", + "codepoint": "U+7CCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CCB", + "status": "exact_ids", + "ids": "⿰米前", + "canonical_ids": "⿰米前", + "expanded_ids": "⿰⿻木丷⿱止⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "刂", + "月", + "木", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糌", + "codepoint": "U+7CCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CCC", + "status": "exact_ids", + "ids": "⿰米昝", + "canonical_ids": "⿰米昝", + "expanded_ids": "⿰⿻木丷⿱⿰夂卜日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "卜", + "夂", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糍", + "codepoint": "U+7CCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CCD", + "status": "exact_ids", + "ids": "⿰米兹", + "canonical_ids": "⿰米兹", + "expanded_ids": "⿰⿻木丷⿱䒑⿰幺幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "丷", + "幺", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糎", + "codepoint": "U+7CCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CCE", + "status": "exact_ids", + "ids": "⿰米厘", + "canonical_ids": "⿰米厘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "厂", + "木" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糏", + "codepoint": "U+7CCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CCF", + "status": "exact_ids", + "ids": "⿰米屑", + "canonical_ids": "⿰米屑", + "expanded_ids": "⿰⿻木丷⿱尸⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "小", + "尸", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糐", + "codepoint": "U+7CD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CD0", + "status": "exact_ids", + "ids": "⿰米尃", + "canonical_ids": "⿰米尃", + "expanded_ids": "⿰⿻木丷⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "寸", + "木", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糑", + "codepoint": "U+7CD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CD1", + "status": "exact_ids", + "ids": "⿰米弱", + "canonical_ids": "⿰米弱", + "expanded_ids": "⿰⿻木丷⿰⿱弓二⿱弓二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "二", + "弓", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糒", + "codepoint": "U+7CD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CD2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糓", + "codepoint": "U+7CD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CD3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糔", + "codepoint": "U+7CD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CD4", + "status": "exact_ids", + "ids": "⿰米蚤", + "canonical_ids": "⿰米蚤", + "expanded_ids": "⿰⿻木丷⿱⿻又丶虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丷", + "又", + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糕", + "codepoint": "U+7CD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CD5", + "status": "exact_ids", + "ids": "⿰米羔", + "canonical_ids": "⿰米羔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "羔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糖", + "codepoint": "U+7CD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CD6", + "status": "exact_ids", + "ids": "⿰米唐", + "canonical_ids": "⿰米唐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糗", + "codepoint": "U+7CD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CD7", + "status": "exact_ids", + "ids": "⿰米臭", + "canonical_ids": "⿰米臭", + "expanded_ids": "⿰⿻木丷⿱⿻目丶⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丷", + "大", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糘", + "codepoint": "U+7CD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CD8", + "status": "exact_ids", + "ids": "⿰米家", + "canonical_ids": "⿰米家", + "expanded_ids": "⿰⿻木丷⿱宀豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "宀", + "木", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糙", + "codepoint": "U+7CD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CD9", + "status": "exact_ids", + "ids": "⿰米造", + "canonical_ids": "⿰米造", + "expanded_ids": "⿰⿻木丷⿰辶⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "口", + "木", + "牛", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糚", + "codepoint": "U+7CDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CDA", + "status": "exact_ids", + "ids": "⿰米莊", + "canonical_ids": "⿰米莊", + "expanded_ids": "⿰⿻木丷⿱艹⿰爿土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "土", + "木", + "爿", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糛", + "codepoint": "U+7CDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CDB", + "status": "exact_ids", + "ids": "⿰米堂", + "canonical_ids": "⿰米堂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "土", + "小", + "木" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糜", + "codepoint": "U+7CDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CDC", + "status": "exact_ids", + "ids": "⿱麻米", + "canonical_ids": "⿱麻米", + "expanded_ids": "⿱⿱广⿰木木⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糝", + "codepoint": "U+7CDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CDD", + "status": "exact_ids", + "ids": "⿰米參", + "canonical_ids": "⿰米參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糞", + "codepoint": "U+7CDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CDE", + "status": "exact_ids", + "ids": "⿱米異", + "canonical_ids": "⿱米異", + "expanded_ids": "⿱⿻木丷⿱田⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "廾", + "廿", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糟", + "codepoint": "U+7CDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CDF", + "status": "exact_ids", + "ids": "⿰米曹", + "canonical_ids": "⿰米曹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "曹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糠", + "codepoint": "U+7CE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CE0", + "status": "exact_ids", + "ids": "⿰米康", + "canonical_ids": "⿰米康", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "广", + "木" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糡", + "codepoint": "U+7CE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CE1", + "status": "exact_ids", + "ids": "⿰米竟", + "canonical_ids": "⿰米竟", + "expanded_ids": "⿰⿻木丷⿱立⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "儿", + "木", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糢", + "codepoint": "U+7CE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CE2", + "status": "exact_ids", + "ids": "⿰米莫", + "canonical_ids": "⿰米莫", + "expanded_ids": "⿰⿻木丷⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "大", + "日", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糣", + "codepoint": "U+7CE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CE3", + "status": "exact_ids", + "ids": "⿰米朁", + "canonical_ids": "⿰米朁", + "expanded_ids": "⿰⿻木丷⿱⿰旡旡曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "旡", + "曰", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糤", + "codepoint": "U+7CE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CE4", + "status": "exact_ids", + "ids": "⿰米散", + "canonical_ids": "⿰米散", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "散" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糥", + "codepoint": "U+7CE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CE5", + "status": "exact_ids", + "ids": "⿰米𦓔", + "canonical_ids": "⿰米𦓔", + "expanded_ids": "⿰⿻木丷⿱而而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糦", + "codepoint": "U+7CE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CE6", + "status": "exact_ids", + "ids": "⿰米喜", + "canonical_ids": "⿰米喜", + "expanded_ids": "⿰⿻木丷⿱⿱十豆口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "十", + "口", + "木", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糧", + "codepoint": "U+7CE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CE7", + "status": "exact_ids", + "ids": "⿰米量", + "canonical_ids": "⿰米量", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "日", + "木" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糨", + "codepoint": "U+7CE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CE8", + "status": "exact_ids", + "ids": "⿰𥸲𧈧", + "canonical_ids": "⿰𥸲𧈧", + "expanded_ids": "⿰⿰⿻木丷弓⿱厶虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "厶", + "弓", + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糩", + "codepoint": "U+7CE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CE9", + "status": "exact_ids", + "ids": "⿰米會", + "canonical_ids": "⿰米會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "曰", + "木" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糪", + "codepoint": "U+7CEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CEA", + "status": "exact_ids", + "ids": "⿱辟米", + "canonical_ids": "⿱辟米", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "十", + "木", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糫", + "codepoint": "U+7CEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CEB", + "status": "exact_ids", + "ids": "⿰米睘", + "canonical_ids": "⿰米睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糬", + "codepoint": "U+7CEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CEC", + "status": "exact_ids", + "ids": "⿰米署", + "canonical_ids": "⿰米署", + "expanded_ids": "⿰⿻木丷⿱罒⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "土", + "日", + "木", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糭", + "codepoint": "U+7CED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CED", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糮", + "codepoint": "U+7CEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CEE", + "status": "exact_ids", + "ids": "⿰米監", + "canonical_ids": "⿰米監", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糯", + "codepoint": "U+7CEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CEF", + "status": "exact_ids", + "ids": "⿰米需", + "canonical_ids": "⿰米需", + "expanded_ids": "⿰⿻木丷⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糰", + "codepoint": "U+7CF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CF0", + "status": "exact_ids", + "ids": "⿰米團", + "canonical_ids": "⿰米團", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "團" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糱", + "codepoint": "U+7CF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CF1", + "status": "exact_ids", + "ids": "⿱辥米", + "canonical_ids": "⿱辥米", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "十", + "木", + "立" + ], + "unresolved_leaves": [ + "𡴎" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糲", + "codepoint": "U+7CF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CF2", + "status": "exact_ids", + "ids": "⿰米厲", + "canonical_ids": "⿰米厲", + "expanded_ids": "⿰⿻木丷⿱厂⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "厂", + "木", + "田", + "禸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糳", + "codepoint": "U+7CF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CF3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糴", + "codepoint": "U+7CF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CF4", + "status": "exact_ids", + "ids": "⿰籴翟", + "canonical_ids": "⿰籴翟", + "expanded_ids": "⿰⿱入⿻木丷⿱⿰习习隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "习", + "入", + "木", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糵", + "codepoint": "U+7CF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CF5", + "status": "exact_ids", + "ids": "⿱薛米", + "canonical_ids": "⿱薛米", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木" + ], + "unresolved_leaves": [ + "薛" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糶", + "codepoint": "U+7CF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CF6", + "status": "exact_ids", + "ids": "⿰粜翟", + "canonical_ids": "⿰粜翟", + "expanded_ids": "⿰⿱⿻屮凵⿻木丷⿱⿰习习隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "习", + "凵", + "屮", + "木", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糷", + "codepoint": "U+7CF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CF7", + "status": "exact_ids", + "ids": "⿰米蘭", + "canonical_ids": "⿰米蘭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "艹" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糸", + "codepoint": "U+7CF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CF8", + "status": "exact_ids", + "ids": "⿱幺小", + "canonical_ids": "⿱幺小", + "expanded_ids": "⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糹", + "codepoint": "U+7CF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CF9", + "status": "exact_ids", + "ids": "⿻幺小", + "canonical_ids": "⿻幺小", + "expanded_ids": "⿻幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糺", + "codepoint": "U+7CFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CFA", + "status": "exact_ids", + "ids": "⿰糸乚", + "canonical_ids": "⿰糸乚", + "expanded_ids": "⿰⿱幺小乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "系", + "codepoint": "U+7CFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CFB", + "status": "exact_ids", + "ids": "⿱丿糸", + "canonical_ids": "⿱丿糸", + "expanded_ids": "⿱丿⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糼", + "codepoint": "U+7CFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CFC", + "status": "exact_ids", + "ids": "⿰糹力", + "canonical_ids": "⿰糹力", + "expanded_ids": "⿰⿻幺小力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糽", + "codepoint": "U+7CFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CFD", + "status": "exact_ids", + "ids": "⿰糹丁", + "canonical_ids": "⿰糹丁", + "expanded_ids": "⿰⿻幺小⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糾", + "codepoint": "U+7CFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CFE", + "status": "exact_ids", + "ids": "⿰糹丩", + "canonical_ids": "⿰糹丩", + "expanded_ids": "⿰⿻幺小⿰丨丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "糿", + "codepoint": "U+7CFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7CFF", + "status": "exact_ids", + "ids": "⿰糹刀", + "canonical_ids": "⿰糹刀", + "expanded_ids": "⿰⿻幺小刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紀", + "codepoint": "U+7D00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D00", + "status": "exact_ids", + "ids": "⿰糹己", + "canonical_ids": "⿰糹己", + "expanded_ids": "⿰⿻幺小己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "己", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紁", + "codepoint": "U+7D01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D01", + "status": "exact_ids", + "ids": "⿰糸义", + "canonical_ids": "⿰糸义", + "expanded_ids": "⿰⿱幺小⿻乂丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乂", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紂", + "codepoint": "U+7D02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D02", + "status": "exact_ids", + "ids": "⿰糹寸", + "canonical_ids": "⿰糹寸", + "expanded_ids": "⿰⿻幺小寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紃", + "codepoint": "U+7D03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D03", + "status": "exact_ids", + "ids": "⿰糹川", + "canonical_ids": "⿰糹川", + "expanded_ids": "⿰⿻幺小川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "川", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "約", + "codepoint": "U+7D04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D04", + "status": "exact_ids", + "ids": "⿰糹勺", + "canonical_ids": "⿰糹勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紅", + "codepoint": "U+7D05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D05", + "status": "exact_ids", + "ids": "⿰糹工", + "canonical_ids": "⿰糹工", + "expanded_ids": "⿰⿻幺小工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "工", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紆", + "codepoint": "U+7D06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D06", + "status": "exact_ids", + "ids": "⿰糹于", + "canonical_ids": "⿰糹于", + "expanded_ids": "⿰⿻幺小⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紇", + "codepoint": "U+7D07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D07", + "status": "exact_ids", + "ids": "⿰糹乞", + "canonical_ids": "⿰糹乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紈", + "codepoint": "U+7D08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D08", + "status": "exact_ids", + "ids": "⿰糹丸", + "canonical_ids": "⿰糹丸", + "expanded_ids": "⿰⿻幺小⿻九丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紉", + "codepoint": "U+7D09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D09", + "status": "exact_ids", + "ids": "⿰糹刃", + "canonical_ids": "⿰糹刃", + "expanded_ids": "⿰⿻幺小⿻刀丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紊", + "codepoint": "U+7D0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D0A", + "status": "exact_ids", + "ids": "⿱文糸", + "canonical_ids": "⿱文糸", + "expanded_ids": "⿱文⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "文" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紋", + "codepoint": "U+7D0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D0B", + "status": "exact_ids", + "ids": "⿰糹文", + "canonical_ids": "⿰糹文", + "expanded_ids": "⿰⿻幺小文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "文" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紌", + "codepoint": "U+7D0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D0C", + "status": "exact_ids", + "ids": "⿰糹尤", + "canonical_ids": "⿰糹尤", + "expanded_ids": "⿰⿻幺小尤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "尤", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "納", + "codepoint": "U+7D0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D0D", + "status": "exact_ids", + "ids": "⿰糹内", + "canonical_ids": "⿰糹内", + "expanded_ids": "⿰⿻幺小⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紎", + "codepoint": "U+7D0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D0E", + "status": "exact_ids", + "ids": "⿰糹犬", + "canonical_ids": "⿰糹犬", + "expanded_ids": "⿰⿻幺小⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紏", + "codepoint": "U+7D0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D0F", + "status": "exact_ids", + "ids": "⿰糹斗", + "canonical_ids": "⿰糹斗", + "expanded_ids": "⿰⿻幺小斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "斗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紐", + "codepoint": "U+7D10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D10", + "status": "exact_ids", + "ids": "⿰糹丑", + "canonical_ids": "⿰糹丑", + "expanded_ids": "⿰⿻幺小丑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紑", + "codepoint": "U+7D11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D11", + "status": "exact_ids", + "ids": "⿰糹不", + "canonical_ids": "⿰糹不", + "expanded_ids": "⿰⿻幺小不", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紒", + "codepoint": "U+7D12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D12", + "status": "exact_ids", + "ids": "⿰糹介", + "canonical_ids": "⿰糹介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紓", + "codepoint": "U+7D13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D13", + "status": "exact_ids", + "ids": "⿰糹予", + "canonical_ids": "⿰糹予", + "expanded_ids": "⿰⿻幺小⿱龴⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "小", + "幺", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "純", + "codepoint": "U+7D14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D14", + "status": "exact_ids", + "ids": "⿰糹屯", + "canonical_ids": "⿰糹屯", + "expanded_ids": "⿰⿻幺小屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "屯", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紕", + "codepoint": "U+7D15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D15", + "status": "exact_ids", + "ids": "⿰糹比", + "canonical_ids": "⿰糹比", + "expanded_ids": "⿰⿻幺小⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紖", + "codepoint": "U+7D16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D16", + "status": "exact_ids", + "ids": "⿰糹引", + "canonical_ids": "⿰糹引", + "expanded_ids": "⿰⿻幺小⿰弓丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "小", + "幺", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紗", + "codepoint": "U+7D17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D17", + "status": "exact_ids", + "ids": "⿰糹少", + "canonical_ids": "⿰糹少", + "expanded_ids": "⿰⿻幺小⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紘", + "codepoint": "U+7D18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D18", + "status": "exact_ids", + "ids": "⿰糹厷", + "canonical_ids": "⿰糹厷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "厷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紙", + "codepoint": "U+7D19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D19", + "status": "exact_ids", + "ids": "⿰糹氏", + "canonical_ids": "⿰糹氏", + "expanded_ids": "⿰⿻幺小氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "級", + "codepoint": "U+7D1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D1A", + "status": "exact_ids", + "ids": "⿰糹及", + "canonical_ids": "⿰糹及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "小", + "幺" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紛", + "codepoint": "U+7D1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D1B", + "status": "exact_ids", + "ids": "⿰糹分", + "canonical_ids": "⿰糹分", + "expanded_ids": "⿰⿻幺小⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紜", + "codepoint": "U+7D1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D1C", + "status": "exact_ids", + "ids": "⿰糹云", + "canonical_ids": "⿰糹云", + "expanded_ids": "⿰⿻幺小⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紝", + "codepoint": "U+7D1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D1D", + "status": "exact_ids", + "ids": "⿰糹王", + "canonical_ids": "⿰糹王", + "expanded_ids": "⿰⿻幺小王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紞", + "codepoint": "U+7D1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D1E", + "status": "exact_ids", + "ids": "⿰糹冘", + "canonical_ids": "⿰糹冘", + "expanded_ids": "⿰⿻幺小⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紟", + "codepoint": "U+7D1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D1F", + "status": "exact_ids", + "ids": "⿰糹今", + "canonical_ids": "⿰糹今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "小", + "幺" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "素", + "codepoint": "U+7D20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D20", + "status": "exact_ids", + "ids": "⿱龶糸", + "canonical_ids": "⿱龶糸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紡", + "codepoint": "U+7D21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D21", + "status": "exact_ids", + "ids": "⿰糹方", + "canonical_ids": "⿰糹方", + "expanded_ids": "⿰⿻幺小方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "索", + "codepoint": "U+7D22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D22", + "status": "exact_ids", + "ids": "⿳十冖糸", + "canonical_ids": "⿳十冖糸", + "expanded_ids": "⿳十冖⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紣", + "codepoint": "U+7D23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D23", + "status": "exact_ids", + "ids": "⿰糹卆", + "canonical_ids": "⿰糹卆", + "expanded_ids": "⿰⿻幺小⿱九十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "十", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紤", + "codepoint": "U+7D24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D24", + "status": "exact_ids", + "ids": "⿰糹斤", + "canonical_ids": "⿰糹斤", + "expanded_ids": "⿰⿻幺小斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紥", + "codepoint": "U+7D25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D25", + "status": "exact_ids", + "ids": "⿱扎糸", + "canonical_ids": "⿱扎糸", + "expanded_ids": "⿱⿰扌乚⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "小", + "幺", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紦", + "codepoint": "U+7D26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D26", + "status": "exact_ids", + "ids": "⿰糹巴", + "canonical_ids": "⿰糹巴", + "expanded_ids": "⿰⿻幺小巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "巴", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紧", + "codepoint": "U+7D27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D27", + "status": "exact_ids", + "ids": "⿱収糸", + "canonical_ids": "⿱収糸", + "expanded_ids": "⿱⿰⿰丨丨又⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "又", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紨", + "codepoint": "U+7D28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D28", + "status": "exact_ids", + "ids": "⿰糹付", + "canonical_ids": "⿰糹付", + "expanded_ids": "⿰⿻幺小⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紩", + "codepoint": "U+7D29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D29", + "status": "exact_ids", + "ids": "⿰糹失", + "canonical_ids": "⿰糹失", + "expanded_ids": "⿰⿻幺小⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紪", + "codepoint": "U+7D2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D2A", + "status": "exact_ids", + "ids": "⿰糹此", + "canonical_ids": "⿰糹此", + "expanded_ids": "⿰⿻幺小⿰止匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "小", + "幺", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紫", + "codepoint": "U+7D2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D2B", + "status": "exact_ids", + "ids": "⿱此糸", + "canonical_ids": "⿱此糸", + "expanded_ids": "⿱⿰止匕⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "小", + "幺", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紬", + "codepoint": "U+7D2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D2C", + "status": "exact_ids", + "ids": "⿰糹由", + "canonical_ids": "⿰糹由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紭", + "codepoint": "U+7D2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D2D", + "status": "exact_ids", + "ids": "⿰糹弘", + "canonical_ids": "⿰糹弘", + "expanded_ids": "⿰⿻幺小⿰弓厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "小", + "幺", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紮", + "codepoint": "U+7D2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D2E", + "status": "exact_ids", + "ids": "⿱札糸", + "canonical_ids": "⿱札糸", + "expanded_ids": "⿱⿰木乚⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "小", + "幺", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "累", + "codepoint": "U+7D2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D2F", + "status": "exact_ids", + "ids": "⿱田糸", + "canonical_ids": "⿱田糸", + "expanded_ids": "⿱田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "細", + "codepoint": "U+7D30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D30", + "status": "exact_ids", + "ids": "⿰糹田", + "canonical_ids": "⿰糹田", + "expanded_ids": "⿰⿻幺小田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紱", + "codepoint": "U+7D31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D31", + "status": "exact_ids", + "ids": "⿰糹犮", + "canonical_ids": "⿰糹犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紲", + "codepoint": "U+7D32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D32", + "status": "exact_ids", + "ids": "⿰糹世", + "canonical_ids": "⿰糹世", + "expanded_ids": "⿰⿻幺小世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紳", + "codepoint": "U+7D33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D33", + "status": "exact_ids", + "ids": "⿰糹申", + "canonical_ids": "⿰糹申", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紴", + "codepoint": "U+7D34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D34", + "status": "exact_ids", + "ids": "⿰糹皮", + "canonical_ids": "⿰糹皮", + "expanded_ids": "⿰⿻幺小皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紵", + "codepoint": "U+7D35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D35", + "status": "exact_ids", + "ids": "⿰糹宁", + "canonical_ids": "⿰糹宁", + "expanded_ids": "⿰⿻幺小⿱宀⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "宀", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紶", + "codepoint": "U+7D36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D36", + "status": "exact_ids", + "ids": "⿰糹去", + "canonical_ids": "⿰糹去", + "expanded_ids": "⿰⿻幺小⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紷", + "codepoint": "U+7D37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D37", + "status": "exact_ids", + "ids": "⿰糹令", + "canonical_ids": "⿰糹令", + "expanded_ids": "⿰⿻幺小⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "小", + "幺", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紸", + "codepoint": "U+7D38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D38", + "status": "exact_ids", + "ids": "⿰糹主", + "canonical_ids": "⿰糹主", + "expanded_ids": "⿰⿻幺小⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "小", + "幺", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紹", + "codepoint": "U+7D39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D39", + "status": "exact_ids", + "ids": "⿰糹召", + "canonical_ids": "⿰糹召", + "expanded_ids": "⿰⿻幺小⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紺", + "codepoint": "U+7D3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D3A", + "status": "exact_ids", + "ids": "⿰糹甘", + "canonical_ids": "⿰糹甘", + "expanded_ids": "⿰⿻幺小甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紻", + "codepoint": "U+7D3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D3B", + "status": "exact_ids", + "ids": "⿰糹央", + "canonical_ids": "⿰糹央", + "expanded_ids": "⿰⿻幺小⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紼", + "codepoint": "U+7D3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D3C", + "status": "exact_ids", + "ids": "⿰糹弗", + "canonical_ids": "⿰糹弗", + "expanded_ids": "⿰⿻幺小⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "小", + "幺", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紽", + "codepoint": "U+7D3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D3D", + "status": "exact_ids", + "ids": "⿰糹它", + "canonical_ids": "⿰糹它", + "expanded_ids": "⿰⿻幺小⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紾", + "codepoint": "U+7D3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D3E", + "status": "exact_ids", + "ids": "⿰糹㐱", + "canonical_ids": "⿰糹㐱", + "expanded_ids": "⿰⿻幺小⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "小", + "幺", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "紿", + "codepoint": "U+7D3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D3F", + "status": "exact_ids", + "ids": "⿰糹台", + "canonical_ids": "⿰糹台", + "expanded_ids": "⿰⿻幺小⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絀", + "codepoint": "U+7D40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D40", + "status": "exact_ids", + "ids": "⿰糹出", + "canonical_ids": "⿰糹出", + "expanded_ids": "⿰⿻幺小⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "小", + "屮", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絁", + "codepoint": "U+7D41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D41", + "status": "exact_ids", + "ids": "⿰糹㐌", + "canonical_ids": "⿰糹㐌", + "expanded_ids": "⿰⿻幺小⿱⿻丿一⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丿", + "乜", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "終", + "codepoint": "U+7D42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D42", + "status": "exact_ids", + "ids": "⿰糹冬", + "canonical_ids": "⿰糹冬", + "expanded_ids": "⿰⿻幺小⿱夂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "夂", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絃", + "codepoint": "U+7D43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D43", + "status": "exact_ids", + "ids": "⿰糹玄", + "canonical_ids": "⿰糹玄", + "expanded_ids": "⿰⿻幺小⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "組", + "codepoint": "U+7D44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D44", + "status": "exact_ids", + "ids": "⿰糹且", + "canonical_ids": "⿰糹且", + "expanded_ids": "⿰⿻幺小且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絅", + "codepoint": "U+7D45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D45", + "status": "exact_ids", + "ids": "⿰糹冋", + "canonical_ids": "⿰糹冋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絆", + "codepoint": "U+7D46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D46", + "status": "exact_ids", + "ids": "⿰糹半", + "canonical_ids": "⿰糹半", + "expanded_ids": "⿰⿻幺小半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絇", + "codepoint": "U+7D47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D47", + "status": "exact_ids", + "ids": "⿰糹句", + "canonical_ids": "⿰糹句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絈", + "codepoint": "U+7D48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D48", + "status": "exact_ids", + "ids": "⿰糹白", + "canonical_ids": "⿰糹白", + "expanded_ids": "⿰⿻幺小⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "小", + "幺", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絉", + "codepoint": "U+7D49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D49", + "status": "exact_ids", + "ids": "⿰糹术", + "canonical_ids": "⿰糹术", + "expanded_ids": "⿰⿻幺小⿻木丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "小", + "幺", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絊", + "codepoint": "U+7D4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D4A", + "status": "exact_ids", + "ids": "⿰糹本", + "canonical_ids": "⿰糹本", + "expanded_ids": "⿰⿻幺小⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "小", + "幺", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絋", + "codepoint": "U+7D4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D4B", + "status": "exact_ids", + "ids": "⿰糹広", + "canonical_ids": "⿰糹広", + "expanded_ids": "⿰⿻幺小⿱广厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "小", + "幺", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "経", + "codepoint": "U+7D4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D4C", + "status": "exact_ids", + "ids": "⿰糹圣", + "canonical_ids": "⿰糹圣", + "expanded_ids": "⿰⿻幺小⿱又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "土", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絍", + "codepoint": "U+7D4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D4D", + "status": "exact_ids", + "ids": "⿰糹任", + "canonical_ids": "⿰糹任", + "expanded_ids": "⿰⿻幺小⿰亻⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "士", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絎", + "codepoint": "U+7D4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D4E", + "status": "exact_ids", + "ids": "⿰糹行", + "canonical_ids": "⿰糹行", + "expanded_ids": "⿰⿻幺小⿰彳彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絏", + "codepoint": "U+7D4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D4F", + "status": "exact_ids", + "ids": "⿰糹曳", + "canonical_ids": "⿰糹曳", + "expanded_ids": "⿰⿻幺小曳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "曳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "結", + "codepoint": "U+7D50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D50", + "status": "exact_ids", + "ids": "⿰糹吉", + "canonical_ids": "⿰糹吉", + "expanded_ids": "⿰⿻幺小⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絑", + "codepoint": "U+7D51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D51", + "status": "exact_ids", + "ids": "⿰糹朱", + "canonical_ids": "⿰糹朱", + "expanded_ids": "⿰⿻幺小⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "小", + "幺", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絒", + "codepoint": "U+7D52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D52", + "status": "exact_ids", + "ids": "⿰糹州", + "canonical_ids": "⿰糹州", + "expanded_ids": "⿰⿻幺小州", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "州", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絓", + "codepoint": "U+7D53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D53", + "status": "exact_ids", + "ids": "⿰糹圭", + "canonical_ids": "⿰糹圭", + "expanded_ids": "⿰⿻幺小⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絔", + "codepoint": "U+7D54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D54", + "status": "exact_ids", + "ids": "⿰糸百", + "canonical_ids": "⿰糸百", + "expanded_ids": "⿰⿱幺小⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "小", + "幺", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絕", + "codepoint": "U+7D55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D55", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絖", + "codepoint": "U+7D56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D56", + "status": "exact_ids", + "ids": "⿰糹光", + "canonical_ids": "⿰糹光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "小", + "幺" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絗", + "codepoint": "U+7D57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D57", + "status": "exact_ids", + "ids": "⿰糹回", + "canonical_ids": "⿰糹回", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絘", + "codepoint": "U+7D58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D58", + "status": "exact_ids", + "ids": "⿰糹次", + "canonical_ids": "⿰糹次", + "expanded_ids": "⿰⿻幺小⿰冫欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "小", + "幺", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絙", + "codepoint": "U+7D59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D59", + "status": "exact_ids", + "ids": "⿰糹亘", + "canonical_ids": "⿰糹亘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絚", + "codepoint": "U+7D5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D5A", + "status": "exact_ids", + "ids": "⿰糹亙", + "canonical_ids": "⿰糹亙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "亙" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絛", + "codepoint": "U+7D5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D5B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絜", + "codepoint": "U+7D5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D5C", + "status": "exact_ids", + "ids": "⿱㓞糸", + "canonical_ids": "⿱㓞糸", + "expanded_ids": "⿱⿰丰刀⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絝", + "codepoint": "U+7D5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D5D", + "status": "exact_ids", + "ids": "⿰糹夸", + "canonical_ids": "⿰糹夸", + "expanded_ids": "⿰⿻幺小⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絞", + "codepoint": "U+7D5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D5E", + "status": "exact_ids", + "ids": "⿰糹交", + "canonical_ids": "⿰糹交", + "expanded_ids": "⿰⿻幺小⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "小", + "幺", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絟", + "codepoint": "U+7D5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D5F", + "status": "exact_ids", + "ids": "⿰糹全", + "canonical_ids": "⿰糹全", + "expanded_ids": "⿰⿻幺小⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "小", + "幺", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絠", + "codepoint": "U+7D60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D60", + "status": "exact_ids", + "ids": "⿰糹有", + "canonical_ids": "⿰糹有", + "expanded_ids": "⿰⿻幺小⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "小", + "幺", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絡", + "codepoint": "U+7D61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D61", + "status": "exact_ids", + "ids": "⿰糹各", + "canonical_ids": "⿰糹各", + "expanded_ids": "⿰⿻幺小⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絢", + "codepoint": "U+7D62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D62", + "status": "exact_ids", + "ids": "⿰糹旬", + "canonical_ids": "⿰糹旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絣", + "codepoint": "U+7D63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D63", + "status": "exact_ids", + "ids": "⿰糹并", + "canonical_ids": "⿰糹并", + "expanded_ids": "⿰⿻幺小⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "小", + "幺", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絤", + "codepoint": "U+7D64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D64", + "status": "exact_ids", + "ids": "⿰糹西", + "canonical_ids": "⿰糹西", + "expanded_ids": "⿰⿻幺小⿻⿱一儿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絥", + "codepoint": "U+7D65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D65", + "status": "exact_ids", + "ids": "⿰糹伏", + "canonical_ids": "⿰糹伏", + "expanded_ids": "⿰⿻幺小⿰亻⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亻", + "大", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "給", + "codepoint": "U+7D66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D66", + "status": "exact_ids", + "ids": "⿰糹合", + "canonical_ids": "⿰糹合", + "expanded_ids": "⿰⿻幺小⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絧", + "codepoint": "U+7D67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D67", + "status": "exact_ids", + "ids": "⿰糹同", + "canonical_ids": "⿰糹同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絨", + "codepoint": "U+7D68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D68", + "status": "exact_ids", + "ids": "⿰糹戎", + "canonical_ids": "⿰糹戎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "小", + "幺" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絩", + "codepoint": "U+7D69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D69", + "status": "exact_ids", + "ids": "⿰糹兆", + "canonical_ids": "⿰糹兆", + "expanded_ids": "⿰⿻幺小兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絪", + "codepoint": "U+7D6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D6A", + "status": "exact_ids", + "ids": "⿰糹因", + "canonical_ids": "⿰糹因", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絫", + "codepoint": "U+7D6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D6B", + "status": "exact_ids", + "ids": "⿱厽糸", + "canonical_ids": "⿱厽糸", + "expanded_ids": "⿱⿱厶⿰厶厶⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絬", + "codepoint": "U+7D6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D6C", + "status": "exact_ids", + "ids": "⿰糹舌", + "canonical_ids": "⿰糹舌", + "expanded_ids": "⿰⿻幺小⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絭", + "codepoint": "U+7D6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D6D", + "status": "exact_ids", + "ids": "⿱龹糸", + "canonical_ids": "⿱龹糸", + "expanded_ids": "⿱龹⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絮", + "codepoint": "U+7D6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D6E", + "status": "exact_ids", + "ids": "⿱如糸", + "canonical_ids": "⿱如糸", + "expanded_ids": "⿱⿰女口⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絯", + "codepoint": "U+7D6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D6F", + "status": "exact_ids", + "ids": "⿰糹亥", + "canonical_ids": "⿰糹亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絰", + "codepoint": "U+7D70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D70", + "status": "exact_ids", + "ids": "⿰糹至", + "canonical_ids": "⿰糹至", + "expanded_ids": "⿰⿻幺小⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "統", + "codepoint": "U+7D71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D71", + "status": "exact_ids", + "ids": "⿰糹充", + "canonical_ids": "⿰糹充", + "expanded_ids": "⿰⿻幺小⿱亠⿱厶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "儿", + "厶", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絲", + "codepoint": "U+7D72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D72", + "status": "exact_ids", + "ids": "⿰糹糹", + "canonical_ids": "⿰糹糹", + "expanded_ids": "⿰⿻幺小⿻幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絳", + "codepoint": "U+7D73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D73", + "status": "exact_ids", + "ids": "⿰糸夅", + "canonical_ids": "⿰糸夅", + "expanded_ids": "⿰⿱幺小⿱夂⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夂", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絴", + "codepoint": "U+7D74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D74", + "status": "exact_ids", + "ids": "⿰糹羊", + "canonical_ids": "⿰糹羊", + "expanded_ids": "⿰⿻幺小羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絵", + "codepoint": "U+7D75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D75", + "status": "exact_ids", + "ids": "⿰糹会", + "canonical_ids": "⿰糹会", + "expanded_ids": "⿰⿻幺小⿱⿱人一⿱一厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "厶", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絶", + "codepoint": "U+7D76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D76", + "status": "exact_ids", + "ids": "⿰糹色", + "canonical_ids": "⿰糹色", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "巴", + "幺" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絷", + "codepoint": "U+7D77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D77", + "status": "exact_ids", + "ids": "⿱执糸", + "canonical_ids": "⿱执糸", + "expanded_ids": "⿱⿰扌⿻九丶⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "小", + "幺", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絸", + "codepoint": "U+7D78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D78", + "status": "exact_ids", + "ids": "⿰糹見", + "canonical_ids": "⿰糹見", + "expanded_ids": "⿰⿻幺小⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "小", + "幺", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絹", + "codepoint": "U+7D79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D79", + "status": "exact_ids", + "ids": "⿰糹肙", + "canonical_ids": "⿰糹肙", + "expanded_ids": "⿰⿻幺小⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "小", + "幺", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絺", + "codepoint": "U+7D7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D7A", + "status": "exact_ids", + "ids": "⿰糹希", + "canonical_ids": "⿰糹希", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "小", + "幺" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絻", + "codepoint": "U+7D7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D7B", + "status": "exact_ids", + "ids": "⿰糹免", + "canonical_ids": "⿰糹免", + "expanded_ids": "⿰⿻幺小免", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "免", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絼", + "codepoint": "U+7D7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D7C", + "status": "exact_ids", + "ids": "⿰糹豸", + "canonical_ids": "⿰糹豸", + "expanded_ids": "⿰⿻幺小豸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絽", + "codepoint": "U+7D7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D7D", + "status": "exact_ids", + "ids": "⿰糹呂", + "canonical_ids": "⿰糹呂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "呂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絾", + "codepoint": "U+7D7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D7E", + "status": "exact_ids", + "ids": "⿰糹成", + "canonical_ids": "⿰糹成", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "成" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "絿", + "codepoint": "U+7D7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D7F", + "status": "exact_ids", + "ids": "⿰糹求", + "canonical_ids": "⿰糹求", + "expanded_ids": "⿰⿻幺小求", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "求" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綀", + "codepoint": "U+7D80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D80", + "status": "exact_ids", + "ids": "⿰糹束", + "canonical_ids": "⿰糹束", + "expanded_ids": "⿰⿻幺小⿻木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "小", + "幺", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綁", + "codepoint": "U+7D81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D81", + "status": "exact_ids", + "ids": "⿰糹邦", + "canonical_ids": "⿰糹邦", + "expanded_ids": "⿰⿻幺小⿰丰阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "小", + "幺", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綂", + "codepoint": "U+7D82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D82", + "status": "exact_ids", + "ids": "⿰糸𠑽", + "canonical_ids": "⿰糸𠑽", + "expanded_ids": "⿰⿱幺小⿱亠⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "儿", + "口", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綃", + "codepoint": "U+7D83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D83", + "status": "exact_ids", + "ids": "⿰糹肖", + "canonical_ids": "⿰糹肖", + "expanded_ids": "⿰⿻幺小⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綄", + "codepoint": "U+7D84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D84", + "status": "exact_ids", + "ids": "⿰糹完", + "canonical_ids": "⿰糹完", + "expanded_ids": "⿰⿻幺小⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "宀", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綅", + "codepoint": "U+7D85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D85", + "status": "exact_ids", + "ids": "⿰糸𠬶", + "canonical_ids": "⿰糸𠬶", + "expanded_ids": "⿰⿱幺小⿳彐冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "又", + "小", + "幺", + "彐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綆", + "codepoint": "U+7D86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D86", + "status": "exact_ids", + "ids": "⿰糹更", + "canonical_ids": "⿰糹更", + "expanded_ids": "⿰⿻幺小更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "更" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綇", + "codepoint": "U+7D87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D87", + "status": "exact_ids", + "ids": "⿰糹酉", + "canonical_ids": "⿰糹酉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綈", + "codepoint": "U+7D88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D88", + "status": "exact_ids", + "ids": "⿰糹弟", + "canonical_ids": "⿰糹弟", + "expanded_ids": "⿰⿻幺小⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "小", + "幺", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綉", + "codepoint": "U+7D89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D89", + "status": "exact_ids", + "ids": "⿰糹秀", + "canonical_ids": "⿰糹秀", + "expanded_ids": "⿰⿻幺小⿱⿻丿木乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乃", + "小", + "幺", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綊", + "codepoint": "U+7D8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D8A", + "status": "exact_ids", + "ids": "⿰糹夾", + "canonical_ids": "⿰糹夾", + "expanded_ids": "⿰⿻幺小⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綋", + "codepoint": "U+7D8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D8B", + "status": "exact_ids", + "ids": "⿰糹宏", + "canonical_ids": "⿰糹宏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "小", + "幺" + ], + "unresolved_leaves": [ + "厷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綌", + "codepoint": "U+7D8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D8C", + "status": "exact_ids", + "ids": "⿰糹谷", + "canonical_ids": "⿰糹谷", + "expanded_ids": "⿰⿻幺小⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綍", + "codepoint": "U+7D8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D8D", + "status": "exact_ids", + "ids": "⿰糹孛", + "canonical_ids": "⿰糹孛", + "expanded_ids": "⿰⿻幺小⿳十冖子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "子", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綎", + "codepoint": "U+7D8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D8E", + "status": "exact_ids", + "ids": "⿰糹廷", + "canonical_ids": "⿰糹廷", + "expanded_ids": "⿰⿻幺小⿰廴⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "小", + "幺", + "廴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綏", + "codepoint": "U+7D8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D8F", + "status": "exact_ids", + "ids": "⿰糹妥", + "canonical_ids": "⿰糹妥", + "expanded_ids": "⿰⿻幺小⿱爫女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "小", + "幺", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綐", + "codepoint": "U+7D90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D90", + "status": "exact_ids", + "ids": "⿰糹兌", + "canonical_ids": "⿰糹兌", + "expanded_ids": "⿰⿻幺小⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綑", + "codepoint": "U+7D91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D91", + "status": "exact_ids", + "ids": "⿰糹困", + "canonical_ids": "⿰糹困", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "困" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綒", + "codepoint": "U+7D92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D92", + "status": "exact_ids", + "ids": "⿰糹孚", + "canonical_ids": "⿰糹孚", + "expanded_ids": "⿰⿻幺小⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "小", + "幺", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "經", + "codepoint": "U+7D93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D93", + "status": "exact_ids", + "ids": "⿰糹巠", + "canonical_ids": "⿰糹巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綔", + "codepoint": "U+7D94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D94", + "status": "exact_ids", + "ids": "⿰夸系", + "canonical_ids": "⿰夸系", + "expanded_ids": "⿰⿱大⿱一丂⿱丿⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "丿", + "大", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綕", + "codepoint": "U+7D95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D95", + "status": "exact_ids", + "ids": "⿰糹志", + "canonical_ids": "⿰糹志", + "expanded_ids": "⿰⿻幺小⿱士心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "士", + "小", + "幺", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綖", + "codepoint": "U+7D96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D96", + "status": "exact_ids", + "ids": "⿰糹延", + "canonical_ids": "⿰糹延", + "expanded_ids": "⿰⿻幺小⿰廴⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "小", + "幺", + "廴", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綗", + "codepoint": "U+7D97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D97", + "status": "exact_ids", + "ids": "⿰糹冏", + "canonical_ids": "⿰糹冏", + "expanded_ids": "⿰⿻幺小⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綘", + "codepoint": "U+7D98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D98", + "status": "exact_ids", + "ids": "⿰糹夆", + "canonical_ids": "⿰糹夆", + "expanded_ids": "⿰⿻幺小⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "継", + "codepoint": "U+7D99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D99", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "続", + "codepoint": "U+7D9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D9A", + "status": "exact_ids", + "ids": "⿰糹売", + "canonical_ids": "⿰糹売", + "expanded_ids": "⿰⿻幺小⿳士冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "士", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綛", + "codepoint": "U+7D9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D9B", + "status": "exact_ids", + "ids": "⿰糹忍", + "canonical_ids": "⿰糹忍", + "expanded_ids": "⿰⿻幺小⿱⿻刀丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "小", + "幺", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綜", + "codepoint": "U+7D9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D9C", + "status": "exact_ids", + "ids": "⿰糹宗", + "canonical_ids": "⿰糹宗", + "expanded_ids": "⿰⿻幺小⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綝", + "codepoint": "U+7D9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D9D", + "status": "exact_ids", + "ids": "⿰糹林", + "canonical_ids": "⿰糹林", + "expanded_ids": "⿰⿻幺小⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綞", + "codepoint": "U+7D9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D9E", + "status": "exact_ids", + "ids": "⿰糹垂", + "canonical_ids": "⿰糹垂", + "expanded_ids": "⿰⿻幺小垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "垂", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綟", + "codepoint": "U+7D9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7D9F", + "status": "exact_ids", + "ids": "⿰糹戻", + "canonical_ids": "⿰糹戻", + "expanded_ids": "⿰⿻幺小⿱⿻一尸大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "小", + "尸", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綠", + "codepoint": "U+7DA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DA0", + "status": "exact_ids", + "ids": "⿰糹彔", + "canonical_ids": "⿰糹彔", + "expanded_ids": "⿰⿻幺小⿱彑氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "彑", + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綡", + "codepoint": "U+7DA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DA1", + "status": "exact_ids", + "ids": "⿰糹京", + "canonical_ids": "⿰糹京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綢", + "codepoint": "U+7DA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DA2", + "status": "exact_ids", + "ids": "⿰糹周", + "canonical_ids": "⿰糹周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綣", + "codepoint": "U+7DA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DA3", + "status": "exact_ids", + "ids": "⿰糹卷", + "canonical_ids": "⿰糹卷", + "expanded_ids": "⿰⿻幺小⿱龹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "小", + "幺", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綤", + "codepoint": "U+7DA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DA4", + "status": "exact_ids", + "ids": "⿱邵糸", + "canonical_ids": "⿱邵糸", + "expanded_ids": "⿱⿰⿱刀口阝⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "小", + "幺", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綥", + "codepoint": "U+7DA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DA5", + "status": "exact_ids", + "ids": "⿰糹畀", + "canonical_ids": "⿰糹畀", + "expanded_ids": "⿰⿻幺小⿱田丌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "小", + "幺", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綦", + "codepoint": "U+7DA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DA6", + "status": "exact_ids", + "ids": "⿱其糸", + "canonical_ids": "⿱其糸", + "expanded_ids": "⿱其⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綧", + "codepoint": "U+7DA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DA7", + "status": "exact_ids", + "ids": "⿰糹享", + "canonical_ids": "⿰糹享", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綨", + "codepoint": "U+7DA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DA8", + "status": "exact_ids", + "ids": "⿰糹其", + "canonical_ids": "⿰糹其", + "expanded_ids": "⿰⿻幺小其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綩", + "codepoint": "U+7DA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DA9", + "status": "exact_ids", + "ids": "⿰糹宛", + "canonical_ids": "⿰糹宛", + "expanded_ids": "⿰⿻幺小⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 182, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綪", + "codepoint": "U+7DAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DAA", + "status": "exact_ids", + "ids": "⿰糹青", + "canonical_ids": "⿰糹青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "月" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綫", + "codepoint": "U+7DAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DAB", + "status": "exact_ids", + "ids": "⿰糹戔", + "canonical_ids": "⿰糹戔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綬", + "codepoint": "U+7DAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DAC", + "status": "exact_ids", + "ids": "⿰糹受", + "canonical_ids": "⿰糹受", + "expanded_ids": "⿰⿻幺小⿳爫冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "又", + "小", + "幺", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "維", + "codepoint": "U+7DAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DAD", + "status": "exact_ids", + "ids": "⿰糹隹", + "canonical_ids": "⿰糹隹", + "expanded_ids": "⿰⿻幺小隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綮", + "codepoint": "U+7DAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DAE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綯", + "codepoint": "U+7DAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DAF", + "status": "exact_ids", + "ids": "⿰糹匋", + "canonical_ids": "⿰糹匋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "匋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綰", + "codepoint": "U+7DB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DB0", + "status": "exact_ids", + "ids": "⿰糹官", + "canonical_ids": "⿰糹官", + "expanded_ids": "⿰⿻幺小⿱宀㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "宀", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綱", + "codepoint": "U+7DB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DB1", + "status": "exact_ids", + "ids": "⿰糹岡", + "canonical_ids": "⿰糹岡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "岡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "網", + "codepoint": "U+7DB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DB2", + "status": "exact_ids", + "ids": "⿰糹罔", + "canonical_ids": "⿰糹罔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "罔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綳", + "codepoint": "U+7DB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DB3", + "status": "exact_ids", + "ids": "⿰糹朋", + "canonical_ids": "⿰糹朋", + "expanded_ids": "⿰⿻幺小⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綴", + "codepoint": "U+7DB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DB4", + "status": "exact_ids", + "ids": "⿰糹叕", + "canonical_ids": "⿰糹叕", + "expanded_ids": "⿰⿻幺小⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綵", + "codepoint": "U+7DB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DB5", + "status": "exact_ids", + "ids": "⿰糹采", + "canonical_ids": "⿰糹采", + "expanded_ids": "⿰⿻幺小⿱爫木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "木", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綶", + "codepoint": "U+7DB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DB6", + "status": "exact_ids", + "ids": "⿰糹果", + "canonical_ids": "⿰糹果", + "expanded_ids": "⿰⿻幺小⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綷", + "codepoint": "U+7DB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DB7", + "status": "exact_ids", + "ids": "⿰糹卒", + "canonical_ids": "⿰糹卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綸", + "codepoint": "U+7DB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DB8", + "status": "exact_ids", + "ids": "⿰糹侖", + "canonical_ids": "⿰糹侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "小", + "幺" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綹", + "codepoint": "U+7DB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DB9", + "status": "exact_ids", + "ids": "⿰糹咎", + "canonical_ids": "⿰糹咎", + "expanded_ids": "⿰⿻幺小⿱⿰夂卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "夂", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綺", + "codepoint": "U+7DBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DBA", + "status": "exact_ids", + "ids": "⿰糹奇", + "canonical_ids": "⿰糹奇", + "expanded_ids": "⿰⿻幺小⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綻", + "codepoint": "U+7DBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DBB", + "status": "exact_ids", + "ids": "⿰糹定", + "canonical_ids": "⿰糹定", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "小", + "幺" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綼", + "codepoint": "U+7DBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DBC", + "status": "exact_ids", + "ids": "⿰糹卑", + "canonical_ids": "⿰糹卑", + "expanded_ids": "⿰⿻幺小卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綽", + "codepoint": "U+7DBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DBD", + "status": "exact_ids", + "ids": "⿰糹卓", + "canonical_ids": "⿰糹卓", + "expanded_ids": "⿰⿻幺小⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "小", + "幺", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綾", + "codepoint": "U+7DBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DBE", + "status": "exact_ids", + "ids": "⿰糹夌", + "canonical_ids": "⿰糹夌", + "expanded_ids": "⿰⿻幺小⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "綿", + "codepoint": "U+7DBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DBF", + "status": "exact_ids", + "ids": "⿰糹帛", + "canonical_ids": "⿰糹帛", + "expanded_ids": "⿰⿻幺小⿱⿻日丶⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丶", + "冂", + "小", + "幺", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緀", + "codepoint": "U+7DC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DC0", + "status": "exact_ids", + "ids": "⿰糹妻", + "canonical_ids": "⿰糹妻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "妻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緁", + "codepoint": "U+7DC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DC1", + "status": "exact_ids", + "ids": "⿰糹疌", + "canonical_ids": "⿰糹疌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "疌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緂", + "codepoint": "U+7DC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DC2", + "status": "exact_ids", + "ids": "⿰糹炎", + "canonical_ids": "⿰糹炎", + "expanded_ids": "⿰⿻幺小⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緃", + "codepoint": "U+7DC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DC3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緄", + "codepoint": "U+7DC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DC4", + "status": "exact_ids", + "ids": "⿰糹昆", + "canonical_ids": "⿰糹昆", + "expanded_ids": "⿰⿻幺小⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "小", + "幺", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緅", + "codepoint": "U+7DC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DC5", + "status": "exact_ids", + "ids": "⿰糹取", + "canonical_ids": "⿰糹取", + "expanded_ids": "⿰⿻幺小⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "小", + "幺", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緆", + "codepoint": "U+7DC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DC6", + "status": "exact_ids", + "ids": "⿰糹易", + "canonical_ids": "⿰糹易", + "expanded_ids": "⿰⿻幺小⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "小", + "幺", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緇", + "codepoint": "U+7DC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DC7", + "status": "exact_ids", + "ids": "⿰糹甾", + "canonical_ids": "⿰糹甾", + "expanded_ids": "⿰⿻幺小⿱巛田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "巛", + "幺", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緈", + "codepoint": "U+7DC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DC8", + "status": "exact_ids", + "ids": "⿰糹幸", + "canonical_ids": "⿰糹幸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "幺" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緉", + "codepoint": "U+7DC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DC9", + "status": "exact_ids", + "ids": "⿰糹兩", + "canonical_ids": "⿰糹兩", + "expanded_ids": "⿰⿻幺小⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緊", + "codepoint": "U+7DCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DCA", + "status": "exact_ids", + "ids": "⿱臤糸", + "canonical_ids": "⿱臤糸", + "expanded_ids": "⿱⿰臣又⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "小", + "幺", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緋", + "codepoint": "U+7DCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DCB", + "status": "exact_ids", + "ids": "⿰糹非", + "canonical_ids": "⿰糹非", + "expanded_ids": "⿰⿻幺小非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緌", + "codepoint": "U+7DCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DCC", + "status": "exact_ids", + "ids": "⿰糹委", + "canonical_ids": "⿰糹委", + "expanded_ids": "⿰⿻幺小⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "小", + "幺", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緍", + "codepoint": "U+7DCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DCD", + "status": "exact_ids", + "ids": "⿰糹昏", + "canonical_ids": "⿰糹昏", + "expanded_ids": "⿰⿻幺小⿱氏日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "日", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緎", + "codepoint": "U+7DCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DCE", + "status": "exact_ids", + "ids": "⿰糹或", + "canonical_ids": "⿰糹或", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "或" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "総", + "codepoint": "U+7DCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DCF", + "status": "exact_ids", + "ids": "⿰糹忩", + "canonical_ids": "⿰糹忩", + "expanded_ids": "⿰⿻幺小⿱⿱八厶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "小", + "幺", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緐", + "codepoint": "U+7DD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DD0", + "status": "exact_ids", + "ids": "⿰每系", + "canonical_ids": "⿰每系", + "expanded_ids": "⿰⿱⿻丿一母⿱丿⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "小", + "幺", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緑", + "codepoint": "U+7DD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DD1", + "status": "exact_ids", + "ids": "⿰糹录", + "canonical_ids": "⿰糹录", + "expanded_ids": "⿰⿻幺小⿱彐氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "彐", + "氺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緒", + "codepoint": "U+7DD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DD2", + "status": "exact_ids", + "ids": "⿰糹者", + "canonical_ids": "⿰糹者", + "expanded_ids": "⿰⿻幺小⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "小", + "幺", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緓", + "codepoint": "U+7DD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DD3", + "status": "exact_ids", + "ids": "⿰糹英", + "canonical_ids": "⿰糹英", + "expanded_ids": "⿰⿻幺小⿱艹⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "小", + "幺", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緔", + "codepoint": "U+7DD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DD4", + "status": "exact_ids", + "ids": "⿰糹尚", + "canonical_ids": "⿰糹尚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緕", + "codepoint": "U+7DD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DD5", + "status": "exact_ids", + "ids": "⿰糹斉", + "canonical_ids": "⿰糹斉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "斉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緖", + "codepoint": "U+7DD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DD6", + "status": "exact_ids", + "ids": "⿰糸者", + "canonical_ids": "⿰糸者", + "expanded_ids": "⿰⿱幺小⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "小", + "幺", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緗", + "codepoint": "U+7DD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DD7", + "status": "exact_ids", + "ids": "⿰糹相", + "canonical_ids": "⿰糹相", + "expanded_ids": "⿰⿻幺小⿰木目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緘", + "codepoint": "U+7DD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DD8", + "status": "exact_ids", + "ids": "⿰糹咸", + "canonical_ids": "⿰糹咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緙", + "codepoint": "U+7DD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DD9", + "status": "exact_ids", + "ids": "⿰糹革", + "canonical_ids": "⿰糹革", + "expanded_ids": "⿰⿻幺小革", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "線", + "codepoint": "U+7DDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DDA", + "status": "exact_ids", + "ids": "⿰糹泉", + "canonical_ids": "⿰糹泉", + "expanded_ids": "⿰⿻幺小⿱⿻日丶水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "小", + "幺", + "日", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緛", + "codepoint": "U+7DDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DDB", + "status": "exact_ids", + "ids": "⿰糹耎", + "canonical_ids": "⿰糹耎", + "expanded_ids": "⿰⿻幺小⿱而大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "小", + "幺", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緜", + "codepoint": "U+7DDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DDC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緝", + "codepoint": "U+7DDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DDD", + "status": "exact_ids", + "ids": "⿰糹咠", + "canonical_ids": "⿰糹咠", + "expanded_ids": "⿰⿻幺小⿱口耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "小", + "幺", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緞", + "codepoint": "U+7DDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DDE", + "status": "exact_ids", + "ids": "⿰糹段", + "canonical_ids": "⿰糹段", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "段" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緟", + "codepoint": "U+7DDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DDF", + "status": "exact_ids", + "ids": "⿰糹重", + "canonical_ids": "⿰糹重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "小", + "幺" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "締", + "codepoint": "U+7DE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DE0", + "status": "exact_ids", + "ids": "⿰糹帝", + "canonical_ids": "⿰糹帝", + "expanded_ids": "⿰⿻幺小⿳⿱亠八冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 251, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緡", + "codepoint": "U+7DE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DE1", + "status": "exact_ids", + "ids": "⿰糹昬", + "canonical_ids": "⿰糹昬", + "expanded_ids": "⿰⿻幺小⿱民日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "日", + "民" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緢", + "codepoint": "U+7DE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DE2", + "status": "exact_ids", + "ids": "⿰糹苗", + "canonical_ids": "⿰糹苗", + "expanded_ids": "⿰⿻幺小⿱艹田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緣", + "codepoint": "U+7DE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DE3", + "status": "exact_ids", + "ids": "⿰糹彖", + "canonical_ids": "⿰糹彖", + "expanded_ids": "⿰⿻幺小⿱彑𧰨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "彑", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緤", + "codepoint": "U+7DE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DE4", + "status": "exact_ids", + "ids": "⿰糹枼", + "canonical_ids": "⿰糹枼", + "expanded_ids": "⿰⿻幺小⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "小", + "幺", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緥", + "codepoint": "U+7DE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DE5", + "status": "exact_ids", + "ids": "⿰糹保", + "canonical_ids": "⿰糹保", + "expanded_ids": "⿰⿻幺小⿰亻⿱口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "小", + "幺", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緦", + "codepoint": "U+7DE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DE6", + "status": "exact_ids", + "ids": "⿰糹思", + "canonical_ids": "⿰糹思", + "expanded_ids": "⿰⿻幺小⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "心", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緧", + "codepoint": "U+7DE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DE7", + "status": "exact_ids", + "ids": "⿰糹酋", + "canonical_ids": "⿰糹酋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "小", + "幺" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "編", + "codepoint": "U+7DE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DE8", + "status": "exact_ids", + "ids": "⿰糹扁", + "canonical_ids": "⿰糹扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "小", + "尸", + "幺" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緩", + "codepoint": "U+7DE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DE9", + "status": "exact_ids", + "ids": "⿰糸爰", + "canonical_ids": "⿰糸爰", + "expanded_ids": "⿰⿱幺小⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "小", + "幺", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緪", + "codepoint": "U+7DEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DEA", + "status": "exact_ids", + "ids": "⿰糹恆", + "canonical_ids": "⿰糹恆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "忄" + ], + "unresolved_leaves": [ + "亙" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緫", + "codepoint": "U+7DEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DEB", + "status": "exact_ids", + "ids": "⿰糹怱", + "canonical_ids": "⿰糹怱", + "expanded_ids": "⿰⿻幺小⿱⿻勿丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "勿", + "小", + "幺", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緬", + "codepoint": "U+7DEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DEC", + "status": "exact_ids", + "ids": "⿰糹面", + "canonical_ids": "⿰糹面", + "expanded_ids": "⿰⿻幺小面", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "面" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緭", + "codepoint": "U+7DED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DED", + "status": "exact_ids", + "ids": "⿰糹胃", + "canonical_ids": "⿰糹胃", + "expanded_ids": "⿰⿻幺小⿱田月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "月", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緮", + "codepoint": "U+7DEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DEE", + "status": "exact_ids", + "ids": "⿰糹复", + "canonical_ids": "⿰糹复", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "复" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緯", + "codepoint": "U+7DEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DEF", + "status": "exact_ids", + "ids": "⿰糹韋", + "canonical_ids": "⿰糹韋", + "expanded_ids": "⿰⿻幺小韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緰", + "codepoint": "U+7DF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DF0", + "status": "exact_ids", + "ids": "⿰糹俞", + "canonical_ids": "⿰糹俞", + "expanded_ids": "⿰⿻幺小⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "小", + "幺", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緱", + "codepoint": "U+7DF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DF1", + "status": "exact_ids", + "ids": "⿰糹侯", + "canonical_ids": "⿰糹侯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "侯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緲", + "codepoint": "U+7DF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DF2", + "status": "exact_ids", + "ids": "⿰糹眇", + "canonical_ids": "⿰糹眇", + "expanded_ids": "⿰⿻幺小⿰目⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "幺", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緳", + "codepoint": "U+7DF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DF3", + "status": "exact_ids", + "ids": "⿱广絜", + "canonical_ids": "⿱广絜", + "expanded_ids": "⿱广⿱⿰丰刀⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "小", + "幺", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "練", + "codepoint": "U+7DF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DF4", + "status": "exact_ids", + "ids": "⿰糹東", + "canonical_ids": "⿰糹東", + "expanded_ids": "⿰⿻幺小⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緵", + "codepoint": "U+7DF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DF5", + "status": "exact_ids", + "ids": "⿰糸㚇", + "canonical_ids": "⿰糸㚇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "夊", + "小", + "幺" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緶", + "codepoint": "U+7DF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DF6", + "status": "exact_ids", + "ids": "⿰糹便", + "canonical_ids": "⿰糹便", + "expanded_ids": "⿰⿻幺小⿰亻更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "小", + "幺", + "更" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緷", + "codepoint": "U+7DF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DF7", + "status": "exact_ids", + "ids": "⿰糹軍", + "canonical_ids": "⿰糹軍", + "expanded_ids": "⿰⿻幺小⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "小", + "幺", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緸", + "codepoint": "U+7DF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DF8", + "status": "exact_ids", + "ids": "⿰糸垔", + "canonical_ids": "⿰糸垔", + "expanded_ids": "⿰⿱幺小⿱覀土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "幺", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緹", + "codepoint": "U+7DF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DF9", + "status": "exact_ids", + "ids": "⿰糹是", + "canonical_ids": "⿰糹是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "日" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緺", + "codepoint": "U+7DFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DFA", + "status": "exact_ids", + "ids": "⿰糹咼", + "canonical_ids": "⿰糹咼", + "expanded_ids": "⿰⿻幺小⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緻", + "codepoint": "U+7DFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DFB", + "status": "exact_ids", + "ids": "⿰糹致", + "canonical_ids": "⿰糹致", + "expanded_ids": "⿰⿻幺小⿰⿱⿱一厶土攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "小", + "幺", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緼", + "codepoint": "U+7DFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DFC", + "status": "exact_ids", + "ids": "⿰糹昷", + "canonical_ids": "⿰糹昷", + "expanded_ids": "⿰⿻幺小⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "日", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緽", + "codepoint": "U+7DFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DFD", + "status": "exact_ids", + "ids": "⿰糹貞", + "canonical_ids": "⿰糹貞", + "expanded_ids": "⿰⿻幺小⿱卜⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "卜", + "小", + "幺", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緾", + "codepoint": "U+7DFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DFE", + "status": "exact_ids", + "ids": "⿰糹厘", + "canonical_ids": "⿰糹厘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "小", + "幺" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "緿", + "codepoint": "U+7DFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7DFF", + "status": "exact_ids", + "ids": "⿰糹怠", + "canonical_ids": "⿰糹怠", + "expanded_ids": "⿰⿻幺小⿱⿱厶口心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "小", + "幺", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縀", + "codepoint": "U+7E00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E00", + "status": "exact_ids", + "ids": "⿰糹叚", + "canonical_ids": "⿰糹叚", + "expanded_ids": "⿰⿻幺小叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縁", + "codepoint": "U+7E01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E01", + "status": "exact_ids", + "ids": "⿰糸彖", + "canonical_ids": "⿰糸彖", + "expanded_ids": "⿰⿱幺小⿱彑𧰨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "彑", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縂", + "codepoint": "U+7E02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E02", + "status": "exact_ids", + "ids": "⿰糹总", + "canonical_ids": "⿰糹总", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "心" + ], + "unresolved_leaves": [ + "𠮦" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縃", + "codepoint": "U+7E03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E03", + "status": "exact_ids", + "ids": "⿰糹胥", + "canonical_ids": "⿰糹胥", + "expanded_ids": "⿰⿻幺小⿱疋月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "月", + "疋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縄", + "codepoint": "U+7E04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E04", + "status": "exact_ids", + "ids": "⿰糸𤰶", + "canonical_ids": "⿰糸𤰶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縅", + "codepoint": "U+7E05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E05", + "status": "exact_ids", + "ids": "⿰糹威", + "canonical_ids": "⿰糹威", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "威" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縆", + "codepoint": "U+7E06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E06", + "status": "exact_ids", + "ids": "⿰糹恒", + "canonical_ids": "⿰糹恒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "忄" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縇", + "codepoint": "U+7E07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E07", + "status": "exact_ids", + "ids": "⿰糹宣", + "canonical_ids": "⿰糹宣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "小", + "幺" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縈", + "codepoint": "U+7E08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E08", + "status": "exact_ids", + "ids": "⿳炏冖糸", + "canonical_ids": "⿳炏冖糸", + "expanded_ids": "⿳⿰火火冖⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "小", + "幺", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縉", + "codepoint": "U+7E09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E09", + "status": "exact_ids", + "ids": "⿰糹晉", + "canonical_ids": "⿰糹晉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "晉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縊", + "codepoint": "U+7E0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E0A", + "status": "exact_ids", + "ids": "⿰糹益", + "canonical_ids": "⿰糹益", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縋", + "codepoint": "U+7E0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E0B", + "status": "exact_ids", + "ids": "⿰糹追", + "canonical_ids": "⿰糹追", + "expanded_ids": "⿰⿻幺小⿰辶⿱丿㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "丿", + "小", + "幺", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縌", + "codepoint": "U+7E0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E0C", + "status": "exact_ids", + "ids": "⿰糹逆", + "canonical_ids": "⿰糹逆", + "expanded_ids": "⿰⿻幺小⿰辶⿱䒑屮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "小", + "屮", + "幺", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縍", + "codepoint": "U+7E0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E0D", + "status": "exact_ids", + "ids": "⿰糹旁", + "canonical_ids": "⿰糹旁", + "expanded_ids": "⿰⿻幺小⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "小", + "幺", + "方" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縎", + "codepoint": "U+7E0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E0E", + "status": "exact_ids", + "ids": "⿰糹骨", + "canonical_ids": "⿰糹骨", + "expanded_ids": "⿰⿻幺小⿱冎月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "小", + "幺", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縏", + "codepoint": "U+7E0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E0F", + "status": "exact_ids", + "ids": "⿱般糸", + "canonical_ids": "⿱般糸", + "expanded_ids": "⿱⿰舟⿱几又⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "小", + "幺", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縐", + "codepoint": "U+7E10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E10", + "status": "exact_ids", + "ids": "⿰糹芻", + "canonical_ids": "⿰糹芻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "芻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縑", + "codepoint": "U+7E11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E11", + "status": "exact_ids", + "ids": "⿰糹兼", + "canonical_ids": "⿰糹兼", + "expanded_ids": "⿰⿻幺小兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縒", + "codepoint": "U+7E12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E12", + "status": "exact_ids", + "ids": "⿰糹差", + "canonical_ids": "⿰糹差", + "expanded_ids": "⿰⿻幺小⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "工", + "幺", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縓", + "codepoint": "U+7E13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E13", + "status": "exact_ids", + "ids": "⿰糹原", + "canonical_ids": "⿰糹原", + "expanded_ids": "⿰⿻幺小⿱厂⿱⿻日丶小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "小", + "幺", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縔", + "codepoint": "U+7E14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E14", + "status": "exact_ids", + "ids": "⿰糹桑", + "canonical_ids": "⿰糹桑", + "expanded_ids": "⿰⿻幺小⿱⿱又⿰又又木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "小", + "幺", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縕", + "codepoint": "U+7E15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E15", + "status": "exact_ids", + "ids": "⿰糸𥁕", + "canonical_ids": "⿰糸𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "皿" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縖", + "codepoint": "U+7E16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E16", + "status": "exact_ids", + "ids": "⿰糹害", + "canonical_ids": "⿰糹害", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "害" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縗", + "codepoint": "U+7E17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E17", + "status": "exact_ids", + "ids": "⿰糹衰", + "canonical_ids": "⿰糹衰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "衰" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縘", + "codepoint": "U+7E18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E18", + "status": "exact_ids", + "ids": "⿰糹奚", + "canonical_ids": "⿰糹奚", + "expanded_ids": "⿰⿻幺小⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "小", + "幺", + "爪" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縙", + "codepoint": "U+7E19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E19", + "status": "exact_ids", + "ids": "⿰糹茸", + "canonical_ids": "⿰糹茸", + "expanded_ids": "⿰⿻幺小⿱艹耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "耳", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縚", + "codepoint": "U+7E1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E1A", + "status": "exact_ids", + "ids": "⿰糹舀", + "canonical_ids": "⿰糹舀", + "expanded_ids": "⿰⿻幺小⿱爫臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "爫", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縛", + "codepoint": "U+7E1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E1B", + "status": "exact_ids", + "ids": "⿰糹尃", + "canonical_ids": "⿰糹尃", + "expanded_ids": "⿰⿻幺小⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "小", + "幺", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縜", + "codepoint": "U+7E1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E1C", + "status": "exact_ids", + "ids": "⿰糹員", + "canonical_ids": "⿰糹員", + "expanded_ids": "⿰⿻幺小⿱口⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "小", + "幺", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縝", + "codepoint": "U+7E1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E1D", + "status": "exact_ids", + "ids": "⿰糹眞", + "canonical_ids": "⿰糹眞", + "expanded_ids": "⿰⿻幺小⿻匕⿱⿱一儿目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "匕", + "小", + "幺", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縞", + "codepoint": "U+7E1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E1E", + "status": "exact_ids", + "ids": "⿰糹高", + "canonical_ids": "⿰糹高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縟", + "codepoint": "U+7E1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E1F", + "status": "exact_ids", + "ids": "⿰糹辱", + "canonical_ids": "⿰糹辱", + "expanded_ids": "⿰⿻幺小⿱辰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "小", + "幺", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縠", + "codepoint": "U+7E20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E20", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縡", + "codepoint": "U+7E21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E21", + "status": "exact_ids", + "ids": "⿰糹宰", + "canonical_ids": "⿰糹宰", + "expanded_ids": "⿰⿻幺小⿱宀⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "宀", + "小", + "幺", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縢", + "codepoint": "U+7E22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E22", + "status": "exact_ids", + "ids": "⿰月絭", + "canonical_ids": "⿰月絭", + "expanded_ids": "⿰月⿱龹⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "月", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縣", + "codepoint": "U+7E23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E23", + "status": "exact_ids", + "ids": "⿰県系", + "canonical_ids": "⿰県系", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "幺" + ], + "unresolved_leaves": [ + "県" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縤", + "codepoint": "U+7E24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E24", + "status": "exact_ids", + "ids": "⿰糹素", + "canonical_ids": "⿰糹素", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縥", + "codepoint": "U+7E25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E25", + "status": "exact_ids", + "ids": "⿰糹秦", + "canonical_ids": "⿰糹秦", + "expanded_ids": "⿰⿻幺小⿱𡗗⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "幺", + "木", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縦", + "codepoint": "U+7E26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E26", + "status": "exact_ids", + "ids": "⿰糹従", + "canonical_ids": "⿰糹従", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "従" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縧", + "codepoint": "U+7E27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E27", + "status": "exact_ids", + "ids": "⿰糹條", + "canonical_ids": "⿰糹條", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "條" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縨", + "codepoint": "U+7E28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E28", + "status": "exact_ids", + "ids": "⿰糹晃", + "canonical_ids": "⿰糹晃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "小", + "幺", + "日" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縩", + "codepoint": "U+7E29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E29", + "status": "exact_ids", + "ids": "⿰糹祭", + "canonical_ids": "⿰糹祭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縪", + "codepoint": "U+7E2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E2A", + "status": "exact_ids", + "ids": "⿰糹畢", + "canonical_ids": "⿰糹畢", + "expanded_ids": "⿰⿻幺小畢", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "畢" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縫", + "codepoint": "U+7E2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E2B", + "status": "exact_ids", + "ids": "⿰糸逢", + "canonical_ids": "⿰糸逢", + "expanded_ids": "⿰⿱幺小⿰辶⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "小", + "幺", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縬", + "codepoint": "U+7E2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E2C", + "status": "exact_ids", + "ids": "⿰糹戚", + "canonical_ids": "⿰糹戚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "戚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縭", + "codepoint": "U+7E2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E2D", + "status": "exact_ids", + "ids": "⿰糹离", + "canonical_ids": "⿰糹离", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "小", + "幺", + "禸" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縮", + "codepoint": "U+7E2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E2E", + "status": "exact_ids", + "ids": "⿰糹宿", + "canonical_ids": "⿰糹宿", + "expanded_ids": "⿰⿻幺小⿱宀⿰亻⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "亻", + "宀", + "小", + "幺", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縯", + "codepoint": "U+7E2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E2F", + "status": "exact_ids", + "ids": "⿰糹寅", + "canonical_ids": "⿰糹寅", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "寅" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縰", + "codepoint": "U+7E30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E30", + "status": "exact_ids", + "ids": "⿰糹徙", + "canonical_ids": "⿰糹徙", + "expanded_ids": "⿰⿻幺小⿰彳⿱止止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "彳", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縱", + "codepoint": "U+7E31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E31", + "status": "exact_ids", + "ids": "⿰糹從", + "canonical_ids": "⿰糹從", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "從" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縲", + "codepoint": "U+7E32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E32", + "status": "exact_ids", + "ids": "⿰糹累", + "canonical_ids": "⿰糹累", + "expanded_ids": "⿰⿻幺小⿱田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縳", + "codepoint": "U+7E33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E33", + "status": "exact_ids", + "ids": "⿰糹專", + "canonical_ids": "⿰糹專", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "寸", + "小", + "幺" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縴", + "codepoint": "U+7E34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E34", + "status": "exact_ids", + "ids": "⿰糹牽", + "canonical_ids": "⿰糹牽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "牽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縵", + "codepoint": "U+7E35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E35", + "status": "exact_ids", + "ids": "⿰糹曼", + "canonical_ids": "⿰糹曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縶", + "codepoint": "U+7E36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E36", + "status": "exact_ids", + "ids": "⿱執糸", + "canonical_ids": "⿱執糸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "土", + "小", + "幺" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縷", + "codepoint": "U+7E37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E37", + "status": "exact_ids", + "ids": "⿰糹婁", + "canonical_ids": "⿰糹婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縸", + "codepoint": "U+7E38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E38", + "status": "exact_ids", + "ids": "⿰糹莫", + "canonical_ids": "⿰糹莫", + "expanded_ids": "⿰⿻幺小⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "小", + "幺", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縹", + "codepoint": "U+7E39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E39", + "status": "exact_ids", + "ids": "⿰糹票", + "canonical_ids": "⿰糹票", + "expanded_ids": "⿰⿻幺小⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "幺", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縺", + "codepoint": "U+7E3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E3A", + "status": "exact_ids", + "ids": "⿰糹連", + "canonical_ids": "⿰糹連", + "expanded_ids": "⿰⿻幺小⿰辶車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "車", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縻", + "codepoint": "U+7E3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E3B", + "status": "exact_ids", + "ids": "⿱麻糸", + "canonical_ids": "⿱麻糸", + "expanded_ids": "⿱⿱广⿰木木⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縼", + "codepoint": "U+7E3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E3C", + "status": "exact_ids", + "ids": "⿰糹旋", + "canonical_ids": "⿰糹旋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "旋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "總", + "codepoint": "U+7E3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E3D", + "status": "exact_ids", + "ids": "⿰糹悤", + "canonical_ids": "⿰糹悤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "心" + ], + "unresolved_leaves": [ + "囱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "績", + "codepoint": "U+7E3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E3E", + "status": "exact_ids", + "ids": "⿰糹責", + "canonical_ids": "⿰糹責", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "小", + "幺", + "目" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "縿", + "codepoint": "U+7E3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E3F", + "status": "exact_ids", + "ids": "⿰糹參", + "canonical_ids": "⿰糹參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繀", + "codepoint": "U+7E40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E40", + "status": "exact_ids", + "ids": "⿰糹崔", + "canonical_ids": "⿰糹崔", + "expanded_ids": "⿰⿻幺小⿱山隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "山", + "幺", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繁", + "codepoint": "U+7E41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E41", + "status": "exact_ids", + "ids": "⿱敏糸", + "canonical_ids": "⿱敏糸", + "expanded_ids": "⿱⿰⿱⿻丿一母攵⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "小", + "幺", + "攵", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繂", + "codepoint": "U+7E42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E42", + "status": "exact_ids", + "ids": "⿰糹率", + "canonical_ids": "⿰糹率", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "率" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繃", + "codepoint": "U+7E43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E43", + "status": "exact_ids", + "ids": "⿰糹崩", + "canonical_ids": "⿰糹崩", + "expanded_ids": "⿰⿻幺小⿱山⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "山", + "幺", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繄", + "codepoint": "U+7E44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E44", + "status": "exact_ids", + "ids": "⿱殹糸", + "canonical_ids": "⿱殹糸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "小", + "幺" + ], + "unresolved_leaves": [ + "医" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繅", + "codepoint": "U+7E45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E45", + "status": "exact_ids", + "ids": "⿰糹巢", + "canonical_ids": "⿰糹巢", + "expanded_ids": "⿰⿻幺小⿱巛⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "巛", + "幺", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繆", + "codepoint": "U+7E46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E46", + "status": "exact_ids", + "ids": "⿰糹翏", + "canonical_ids": "⿰糹翏", + "expanded_ids": "⿰⿻幺小⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "小", + "幺", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繇", + "codepoint": "U+7E47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E47", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繈", + "codepoint": "U+7E48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E48", + "status": "exact_ids", + "ids": "⿰糹強", + "canonical_ids": "⿰糹強", + "expanded_ids": "⿰⿻幺小⿰弓⿱厶虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "小", + "幺", + "弓", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繉", + "codepoint": "U+7E49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E49", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繊", + "codepoint": "U+7E4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E4A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繋", + "codepoint": "U+7E4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E4B", + "status": "exact_ids", + "ids": "⿱軗糸", + "canonical_ids": "⿱軗糸", + "expanded_ids": "⿱⿰車⿱几又⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "小", + "幺", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繌", + "codepoint": "U+7E4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E4C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繍", + "codepoint": "U+7E4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E4D", + "status": "exact_ids", + "ids": "⿰糹粛", + "canonical_ids": "⿰糹粛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "粛" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繎", + "codepoint": "U+7E4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E4E", + "status": "exact_ids", + "ids": "⿰糹然", + "canonical_ids": "⿰糹然", + "expanded_ids": "⿰⿻幺小⿱⿰月⿻大丶灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "小", + "幺", + "月", + "灬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繏", + "codepoint": "U+7E4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E4F", + "status": "exact_ids", + "ids": "⿰糹巽", + "canonical_ids": "⿰糹巽", + "expanded_ids": "⿰⿻幺小⿱⿰己己⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "己", + "幺", + "廾", + "廿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繐", + "codepoint": "U+7E50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E50", + "status": "exact_ids", + "ids": "⿰糹惠", + "canonical_ids": "⿰糹惠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "小", + "幺", + "心" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繑", + "codepoint": "U+7E51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E51", + "status": "exact_ids", + "ids": "⿰糹喬", + "canonical_ids": "⿰糹喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "小", + "幺" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繒", + "codepoint": "U+7E52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E52", + "status": "exact_ids", + "ids": "⿰糹曾", + "canonical_ids": "⿰糹曾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繓", + "codepoint": "U+7E53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E53", + "status": "exact_ids", + "ids": "⿰糹最", + "canonical_ids": "⿰糹最", + "expanded_ids": "⿰⿻幺小⿱曰⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "小", + "幺", + "曰", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "織", + "codepoint": "U+7E54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E54", + "status": "exact_ids", + "ids": "⿰糸戠", + "canonical_ids": "⿰糸戠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "日", + "立" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繕", + "codepoint": "U+7E55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E55", + "status": "exact_ids", + "ids": "⿰糹善", + "canonical_ids": "⿰糹善", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "善" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繖", + "codepoint": "U+7E56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E56", + "status": "exact_ids", + "ids": "⿰糹散", + "canonical_ids": "⿰糹散", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "散" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繗", + "codepoint": "U+7E57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E57", + "status": "exact_ids", + "ids": "⿰糹粦", + "canonical_ids": "⿰糹粦", + "expanded_ids": "⿰⿻幺小⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "小", + "幺", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繘", + "codepoint": "U+7E58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E58", + "status": "exact_ids", + "ids": "⿰糹矞", + "canonical_ids": "⿰糹矞", + "expanded_ids": "⿰⿻幺小⿱矛⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "小", + "幺", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繙", + "codepoint": "U+7E59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E59", + "status": "exact_ids", + "ids": "⿰糹番", + "canonical_ids": "⿰糹番", + "expanded_ids": "⿰⿻幺小⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "小", + "幺", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繚", + "codepoint": "U+7E5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E5A", + "status": "exact_ids", + "ids": "⿰糸尞", + "canonical_ids": "⿰糸尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繛", + "codepoint": "U+7E5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E5B", + "status": "exact_ids", + "ids": "⿰素卓", + "canonical_ids": "⿰素卓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "小", + "幺", + "日" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繜", + "codepoint": "U+7E5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E5C", + "status": "exact_ids", + "ids": "⿰糹尊", + "canonical_ids": "⿰糹尊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "寸", + "小", + "幺" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繝", + "codepoint": "U+7E5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E5D", + "status": "exact_ids", + "ids": "⿰糹閒", + "canonical_ids": "⿰糹閒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "閒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繞", + "codepoint": "U+7E5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E5E", + "status": "exact_ids", + "ids": "⿰糹堯", + "canonical_ids": "⿰糹堯", + "expanded_ids": "⿰⿻幺小⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "小", + "幺" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繟", + "codepoint": "U+7E5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E5F", + "status": "exact_ids", + "ids": "⿰糹單", + "canonical_ids": "⿰糹單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繠", + "codepoint": "U+7E60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E60", + "status": "exact_ids", + "ids": "⿱惢糸", + "canonical_ids": "⿱惢糸", + "expanded_ids": "⿱⿱心⿰心心⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "心" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繡", + "codepoint": "U+7E61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E61", + "status": "exact_ids", + "ids": "⿰糹肅", + "canonical_ids": "⿰糹肅", + "expanded_ids": "⿰⿻幺小⿻肀𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "肀", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 154, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繢", + "codepoint": "U+7E62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E62", + "status": "exact_ids", + "ids": "⿰糹貴", + "canonical_ids": "⿰糹貴", + "expanded_ids": "⿰⿻幺小⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "小", + "幺", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繣", + "codepoint": "U+7E63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E63", + "status": "exact_ids", + "ids": "⿰糹畫", + "canonical_ids": "⿰糹畫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "畫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繤", + "codepoint": "U+7E64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E64", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繥", + "codepoint": "U+7E65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E65", + "status": "exact_ids", + "ids": "⿰糹喜", + "canonical_ids": "⿰糹喜", + "expanded_ids": "⿰⿻幺小⿱⿱十豆口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "小", + "幺", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繦", + "codepoint": "U+7E66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E66", + "status": "exact_ids", + "ids": "⿰糹强", + "canonical_ids": "⿰糹强", + "expanded_ids": "⿰⿻幺小⿰弓⿱口虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "小", + "幺", + "弓", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繧", + "codepoint": "U+7E67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E67", + "status": "exact_ids", + "ids": "⿰糹雲", + "canonical_ids": "⿰糹雲", + "expanded_ids": "⿰⿻幺小⿱雨⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "小", + "幺", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繨", + "codepoint": "U+7E68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E68", + "status": "exact_ids", + "ids": "⿰糹達", + "canonical_ids": "⿰糹達", + "expanded_ids": "⿰⿻幺小⿰辶⿱土羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "幺", + "羊", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繩", + "codepoint": "U+7E69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E69", + "status": "exact_ids", + "ids": "⿰糹黽", + "canonical_ids": "⿰糹黽", + "expanded_ids": "⿰⿻幺小黽", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "黽" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繪", + "codepoint": "U+7E6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E6A", + "status": "exact_ids", + "ids": "⿰糹會", + "canonical_ids": "⿰糹會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "曰" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繫", + "codepoint": "U+7E6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E6B", + "status": "exact_ids", + "ids": "⿱𣪠糸", + "canonical_ids": "⿱𣪠糸", + "expanded_ids": "⿱⿰⿱車凵⿱几又⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "凵", + "又", + "小", + "幺", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繬", + "codepoint": "U+7E6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E6C", + "status": "exact_ids", + "ids": "⿰糹嗇", + "canonical_ids": "⿰糹嗇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "小", + "幺" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繭", + "codepoint": "U+7E6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E6D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繮", + "codepoint": "U+7E6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E6E", + "status": "exact_ids", + "ids": "⿰糸畺", + "canonical_ids": "⿰糸畺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "田" + ], + "unresolved_leaves": [ + "三" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繯", + "codepoint": "U+7E6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E6F", + "status": "exact_ids", + "ids": "⿰糹睘", + "canonical_ids": "⿰糹睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繰", + "codepoint": "U+7E70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E70", + "status": "exact_ids", + "ids": "⿰糹喿", + "canonical_ids": "⿰糹喿", + "expanded_ids": "⿰⿻幺小⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "小", + "幺", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繱", + "codepoint": "U+7E71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E71", + "status": "exact_ids", + "ids": "⿰糸葱", + "canonical_ids": "⿰糸葱", + "expanded_ids": "⿰⿱幺小⿱艹⿱⿻勿丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "勿", + "小", + "幺", + "心", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繲", + "codepoint": "U+7E72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E72", + "status": "exact_ids", + "ids": "⿰糹解", + "canonical_ids": "⿰糹解", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "解" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繳", + "codepoint": "U+7E73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E73", + "status": "exact_ids", + "ids": "⿰糹敫", + "canonical_ids": "⿰糹敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繴", + "codepoint": "U+7E74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E74", + "status": "exact_ids", + "ids": "⿱辟糸", + "canonical_ids": "⿱辟糸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "小", + "幺", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繵", + "codepoint": "U+7E75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E75", + "status": "exact_ids", + "ids": "⿰糹亶", + "canonical_ids": "⿰糹亶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "小", + "幺", + "日" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繶", + "codepoint": "U+7E76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E76", + "status": "exact_ids", + "ids": "⿰糹意", + "canonical_ids": "⿰糹意", + "expanded_ids": "⿰⿻幺小⿱⿱立日心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "心", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繷", + "codepoint": "U+7E77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E77", + "status": "exact_ids", + "ids": "⿰糹農", + "canonical_ids": "⿰糹農", + "expanded_ids": "⿰⿻幺小⿱曲辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "曲", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繸", + "codepoint": "U+7E78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E78", + "status": "exact_ids", + "ids": "⿰糹遂", + "canonical_ids": "⿰糹遂", + "expanded_ids": "⿰⿻幺小⿰辶⿱八豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "小", + "幺", + "豕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繹", + "codepoint": "U+7E79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E79", + "status": "exact_ids", + "ids": "⿰糹睪", + "canonical_ids": "⿰糹睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "幺", + "罒" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繺", + "codepoint": "U+7E7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E7A", + "status": "exact_ids", + "ids": "⿰糹煞", + "canonical_ids": "⿰糹煞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "煞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繻", + "codepoint": "U+7E7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E7B", + "status": "exact_ids", + "ids": "⿰糹需", + "canonical_ids": "⿰糹需", + "expanded_ids": "⿰⿻幺小⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繼", + "codepoint": "U+7E7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E7C", + "status": "exact_ids", + "ids": "⿰糹㡭", + "canonical_ids": "⿰糹㡭", + "expanded_ids": "⿰⿻幺小⿱⿰𠃊⿰幺幺⿰𠃊⿰幺幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "𠃊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 310, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繽", + "codepoint": "U+7E7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E7D", + "status": "exact_ids", + "ids": "⿰糹賓", + "canonical_ids": "⿰糹賓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繾", + "codepoint": "U+7E7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E7E", + "status": "exact_ids", + "ids": "⿰糹遣", + "canonical_ids": "⿰糹遣", + "expanded_ids": "⿰⿻幺小⿰辶⿱⿱⿻口丨一㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "一", + "丨", + "口", + "小", + "幺", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "繿", + "codepoint": "U+7E7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E7F", + "status": "exact_ids", + "ids": "⿰糹監", + "canonical_ids": "⿰糹監", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纀", + "codepoint": "U+7E80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E80", + "status": "exact_ids", + "ids": "⿰糹僕", + "canonical_ids": "⿰糹僕", + "expanded_ids": "⿰⿻幺小⿰亻⿱业⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "亻", + "儿", + "小", + "幺", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纁", + "codepoint": "U+7E81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E81", + "status": "exact_ids", + "ids": "⿰糹熏", + "canonical_ids": "⿰糹熏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "熏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纂", + "codepoint": "U+7E82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E82", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纃", + "codepoint": "U+7E83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E83", + "status": "exact_ids", + "ids": "⿰糹齊", + "canonical_ids": "⿰糹齊", + "expanded_ids": "⿰⿻幺小齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纄", + "codepoint": "U+7E84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E84", + "status": "exact_ids", + "ids": "⿰糹蓬", + "canonical_ids": "⿰糹蓬", + "expanded_ids": "⿰⿻幺小⿱艹⿰辶⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "小", + "幺", + "艹", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纅", + "codepoint": "U+7E85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E85", + "status": "exact_ids", + "ids": "⿰糹樂", + "canonical_ids": "⿰糹樂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "樂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纆", + "codepoint": "U+7E86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E86", + "status": "exact_ids", + "ids": "⿰糹墨", + "canonical_ids": "⿰糹墨", + "expanded_ids": "⿰⿻幺小⿱黑土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "幺", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纇", + "codepoint": "U+7E87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E87", + "status": "exact_ids", + "ids": "⿰絭頁", + "canonical_ids": "⿰絭頁", + "expanded_ids": "⿰⿱龹⿱幺小⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "小", + "幺", + "目", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纈", + "codepoint": "U+7E88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E88", + "status": "exact_ids", + "ids": "⿰糹頡", + "canonical_ids": "⿰糹頡", + "expanded_ids": "⿰⿻幺小⿰⿱士口⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "口", + "士", + "小", + "幺", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纉", + "codepoint": "U+7E89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E89", + "status": "exact_ids", + "ids": "⿰糹賛", + "canonical_ids": "⿰糹賛", + "expanded_ids": "⿰⿻幺小⿱⿰⿻一大⿻一大⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "大", + "小", + "幺", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纊", + "codepoint": "U+7E8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E8A", + "status": "exact_ids", + "ids": "⿰糹廣", + "canonical_ids": "⿰糹廣", + "expanded_ids": "⿰⿻幺小⿱广黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "广", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纋", + "codepoint": "U+7E8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E8B", + "status": "exact_ids", + "ids": "⿰糹憂", + "canonical_ids": "⿰糹憂", + "expanded_ids": "⿰⿻幺小⿳⿻一⿻日丶冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "冖", + "夊", + "小", + "幺", + "心", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 289, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "續", + "codepoint": "U+7E8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E8C", + "status": "exact_ids", + "ids": "⿰糹賣", + "canonical_ids": "⿰糹賣", + "expanded_ids": "⿰⿻幺小⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "士", + "小", + "幺", + "目", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纍", + "codepoint": "U+7E8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E8D", + "status": "exact_ids", + "ids": "⿱畾糸", + "canonical_ids": "⿱畾糸", + "expanded_ids": "⿱⿱田⿰田田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纎", + "codepoint": "U+7E8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E8E", + "status": "exact_ids", + "ids": "⿰糹韯", + "canonical_ids": "⿰糹韯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "韯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纏", + "codepoint": "U+7E8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E8F", + "status": "exact_ids", + "ids": "⿰糹廛", + "canonical_ids": "⿰糹廛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "广" + ], + "unresolved_leaves": [ + "里", + "𡉀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纐", + "codepoint": "U+7E90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E90", + "status": "exact_ids", + "ids": "⿰糹頝", + "canonical_ids": "⿰糹頝", + "expanded_ids": "⿰⿻幺小⿰⿱亠父⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亠", + "八", + "小", + "幺", + "父", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纑", + "codepoint": "U+7E91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E91", + "status": "exact_ids", + "ids": "⿰糹盧", + "canonical_ids": "⿰糹盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "皿" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纒", + "codepoint": "U+7E92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E92", + "status": "exact_ids", + "ids": "⿰糸㕓", + "canonical_ids": "⿰糸㕓", + "expanded_ids": "⿰⿱幺小⿱厂⿱黑土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "土", + "小", + "幺", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纓", + "codepoint": "U+7E93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E93", + "status": "exact_ids", + "ids": "⿰糹嬰", + "canonical_ids": "⿰糹嬰", + "expanded_ids": "⿰⿻幺小⿱⿰⿱目八⿱目八女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "女", + "小", + "幺", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纔", + "codepoint": "U+7E94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E94", + "status": "exact_ids", + "ids": "⿰糹毚", + "canonical_ids": "⿰糹毚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "毚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纕", + "codepoint": "U+7E95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E95", + "status": "exact_ids", + "ids": "⿰糹襄", + "canonical_ids": "⿰糹襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纖", + "codepoint": "U+7E96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E96", + "status": "exact_ids", + "ids": "⿰糹韱", + "canonical_ids": "⿰糹韱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "韱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纗", + "codepoint": "U+7E97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E97", + "status": "exact_ids", + "ids": "⿰糹巂", + "canonical_ids": "⿰糹巂", + "expanded_ids": "⿰⿻幺小⿱⿱山隹⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "小", + "山", + "幺", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纘", + "codepoint": "U+7E98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E98", + "status": "exact_ids", + "ids": "⿰糹贊", + "canonical_ids": "⿰糹贊", + "expanded_ids": "⿰⿻幺小⿱⿰⿱牛儿⿱牛儿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "小", + "幺", + "牛", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纙", + "codepoint": "U+7E99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E99", + "status": "exact_ids", + "ids": "⿰糹羅", + "canonical_ids": "⿰糹羅", + "expanded_ids": "⿰⿻幺小⿱罒⿰⿻幺小隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "罒", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纚", + "codepoint": "U+7E9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E9A", + "status": "exact_ids", + "ids": "⿰糹麗", + "canonical_ids": "⿰糹麗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "鹿" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纛", + "codepoint": "U+7E9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E9B", + "status": "exact_ids", + "ids": "⿱毒縣", + "canonical_ids": "⿱毒縣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "幺", + "毋" + ], + "unresolved_leaves": [ + "県", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纜", + "codepoint": "U+7E9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E9C", + "status": "exact_ids", + "ids": "⿰糹覽", + "canonical_ids": "⿰糹覽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺" + ], + "unresolved_leaves": [ + "覽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纝", + "codepoint": "U+7E9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E9D", + "status": "exact_ids", + "ids": "⿰糹纍", + "canonical_ids": "⿰糹纍", + "expanded_ids": "⿰⿻幺小⿱⿱田⿰田田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纞", + "codepoint": "U+7E9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E9E", + "status": "exact_ids", + "ids": "⿰糹戀", + "canonical_ids": "⿰糹戀", + "expanded_ids": "⿰⿻幺小⿱⿲⿱幺小言⿱幺小心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "心", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 291, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纟", + "codepoint": "U+7E9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7E9F", + "status": "leaf_self_fallback", + "ids": "纟", + "canonical_ids": "纟", + "expanded_ids": "纟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纠", + "codepoint": "U+7EA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EA0", + "status": "exact_ids", + "ids": "⿰纟丩", + "canonical_ids": "⿰纟丩", + "expanded_ids": "⿰纟⿰丨丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纡", + "codepoint": "U+7EA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EA1", + "status": "exact_ids", + "ids": "⿰纟于", + "canonical_ids": "⿰纟于", + "expanded_ids": "⿰纟⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "红", + "codepoint": "U+7EA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EA2", + "status": "exact_ids", + "ids": "⿰纟工", + "canonical_ids": "⿰纟工", + "expanded_ids": "⿰纟工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纣", + "codepoint": "U+7EA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EA3", + "status": "exact_ids", + "ids": "⿰纟寸", + "canonical_ids": "⿰纟寸", + "expanded_ids": "⿰纟寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纤", + "codepoint": "U+7EA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EA4", + "status": "exact_ids", + "ids": "⿰纟千", + "canonical_ids": "⿰纟千", + "expanded_ids": "⿰纟⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纥", + "codepoint": "U+7EA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EA5", + "status": "exact_ids", + "ids": "⿰纟乞", + "canonical_ids": "⿰纟乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "约", + "codepoint": "U+7EA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EA6", + "status": "exact_ids", + "ids": "⿰纟勺", + "canonical_ids": "⿰纟勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "级", + "codepoint": "U+7EA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EA7", + "status": "exact_ids", + "ids": "⿰纟及", + "canonical_ids": "⿰纟及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "纟" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纨", + "codepoint": "U+7EA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EA8", + "status": "exact_ids", + "ids": "⿰纟丸", + "canonical_ids": "⿰纟丸", + "expanded_ids": "⿰纟⿻九丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纩", + "codepoint": "U+7EA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EA9", + "status": "exact_ids", + "ids": "⿰纟广", + "canonical_ids": "⿰纟广", + "expanded_ids": "⿰纟广", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纪", + "codepoint": "U+7EAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EAA", + "status": "exact_ids", + "ids": "⿰纟己", + "canonical_ids": "⿰纟己", + "expanded_ids": "⿰纟己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纫", + "codepoint": "U+7EAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EAB", + "status": "exact_ids", + "ids": "⿰纟刃", + "canonical_ids": "⿰纟刃", + "expanded_ids": "⿰纟⿻刀丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纬", + "codepoint": "U+7EAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EAC", + "status": "exact_ids", + "ids": "⿰纟韦", + "canonical_ids": "⿰纟韦", + "expanded_ids": "⿰纟韦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟", + "韦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纭", + "codepoint": "U+7EAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EAD", + "status": "exact_ids", + "ids": "⿰纟云", + "canonical_ids": "⿰纟云", + "expanded_ids": "⿰纟⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纮", + "codepoint": "U+7EAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EAE", + "status": "exact_ids", + "ids": "⿰纟厷", + "canonical_ids": "⿰纟厷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "厷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纯", + "codepoint": "U+7EAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EAF", + "status": "exact_ids", + "ids": "⿰纟屯", + "canonical_ids": "⿰纟屯", + "expanded_ids": "⿰纟屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纰", + "codepoint": "U+7EB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EB0", + "status": "exact_ids", + "ids": "⿰纟比", + "canonical_ids": "⿰纟比", + "expanded_ids": "⿰纟⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纱", + "codepoint": "U+7EB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EB1", + "status": "exact_ids", + "ids": "⿰纟少", + "canonical_ids": "⿰纟少", + "expanded_ids": "⿰纟⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纲", + "codepoint": "U+7EB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EB2", + "status": "exact_ids", + "ids": "⿰纟冈", + "canonical_ids": "⿰纟冈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "冈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纳", + "codepoint": "U+7EB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EB3", + "status": "exact_ids", + "ids": "⿰纟内", + "canonical_ids": "⿰纟内", + "expanded_ids": "⿰纟⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纴", + "codepoint": "U+7EB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EB4", + "status": "exact_ids", + "ids": "⿰纟壬", + "canonical_ids": "⿰纟壬", + "expanded_ids": "⿰纟⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纵", + "codepoint": "U+7EB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EB5", + "status": "exact_ids", + "ids": "⿰纟从", + "canonical_ids": "⿰纟从", + "expanded_ids": "⿰纟⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纶", + "codepoint": "U+7EB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EB6", + "status": "exact_ids", + "ids": "⿰纟仑", + "canonical_ids": "⿰纟仑", + "expanded_ids": "⿰纟⿱人匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "匕", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纷", + "codepoint": "U+7EB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EB7", + "status": "exact_ids", + "ids": "⿰纟分", + "canonical_ids": "⿰纟分", + "expanded_ids": "⿰纟⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纸", + "codepoint": "U+7EB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EB8", + "status": "exact_ids", + "ids": "⿰纟氏", + "canonical_ids": "⿰纟氏", + "expanded_ids": "⿰纟氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氏", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纹", + "codepoint": "U+7EB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EB9", + "status": "exact_ids", + "ids": "⿰纟文", + "canonical_ids": "⿰纟文", + "expanded_ids": "⿰纟文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纺", + "codepoint": "U+7EBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EBA", + "status": "exact_ids", + "ids": "⿰纟方", + "canonical_ids": "⿰纟方", + "expanded_ids": "⿰纟方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纻", + "codepoint": "U+7EBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EBB", + "status": "exact_ids", + "ids": "⿰纟㝉", + "canonical_ids": "⿰纟㝉", + "expanded_ids": "⿰纟⿱宀一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "宀", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纼", + "codepoint": "U+7EBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EBC", + "status": "exact_ids", + "ids": "⿰纟引", + "canonical_ids": "⿰纟引", + "expanded_ids": "⿰纟⿰弓丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "弓", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纽", + "codepoint": "U+7EBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EBD", + "status": "exact_ids", + "ids": "⿰纟丑", + "canonical_ids": "⿰纟丑", + "expanded_ids": "⿰纟丑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "纾", + "codepoint": "U+7EBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EBE", + "status": "exact_ids", + "ids": "⿰纟予", + "canonical_ids": "⿰纟予", + "expanded_ids": "⿰纟⿱龴⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "纟", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "线", + "codepoint": "U+7EBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EBF", + "status": "exact_ids", + "ids": "⿰纟戋", + "canonical_ids": "⿰纟戋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "纟" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绀", + "codepoint": "U+7EC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EC0", + "status": "exact_ids", + "ids": "⿰纟甘", + "canonical_ids": "⿰纟甘", + "expanded_ids": "⿰纟甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甘", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绁", + "codepoint": "U+7EC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EC1", + "status": "exact_ids", + "ids": "⿰纟世", + "canonical_ids": "⿰纟世", + "expanded_ids": "⿰纟世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绂", + "codepoint": "U+7EC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EC2", + "status": "exact_ids", + "ids": "⿰纟犮", + "canonical_ids": "⿰纟犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "练", + "codepoint": "U+7EC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EC3", + "status": "exact_ids", + "ids": "⿰纟𫠣", + "canonical_ids": "⿰纟𫠣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "𫠣" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "组", + "codepoint": "U+7EC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EC4", + "status": "exact_ids", + "ids": "⿰纟且", + "canonical_ids": "⿰纟且", + "expanded_ids": "⿰纟且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绅", + "codepoint": "U+7EC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EC5", + "status": "exact_ids", + "ids": "⿰纟申", + "canonical_ids": "⿰纟申", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "细", + "codepoint": "U+7EC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EC6", + "status": "exact_ids", + "ids": "⿰纟田", + "canonical_ids": "⿰纟田", + "expanded_ids": "⿰纟田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "织", + "codepoint": "U+7EC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EC7", + "status": "exact_ids", + "ids": "⿰纟只", + "canonical_ids": "⿰纟只", + "expanded_ids": "⿰纟⿱口八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "终", + "codepoint": "U+7EC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EC8", + "status": "exact_ids", + "ids": "⿰纟冬", + "canonical_ids": "⿰纟冬", + "expanded_ids": "⿰纟⿱夂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "夂", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绉", + "codepoint": "U+7EC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EC9", + "status": "exact_ids", + "ids": "⿰纟刍", + "canonical_ids": "⿰纟刍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "纟" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绊", + "codepoint": "U+7ECA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ECA", + "status": "exact_ids", + "ids": "⿰纟半", + "canonical_ids": "⿰纟半", + "expanded_ids": "⿰纟半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绋", + "codepoint": "U+7ECB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ECB", + "status": "exact_ids", + "ids": "⿰纟弗", + "canonical_ids": "⿰纟弗", + "expanded_ids": "⿰纟⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "弓", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绌", + "codepoint": "U+7ECC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ECC", + "status": "exact_ids", + "ids": "⿰纟出", + "canonical_ids": "⿰纟出", + "expanded_ids": "⿰纟⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绍", + "codepoint": "U+7ECD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ECD", + "status": "exact_ids", + "ids": "⿰纟召", + "canonical_ids": "⿰纟召", + "expanded_ids": "⿰纟⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绎", + "codepoint": "U+7ECE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ECE", + "status": "exact_ids", + "ids": "⿰纟𠬤", + "canonical_ids": "⿰纟𠬤", + "expanded_ids": "⿰纟⿱又⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "又", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "经", + "codepoint": "U+7ECF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ECF", + "status": "exact_ids", + "ids": "⿰纟𢀖", + "canonical_ids": "⿰纟𢀖", + "expanded_ids": "⿰纟⿱又工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "工", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绐", + "codepoint": "U+7ED0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ED0", + "status": "exact_ids", + "ids": "⿰纟台", + "canonical_ids": "⿰纟台", + "expanded_ids": "⿰纟⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绑", + "codepoint": "U+7ED1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ED1", + "status": "exact_ids", + "ids": "⿰纟邦", + "canonical_ids": "⿰纟邦", + "expanded_ids": "⿰纟⿰丰阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "纟", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绒", + "codepoint": "U+7ED2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ED2", + "status": "exact_ids", + "ids": "⿰纟戎", + "canonical_ids": "⿰纟戎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "纟" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "结", + "codepoint": "U+7ED3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ED3", + "status": "exact_ids", + "ids": "⿰纟吉", + "canonical_ids": "⿰纟吉", + "expanded_ids": "⿰纟⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绔", + "codepoint": "U+7ED4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ED4", + "status": "exact_ids", + "ids": "⿰纟夸", + "canonical_ids": "⿰纟夸", + "expanded_ids": "⿰纟⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绕", + "codepoint": "U+7ED5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ED5", + "status": "exact_ids", + "ids": "⿰纟尧", + "canonical_ids": "⿰纟尧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "尧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绖", + "codepoint": "U+7ED6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ED6", + "status": "exact_ids", + "ids": "⿰纟至", + "canonical_ids": "⿰纟至", + "expanded_ids": "⿰纟⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绗", + "codepoint": "U+7ED7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ED7", + "status": "exact_ids", + "ids": "⿰纟行", + "canonical_ids": "⿰纟行", + "expanded_ids": "⿰纟⿰彳彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绘", + "codepoint": "U+7ED8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ED8", + "status": "exact_ids", + "ids": "⿰纟会", + "canonical_ids": "⿰纟会", + "expanded_ids": "⿰纟⿱⿱人一⿱一厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "厶", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "给", + "codepoint": "U+7ED9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7ED9", + "status": "exact_ids", + "ids": "⿰纟合", + "canonical_ids": "⿰纟合", + "expanded_ids": "⿰纟⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绚", + "codepoint": "U+7EDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EDA", + "status": "exact_ids", + "ids": "⿰纟旬", + "canonical_ids": "⿰纟旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绛", + "codepoint": "U+7EDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EDB", + "status": "exact_ids", + "ids": "⿰纟夅", + "canonical_ids": "⿰纟夅", + "expanded_ids": "⿰纟⿱夂⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夂", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "络", + "codepoint": "U+7EDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EDC", + "status": "exact_ids", + "ids": "⿰纟各", + "canonical_ids": "⿰纟各", + "expanded_ids": "⿰纟⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绝", + "codepoint": "U+7EDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EDD", + "status": "exact_ids", + "ids": "⿰纟色", + "canonical_ids": "⿰纟色", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "纟" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绞", + "codepoint": "U+7EDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EDE", + "status": "exact_ids", + "ids": "⿰纟交", + "canonical_ids": "⿰纟交", + "expanded_ids": "⿰纟⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "父", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "统", + "codepoint": "U+7EDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EDF", + "status": "exact_ids", + "ids": "⿰纟充", + "canonical_ids": "⿰纟充", + "expanded_ids": "⿰纟⿱亠⿱厶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "儿", + "厶", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绠", + "codepoint": "U+7EE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EE0", + "status": "exact_ids", + "ids": "⿰纟更", + "canonical_ids": "⿰纟更", + "expanded_ids": "⿰纟更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "更", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绡", + "codepoint": "U+7EE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EE1", + "status": "exact_ids", + "ids": "⿰纟肖", + "canonical_ids": "⿰纟肖", + "expanded_ids": "⿰纟⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绢", + "codepoint": "U+7EE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EE2", + "status": "exact_ids", + "ids": "⿰纟肙", + "canonical_ids": "⿰纟肙", + "expanded_ids": "⿰纟⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绣", + "codepoint": "U+7EE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EE3", + "status": "exact_ids", + "ids": "⿰纟秀", + "canonical_ids": "⿰纟秀", + "expanded_ids": "⿰纟⿱⿻丿木乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乃", + "木", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绤", + "codepoint": "U+7EE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EE4", + "status": "exact_ids", + "ids": "⿰纟谷", + "canonical_ids": "⿰纟谷", + "expanded_ids": "⿰纟⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绥", + "codepoint": "U+7EE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EE5", + "status": "exact_ids", + "ids": "⿰纟妥", + "canonical_ids": "⿰纟妥", + "expanded_ids": "⿰纟⿱爫女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "爫", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绦", + "codepoint": "U+7EE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EE6", + "status": "exact_ids", + "ids": "⿰纟条", + "canonical_ids": "⿰纟条", + "expanded_ids": "⿰纟⿱夂木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夂", + "木", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "继", + "codepoint": "U+7EE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EE7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绨", + "codepoint": "U+7EE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EE8", + "status": "exact_ids", + "ids": "⿰纟弟", + "canonical_ids": "⿰纟弟", + "expanded_ids": "⿰纟⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绩", + "codepoint": "U+7EE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EE9", + "status": "exact_ids", + "ids": "⿰纟责", + "canonical_ids": "⿰纟责", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "纟" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绪", + "codepoint": "U+7EEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EEA", + "status": "exact_ids", + "ids": "⿰纟者", + "canonical_ids": "⿰纟者", + "expanded_ids": "⿰纟⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绫", + "codepoint": "U+7EEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EEB", + "status": "exact_ids", + "ids": "⿰纟夌", + "canonical_ids": "⿰纟夌", + "expanded_ids": "⿰纟⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绬", + "codepoint": "U+7EEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EEC", + "status": "exact_ids", + "ids": "⿰纟英", + "canonical_ids": "⿰纟英", + "expanded_ids": "⿰纟⿱艹⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "纟", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "续", + "codepoint": "U+7EED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EED", + "status": "exact_ids", + "ids": "⿰纟卖", + "canonical_ids": "⿰纟卖", + "expanded_ids": "⿰纟⿱十⿱乛⿻大冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "冫", + "十", + "大", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绮", + "codepoint": "U+7EEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EEE", + "status": "exact_ids", + "ids": "⿰纟奇", + "canonical_ids": "⿰纟奇", + "expanded_ids": "⿰纟⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绯", + "codepoint": "U+7EEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EEF", + "status": "exact_ids", + "ids": "⿰纟非", + "canonical_ids": "⿰纟非", + "expanded_ids": "⿰纟非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绰", + "codepoint": "U+7EF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EF0", + "status": "exact_ids", + "ids": "⿰纟卓", + "canonical_ids": "⿰纟卓", + "expanded_ids": "⿰纟⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "日", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绱", + "codepoint": "U+7EF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EF1", + "status": "exact_ids", + "ids": "⿰纟尚", + "canonical_ids": "⿰纟尚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "纟" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绲", + "codepoint": "U+7EF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EF2", + "status": "exact_ids", + "ids": "⿰纟昆", + "canonical_ids": "⿰纟昆", + "expanded_ids": "⿰纟⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绳", + "codepoint": "U+7EF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EF3", + "status": "exact_ids", + "ids": "⿰纟黾", + "canonical_ids": "⿰纟黾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "纟" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "维", + "codepoint": "U+7EF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EF4", + "status": "exact_ids", + "ids": "⿰纟隹", + "canonical_ids": "⿰纟隹", + "expanded_ids": "⿰纟隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绵", + "codepoint": "U+7EF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EF5", + "status": "exact_ids", + "ids": "⿰纟帛", + "canonical_ids": "⿰纟帛", + "expanded_ids": "⿰纟⿱⿻日丶⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丶", + "冂", + "日", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绶", + "codepoint": "U+7EF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EF6", + "status": "exact_ids", + "ids": "⿰纟受", + "canonical_ids": "⿰纟受", + "expanded_ids": "⿰纟⿳爫冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "又", + "爫", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绷", + "codepoint": "U+7EF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EF7", + "status": "exact_ids", + "ids": "⿰纟朋", + "canonical_ids": "⿰纟朋", + "expanded_ids": "⿰纟⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绸", + "codepoint": "U+7EF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EF8", + "status": "exact_ids", + "ids": "⿰纟周", + "canonical_ids": "⿰纟周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绹", + "codepoint": "U+7EF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EF9", + "status": "exact_ids", + "ids": "⿰纟匋", + "canonical_ids": "⿰纟匋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "匋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绺", + "codepoint": "U+7EFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EFA", + "status": "exact_ids", + "ids": "⿰纟咎", + "canonical_ids": "⿰纟咎", + "expanded_ids": "⿰纟⿱⿰夂卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "夂", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绻", + "codepoint": "U+7EFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EFB", + "status": "exact_ids", + "ids": "⿰纟卷", + "canonical_ids": "⿰纟卷", + "expanded_ids": "⿰纟⿱龹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "纟", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "综", + "codepoint": "U+7EFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EFC", + "status": "exact_ids", + "ids": "⿰纟宗", + "canonical_ids": "⿰纟宗", + "expanded_ids": "⿰纟⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绽", + "codepoint": "U+7EFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EFD", + "status": "exact_ids", + "ids": "⿰纟定", + "canonical_ids": "⿰纟定", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "纟" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绾", + "codepoint": "U+7EFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EFE", + "status": "exact_ids", + "ids": "⿰纟官", + "canonical_ids": "⿰纟官", + "expanded_ids": "⿰纟⿱宀㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "宀", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 106, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "绿", + "codepoint": "U+7EFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7EFF", + "status": "exact_ids", + "ids": "⿰纟录", + "canonical_ids": "⿰纟录", + "expanded_ids": "⿰纟⿱彐氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "氺", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缀", + "codepoint": "U+7F00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F00", + "status": "exact_ids", + "ids": "⿰纟叕", + "canonical_ids": "⿰纟叕", + "expanded_ids": "⿰纟⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缁", + "codepoint": "U+7F01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F01", + "status": "exact_ids", + "ids": "⿰纟甾", + "canonical_ids": "⿰纟甾", + "expanded_ids": "⿰纟⿱巛田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "田", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缂", + "codepoint": "U+7F02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F02", + "status": "exact_ids", + "ids": "⿰纟革", + "canonical_ids": "⿰纟革", + "expanded_ids": "⿰纟革", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缃", + "codepoint": "U+7F03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F03", + "status": "exact_ids", + "ids": "⿰纟相", + "canonical_ids": "⿰纟相", + "expanded_ids": "⿰纟⿰木目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "目", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缄", + "codepoint": "U+7F04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F04", + "status": "exact_ids", + "ids": "⿰纟咸", + "canonical_ids": "⿰纟咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缅", + "codepoint": "U+7F05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F05", + "status": "exact_ids", + "ids": "⿰纟面", + "canonical_ids": "⿰纟面", + "expanded_ids": "⿰纟面", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟", + "面" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缆", + "codepoint": "U+7F06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F06", + "status": "exact_ids", + "ids": "⿰纟览", + "canonical_ids": "⿰纟览", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "览" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缇", + "codepoint": "U+7F07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F07", + "status": "exact_ids", + "ids": "⿰纟是", + "canonical_ids": "⿰纟是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "纟" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缈", + "codepoint": "U+7F08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F08", + "status": "exact_ids", + "ids": "⿰纟眇", + "canonical_ids": "⿰纟眇", + "expanded_ids": "⿰纟⿰目⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "目", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缉", + "codepoint": "U+7F09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F09", + "status": "exact_ids", + "ids": "⿰纟咠", + "canonical_ids": "⿰纟咠", + "expanded_ids": "⿰纟⿱口耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "纟", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缊", + "codepoint": "U+7F0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F0A", + "status": "exact_ids", + "ids": "⿰纟昷", + "canonical_ids": "⿰纟昷", + "expanded_ids": "⿰纟⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "皿", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缋", + "codepoint": "U+7F0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F0B", + "status": "exact_ids", + "ids": "⿰纟贵", + "canonical_ids": "⿰纟贵", + "expanded_ids": "⿰纟⿱⿱⿻口丨一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "人", + "冂", + "口", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缌", + "codepoint": "U+7F0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F0C", + "status": "exact_ids", + "ids": "⿰纟思", + "canonical_ids": "⿰纟思", + "expanded_ids": "⿰纟⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "田", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缍", + "codepoint": "U+7F0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F0D", + "status": "exact_ids", + "ids": "⿰纟垂", + "canonical_ids": "⿰纟垂", + "expanded_ids": "⿰纟垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "垂", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缎", + "codepoint": "U+7F0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F0E", + "status": "exact_ids", + "ids": "⿰纟段", + "canonical_ids": "⿰纟段", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "段" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缏", + "codepoint": "U+7F0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F0F", + "status": "exact_ids", + "ids": "⿰纟便", + "canonical_ids": "⿰纟便", + "expanded_ids": "⿰纟⿰亻更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "更", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缐", + "codepoint": "U+7F10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F10", + "status": "exact_ids", + "ids": "⿰纟泉", + "canonical_ids": "⿰纟泉", + "expanded_ids": "⿰纟⿱⿻日丶水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "水", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缑", + "codepoint": "U+7F11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F11", + "status": "exact_ids", + "ids": "⿰纟侯", + "canonical_ids": "⿰纟侯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "侯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缒", + "codepoint": "U+7F12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F12", + "status": "exact_ids", + "ids": "⿰纟追", + "canonical_ids": "⿰纟追", + "expanded_ids": "⿰纟⿰辶⿱丿㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "丿", + "纟", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缓", + "codepoint": "U+7F13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F13", + "status": "exact_ids", + "ids": "⿰纟爰", + "canonical_ids": "⿰纟爰", + "expanded_ids": "⿰纟⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "爫", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缔", + "codepoint": "U+7F14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F14", + "status": "exact_ids", + "ids": "⿰纟帝", + "canonical_ids": "⿰纟帝", + "expanded_ids": "⿰纟⿳⿱亠八冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缕", + "codepoint": "U+7F15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F15", + "status": "exact_ids", + "ids": "⿰纟娄", + "canonical_ids": "⿰纟娄", + "expanded_ids": "⿰纟⿱⿻木丷女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "女", + "木", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "编", + "codepoint": "U+7F16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F16", + "status": "exact_ids", + "ids": "⿰纟扁", + "canonical_ids": "⿰纟扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "纟" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缗", + "codepoint": "U+7F17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F17", + "status": "exact_ids", + "ids": "⿰纟昬", + "canonical_ids": "⿰纟昬", + "expanded_ids": "⿰纟⿱民日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "民", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缘", + "codepoint": "U+7F18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F18", + "status": "exact_ids", + "ids": "⿰纟彖", + "canonical_ids": "⿰纟彖", + "expanded_ids": "⿰纟⿱彑𧰨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "纟", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缙", + "codepoint": "U+7F19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F19", + "status": "exact_ids", + "ids": "⿰纟晋", + "canonical_ids": "⿰纟晋", + "expanded_ids": "⿰纟⿱亚日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亚", + "日", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缚", + "codepoint": "U+7F1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F1A", + "status": "exact_ids", + "ids": "⿰纟尃", + "canonical_ids": "⿰纟尃", + "expanded_ids": "⿰纟⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "甫", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缛", + "codepoint": "U+7F1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F1B", + "status": "exact_ids", + "ids": "⿰纟辱", + "canonical_ids": "⿰纟辱", + "expanded_ids": "⿰纟⿱辰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "纟", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缜", + "codepoint": "U+7F1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F1C", + "status": "exact_ids", + "ids": "⿰纟真", + "canonical_ids": "⿰纟真", + "expanded_ids": "⿰纟⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "目", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缝", + "codepoint": "U+7F1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F1D", + "status": "exact_ids", + "ids": "⿰纟逢", + "canonical_ids": "⿰纟逢", + "expanded_ids": "⿰纟⿰辶⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "纟", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缞", + "codepoint": "U+7F1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F1E", + "status": "exact_ids", + "ids": "⿰纟衰", + "canonical_ids": "⿰纟衰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "衰" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缟", + "codepoint": "U+7F1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F1F", + "status": "exact_ids", + "ids": "⿰纟高", + "canonical_ids": "⿰纟高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缠", + "codepoint": "U+7F20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F20", + "status": "exact_ids", + "ids": "⿰纟㢆", + "canonical_ids": "⿰纟㢆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "纟" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缡", + "codepoint": "U+7F21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F21", + "status": "exact_ids", + "ids": "⿰纟离", + "canonical_ids": "⿰纟离", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "禸", + "纟" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缢", + "codepoint": "U+7F22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F22", + "status": "exact_ids", + "ids": "⿰纟益", + "canonical_ids": "⿰纟益", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缣", + "codepoint": "U+7F23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F23", + "status": "exact_ids", + "ids": "⿰纟兼", + "canonical_ids": "⿰纟兼", + "expanded_ids": "⿰纟兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缤", + "codepoint": "U+7F24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F24", + "status": "exact_ids", + "ids": "⿰纟宾", + "canonical_ids": "⿰纟宾", + "expanded_ids": "⿰纟⿱宀⿱丘八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "八", + "宀", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缥", + "codepoint": "U+7F25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F25", + "status": "exact_ids", + "ids": "⿰纟票", + "canonical_ids": "⿰纟票", + "expanded_ids": "⿰纟⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "纟", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缦", + "codepoint": "U+7F26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F26", + "status": "exact_ids", + "ids": "⿰纟曼", + "canonical_ids": "⿰纟曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缧", + "codepoint": "U+7F27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F27", + "status": "exact_ids", + "ids": "⿰纟累", + "canonical_ids": "⿰纟累", + "expanded_ids": "⿰纟⿱田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "田", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缨", + "codepoint": "U+7F28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F28", + "status": "exact_ids", + "ids": "⿰纟婴", + "canonical_ids": "⿰纟婴", + "expanded_ids": "⿰纟⿱⿰⿻冂人⿻冂人女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "女", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缩", + "codepoint": "U+7F29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F29", + "status": "exact_ids", + "ids": "⿰纟宿", + "canonical_ids": "⿰纟宿", + "expanded_ids": "⿰纟⿱宀⿰亻⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "亻", + "宀", + "日", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缪", + "codepoint": "U+7F2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F2A", + "status": "exact_ids", + "ids": "⿰纟翏", + "canonical_ids": "⿰纟翏", + "expanded_ids": "⿰纟⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缫", + "codepoint": "U+7F2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F2B", + "status": "exact_ids", + "ids": "⿰纟巢", + "canonical_ids": "⿰纟巢", + "expanded_ids": "⿰纟⿱巛⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "木", + "田", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缬", + "codepoint": "U+7F2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F2C", + "status": "exact_ids", + "ids": "⿰纟颉", + "canonical_ids": "⿰纟颉", + "expanded_ids": "⿰纟⿰⿱士口⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "口", + "士", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缭", + "codepoint": "U+7F2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F2D", + "status": "exact_ids", + "ids": "⿰纟尞", + "canonical_ids": "⿰纟尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "纟" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缮", + "codepoint": "U+7F2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F2E", + "status": "exact_ids", + "ids": "⿰纟善", + "canonical_ids": "⿰纟善", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "善" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缯", + "codepoint": "U+7F2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F2F", + "status": "exact_ids", + "ids": "⿰纟曾", + "canonical_ids": "⿰纟曾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缰", + "codepoint": "U+7F30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F30", + "status": "exact_ids", + "ids": "⿰纟畺", + "canonical_ids": "⿰纟畺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "纟" + ], + "unresolved_leaves": [ + "三" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缱", + "codepoint": "U+7F31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F31", + "status": "exact_ids", + "ids": "⿰纟遣", + "canonical_ids": "⿰纟遣", + "expanded_ids": "⿰纟⿰辶⿱⿱⿻口丨一㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "一", + "丨", + "口", + "纟", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缲", + "codepoint": "U+7F32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F32", + "status": "exact_ids", + "ids": "⿰纟喿", + "canonical_ids": "⿰纟喿", + "expanded_ids": "⿰纟⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缳", + "codepoint": "U+7F33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F33", + "status": "exact_ids", + "ids": "⿰纟睘", + "canonical_ids": "⿰纟睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缴", + "codepoint": "U+7F34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F34", + "status": "exact_ids", + "ids": "⿰纟敫", + "canonical_ids": "⿰纟敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缵", + "codepoint": "U+7F35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F35", + "status": "exact_ids", + "ids": "⿰纟赞", + "canonical_ids": "⿰纟赞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟" + ], + "unresolved_leaves": [ + "赞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缶", + "codepoint": "U+7F36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F36", + "status": "leaf_self_fallback", + "ids": "缶", + "canonical_ids": "缶", + "expanded_ids": "缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缷", + "codepoint": "U+7F37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F37", + "status": "exact_ids", + "ids": "⿰缶卩", + "canonical_ids": "⿰缶卩", + "expanded_ids": "⿰缶卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缸", + "codepoint": "U+7F38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F38", + "status": "exact_ids", + "ids": "⿰缶工", + "canonical_ids": "⿰缶工", + "expanded_ids": "⿰缶工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缹", + "codepoint": "U+7F39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F39", + "status": "exact_ids", + "ids": "⿱缶灬", + "canonical_ids": "⿱缶灬", + "expanded_ids": "⿱缶灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缺", + "codepoint": "U+7F3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F3A", + "status": "exact_ids", + "ids": "⿰缶夬", + "canonical_ids": "⿰缶夬", + "expanded_ids": "⿰缶⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "大", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缻", + "codepoint": "U+7F3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F3B", + "status": "exact_ids", + "ids": "⿰缶瓦", + "canonical_ids": "⿰缶瓦", + "expanded_ids": "⿰缶瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓦", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缼", + "codepoint": "U+7F3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F3C", + "status": "exact_ids", + "ids": "⿰缶欠", + "canonical_ids": "⿰缶欠", + "expanded_ids": "⿰缶欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缽", + "codepoint": "U+7F3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F3D", + "status": "exact_ids", + "ids": "⿰缶本", + "canonical_ids": "⿰缶本", + "expanded_ids": "⿰缶⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缾", + "codepoint": "U+7F3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F3E", + "status": "exact_ids", + "ids": "⿰缶并", + "canonical_ids": "⿰缶并", + "expanded_ids": "⿰缶⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "缿", + "codepoint": "U+7F3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F3F", + "status": "exact_ids", + "ids": "⿰缶后", + "canonical_ids": "⿰缶后", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "缶" + ], + "unresolved_leaves": [ + "后" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罀", + "codepoint": "U+7F40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F40", + "status": "exact_ids", + "ids": "⿰缶兆", + "canonical_ids": "⿰缶兆", + "expanded_ids": "⿰缶兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罁", + "codepoint": "U+7F41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F41", + "status": "exact_ids", + "ids": "⿰缶岡", + "canonical_ids": "⿰缶岡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "缶" + ], + "unresolved_leaves": [ + "岡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罂", + "codepoint": "U+7F42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F42", + "status": "exact_ids", + "ids": "⿱⿰贝贝缶", + "canonical_ids": "⿱⿰贝贝缶", + "expanded_ids": "⿱⿰⿻冂人⿻冂人缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罃", + "codepoint": "U+7F43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F43", + "status": "exact_ids", + "ids": "⿳炏冖缶", + "canonical_ids": "⿳炏冖缶", + "expanded_ids": "⿳⿰火火冖缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "火", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罄", + "codepoint": "U+7F44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F44", + "status": "exact_ids", + "ids": "⿱殸缶", + "canonical_ids": "⿱殸缶", + "expanded_ids": "⿱⿰⿱士⿻尸丨⿱几又缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "几", + "又", + "士", + "尸", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罅", + "codepoint": "U+7F45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F45", + "status": "exact_ids", + "ids": "⿰缶虖", + "canonical_ids": "⿰缶虖", + "expanded_ids": "⿰缶⿱虍乎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乎", + "缶", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罆", + "codepoint": "U+7F46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F46", + "status": "exact_ids", + "ids": "⿰缶貫", + "canonical_ids": "⿰缶貫", + "expanded_ids": "⿰缶⿱毌⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "毌", + "目", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罇", + "codepoint": "U+7F47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F47", + "status": "exact_ids", + "ids": "⿰缶尊", + "canonical_ids": "⿰缶尊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "寸", + "缶" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罈", + "codepoint": "U+7F48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F48", + "status": "exact_ids", + "ids": "⿰缶覃", + "canonical_ids": "⿰缶覃", + "expanded_ids": "⿰缶⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "缶", + "襾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罉", + "codepoint": "U+7F49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F49", + "status": "exact_ids", + "ids": "⿰缶掌", + "canonical_ids": "⿰缶掌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "手", + "缶" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罊", + "codepoint": "U+7F4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F4A", + "status": "exact_ids", + "ids": "⿱𣪠缶", + "canonical_ids": "⿱𣪠缶", + "expanded_ids": "⿱⿰⿱車凵⿱几又缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "凵", + "又", + "缶", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罋", + "codepoint": "U+7F4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F4B", + "status": "exact_ids", + "ids": "⿱雍缶", + "canonical_ids": "⿱雍缶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "缶" + ], + "unresolved_leaves": [ + "雍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罌", + "codepoint": "U+7F4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F4C", + "status": "exact_ids", + "ids": "⿱⿰貝貝缶", + "canonical_ids": "⿱⿰貝貝缶", + "expanded_ids": "⿱⿰⿱目八⿱目八缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罍", + "codepoint": "U+7F4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F4D", + "status": "exact_ids", + "ids": "⿱畾缶", + "canonical_ids": "⿱畾缶", + "expanded_ids": "⿱⿱田⿰田田缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "缶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罎", + "codepoint": "U+7F4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F4E", + "status": "exact_ids", + "ids": "⿰缶曇", + "canonical_ids": "⿰缶曇", + "expanded_ids": "⿰缶⿱日⿱雨⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "日", + "缶", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罏", + "codepoint": "U+7F4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F4F", + "status": "exact_ids", + "ids": "⿰缶盧", + "canonical_ids": "⿰缶盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "缶" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罐", + "codepoint": "U+7F50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F50", + "status": "exact_ids", + "ids": "⿰缶雚", + "canonical_ids": "⿰缶雚", + "expanded_ids": "⿰缶⿱艹⿱⿰口口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "缶", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "网", + "codepoint": "U+7F51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F51", + "status": "leaf_self_fallback", + "ids": "网", + "canonical_ids": "网", + "expanded_ids": "网", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "网" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罒", + "codepoint": "U+7F52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F52", + "status": "leaf_self_fallback", + "ids": "罒", + "canonical_ids": "罒", + "expanded_ids": "罒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罓", + "codepoint": "U+7F53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F53", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罔", + "codepoint": "U+7F54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F54", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罕", + "codepoint": "U+7F55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F55", + "status": "exact_ids", + "ids": "⿱⺳干", + "canonical_ids": "⿱⺳干", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十" + ], + "unresolved_leaves": [ + "⺳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罖", + "codepoint": "U+7F56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F56", + "status": "exact_ids", + "ids": "⿱罒亽", + "canonical_ids": "⿱罒亽", + "expanded_ids": "⿱罒⿱人丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罗", + "codepoint": "U+7F57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F57", + "status": "exact_ids", + "ids": "⿱罒夕", + "canonical_ids": "⿱罒夕", + "expanded_ids": "⿱罒夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罘", + "codepoint": "U+7F58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F58", + "status": "exact_ids", + "ids": "⿱罒不", + "canonical_ids": "⿱罒不", + "expanded_ids": "⿱罒不", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罙", + "codepoint": "U+7F59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F59", + "status": "exact_ids", + "ids": "⿱⺳木", + "canonical_ids": "⿱⺳木", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "⺳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罚", + "codepoint": "U+7F5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F5A", + "status": "exact_ids", + "ids": "⿱罒䚯", + "canonical_ids": "⿱罒䚯", + "expanded_ids": "⿱罒⿰言刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "罒", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "罰" + ] + }, + { + "character": "罛", + "codepoint": "U+7F5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F5B", + "status": "exact_ids", + "ids": "⿱罒瓜", + "canonical_ids": "⿱罒瓜", + "expanded_ids": "⿱罒瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓜", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罜", + "codepoint": "U+7F5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F5C", + "status": "exact_ids", + "ids": "⿱罒主", + "canonical_ids": "⿱罒主", + "expanded_ids": "⿱罒⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罝", + "codepoint": "U+7F5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F5D", + "status": "exact_ids", + "ids": "⿱罒且", + "canonical_ids": "⿱罒且", + "expanded_ids": "⿱罒且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罞", + "codepoint": "U+7F5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F5E", + "status": "exact_ids", + "ids": "⿱罒矛", + "canonical_ids": "⿱罒矛", + "expanded_ids": "⿱罒矛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "矛", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罟", + "codepoint": "U+7F5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F5F", + "status": "exact_ids", + "ids": "⿱罒古", + "canonical_ids": "⿱罒古", + "expanded_ids": "⿱罒⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罠", + "codepoint": "U+7F60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F60", + "status": "exact_ids", + "ids": "⿱罒民", + "canonical_ids": "⿱罒民", + "expanded_ids": "⿱罒民", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "民", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罡", + "codepoint": "U+7F61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F61", + "status": "exact_ids", + "ids": "⿱罒正", + "canonical_ids": "⿱罒正", + "expanded_ids": "⿱罒⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "止", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罢", + "codepoint": "U+7F62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F62", + "status": "exact_ids", + "ids": "⿱罒去", + "canonical_ids": "⿱罒去", + "expanded_ids": "⿱罒⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罣", + "codepoint": "U+7F63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F63", + "status": "exact_ids", + "ids": "⿱罒圭", + "canonical_ids": "⿱罒圭", + "expanded_ids": "⿱罒⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罤", + "codepoint": "U+7F64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F64", + "status": "exact_ids", + "ids": "⿱罒弟", + "canonical_ids": "⿱罒弟", + "expanded_ids": "⿱罒⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罥", + "codepoint": "U+7F65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F65", + "status": "exact_ids", + "ids": "⿱罒肙", + "canonical_ids": "⿱罒肙", + "expanded_ids": "⿱罒⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罦", + "codepoint": "U+7F66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F66", + "status": "exact_ids", + "ids": "⿱罒孚", + "canonical_ids": "⿱罒孚", + "expanded_ids": "⿱罒⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "爫", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罧", + "codepoint": "U+7F67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F67", + "status": "exact_ids", + "ids": "⿱罒林", + "canonical_ids": "⿱罒林", + "expanded_ids": "⿱罒⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罨", + "codepoint": "U+7F68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F68", + "status": "exact_ids", + "ids": "⿱罒奄", + "canonical_ids": "⿱罒奄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "罒" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罩", + "codepoint": "U+7F69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F69", + "status": "exact_ids", + "ids": "⿱罒卓", + "canonical_ids": "⿱罒卓", + "expanded_ids": "⿱罒⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "日", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罪", + "codepoint": "U+7F6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F6A", + "status": "exact_ids", + "ids": "⿱罒非", + "canonical_ids": "⿱罒非", + "expanded_ids": "⿱罒非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罫", + "codepoint": "U+7F6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F6B", + "status": "exact_ids", + "ids": "⿱罒卦", + "canonical_ids": "⿱罒卦", + "expanded_ids": "⿱罒⿰⿱土土卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "土", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罬", + "codepoint": "U+7F6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F6C", + "status": "exact_ids", + "ids": "⿱罒叕", + "canonical_ids": "⿱罒叕", + "expanded_ids": "⿱罒⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罭", + "codepoint": "U+7F6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F6D", + "status": "exact_ids", + "ids": "⿱罒或", + "canonical_ids": "⿱罒或", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒" + ], + "unresolved_leaves": [ + "或" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "置", + "codepoint": "U+7F6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F6E", + "status": "exact_ids", + "ids": "⿱罒直", + "canonical_ids": "⿱罒直", + "expanded_ids": "⿱罒⿱⿱十目乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "十", + "目", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罯", + "codepoint": "U+7F6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F6F", + "status": "exact_ids", + "ids": "⿱罒音", + "canonical_ids": "⿱罒音", + "expanded_ids": "⿱罒⿱立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "立", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罰", + "codepoint": "U+7F70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F70", + "status": "exact_ids", + "ids": "⿱罒䚯", + "canonical_ids": "⿱罒䚯", + "expanded_ids": "⿱罒⿰言刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "罒", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "罚" + ] + }, + { + "character": "罱", + "codepoint": "U+7F71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F71", + "status": "exact_ids", + "ids": "⿱罒南", + "canonical_ids": "⿱罒南", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒" + ], + "unresolved_leaves": [ + "南" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "署", + "codepoint": "U+7F72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F72", + "status": "exact_ids", + "ids": "⿱罒者", + "canonical_ids": "⿱罒者", + "expanded_ids": "⿱罒⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罳", + "codepoint": "U+7F73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F73", + "status": "exact_ids", + "ids": "⿱罒思", + "canonical_ids": "⿱罒思", + "expanded_ids": "⿱罒⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "田", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罴", + "codepoint": "U+7F74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F74", + "status": "exact_ids", + "ids": "⿱罢灬", + "canonical_ids": "⿱罢灬", + "expanded_ids": "⿱⿱罒⿱土厶灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "灬", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罵", + "codepoint": "U+7F75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F75", + "status": "exact_ids", + "ids": "⿱罒馬", + "canonical_ids": "⿱罒馬", + "expanded_ids": "⿱罒馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罶", + "codepoint": "U+7F76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F76", + "status": "exact_ids", + "ids": "⿱罒留", + "canonical_ids": "⿱罒留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罷", + "codepoint": "U+7F77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F77", + "status": "exact_ids", + "ids": "⿱罒能", + "canonical_ids": "⿱罒能", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒" + ], + "unresolved_leaves": [ + "能" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罸", + "codepoint": "U+7F78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F78", + "status": "exact_ids", + "ids": "⿱罒討", + "canonical_ids": "⿱罒討", + "expanded_ids": "⿱罒⿰言寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "罒", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罹", + "codepoint": "U+7F79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F79", + "status": "exact_ids", + "ids": "⿱罒惟", + "canonical_ids": "⿱罒惟", + "expanded_ids": "⿱罒⿰忄隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "罒", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罺", + "codepoint": "U+7F7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F7A", + "status": "exact_ids", + "ids": "⿱罒巢", + "canonical_ids": "⿱罒巢", + "expanded_ids": "⿱罒⿱巛⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "木", + "田", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罻", + "codepoint": "U+7F7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F7B", + "status": "exact_ids", + "ids": "⿱罒尉", + "canonical_ids": "⿱罒尉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒" + ], + "unresolved_leaves": [ + "尉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罼", + "codepoint": "U+7F7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F7C", + "status": "exact_ids", + "ids": "⿱罒畢", + "canonical_ids": "⿱罒畢", + "expanded_ids": "⿱罒畢", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "畢", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罽", + "codepoint": "U+7F7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F7D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罾", + "codepoint": "U+7F7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F7E", + "status": "exact_ids", + "ids": "⿱罒曾", + "canonical_ids": "⿱罒曾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "罿", + "codepoint": "U+7F7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F7F", + "status": "exact_ids", + "ids": "⿱罒童", + "canonical_ids": "⿱罒童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立", + "罒" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羀", + "codepoint": "U+7F80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F80", + "status": "exact_ids", + "ids": "⿱网畱", + "canonical_ids": "⿱网畱", + "expanded_ids": "⿱网⿱丣田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丣", + "田", + "网" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羁", + "codepoint": "U+7F81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F81", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羂", + "codepoint": "U+7F82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F82", + "status": "exact_ids", + "ids": "⿱罒絹", + "canonical_ids": "⿱罒絹", + "expanded_ids": "⿱罒⿰⿻幺小⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "小", + "幺", + "月", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羃", + "codepoint": "U+7F83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F83", + "status": "exact_ids", + "ids": "⿱罒幕", + "canonical_ids": "⿱罒幕", + "expanded_ids": "⿱罒⿱⿱艹⿱日大⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "大", + "日", + "罒", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羄", + "codepoint": "U+7F84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F84", + "status": "exact_ids", + "ids": "⿱罒綽", + "canonical_ids": "⿱罒綽", + "expanded_ids": "⿱罒⿰⿻幺小⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "小", + "幺", + "日", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羅", + "codepoint": "U+7F85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F85", + "status": "exact_ids", + "ids": "⿱罒維", + "canonical_ids": "⿱罒維", + "expanded_ids": "⿱罒⿰⿻幺小隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "罒", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羆", + "codepoint": "U+7F86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F86", + "status": "exact_ids", + "ids": "⿱罒熊", + "canonical_ids": "⿱罒熊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬", + "罒" + ], + "unresolved_leaves": [ + "能" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羇", + "codepoint": "U+7F87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F87", + "status": "exact_ids", + "ids": "⿱罒䩭", + "canonical_ids": "⿱罒䩭", + "expanded_ids": "⿱罒⿰革⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "罒", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羈", + "codepoint": "U+7F88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F88", + "status": "exact_ids", + "ids": "⿱罒䩻", + "canonical_ids": "⿱罒䩻", + "expanded_ids": "⿱罒⿰革馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒", + "革", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羉", + "codepoint": "U+7F89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F89", + "status": "exact_ids", + "ids": "⿱罒䜌", + "canonical_ids": "⿱罒䜌", + "expanded_ids": "⿱罒⿲⿱幺小言⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "罒", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羊", + "codepoint": "U+7F8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F8A", + "status": "leaf_self_fallback", + "ids": "羊", + "canonical_ids": "羊", + "expanded_ids": "羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羋", + "codepoint": "U+7F8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F8B", + "status": "leaf_self_fallback", + "ids": "羋", + "canonical_ids": "羋", + "expanded_ids": "羋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "羋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 32, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羌", + "codepoint": "U+7F8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F8C", + "status": "exact_ids", + "ids": "⿱羊儿", + "canonical_ids": "⿱羊儿", + "expanded_ids": "⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羍", + "codepoint": "U+7F8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F8D", + "status": "exact_ids", + "ids": "⿱大羊", + "canonical_ids": "⿱大羊", + "expanded_ids": "⿱大羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "美", + "codepoint": "U+7F8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F8E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羏", + "codepoint": "U+7F8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F8F", + "status": "exact_ids", + "ids": "⿰羊彡", + "canonical_ids": "⿰羊彡", + "expanded_ids": "⿰羊彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羐", + "codepoint": "U+7F90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F90", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羑", + "codepoint": "U+7F91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F91", + "status": "exact_ids", + "ids": "⿱羊久", + "canonical_ids": "⿱羊久", + "expanded_ids": "⿱羊久", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "久", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羒", + "codepoint": "U+7F92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F92", + "status": "exact_ids", + "ids": "⿰羊分", + "canonical_ids": "⿰羊分", + "expanded_ids": "⿰羊⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羓", + "codepoint": "U+7F93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F93", + "status": "exact_ids", + "ids": "⿰羊巴", + "canonical_ids": "⿰羊巴", + "expanded_ids": "⿰羊巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羔", + "codepoint": "U+7F94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F94", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羕", + "codepoint": "U+7F95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F95", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羖", + "codepoint": "U+7F96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F96", + "status": "exact_ids", + "ids": "⿰羊殳", + "canonical_ids": "⿰羊殳", + "expanded_ids": "⿰羊⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羗", + "codepoint": "U+7F97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F97", + "status": "exact_ids", + "ids": "⿻羌厶", + "canonical_ids": "⿻羌厶", + "expanded_ids": "⿻⿱羊儿厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羘", + "codepoint": "U+7F98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F98", + "status": "exact_ids", + "ids": "⿰月羊", + "canonical_ids": "⿰月羊", + "expanded_ids": "⿰月羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羙", + "codepoint": "U+7F99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F99", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羚", + "codepoint": "U+7F9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F9A", + "status": "exact_ids", + "ids": "⿰羊令", + "canonical_ids": "⿰羊令", + "expanded_ids": "⿰羊⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "羊", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羛", + "codepoint": "U+7F9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F9B", + "status": "exact_ids", + "ids": "⿱羊弗", + "canonical_ids": "⿱羊弗", + "expanded_ids": "⿱羊⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "弓", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羜", + "codepoint": "U+7F9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F9C", + "status": "exact_ids", + "ids": "⿰羊宁", + "canonical_ids": "⿰羊宁", + "expanded_ids": "⿰羊⿱宀⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "宀", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羝", + "codepoint": "U+7F9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F9D", + "status": "exact_ids", + "ids": "⿰羊氐", + "canonical_ids": "⿰羊氐", + "expanded_ids": "⿰羊⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氏", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羞", + "codepoint": "U+7F9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F9E", + "status": "exact_ids", + "ids": "⿱羊丑", + "canonical_ids": "⿱羊丑", + "expanded_ids": "⿱羊丑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羟", + "codepoint": "U+7F9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7F9F", + "status": "exact_ids", + "ids": "⿰羊𢀖", + "canonical_ids": "⿰羊𢀖", + "expanded_ids": "⿰羊⿱又工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "工", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羠", + "codepoint": "U+7FA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FA0", + "status": "exact_ids", + "ids": "⿰羊夷", + "canonical_ids": "⿰羊夷", + "expanded_ids": "⿰羊⿻大弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "弓", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羡", + "codepoint": "U+7FA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FA1", + "status": "exact_ids", + "ids": "⿱羊次", + "canonical_ids": "⿱羊次", + "expanded_ids": "⿱羊⿰冫欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "欠", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羢", + "codepoint": "U+7FA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FA2", + "status": "exact_ids", + "ids": "⿰羊戎", + "canonical_ids": "⿰羊戎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "羊" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羣", + "codepoint": "U+7FA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FA3", + "status": "exact_ids", + "ids": "⿱君羊", + "canonical_ids": "⿱君羊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "羊" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "群", + "codepoint": "U+7FA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FA4", + "status": "exact_ids", + "ids": "⿰君羊", + "canonical_ids": "⿰君羊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "羊" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羥", + "codepoint": "U+7FA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FA5", + "status": "exact_ids", + "ids": "⿰羊巠", + "canonical_ids": "⿰羊巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "羊" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羦", + "codepoint": "U+7FA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FA6", + "status": "exact_ids", + "ids": "⿰羊完", + "canonical_ids": "⿰羊完", + "expanded_ids": "⿰羊⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "宀", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羧", + "codepoint": "U+7FA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FA7", + "status": "exact_ids", + "ids": "⿰羊夋", + "canonical_ids": "⿰羊夋", + "expanded_ids": "⿰羊⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羨", + "codepoint": "U+7FA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FA8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "義", + "codepoint": "U+7FA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FA9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羪", + "codepoint": "U+7FAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FAA", + "status": "exact_ids", + "ids": "⿰羊良", + "canonical_ids": "⿰羊良", + "expanded_ids": "⿰羊⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "羊", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羫", + "codepoint": "U+7FAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FAB", + "status": "exact_ids", + "ids": "⿰羊空", + "canonical_ids": "⿰羊空", + "expanded_ids": "⿰羊⿱⿱宀八工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "工", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羬", + "codepoint": "U+7FAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FAC", + "status": "exact_ids", + "ids": "⿰羊咸", + "canonical_ids": "⿰羊咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "羊" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羭", + "codepoint": "U+7FAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FAD", + "status": "exact_ids", + "ids": "⿰羊俞", + "canonical_ids": "⿰羊俞", + "expanded_ids": "⿰羊⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "月", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羮", + "codepoint": "U+7FAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FAE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羯", + "codepoint": "U+7FAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FAF", + "status": "exact_ids", + "ids": "⿰羊曷", + "canonical_ids": "⿰羊曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "羊" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羰", + "codepoint": "U+7FB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FB0", + "status": "exact_ids", + "ids": "⿰羊炭", + "canonical_ids": "⿰羊炭", + "expanded_ids": "⿰羊⿱山⿱厂火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "山", + "火", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羱", + "codepoint": "U+7FB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FB1", + "status": "exact_ids", + "ids": "⿰羊原", + "canonical_ids": "⿰羊原", + "expanded_ids": "⿰羊⿱厂⿱⿻日丶小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "小", + "日", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羲", + "codepoint": "U+7FB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FB2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羳", + "codepoint": "U+7FB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FB3", + "status": "exact_ids", + "ids": "⿰羊番", + "canonical_ids": "⿰羊番", + "expanded_ids": "⿰羊⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "木", + "田", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羴", + "codepoint": "U+7FB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FB4", + "status": "exact_ids", + "ids": "⿱羊⿰羊羊", + "canonical_ids": "⿱羊⿰羊羊", + "expanded_ids": "⿱羊⿰羊羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羵", + "codepoint": "U+7FB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FB5", + "status": "exact_ids", + "ids": "⿰羊賁", + "canonical_ids": "⿰羊賁", + "expanded_ids": "⿰羊⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "廾", + "目", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羶", + "codepoint": "U+7FB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FB6", + "status": "exact_ids", + "ids": "⿰羊亶", + "canonical_ids": "⿰羊亶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "日", + "羊" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羷", + "codepoint": "U+7FB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FB7", + "status": "exact_ids", + "ids": "⿰羊僉", + "canonical_ids": "⿰羊僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "羊" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羸", + "codepoint": "U+7FB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FB8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羹", + "codepoint": "U+7FB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FB9", + "status": "exact_ids", + "ids": "⿱羔美", + "canonical_ids": "⿱羔美", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "美", + "羔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羺", + "codepoint": "U+7FBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FBA", + "status": "exact_ids", + "ids": "⿰羊需", + "canonical_ids": "⿰羊需", + "expanded_ids": "⿰羊⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "羊", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羻", + "codepoint": "U+7FBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FBB", + "status": "exact_ids", + "ids": "⿰羊慶", + "canonical_ids": "⿰羊慶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "羊" + ], + "unresolved_leaves": [ + "慶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羼", + "codepoint": "U+7FBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FBC", + "status": "exact_ids", + "ids": "⿱尸羴", + "canonical_ids": "⿱尸羴", + "expanded_ids": "⿱尸⿱羊⿰羊羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羽", + "codepoint": "U+7FBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FBD", + "status": "exact_ids", + "ids": "⿰习习", + "canonical_ids": "⿰习习", + "expanded_ids": "⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羾", + "codepoint": "U+7FBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FBE", + "status": "exact_ids", + "ids": "⿰羽工", + "canonical_ids": "⿰羽工", + "expanded_ids": "⿰⿰习习工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "羿", + "codepoint": "U+7FBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FBF", + "status": "exact_ids", + "ids": "⿱羽廾", + "canonical_ids": "⿱羽廾", + "expanded_ids": "⿱⿰习习廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翀", + "codepoint": "U+7FC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FC0", + "status": "exact_ids", + "ids": "⿰羽中", + "canonical_ids": "⿰羽中", + "expanded_ids": "⿰⿰习习⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "习", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翁", + "codepoint": "U+7FC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FC1", + "status": "exact_ids", + "ids": "⿱公羽", + "canonical_ids": "⿱公羽", + "expanded_ids": "⿱⿱八厶⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "八", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翂", + "codepoint": "U+7FC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FC2", + "status": "exact_ids", + "ids": "⿰羽分", + "canonical_ids": "⿰羽分", + "expanded_ids": "⿰⿰习习⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "八", + "刀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翃", + "codepoint": "U+7FC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FC3", + "status": "exact_ids", + "ids": "⿰厷羽", + "canonical_ids": "⿰厷羽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习" + ], + "unresolved_leaves": [ + "厷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翄", + "codepoint": "U+7FC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FC4", + "status": "exact_ids", + "ids": "⿰羽支", + "canonical_ids": "⿰羽支", + "expanded_ids": "⿰⿰习习⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "十", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翅", + "codepoint": "U+7FC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FC5", + "status": "exact_ids", + "ids": "⿰支羽", + "canonical_ids": "⿰支羽", + "expanded_ids": "⿰⿱十又⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "十", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翆", + "codepoint": "U+7FC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FC6", + "status": "exact_ids", + "ids": "⿱羽卆", + "canonical_ids": "⿱羽卆", + "expanded_ids": "⿱⿰习习⿱九十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "习", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翇", + "codepoint": "U+7FC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FC7", + "status": "exact_ids", + "ids": "⿱羽犮", + "canonical_ids": "⿱羽犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翈", + "codepoint": "U+7FC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FC8", + "status": "exact_ids", + "ids": "⿰甲羽", + "canonical_ids": "⿰甲羽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习" + ], + "unresolved_leaves": [ + "甲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翉", + "codepoint": "U+7FC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FC9", + "status": "exact_ids", + "ids": "⿰本羽", + "canonical_ids": "⿰本羽", + "expanded_ids": "⿰⿻木一⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翊", + "codepoint": "U+7FCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FCA", + "status": "exact_ids", + "ids": "⿰立羽", + "canonical_ids": "⿰立羽", + "expanded_ids": "⿰立⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翋", + "codepoint": "U+7FCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FCB", + "status": "exact_ids", + "ids": "⿰羽立", + "canonical_ids": "⿰羽立", + "expanded_ids": "⿰⿰习习立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翌", + "codepoint": "U+7FCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FCC", + "status": "exact_ids", + "ids": "⿱羽立", + "canonical_ids": "⿱羽立", + "expanded_ids": "⿱⿰习习立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翍", + "codepoint": "U+7FCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FCD", + "status": "exact_ids", + "ids": "⿰羽皮", + "canonical_ids": "⿰羽皮", + "expanded_ids": "⿰⿰习习皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翎", + "codepoint": "U+7FCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FCE", + "status": "exact_ids", + "ids": "⿰令羽", + "canonical_ids": "⿰令羽", + "expanded_ids": "⿰⿱⿱人一龴⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "人", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翏", + "codepoint": "U+7FCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FCF", + "status": "exact_ids", + "ids": "⿱羽㐱", + "canonical_ids": "⿱羽㐱", + "expanded_ids": "⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翐", + "codepoint": "U+7FD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FD0", + "status": "exact_ids", + "ids": "⿰羽失", + "canonical_ids": "⿰羽失", + "expanded_ids": "⿰⿰习习⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "习", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翑", + "codepoint": "U+7FD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FD1", + "status": "exact_ids", + "ids": "⿰羽句", + "canonical_ids": "⿰羽句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "習", + "codepoint": "U+7FD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FD2", + "status": "exact_ids", + "ids": "⿱羽白", + "canonical_ids": "⿱羽白", + "expanded_ids": "⿱⿰习习⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "习", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翓", + "codepoint": "U+7FD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FD3", + "status": "exact_ids", + "ids": "⿰吉羽", + "canonical_ids": "⿰吉羽", + "expanded_ids": "⿰⿱士口⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "口", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翔", + "codepoint": "U+7FD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FD4", + "status": "exact_ids", + "ids": "⿰羊羽", + "canonical_ids": "⿰羊羽", + "expanded_ids": "⿰羊⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翕", + "codepoint": "U+7FD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FD5", + "status": "exact_ids", + "ids": "⿱合羽", + "canonical_ids": "⿱合羽", + "expanded_ids": "⿱⿱⿱人一口⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "人", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翖", + "codepoint": "U+7FD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FD6", + "status": "exact_ids", + "ids": "⿰合羽", + "canonical_ids": "⿰合羽", + "expanded_ids": "⿰⿱⿱人一口⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "人", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翗", + "codepoint": "U+7FD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FD7", + "status": "exact_ids", + "ids": "⿰多羽", + "canonical_ids": "⿰多羽", + "expanded_ids": "⿰⿱夕夕⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翘", + "codepoint": "U+7FD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FD8", + "status": "exact_ids", + "ids": "⿰尧羽", + "canonical_ids": "⿰尧羽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习" + ], + "unresolved_leaves": [ + "尧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翙", + "codepoint": "U+7FD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FD9", + "status": "exact_ids", + "ids": "⿰岁羽", + "canonical_ids": "⿰岁羽", + "expanded_ids": "⿰⿱山夕⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "夕", + "山" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翚", + "codepoint": "U+7FDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FDA", + "status": "exact_ids", + "ids": "⿳羽冖车", + "canonical_ids": "⿳羽冖车", + "expanded_ids": "⿳⿰习习冖车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "冖", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翛", + "codepoint": "U+7FDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FDB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翜", + "codepoint": "U+7FDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FDC", + "status": "exact_ids", + "ids": "⿱羽夾", + "canonical_ids": "⿱羽夾", + "expanded_ids": "⿱⿰习习⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翝", + "codepoint": "U+7FDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FDD", + "status": "exact_ids", + "ids": "⿰宏羽", + "canonical_ids": "⿰宏羽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "宀" + ], + "unresolved_leaves": [ + "厷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翞", + "codepoint": "U+7FDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FDE", + "status": "exact_ids", + "ids": "⿰羽京", + "canonical_ids": "⿰羽京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翟", + "codepoint": "U+7FDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FDF", + "status": "exact_ids", + "ids": "⿱羽隹", + "canonical_ids": "⿱羽隹", + "expanded_ids": "⿱⿰习习隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翠", + "codepoint": "U+7FE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FE0", + "status": "exact_ids", + "ids": "⿱羽卒", + "canonical_ids": "⿱羽卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翡", + "codepoint": "U+7FE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FE1", + "status": "exact_ids", + "ids": "⿱非羽", + "canonical_ids": "⿱非羽", + "expanded_ids": "⿱非⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翢", + "codepoint": "U+7FE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FE2", + "status": "exact_ids", + "ids": "⿰周羽", + "canonical_ids": "⿰周羽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翣", + "codepoint": "U+7FE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FE3", + "status": "exact_ids", + "ids": "⿱羽妾", + "canonical_ids": "⿱羽妾", + "expanded_ids": "⿱⿰习习⿱立女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "女", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翤", + "codepoint": "U+7FE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FE4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翥", + "codepoint": "U+7FE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FE5", + "status": "exact_ids", + "ids": "⿱者羽", + "canonical_ids": "⿱者羽", + "expanded_ids": "⿱⿱⿻土丿日⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "习", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翦", + "codepoint": "U+7FE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FE6", + "status": "exact_ids", + "ids": "⿱前羽", + "canonical_ids": "⿱前羽", + "expanded_ids": "⿱⿱止⿰月刂⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "刂", + "月", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翧", + "codepoint": "U+7FE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FE7", + "status": "exact_ids", + "ids": "⿰宣羽", + "canonical_ids": "⿰宣羽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "宀" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翨", + "codepoint": "U+7FE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FE8", + "status": "exact_ids", + "ids": "⿱羽是", + "canonical_ids": "⿱羽是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "日" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翩", + "codepoint": "U+7FE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FE9", + "status": "exact_ids", + "ids": "⿰扁羽", + "canonical_ids": "⿰扁羽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "尸" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翪", + "codepoint": "U+7FEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FEA", + "status": "exact_ids", + "ids": "⿰羽㚇", + "canonical_ids": "⿰羽㚇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "儿", + "夊" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翫", + "codepoint": "U+7FEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FEB", + "status": "exact_ids", + "ids": "⿰習元", + "canonical_ids": "⿰習元", + "expanded_ids": "⿰⿱⿰习习⿻日丶⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "习", + "儿", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翬", + "codepoint": "U+7FEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FEC", + "status": "exact_ids", + "ids": "⿳羽冖車", + "canonical_ids": "⿳羽冖車", + "expanded_ids": "⿳⿰习习冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "冖", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翭", + "codepoint": "U+7FED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FED", + "status": "exact_ids", + "ids": "⿰羽侯", + "canonical_ids": "⿰羽侯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习" + ], + "unresolved_leaves": [ + "侯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翮", + "codepoint": "U+7FEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FEE", + "status": "exact_ids", + "ids": "⿰鬲羽", + "canonical_ids": "⿰鬲羽", + "expanded_ids": "⿰鬲⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翯", + "codepoint": "U+7FEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FEF", + "status": "exact_ids", + "ids": "⿱羽高", + "canonical_ids": "⿱羽高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翰", + "codepoint": "U+7FF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FF0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翱", + "codepoint": "U+7FF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FF1", + "status": "exact_ids", + "ids": "⿰皋羽", + "canonical_ids": "⿰皋羽", + "expanded_ids": "⿰⿱⿻日丶⿱大十⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "习", + "十", + "大", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翲", + "codepoint": "U+7FF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FF2", + "status": "exact_ids", + "ids": "⿰票羽", + "canonical_ids": "⿰票羽", + "expanded_ids": "⿰⿱覀⿱二小⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "二", + "小", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翳", + "codepoint": "U+7FF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FF3", + "status": "exact_ids", + "ids": "⿱殹羽", + "canonical_ids": "⿱殹羽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "几", + "又" + ], + "unresolved_leaves": [ + "医" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翴", + "codepoint": "U+7FF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FF4", + "status": "exact_ids", + "ids": "⿰羽連", + "canonical_ids": "⿰羽連", + "expanded_ids": "⿰⿰习习⿰辶車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "車", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翵", + "codepoint": "U+7FF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FF5", + "status": "exact_ids", + "ids": "⿰羽鳥", + "canonical_ids": "⿰羽鳥", + "expanded_ids": "⿰⿰习习鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翶", + "codepoint": "U+7FF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FF6", + "status": "exact_ids", + "ids": "⿰皐羽", + "canonical_ids": "⿰皐羽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习" + ], + "unresolved_leaves": [ + "皐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翷", + "codepoint": "U+7FF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FF7", + "status": "exact_ids", + "ids": "⿰粦羽", + "canonical_ids": "⿰粦羽", + "expanded_ids": "⿰⿱⿻木丷⿰夕⿻丨二⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "习", + "二", + "夕", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翸", + "codepoint": "U+7FF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FF8", + "status": "exact_ids", + "ids": "⿰賁羽", + "canonical_ids": "⿰賁羽", + "expanded_ids": "⿰⿱⿱十廾⿱目八⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "八", + "十", + "廾", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翹", + "codepoint": "U+7FF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FF9", + "status": "exact_ids", + "ids": "⿰堯羽", + "canonical_ids": "⿰堯羽", + "expanded_ids": "⿰⿱⿱土⿰土土⿱一儿⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "儿", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翺", + "codepoint": "U+7FFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FFA", + "status": "exact_ids", + "ids": "⿰臯羽", + "canonical_ids": "⿰臯羽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习" + ], + "unresolved_leaves": [ + "臯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翻", + "codepoint": "U+7FFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FFB", + "status": "exact_ids", + "ids": "⿰番羽", + "canonical_ids": "⿰番羽", + "expanded_ids": "⿰⿱⿱丿⿻木丷田⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "习", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翼", + "codepoint": "U+7FFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FFC", + "status": "exact_ids", + "ids": "⿱羽異", + "canonical_ids": "⿱羽異", + "expanded_ids": "⿱⿰习习⿱田⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "廾", + "廿", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翽", + "codepoint": "U+7FFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FFD", + "status": "exact_ids", + "ids": "⿰歲羽", + "canonical_ids": "⿰歲羽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习" + ], + "unresolved_leaves": [ + "歲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翾", + "codepoint": "U+7FFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FFE", + "status": "exact_ids", + "ids": "⿰睘羽", + "canonical_ids": "⿰睘羽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "翿", + "codepoint": "U+7FFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-7FFF", + "status": "exact_ids", + "ids": "⿰壽羽", + "canonical_ids": "⿰壽羽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耀", + "codepoint": "U+8000", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8000", + "status": "exact_ids", + "ids": "⿰光翟", + "canonical_ids": "⿰光翟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "儿", + "隹" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "老", + "codepoint": "U+8001", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8001", + "status": "exact_ids", + "ids": "⿱耂匕", + "canonical_ids": "⿱耂匕", + "expanded_ids": "⿱⿻土丿匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耂", + "codepoint": "U+8002", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8002", + "status": "exact_ids", + "ids": "⿻土丿", + "canonical_ids": "⿻土丿", + "expanded_ids": "⿻土丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "考", + "codepoint": "U+8003", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8003", + "status": "exact_ids", + "ids": "⿱耂丂", + "canonical_ids": "⿱耂丂", + "expanded_ids": "⿱⿻土丿丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "丿", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耄", + "codepoint": "U+8004", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8004", + "status": "exact_ids", + "ids": "⿱老毛", + "canonical_ids": "⿱老毛", + "expanded_ids": "⿱⿱⿻土丿匕毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "者", + "codepoint": "U+8005", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8005", + "status": "exact_ids", + "ids": "⿱耂日", + "canonical_ids": "⿱耂日", + "expanded_ids": "⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耆", + "codepoint": "U+8006", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8006", + "status": "exact_ids", + "ids": "⿱老日", + "canonical_ids": "⿱老日", + "expanded_ids": "⿱⿱⿻土丿匕日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耇", + "codepoint": "U+8007", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8007", + "status": "exact_ids", + "ids": "⿱耂句", + "canonical_ids": "⿱耂句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耈", + "codepoint": "U+8008", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8008", + "status": "exact_ids", + "ids": "⿱老句", + "canonical_ids": "⿱老句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耉", + "codepoint": "U+8009", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8009", + "status": "exact_ids", + "ids": "⿱考口", + "canonical_ids": "⿱考口", + "expanded_ids": "⿱⿱⿻土丿丂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "丿", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耊", + "codepoint": "U+800A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-800A", + "status": "exact_ids", + "ids": "⿱耂至", + "canonical_ids": "⿱耂至", + "expanded_ids": "⿱⿻土丿⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "厶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耋", + "codepoint": "U+800B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-800B", + "status": "exact_ids", + "ids": "⿱老至", + "canonical_ids": "⿱老至", + "expanded_ids": "⿱⿱⿻土丿匕⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "匕", + "厶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "而", + "codepoint": "U+800C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-800C", + "status": "leaf_self_fallback", + "ids": "而", + "canonical_ids": "而", + "expanded_ids": "而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耍", + "codepoint": "U+800D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-800D", + "status": "exact_ids", + "ids": "⿱而女", + "canonical_ids": "⿱而女", + "expanded_ids": "⿱而女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耎", + "codepoint": "U+800E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-800E", + "status": "exact_ids", + "ids": "⿱而大", + "canonical_ids": "⿱而大", + "expanded_ids": "⿱而大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耏", + "codepoint": "U+800F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-800F", + "status": "exact_ids", + "ids": "⿰而彡", + "canonical_ids": "⿰而彡", + "expanded_ids": "⿰而彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耐", + "codepoint": "U+8010", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8010", + "status": "exact_ids", + "ids": "⿰而寸", + "canonical_ids": "⿰而寸", + "expanded_ids": "⿰而寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耑", + "codepoint": "U+8011", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8011", + "status": "exact_ids", + "ids": "⿱山而", + "canonical_ids": "⿱山而", + "expanded_ids": "⿱山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耒", + "codepoint": "U+8012", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8012", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耓", + "codepoint": "U+8013", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8013", + "status": "exact_ids", + "ids": "⿰耒丁", + "canonical_ids": "⿰耒丁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耔", + "codepoint": "U+8014", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8014", + "status": "exact_ids", + "ids": "⿰耒子", + "canonical_ids": "⿰耒子", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耕", + "codepoint": "U+8015", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8015", + "status": "exact_ids", + "ids": "⿰耒井", + "canonical_ids": "⿰耒井", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "井" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耖", + "codepoint": "U+8016", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8016", + "status": "exact_ids", + "ids": "⿰耒少", + "canonical_ids": "⿰耒少", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耗", + "codepoint": "U+8017", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8017", + "status": "exact_ids", + "ids": "⿰耒毛", + "canonical_ids": "⿰耒毛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耘", + "codepoint": "U+8018", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8018", + "status": "exact_ids", + "ids": "⿰耒云", + "canonical_ids": "⿰耒云", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耙", + "codepoint": "U+8019", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8019", + "status": "exact_ids", + "ids": "⿰耒巴", + "canonical_ids": "⿰耒巴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耚", + "codepoint": "U+801A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-801A", + "status": "exact_ids", + "ids": "⿰耒皮", + "canonical_ids": "⿰耒皮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皮" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耛", + "codepoint": "U+801B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-801B", + "status": "exact_ids", + "ids": "⿰耒台", + "canonical_ids": "⿰耒台", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耜", + "codepoint": "U+801C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-801C", + "status": "exact_ids", + "ids": "⿰耒㠯", + "canonical_ids": "⿰耒㠯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耝", + "codepoint": "U+801D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-801D", + "status": "exact_ids", + "ids": "⿰耒且", + "canonical_ids": "⿰耒且", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耞", + "codepoint": "U+801E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-801E", + "status": "exact_ids", + "ids": "⿰耒加", + "canonical_ids": "⿰耒加", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耟", + "codepoint": "U+801F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-801F", + "status": "exact_ids", + "ids": "⿰耒巨", + "canonical_ids": "⿰耒巨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耠", + "codepoint": "U+8020", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8020", + "status": "exact_ids", + "ids": "⿰耒合", + "canonical_ids": "⿰耒合", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耡", + "codepoint": "U+8021", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8021", + "status": "exact_ids", + "ids": "⿰耒助", + "canonical_ids": "⿰耒助", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "力" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耢", + "codepoint": "U+8022", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8022", + "status": "exact_ids", + "ids": "⿰耒劳", + "canonical_ids": "⿰耒劳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "艹" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耣", + "codepoint": "U+8023", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8023", + "status": "exact_ids", + "ids": "⿰耒侖", + "canonical_ids": "⿰耒侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人" + ], + "unresolved_leaves": [ + "耒", + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耤", + "codepoint": "U+8024", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8024", + "status": "exact_ids", + "ids": "⿰耒昔", + "canonical_ids": "⿰耒昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "耒", + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耥", + "codepoint": "U+8025", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8025", + "status": "exact_ids", + "ids": "⿰耒尚", + "canonical_ids": "⿰耒尚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小" + ], + "unresolved_leaves": [ + "冋", + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耦", + "codepoint": "U+8026", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8026", + "status": "exact_ids", + "ids": "⿰耒禺", + "canonical_ids": "⿰耒禺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "禸" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耧", + "codepoint": "U+8027", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8027", + "status": "exact_ids", + "ids": "⿰耒娄", + "canonical_ids": "⿰耒娄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "女", + "木" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耨", + "codepoint": "U+8028", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8028", + "status": "exact_ids", + "ids": "⿰耒辱", + "canonical_ids": "⿰耒辱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "辰" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耩", + "codepoint": "U+8029", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8029", + "status": "exact_ids", + "ids": "⿰耒冓", + "canonical_ids": "⿰耒冓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "井", + "冂", + "土" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耪", + "codepoint": "U+802A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-802A", + "status": "exact_ids", + "ids": "⿰耒旁", + "canonical_ids": "⿰耒旁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "方" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耫", + "codepoint": "U+802B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-802B", + "status": "exact_ids", + "ids": "⿰耒責", + "canonical_ids": "⿰耒責", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "耒", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耬", + "codepoint": "U+802C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-802C", + "status": "exact_ids", + "ids": "⿰耒婁", + "canonical_ids": "⿰耒婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "婁", + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耭", + "codepoint": "U+802D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-802D", + "status": "exact_ids", + "ids": "⿰耒幾", + "canonical_ids": "⿰耒幾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺" + ], + "unresolved_leaves": [ + "戍", + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耮", + "codepoint": "U+802E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-802E", + "status": "exact_ids", + "ids": "⿰耒勞", + "canonical_ids": "⿰耒勞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "火" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耯", + "codepoint": "U+802F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-802F", + "status": "exact_ids", + "ids": "⿰耒蒦", + "canonical_ids": "⿰耒蒦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "艹", + "隹" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耰", + "codepoint": "U+8030", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8030", + "status": "exact_ids", + "ids": "⿰耒憂", + "canonical_ids": "⿰耒憂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "冖", + "夊", + "心", + "日" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耱", + "codepoint": "U+8031", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8031", + "status": "exact_ids", + "ids": "⿰耒磨", + "canonical_ids": "⿰耒磨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "木", + "石" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耲", + "codepoint": "U+8032", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8032", + "status": "exact_ids", + "ids": "⿰耒褱", + "canonical_ids": "⿰耒褱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "耒", + "褱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耳", + "codepoint": "U+8033", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8033", + "status": "leaf_self_fallback", + "ids": "耳", + "canonical_ids": "耳", + "expanded_ids": "耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耴", + "codepoint": "U+8034", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8034", + "status": "exact_ids", + "ids": "⿰耳乚", + "canonical_ids": "⿰耳乚", + "expanded_ids": "⿰耳乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耵", + "codepoint": "U+8035", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8035", + "status": "exact_ids", + "ids": "⿰耳丁", + "canonical_ids": "⿰耳丁", + "expanded_ids": "⿰耳⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耶", + "codepoint": "U+8036", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8036", + "status": "exact_ids", + "ids": "⿰耳阝", + "canonical_ids": "⿰耳阝", + "expanded_ids": "⿰耳阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耷", + "codepoint": "U+8037", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8037", + "status": "exact_ids", + "ids": "⿱大耳", + "canonical_ids": "⿱大耳", + "expanded_ids": "⿱大耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耸", + "codepoint": "U+8038", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8038", + "status": "exact_ids", + "ids": "⿱⿰人人耳", + "canonical_ids": "⿱⿰人人耳", + "expanded_ids": "⿱⿰人人耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耹", + "codepoint": "U+8039", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8039", + "status": "exact_ids", + "ids": "⿰耳今", + "canonical_ids": "⿰耳今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "耳" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耺", + "codepoint": "U+803A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-803A", + "status": "exact_ids", + "ids": "⿰耳云", + "canonical_ids": "⿰耳云", + "expanded_ids": "⿰耳⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耻", + "codepoint": "U+803B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-803B", + "status": "exact_ids", + "ids": "⿰耳止", + "canonical_ids": "⿰耳止", + "expanded_ids": "⿰耳止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耼", + "codepoint": "U+803C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-803C", + "status": "exact_ids", + "ids": "⿰耳冄", + "canonical_ids": "⿰耳冄", + "expanded_ids": "⿰耳⿻冂二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "冂", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耽", + "codepoint": "U+803D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-803D", + "status": "exact_ids", + "ids": "⿰耳冘", + "canonical_ids": "⿰耳冘", + "expanded_ids": "⿰耳⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耾", + "codepoint": "U+803E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-803E", + "status": "exact_ids", + "ids": "⿰耳厷", + "canonical_ids": "⿰耳厷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳" + ], + "unresolved_leaves": [ + "厷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "耿", + "codepoint": "U+803F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-803F", + "status": "exact_ids", + "ids": "⿰耳火", + "canonical_ids": "⿰耳火", + "expanded_ids": "⿰耳火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聀", + "codepoint": "U+8040", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8040", + "status": "exact_ids", + "ids": "⿰耳戈", + "canonical_ids": "⿰耳戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聁", + "codepoint": "U+8041", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8041", + "status": "exact_ids", + "ids": "⿰耳分", + "canonical_ids": "⿰耳分", + "expanded_ids": "⿰耳⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聂", + "codepoint": "U+8042", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8042", + "status": "exact_ids", + "ids": "⿱耳双", + "canonical_ids": "⿱耳双", + "expanded_ids": "⿱耳⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聃", + "codepoint": "U+8043", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8043", + "status": "exact_ids", + "ids": "⿰耳冉", + "canonical_ids": "⿰耳冉", + "expanded_ids": "⿰耳⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "土", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聄", + "codepoint": "U+8044", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8044", + "status": "exact_ids", + "ids": "⿰耳㐱", + "canonical_ids": "⿰耳㐱", + "expanded_ids": "⿰耳⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "彡", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聅", + "codepoint": "U+8045", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8045", + "status": "exact_ids", + "ids": "⿰耳矢", + "canonical_ids": "⿰耳矢", + "expanded_ids": "⿰耳⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聆", + "codepoint": "U+8046", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8046", + "status": "exact_ids", + "ids": "⿰耳令", + "canonical_ids": "⿰耳令", + "expanded_ids": "⿰耳⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "耳", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聇", + "codepoint": "U+8047", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8047", + "status": "exact_ids", + "ids": "⿰耳正", + "canonical_ids": "⿰耳正", + "expanded_ids": "⿰耳⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "止", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聈", + "codepoint": "U+8048", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8048", + "status": "exact_ids", + "ids": "⿰耳幼", + "canonical_ids": "⿰耳幼", + "expanded_ids": "⿰耳⿰幺力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "幺", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聉", + "codepoint": "U+8049", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8049", + "status": "exact_ids", + "ids": "⿰耳出", + "canonical_ids": "⿰耳出", + "expanded_ids": "⿰耳⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聊", + "codepoint": "U+804A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-804A", + "status": "exact_ids", + "ids": "⿰耳卯", + "canonical_ids": "⿰耳卯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳" + ], + "unresolved_leaves": [ + "卯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聋", + "codepoint": "U+804B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-804B", + "status": "exact_ids", + "ids": "⿱龙耳", + "canonical_ids": "⿱龙耳", + "expanded_ids": "⿱龙耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "职", + "codepoint": "U+804C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-804C", + "status": "exact_ids", + "ids": "⿰耳只", + "canonical_ids": "⿰耳只", + "expanded_ids": "⿰耳⿱口八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聍", + "codepoint": "U+804D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-804D", + "status": "exact_ids", + "ids": "⿰耳宁", + "canonical_ids": "⿰耳宁", + "expanded_ids": "⿰耳⿱宀⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "宀", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聎", + "codepoint": "U+804E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-804E", + "status": "exact_ids", + "ids": "⿰耳兆", + "canonical_ids": "⿰耳兆", + "expanded_ids": "⿰耳兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聏", + "codepoint": "U+804F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-804F", + "status": "exact_ids", + "ids": "⿰耳而", + "canonical_ids": "⿰耳而", + "expanded_ids": "⿰耳而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "而", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聐", + "codepoint": "U+8050", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8050", + "status": "exact_ids", + "ids": "⿰耳吉", + "canonical_ids": "⿰耳吉", + "expanded_ids": "⿰耳⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聑", + "codepoint": "U+8051", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8051", + "status": "exact_ids", + "ids": "⿰耳耳", + "canonical_ids": "⿰耳耳", + "expanded_ids": "⿰耳耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聒", + "codepoint": "U+8052", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8052", + "status": "exact_ids", + "ids": "⿰耳舌", + "canonical_ids": "⿰耳舌", + "expanded_ids": "⿰耳⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聓", + "codepoint": "U+8053", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8053", + "status": "exact_ids", + "ids": "⿱巩耳", + "canonical_ids": "⿱巩耳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "耳" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "联", + "codepoint": "U+8054", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8054", + "status": "exact_ids", + "ids": "⿰耳关", + "canonical_ids": "⿰耳关", + "expanded_ids": "⿰耳⿱丷⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聕", + "codepoint": "U+8055", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8055", + "status": "exact_ids", + "ids": "⿰耳告", + "canonical_ids": "⿰耳告", + "expanded_ids": "⿰耳⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聖", + "codepoint": "U+8056", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8056", + "status": "exact_ids", + "ids": "⿱𦔻王", + "canonical_ids": "⿱𦔻王", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王" + ], + "unresolved_leaves": [ + "𦔻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聗", + "codepoint": "U+8057", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8057", + "status": "exact_ids", + "ids": "⿰耳夾", + "canonical_ids": "⿰耳夾", + "expanded_ids": "⿰耳⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聘", + "codepoint": "U+8058", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8058", + "status": "exact_ids", + "ids": "⿰耳甹", + "canonical_ids": "⿰耳甹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "耳" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聙", + "codepoint": "U+8059", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8059", + "status": "exact_ids", + "ids": "⿰耳青", + "canonical_ids": "⿰耳青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "耳" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聚", + "codepoint": "U+805A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-805A", + "status": "exact_ids", + "ids": "⿱取乑", + "canonical_ids": "⿱取乑", + "expanded_ids": "⿱⿰耳又乑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乑", + "又", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聛", + "codepoint": "U+805B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-805B", + "status": "exact_ids", + "ids": "⿰耳卑", + "canonical_ids": "⿰耳卑", + "expanded_ids": "⿰耳卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聜", + "codepoint": "U+805C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-805C", + "status": "exact_ids", + "ids": "⿰耳空", + "canonical_ids": "⿰耳空", + "expanded_ids": "⿰耳⿱⿱宀八工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "工", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聝", + "codepoint": "U+805D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-805D", + "status": "exact_ids", + "ids": "⿰耳或", + "canonical_ids": "⿰耳或", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳" + ], + "unresolved_leaves": [ + "或" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聞", + "codepoint": "U+805E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-805E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聟", + "codepoint": "U+805F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-805F", + "status": "exact_ids", + "ids": "⿱知耳", + "canonical_ids": "⿱知耳", + "expanded_ids": "⿱⿰⿱⿻丿一大口耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "大", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聠", + "codepoint": "U+8060", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8060", + "status": "exact_ids", + "ids": "⿰耳并", + "canonical_ids": "⿰耳并", + "expanded_ids": "⿰耳⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聡", + "codepoint": "U+8061", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8061", + "status": "exact_ids", + "ids": "⿰耳忩", + "canonical_ids": "⿰耳忩", + "expanded_ids": "⿰耳⿱⿱八厶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "心", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聢", + "codepoint": "U+8062", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8062", + "status": "exact_ids", + "ids": "⿰耳定", + "canonical_ids": "⿰耳定", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "耳" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聣", + "codepoint": "U+8063", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8063", + "status": "exact_ids", + "ids": "⿰耳兒", + "canonical_ids": "⿰耳兒", + "expanded_ids": "⿰耳⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "耳", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聤", + "codepoint": "U+8064", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8064", + "status": "exact_ids", + "ids": "⿰耳亭", + "canonical_ids": "⿰耳亭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳" + ], + "unresolved_leaves": [ + "亭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聥", + "codepoint": "U+8065", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8065", + "status": "exact_ids", + "ids": "⿰耳禹", + "canonical_ids": "⿰耳禹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳" + ], + "unresolved_leaves": [ + "禹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聦", + "codepoint": "U+8066", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8066", + "status": "exact_ids", + "ids": "⿰耳怱", + "canonical_ids": "⿰耳怱", + "expanded_ids": "⿰耳⿱⿻勿丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "勿", + "心", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聧", + "codepoint": "U+8067", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8067", + "status": "exact_ids", + "ids": "⿰耳癸", + "canonical_ids": "⿰耳癸", + "expanded_ids": "⿰耳⿱癶⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "癶", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聨", + "codepoint": "U+8068", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8068", + "status": "exact_ids", + "ids": "⿰耳𢇂", + "canonical_ids": "⿰耳𢇂", + "expanded_ids": "⿰耳⿱⿰幺幺廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "廾", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聩", + "codepoint": "U+8069", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8069", + "status": "exact_ids", + "ids": "⿰耳贵", + "canonical_ids": "⿰耳贵", + "expanded_ids": "⿰耳⿱⿱⿻口丨一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "人", + "冂", + "口", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聪", + "codepoint": "U+806A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-806A", + "status": "exact_ids", + "ids": "⿰耳总", + "canonical_ids": "⿰耳总", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "耳" + ], + "unresolved_leaves": [ + "𠮦" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聫", + "codepoint": "U+806B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-806B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聬", + "codepoint": "U+806C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-806C", + "status": "exact_ids", + "ids": "⿰耳翁", + "canonical_ids": "⿰耳翁", + "expanded_ids": "⿰耳⿱⿱八厶⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "八", + "厶", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聭", + "codepoint": "U+806D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-806D", + "status": "exact_ids", + "ids": "⿰耳鬼", + "canonical_ids": "⿰耳鬼", + "expanded_ids": "⿰耳鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聮", + "codepoint": "U+806E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-806E", + "status": "exact_ids", + "ids": "⿰耳𢇁", + "canonical_ids": "⿰耳𢇁", + "expanded_ids": "⿰耳⿱⿰幺幺灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "灬", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聯", + "codepoint": "U+806F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-806F", + "status": "exact_ids", + "ids": "⿰耳𢇇", + "canonical_ids": "⿰耳𢇇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳" + ], + "unresolved_leaves": [ + "𢇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聰", + "codepoint": "U+8070", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8070", + "status": "exact_ids", + "ids": "⿰耳悤", + "canonical_ids": "⿰耳悤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "耳" + ], + "unresolved_leaves": [ + "囱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聱", + "codepoint": "U+8071", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8071", + "status": "exact_ids", + "ids": "⿱敖耳", + "canonical_ids": "⿱敖耳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聲", + "codepoint": "U+8072", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8072", + "status": "exact_ids", + "ids": "⿱殸耳", + "canonical_ids": "⿱殸耳", + "expanded_ids": "⿱⿰⿱士⿻尸丨⿱几又耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "几", + "又", + "士", + "尸", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聳", + "codepoint": "U+8073", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8073", + "status": "exact_ids", + "ids": "⿱從耳", + "canonical_ids": "⿱從耳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳" + ], + "unresolved_leaves": [ + "從" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聴", + "codepoint": "U+8074", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8074", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聵", + "codepoint": "U+8075", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8075", + "status": "exact_ids", + "ids": "⿰耳貴", + "canonical_ids": "⿰耳貴", + "expanded_ids": "⿰耳⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "目", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聶", + "codepoint": "U+8076", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8076", + "status": "exact_ids", + "ids": "⿱耳⿰耳耳", + "canonical_ids": "⿱耳⿰耳耳", + "expanded_ids": "⿱耳⿰耳耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "職", + "codepoint": "U+8077", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8077", + "status": "exact_ids", + "ids": "⿰耳戠", + "canonical_ids": "⿰耳戠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "立", + "耳" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聸", + "codepoint": "U+8078", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8078", + "status": "exact_ids", + "ids": "⿰耳詹", + "canonical_ids": "⿰耳詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聹", + "codepoint": "U+8079", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8079", + "status": "exact_ids", + "ids": "⿰耳寜", + "canonical_ids": "⿰耳寜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳" + ], + "unresolved_leaves": [ + "寜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聺", + "codepoint": "U+807A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-807A", + "status": "exact_ids", + "ids": "⿰耳察", + "canonical_ids": "⿰耳察", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "耳" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聻", + "codepoint": "U+807B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-807B", + "status": "exact_ids", + "ids": "⿱漸耳", + "canonical_ids": "⿱漸耳", + "expanded_ids": "⿱⿰氵⿰車斤耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "氵", + "耳", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聼", + "codepoint": "U+807C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-807C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聽", + "codepoint": "U+807D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-807D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聾", + "codepoint": "U+807E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-807E", + "status": "exact_ids", + "ids": "⿱龍耳", + "canonical_ids": "⿱龍耳", + "expanded_ids": "⿱龍耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "聿", + "codepoint": "U+807F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-807F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肀", + "codepoint": "U+8080", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8080", + "status": "leaf_self_fallback", + "ids": "肀", + "canonical_ids": "肀", + "expanded_ids": "肀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "肀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肁", + "codepoint": "U+8081", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8081", + "status": "exact_ids", + "ids": "⿱户聿", + "canonical_ids": "⿱户聿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "尸" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肂", + "codepoint": "U+8082", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8082", + "status": "exact_ids", + "ids": "⿰歹聿", + "canonical_ids": "⿰歹聿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夕" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肃", + "codepoint": "U+8083", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8083", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肄", + "codepoint": "U+8084", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8084", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肅", + "codepoint": "U+8085", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8085", + "status": "exact_ids", + "ids": "⿻肀𣶒", + "canonical_ids": "⿻肀𣶒", + "expanded_ids": "⿻肀𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "肀", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 78, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肆", + "codepoint": "U+8086", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8086", + "status": "exact_ids", + "ids": "⿰镸聿", + "canonical_ids": "⿰镸聿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "镸" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肇", + "codepoint": "U+8087", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8087", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肈", + "codepoint": "U+8088", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8088", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肉", + "codepoint": "U+8089", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8089", + "status": "exact_ids", + "ids": "⿻冂仌", + "canonical_ids": "⿻冂仌", + "expanded_ids": "⿻冂⿱人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肊", + "codepoint": "U+808A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-808A", + "status": "exact_ids", + "ids": "⿰月乙", + "canonical_ids": "⿰月乙", + "expanded_ids": "⿰月乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肋", + "codepoint": "U+808B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-808B", + "status": "exact_ids", + "ids": "⿰月力", + "canonical_ids": "⿰月力", + "expanded_ids": "⿰月力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肌", + "codepoint": "U+808C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-808C", + "status": "exact_ids", + "ids": "⿰月几", + "canonical_ids": "⿰月几", + "expanded_ids": "⿰月几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肍", + "codepoint": "U+808D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-808D", + "status": "exact_ids", + "ids": "⿰月九", + "canonical_ids": "⿰月九", + "expanded_ids": "⿰月九", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肎", + "codepoint": "U+808E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-808E", + "status": "exact_ids", + "ids": "⿱冖月", + "canonical_ids": "⿱冖月", + "expanded_ids": "⿱冖月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肏", + "codepoint": "U+808F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-808F", + "status": "exact_ids", + "ids": "⿱入肉", + "canonical_ids": "⿱入肉", + "expanded_ids": "⿱入⿻冂⿱人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "入", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肐", + "codepoint": "U+8090", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8090", + "status": "exact_ids", + "ids": "⿰月乞", + "canonical_ids": "⿰月乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肑", + "codepoint": "U+8091", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8091", + "status": "exact_ids", + "ids": "⿰月勺", + "canonical_ids": "⿰月勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肒", + "codepoint": "U+8092", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8092", + "status": "exact_ids", + "ids": "⿰月丸", + "canonical_ids": "⿰月丸", + "expanded_ids": "⿰月⿻九丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肓", + "codepoint": "U+8093", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8093", + "status": "exact_ids", + "ids": "⿱亡月", + "canonical_ids": "⿱亡月", + "expanded_ids": "⿱⿻亠乚月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肔", + "codepoint": "U+8094", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8094", + "status": "exact_ids", + "ids": "⿰月也", + "canonical_ids": "⿰月也", + "expanded_ids": "⿰月⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肕", + "codepoint": "U+8095", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8095", + "status": "exact_ids", + "ids": "⿰月刃", + "canonical_ids": "⿰月刃", + "expanded_ids": "⿰月⿻刀丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肖", + "codepoint": "U+8096", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8096", + "status": "exact_ids", + "ids": "⿱小月", + "canonical_ids": "⿱小月", + "expanded_ids": "⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肗", + "codepoint": "U+8097", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8097", + "status": "exact_ids", + "ids": "⿰月女", + "canonical_ids": "⿰月女", + "expanded_ids": "⿰月女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肘", + "codepoint": "U+8098", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8098", + "status": "exact_ids", + "ids": "⿰月寸", + "canonical_ids": "⿰月寸", + "expanded_ids": "⿰月寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肙", + "codepoint": "U+8099", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8099", + "status": "exact_ids", + "ids": "⿱口月", + "canonical_ids": "⿱口月", + "expanded_ids": "⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肚", + "codepoint": "U+809A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-809A", + "status": "exact_ids", + "ids": "⿰月土", + "canonical_ids": "⿰月土", + "expanded_ids": "⿰月土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肛", + "codepoint": "U+809B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-809B", + "status": "exact_ids", + "ids": "⿰月工", + "canonical_ids": "⿰月工", + "expanded_ids": "⿰月工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肜", + "codepoint": "U+809C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-809C", + "status": "exact_ids", + "ids": "⿰月彡", + "canonical_ids": "⿰月彡", + "expanded_ids": "⿰月彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肝", + "codepoint": "U+809D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-809D", + "status": "exact_ids", + "ids": "⿰月干", + "canonical_ids": "⿰月干", + "expanded_ids": "⿰月⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肞", + "codepoint": "U+809E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-809E", + "status": "exact_ids", + "ids": "⿰月义", + "canonical_ids": "⿰月义", + "expanded_ids": "⿰月⿻乂丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乂", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肟", + "codepoint": "U+809F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-809F", + "status": "exact_ids", + "ids": "⿰月亏", + "canonical_ids": "⿰月亏", + "expanded_ids": "⿰月⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肠", + "codepoint": "U+80A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80A0", + "status": "exact_ids", + "ids": "⿰月𠃓", + "canonical_ids": "⿰月𠃓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "𠃓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "股", + "codepoint": "U+80A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80A1", + "status": "exact_ids", + "ids": "⿰月殳", + "canonical_ids": "⿰月殳", + "expanded_ids": "⿰月⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肢", + "codepoint": "U+80A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80A2", + "status": "exact_ids", + "ids": "⿰月支", + "canonical_ids": "⿰月支", + "expanded_ids": "⿰月⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肣", + "codepoint": "U+80A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80A3", + "status": "exact_ids", + "ids": "⿰月今", + "canonical_ids": "⿰月今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "月" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肤", + "codepoint": "U+80A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80A4", + "status": "exact_ids", + "ids": "⿰月夫", + "canonical_ids": "⿰月夫", + "expanded_ids": "⿰月⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肥", + "codepoint": "U+80A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80A5", + "status": "exact_ids", + "ids": "⿰月巴", + "canonical_ids": "⿰月巴", + "expanded_ids": "⿰月巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肦", + "codepoint": "U+80A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80A6", + "status": "exact_ids", + "ids": "⿰月分", + "canonical_ids": "⿰月分", + "expanded_ids": "⿰月⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "朌" + ] + }, + { + "character": "肧", + "codepoint": "U+80A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80A7", + "status": "exact_ids", + "ids": "⿰月不", + "canonical_ids": "⿰月不", + "expanded_ids": "⿰月不", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肨", + "codepoint": "U+80A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80A8", + "status": "exact_ids", + "ids": "⿰月丰", + "canonical_ids": "⿰月丰", + "expanded_ids": "⿰月丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肩", + "codepoint": "U+80A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80A9", + "status": "exact_ids", + "ids": "⿱戸月", + "canonical_ids": "⿱戸月", + "expanded_ids": "⿱⿻一尸月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肪", + "codepoint": "U+80AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80AA", + "status": "exact_ids", + "ids": "⿰月方", + "canonical_ids": "⿰月方", + "expanded_ids": "⿰月方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肫", + "codepoint": "U+80AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80AB", + "status": "exact_ids", + "ids": "⿰月屯", + "canonical_ids": "⿰月屯", + "expanded_ids": "⿰月屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肬", + "codepoint": "U+80AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80AC", + "status": "exact_ids", + "ids": "⿰月尤", + "canonical_ids": "⿰月尤", + "expanded_ids": "⿰月尤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肭", + "codepoint": "U+80AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80AD", + "status": "exact_ids", + "ids": "⿰月內", + "canonical_ids": "⿰月內", + "expanded_ids": "⿰月⿻冂入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "冂", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肮", + "codepoint": "U+80AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80AE", + "status": "exact_ids", + "ids": "⿰月亢", + "canonical_ids": "⿰月亢", + "expanded_ids": "⿰月⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肯", + "codepoint": "U+80AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80AF", + "status": "exact_ids", + "ids": "⿱止月", + "canonical_ids": "⿱止月", + "expanded_ids": "⿱止月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肰", + "codepoint": "U+80B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80B0", + "status": "exact_ids", + "ids": "⿰月犬", + "canonical_ids": "⿰月犬", + "expanded_ids": "⿰月⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "肽" + ] + }, + { + "character": "肱", + "codepoint": "U+80B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80B1", + "status": "exact_ids", + "ids": "⿰月厷", + "canonical_ids": "⿰月厷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "厷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "育", + "codepoint": "U+80B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80B2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肳", + "codepoint": "U+80B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80B3", + "status": "exact_ids", + "ids": "⿰月勿", + "canonical_ids": "⿰月勿", + "expanded_ids": "⿰月勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肴", + "codepoint": "U+80B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80B4", + "status": "exact_ids", + "ids": "⿱乂有", + "canonical_ids": "⿱乂有", + "expanded_ids": "⿱乂⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "乂", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肵", + "codepoint": "U+80B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80B5", + "status": "exact_ids", + "ids": "⿰月斤", + "canonical_ids": "⿰月斤", + "expanded_ids": "⿰月斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肶", + "codepoint": "U+80B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80B6", + "status": "exact_ids", + "ids": "⿰月比", + "canonical_ids": "⿰月比", + "expanded_ids": "⿰月⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肷", + "codepoint": "U+80B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80B7", + "status": "exact_ids", + "ids": "⿰月欠", + "canonical_ids": "⿰月欠", + "expanded_ids": "⿰月欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肸", + "codepoint": "U+80B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80B8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肹", + "codepoint": "U+80B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80B9", + "status": "exact_ids", + "ids": "⿰月兮", + "canonical_ids": "⿰月兮", + "expanded_ids": "⿰月⿱八丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "八", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肺", + "codepoint": "U+80BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80BA", + "status": "exact_ids", + "ids": "⿰月巿", + "canonical_ids": "⿰月巿", + "expanded_ids": "⿰月⿻⿻冂丨一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肻", + "codepoint": "U+80BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80BB", + "status": "exact_ids", + "ids": "⿳卜冖月", + "canonical_ids": "⿳卜冖月", + "expanded_ids": "⿳卜冖月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "卜", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肼", + "codepoint": "U+80BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80BC", + "status": "exact_ids", + "ids": "⿰月井", + "canonical_ids": "⿰月井", + "expanded_ids": "⿰月井", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "井", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肽", + "codepoint": "U+80BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80BD", + "status": "exact_ids", + "ids": "⿰月太", + "canonical_ids": "⿰月太", + "expanded_ids": "⿰月⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [ + "肰" + ] + }, + { + "character": "肾", + "codepoint": "U+80BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80BE", + "status": "exact_ids", + "ids": "⿱収月", + "canonical_ids": "⿱収月", + "expanded_ids": "⿱⿰⿰丨丨又月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "又", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "肿", + "codepoint": "U+80BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80BF", + "status": "exact_ids", + "ids": "⿰月中", + "canonical_ids": "⿰月中", + "expanded_ids": "⿰月⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胀", + "codepoint": "U+80C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80C0", + "status": "exact_ids", + "ids": "⿰月长", + "canonical_ids": "⿰月长", + "expanded_ids": "⿰月长", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "长" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胁", + "codepoint": "U+80C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80C1", + "status": "exact_ids", + "ids": "⿰月办", + "canonical_ids": "⿰月办", + "expanded_ids": "⿰月⿻力丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "力", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胂", + "codepoint": "U+80C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80C2", + "status": "exact_ids", + "ids": "⿰月申", + "canonical_ids": "⿰月申", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胃", + "codepoint": "U+80C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80C3", + "status": "exact_ids", + "ids": "⿱田月", + "canonical_ids": "⿱田月", + "expanded_ids": "⿱田月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胄", + "codepoint": "U+80C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80C4", + "status": "exact_ids", + "ids": "⿱由月", + "canonical_ids": "⿱由月", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胅", + "codepoint": "U+80C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80C5", + "status": "exact_ids", + "ids": "⿰月失", + "canonical_ids": "⿰月失", + "expanded_ids": "⿰月⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胆", + "codepoint": "U+80C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80C6", + "status": "exact_ids", + "ids": "⿰月旦", + "canonical_ids": "⿰月旦", + "expanded_ids": "⿰月⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胇", + "codepoint": "U+80C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80C7", + "status": "exact_ids", + "ids": "⿰月弗", + "canonical_ids": "⿰月弗", + "expanded_ids": "⿰月⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "弓", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胈", + "codepoint": "U+80C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80C8", + "status": "exact_ids", + "ids": "⿰月犮", + "canonical_ids": "⿰月犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胉", + "codepoint": "U+80C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80C9", + "status": "exact_ids", + "ids": "⿰月白", + "canonical_ids": "⿰月白", + "expanded_ids": "⿰月⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胊", + "codepoint": "U+80CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80CA", + "status": "exact_ids", + "ids": "⿰月句", + "canonical_ids": "⿰月句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胋", + "codepoint": "U+80CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80CB", + "status": "exact_ids", + "ids": "⿰月占", + "canonical_ids": "⿰月占", + "expanded_ids": "⿰月⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "背", + "codepoint": "U+80CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80CC", + "status": "exact_ids", + "ids": "⿱北月", + "canonical_ids": "⿱北月", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胍", + "codepoint": "U+80CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80CD", + "status": "exact_ids", + "ids": "⿰月瓜", + "canonical_ids": "⿰月瓜", + "expanded_ids": "⿰月瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "瓜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胎", + "codepoint": "U+80CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80CE", + "status": "exact_ids", + "ids": "⿰月台", + "canonical_ids": "⿰月台", + "expanded_ids": "⿰月⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胏", + "codepoint": "U+80CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80CF", + "status": "exact_ids", + "ids": "⿰月𠂔", + "canonical_ids": "⿰月𠂔", + "expanded_ids": "⿰月𠂔", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "𠂔" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 76, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胐", + "codepoint": "U+80D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80D0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胑", + "codepoint": "U+80D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80D1", + "status": "exact_ids", + "ids": "⿰月只", + "canonical_ids": "⿰月只", + "expanded_ids": "⿰月⿱口八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胒", + "codepoint": "U+80D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80D2", + "status": "exact_ids", + "ids": "⿰月尼", + "canonical_ids": "⿰月尼", + "expanded_ids": "⿰月⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "尸", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胓", + "codepoint": "U+80D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80D3", + "status": "exact_ids", + "ids": "⿰月平", + "canonical_ids": "⿰月平", + "expanded_ids": "⿰月⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "十", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胔", + "codepoint": "U+80D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80D4", + "status": "exact_ids", + "ids": "⿱此肉", + "canonical_ids": "⿱此肉", + "expanded_ids": "⿱⿰止匕⿻冂⿱人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "匕", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胕", + "codepoint": "U+80D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80D5", + "status": "exact_ids", + "ids": "⿰月付", + "canonical_ids": "⿰月付", + "expanded_ids": "⿰月⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胖", + "codepoint": "U+80D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80D6", + "status": "exact_ids", + "ids": "⿰月半", + "canonical_ids": "⿰月半", + "expanded_ids": "⿰月半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胗", + "codepoint": "U+80D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80D7", + "status": "exact_ids", + "ids": "⿰月㐱", + "canonical_ids": "⿰月㐱", + "expanded_ids": "⿰月⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "彡", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胘", + "codepoint": "U+80D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80D8", + "status": "exact_ids", + "ids": "⿰月玄", + "canonical_ids": "⿰月玄", + "expanded_ids": "⿰月⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胙", + "codepoint": "U+80D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80D9", + "status": "exact_ids", + "ids": "⿰月乍", + "canonical_ids": "⿰月乍", + "expanded_ids": "⿰月乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胚", + "codepoint": "U+80DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80DA", + "status": "exact_ids", + "ids": "⿰月丕", + "canonical_ids": "⿰月丕", + "expanded_ids": "⿰月⿱不一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胛", + "codepoint": "U+80DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80DB", + "status": "exact_ids", + "ids": "⿰月甲", + "canonical_ids": "⿰月甲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "甲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胜", + "codepoint": "U+80DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80DC", + "status": "exact_ids", + "ids": "⿰月生", + "canonical_ids": "⿰月生", + "expanded_ids": "⿰月⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "月", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胝", + "codepoint": "U+80DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80DD", + "status": "exact_ids", + "ids": "⿰月氐", + "canonical_ids": "⿰月氐", + "expanded_ids": "⿰月⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "月", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胞", + "codepoint": "U+80DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80DE", + "status": "exact_ids", + "ids": "⿰月包", + "canonical_ids": "⿰月包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胟", + "codepoint": "U+80DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80DF", + "status": "exact_ids", + "ids": "⿰月母", + "canonical_ids": "⿰月母", + "expanded_ids": "⿰月母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胠", + "codepoint": "U+80E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80E0", + "status": "exact_ids", + "ids": "⿰月去", + "canonical_ids": "⿰月去", + "expanded_ids": "⿰月⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胡", + "codepoint": "U+80E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80E1", + "status": "exact_ids", + "ids": "⿰古月", + "canonical_ids": "⿰古月", + "expanded_ids": "⿰⿻十口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胢", + "codepoint": "U+80E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80E2", + "status": "exact_ids", + "ids": "⿰月可", + "canonical_ids": "⿰月可", + "expanded_ids": "⿰月⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胣", + "codepoint": "U+80E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80E3", + "status": "exact_ids", + "ids": "⿰月㐌", + "canonical_ids": "⿰月㐌", + "expanded_ids": "⿰月⿱⿻丿一⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丿", + "乜", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胤", + "codepoint": "U+80E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80E4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胥", + "codepoint": "U+80E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80E5", + "status": "exact_ids", + "ids": "⿱疋月", + "canonical_ids": "⿱疋月", + "expanded_ids": "⿱疋月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "疋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胦", + "codepoint": "U+80E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80E6", + "status": "exact_ids", + "ids": "⿰月央", + "canonical_ids": "⿰月央", + "expanded_ids": "⿰月⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胧", + "codepoint": "U+80E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80E7", + "status": "exact_ids", + "ids": "⿰月龙", + "canonical_ids": "⿰月龙", + "expanded_ids": "⿰月龙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胨", + "codepoint": "U+80E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80E8", + "status": "exact_ids", + "ids": "⿰月东", + "canonical_ids": "⿰月东", + "expanded_ids": "⿰月东", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "东", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胩", + "codepoint": "U+80E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80E9", + "status": "exact_ids", + "ids": "⿰月卡", + "canonical_ids": "⿰月卡", + "expanded_ids": "⿰月⿱上卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "卜", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胪", + "codepoint": "U+80EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80EA", + "status": "exact_ids", + "ids": "⿰月卢", + "canonical_ids": "⿰月卢", + "expanded_ids": "⿰月⿱卜尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "尸", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胫", + "codepoint": "U+80EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80EB", + "status": "exact_ids", + "ids": "⿰月𢀖", + "canonical_ids": "⿰月𢀖", + "expanded_ids": "⿰月⿱又工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "工", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胬", + "codepoint": "U+80EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80EC", + "status": "exact_ids", + "ids": "⿱奴肉", + "canonical_ids": "⿱奴肉", + "expanded_ids": "⿱⿰女又⿻冂⿱人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "又", + "女" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胭", + "codepoint": "U+80ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80ED", + "status": "exact_ids", + "ids": "⿰月因", + "canonical_ids": "⿰月因", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胮", + "codepoint": "U+80EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80EE", + "status": "exact_ids", + "ids": "⿰月夅", + "canonical_ids": "⿰月夅", + "expanded_ids": "⿰月⿱夂⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夂", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胯", + "codepoint": "U+80EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80EF", + "status": "exact_ids", + "ids": "⿰月夸", + "canonical_ids": "⿰月夸", + "expanded_ids": "⿰月⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胰", + "codepoint": "U+80F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80F0", + "status": "exact_ids", + "ids": "⿰月夷", + "canonical_ids": "⿰月夷", + "expanded_ids": "⿰月⿻大弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "弓", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胱", + "codepoint": "U+80F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80F1", + "status": "exact_ids", + "ids": "⿰月光", + "canonical_ids": "⿰月光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "月" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胲", + "codepoint": "U+80F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80F2", + "status": "exact_ids", + "ids": "⿰月亥", + "canonical_ids": "⿰月亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胳", + "codepoint": "U+80F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80F3", + "status": "exact_ids", + "ids": "⿰月各", + "canonical_ids": "⿰月各", + "expanded_ids": "⿰月⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胴", + "codepoint": "U+80F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80F4", + "status": "exact_ids", + "ids": "⿰月同", + "canonical_ids": "⿰月同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胵", + "codepoint": "U+80F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80F5", + "status": "exact_ids", + "ids": "⿰月至", + "canonical_ids": "⿰月至", + "expanded_ids": "⿰月⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胶", + "codepoint": "U+80F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80F6", + "status": "exact_ids", + "ids": "⿰月交", + "canonical_ids": "⿰月交", + "expanded_ids": "⿰月⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "月", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胷", + "codepoint": "U+80F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80F7", + "status": "exact_ids", + "ids": "⿱匈月", + "canonical_ids": "⿱匈月", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "匈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胸", + "codepoint": "U+80F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80F8", + "status": "exact_ids", + "ids": "⿰月匈", + "canonical_ids": "⿰月匈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "匈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胹", + "codepoint": "U+80F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80F9", + "status": "exact_ids", + "ids": "⿰月而", + "canonical_ids": "⿰月而", + "expanded_ids": "⿰月而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胺", + "codepoint": "U+80FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80FA", + "status": "exact_ids", + "ids": "⿰月安", + "canonical_ids": "⿰月安", + "expanded_ids": "⿰月⿱宀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胻", + "codepoint": "U+80FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80FB", + "status": "exact_ids", + "ids": "⿰月行", + "canonical_ids": "⿰月行", + "expanded_ids": "⿰月⿰彳彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胼", + "codepoint": "U+80FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80FC", + "status": "exact_ids", + "ids": "⿰月并", + "canonical_ids": "⿰月并", + "expanded_ids": "⿰月⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "能", + "codepoint": "U+80FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80FD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胾", + "codepoint": "U+80FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80FE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "胿", + "codepoint": "U+80FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-80FF", + "status": "exact_ids", + "ids": "⿰月圭", + "canonical_ids": "⿰月圭", + "expanded_ids": "⿰月⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脀", + "codepoint": "U+8100", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8100", + "status": "exact_ids", + "ids": "⿱丞月", + "canonical_ids": "⿱丞月", + "expanded_ids": "⿱⿱⿱乛水一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乛", + "月", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脁", + "codepoint": "U+8101", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8101", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脂", + "codepoint": "U+8102", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8102", + "status": "exact_ids", + "ids": "⿰月旨", + "canonical_ids": "⿰月旨", + "expanded_ids": "⿰月⿱匕日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脃", + "codepoint": "U+8103", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8103", + "status": "exact_ids", + "ids": "⿰月色", + "canonical_ids": "⿰月色", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "月" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脄", + "codepoint": "U+8104", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8104", + "status": "exact_ids", + "ids": "⿰月灰", + "canonical_ids": "⿰月灰", + "expanded_ids": "⿰月⿱厂火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "月", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脅", + "codepoint": "U+8105", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8105", + "status": "exact_ids", + "ids": "⿱劦月", + "canonical_ids": "⿱劦月", + "expanded_ids": "⿱⿱力⿰力力月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脆", + "codepoint": "U+8106", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8106", + "status": "exact_ids", + "ids": "⿰月危", + "canonical_ids": "⿰月危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "月" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脇", + "codepoint": "U+8107", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8107", + "status": "exact_ids", + "ids": "⿰月劦", + "canonical_ids": "⿰月劦", + "expanded_ids": "⿰月⿱力⿰力力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脈", + "codepoint": "U+8108", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8108", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脉", + "codepoint": "U+8109", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8109", + "status": "exact_ids", + "ids": "⿰月永", + "canonical_ids": "⿰月永", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "永" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脊", + "codepoint": "U+810A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-810A", + "status": "exact_ids", + "ids": "⿱兆月", + "canonical_ids": "⿱兆月", + "expanded_ids": "⿱兆月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脋", + "codepoint": "U+810B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-810B", + "status": "exact_ids", + "ids": "⿱刕月", + "canonical_ids": "⿱刕月", + "expanded_ids": "⿱⿱刀⿰刀刀月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脌", + "codepoint": "U+810C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-810C", + "status": "exact_ids", + "ids": "⿰月年", + "canonical_ids": "⿰月年", + "expanded_ids": "⿰月年", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "年", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脍", + "codepoint": "U+810D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-810D", + "status": "exact_ids", + "ids": "⿰月会", + "canonical_ids": "⿰月会", + "expanded_ids": "⿰月⿱⿱人一⿱一厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "厶", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脎", + "codepoint": "U+810E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-810E", + "status": "exact_ids", + "ids": "⿰月杀", + "canonical_ids": "⿰月杀", + "expanded_ids": "⿰月⿱乂朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "月", + "朩" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脏", + "codepoint": "U+810F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-810F", + "status": "exact_ids", + "ids": "⿰月庄", + "canonical_ids": "⿰月庄", + "expanded_ids": "⿰月⿱广土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "广", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脐", + "codepoint": "U+8110", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8110", + "status": "exact_ids", + "ids": "⿰月齐", + "canonical_ids": "⿰月齐", + "expanded_ids": "⿰月齐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "齐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脑", + "codepoint": "U+8111", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8111", + "status": "exact_ids", + "ids": "⿰月㐫", + "canonical_ids": "⿰月㐫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "月" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脒", + "codepoint": "U+8112", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8112", + "status": "exact_ids", + "ids": "⿰月米", + "canonical_ids": "⿰月米", + "expanded_ids": "⿰月⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脓", + "codepoint": "U+8113", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8113", + "status": "exact_ids", + "ids": "⿰月农", + "canonical_ids": "⿰月农", + "expanded_ids": "⿰月农", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "农", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脔", + "codepoint": "U+8114", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8114", + "status": "exact_ids", + "ids": "⿱亦肉", + "canonical_ids": "⿱亦肉", + "expanded_ids": "⿱亦⿻冂⿱人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "人", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脕", + "codepoint": "U+8115", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8115", + "status": "exact_ids", + "ids": "⿰月免", + "canonical_ids": "⿰月免", + "expanded_ids": "⿰月免", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "免", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脖", + "codepoint": "U+8116", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8116", + "status": "exact_ids", + "ids": "⿰月孛", + "canonical_ids": "⿰月孛", + "expanded_ids": "⿰月⿳十冖子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "子", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脗", + "codepoint": "U+8117", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8117", + "status": "exact_ids", + "ids": "⿰月𠯳", + "canonical_ids": "⿰月𠯳", + "expanded_ids": "⿰月⿱勿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脘", + "codepoint": "U+8118", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8118", + "status": "exact_ids", + "ids": "⿰月完", + "canonical_ids": "⿰月完", + "expanded_ids": "⿰月⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "宀", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脙", + "codepoint": "U+8119", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8119", + "status": "exact_ids", + "ids": "⿰月求", + "canonical_ids": "⿰月求", + "expanded_ids": "⿰月求", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "求" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脚", + "codepoint": "U+811A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-811A", + "status": "exact_ids", + "ids": "⿰月却", + "canonical_ids": "⿰月却", + "expanded_ids": "⿰月⿰⿱土厶卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "厶", + "土", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脛", + "codepoint": "U+811B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-811B", + "status": "exact_ids", + "ids": "⿰月巠", + "canonical_ids": "⿰月巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脜", + "codepoint": "U+811C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-811C", + "status": "exact_ids", + "ids": "⿰月𦣻", + "canonical_ids": "⿰月𦣻", + "expanded_ids": "⿰月⿱一⿻目丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "月", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脝", + "codepoint": "U+811D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-811D", + "status": "exact_ids", + "ids": "⿰月亨", + "canonical_ids": "⿰月亨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "亨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脞", + "codepoint": "U+811E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-811E", + "status": "exact_ids", + "ids": "⿰月坐", + "canonical_ids": "⿰月坐", + "expanded_ids": "⿰月⿱⿰人人土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "土", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脟", + "codepoint": "U+811F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-811F", + "status": "exact_ids", + "ids": "⿰月寽", + "canonical_ids": "⿰月寽", + "expanded_ids": "⿰月⿱爫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "月", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脠", + "codepoint": "U+8120", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8120", + "status": "exact_ids", + "ids": "⿰月延", + "canonical_ids": "⿰月延", + "expanded_ids": "⿰月⿰廴⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廴", + "月", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脡", + "codepoint": "U+8121", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8121", + "status": "exact_ids", + "ids": "⿰月廷", + "canonical_ids": "⿰月廷", + "expanded_ids": "⿰月⿰廴⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "廴", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脢", + "codepoint": "U+8122", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8122", + "status": "exact_ids", + "ids": "⿰月每", + "canonical_ids": "⿰月每", + "expanded_ids": "⿰月⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "月", + "母" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脣", + "codepoint": "U+8123", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8123", + "status": "exact_ids", + "ids": "⿱辰月", + "canonical_ids": "⿱辰月", + "expanded_ids": "⿱辰月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脤", + "codepoint": "U+8124", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8124", + "status": "exact_ids", + "ids": "⿰月辰", + "canonical_ids": "⿰月辰", + "expanded_ids": "⿰月辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脥", + "codepoint": "U+8125", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8125", + "status": "exact_ids", + "ids": "⿰月夾", + "canonical_ids": "⿰月夾", + "expanded_ids": "⿰月⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脦", + "codepoint": "U+8126", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8126", + "status": "exact_ids", + "ids": "⿰月忒", + "canonical_ids": "⿰月忒", + "expanded_ids": "⿰月⿱弋心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弋", + "心", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脧", + "codepoint": "U+8127", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8127", + "status": "exact_ids", + "ids": "⿰月夋", + "canonical_ids": "⿰月夋", + "expanded_ids": "⿰月⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "朘" + ] + }, + { + "character": "脨", + "codepoint": "U+8128", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8128", + "status": "exact_ids", + "ids": "⿰月束", + "canonical_ids": "⿰月束", + "expanded_ids": "⿰月⿻木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脩", + "codepoint": "U+8129", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8129", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脪", + "codepoint": "U+812A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-812A", + "status": "exact_ids", + "ids": "⿰月希", + "canonical_ids": "⿰月希", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "月" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脫", + "codepoint": "U+812B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-812B", + "status": "exact_ids", + "ids": "⿰月兌", + "canonical_ids": "⿰月兌", + "expanded_ids": "⿰月⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "脱" + ] + }, + { + "character": "脬", + "codepoint": "U+812C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-812C", + "status": "exact_ids", + "ids": "⿰月孚", + "canonical_ids": "⿰月孚", + "expanded_ids": "⿰月⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "月", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脭", + "codepoint": "U+812D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-812D", + "status": "exact_ids", + "ids": "⿰月呈", + "canonical_ids": "⿰月呈", + "expanded_ids": "⿰月⿱口王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脮", + "codepoint": "U+812E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-812E", + "status": "exact_ids", + "ids": "⿰月妥", + "canonical_ids": "⿰月妥", + "expanded_ids": "⿰月⿱爫女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "月", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脯", + "codepoint": "U+812F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-812F", + "status": "exact_ids", + "ids": "⿰月甫", + "canonical_ids": "⿰月甫", + "expanded_ids": "⿰月甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脰", + "codepoint": "U+8130", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8130", + "status": "exact_ids", + "ids": "⿰月豆", + "canonical_ids": "⿰月豆", + "expanded_ids": "⿰月豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脱", + "codepoint": "U+8131", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8131", + "status": "exact_ids", + "ids": "⿰月兌", + "canonical_ids": "⿰月兌", + "expanded_ids": "⿰月⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [ + "脫" + ] + }, + { + "character": "脲", + "codepoint": "U+8132", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8132", + "status": "exact_ids", + "ids": "⿰月尿", + "canonical_ids": "⿰月尿", + "expanded_ids": "⿰月⿱尸水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "月", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脳", + "codepoint": "U+8133", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8133", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脴", + "codepoint": "U+8134", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8134", + "status": "exact_ids", + "ids": "⿰月否", + "canonical_ids": "⿰月否", + "expanded_ids": "⿰月⿱不口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脵", + "codepoint": "U+8135", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8135", + "status": "exact_ids", + "ids": "⿰月吴", + "canonical_ids": "⿰月吴", + "expanded_ids": "⿰月⿱口⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "大", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脶", + "codepoint": "U+8136", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8136", + "status": "exact_ids", + "ids": "⿰月呙", + "canonical_ids": "⿰月呙", + "expanded_ids": "⿰月⿱口⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脷", + "codepoint": "U+8137", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8137", + "status": "exact_ids", + "ids": "⿰月利", + "canonical_ids": "⿰月利", + "expanded_ids": "⿰月⿰⿻丿木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脸", + "codepoint": "U+8138", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8138", + "status": "exact_ids", + "ids": "⿰月佥", + "canonical_ids": "⿰月佥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "佥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脹", + "codepoint": "U+8139", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8139", + "status": "exact_ids", + "ids": "⿰月長", + "canonical_ids": "⿰月長", + "expanded_ids": "⿰月長", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "長" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脺", + "codepoint": "U+813A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-813A", + "status": "exact_ids", + "ids": "⿰月卒", + "canonical_ids": "⿰月卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脻", + "codepoint": "U+813B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-813B", + "status": "exact_ids", + "ids": "⿰月疌", + "canonical_ids": "⿰月疌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "疌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脼", + "codepoint": "U+813C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-813C", + "status": "exact_ids", + "ids": "⿰月兩", + "canonical_ids": "⿰月兩", + "expanded_ids": "⿰月⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脽", + "codepoint": "U+813D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-813D", + "status": "exact_ids", + "ids": "⿰月隹", + "canonical_ids": "⿰月隹", + "expanded_ids": "⿰月隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脾", + "codepoint": "U+813E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-813E", + "status": "exact_ids", + "ids": "⿰月卑", + "canonical_ids": "⿰月卑", + "expanded_ids": "⿰月卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "脿", + "codepoint": "U+813F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-813F", + "status": "exact_ids", + "ids": "⿰月表", + "canonical_ids": "⿰月表", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "表" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腀", + "codepoint": "U+8140", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8140", + "status": "exact_ids", + "ids": "⿰月侖", + "canonical_ids": "⿰月侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "月" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腁", + "codepoint": "U+8141", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8141", + "status": "exact_ids", + "ids": "⿰月幷", + "canonical_ids": "⿰月幷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "幷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腂", + "codepoint": "U+8142", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8142", + "status": "exact_ids", + "ids": "⿰月果", + "canonical_ids": "⿰月果", + "expanded_ids": "⿰月⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腃", + "codepoint": "U+8143", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8143", + "status": "exact_ids", + "ids": "⿰月卷", + "canonical_ids": "⿰月卷", + "expanded_ids": "⿰月⿱龹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "月", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腄", + "codepoint": "U+8144", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8144", + "status": "exact_ids", + "ids": "⿰月垂", + "canonical_ids": "⿰月垂", + "expanded_ids": "⿰月垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "垂", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腅", + "codepoint": "U+8145", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8145", + "status": "exact_ids", + "ids": "⿰月炎", + "canonical_ids": "⿰月炎", + "expanded_ids": "⿰月⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腆", + "codepoint": "U+8146", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8146", + "status": "exact_ids", + "ids": "⿰月典", + "canonical_ids": "⿰月典", + "expanded_ids": "⿰月典", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "典", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腇", + "codepoint": "U+8147", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8147", + "status": "exact_ids", + "ids": "⿰月委", + "canonical_ids": "⿰月委", + "expanded_ids": "⿰月⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腈", + "codepoint": "U+8148", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8148", + "status": "exact_ids", + "ids": "⿰月青", + "canonical_ids": "⿰月青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腉", + "codepoint": "U+8149", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8149", + "status": "exact_ids", + "ids": "⿰月兒", + "canonical_ids": "⿰月兒", + "expanded_ids": "⿰月⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "月", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腊", + "codepoint": "U+814A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-814A", + "status": "exact_ids", + "ids": "⿰月昔", + "canonical_ids": "⿰月昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "月" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腋", + "codepoint": "U+814B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-814B", + "status": "exact_ids", + "ids": "⿰月夜", + "canonical_ids": "⿰月夜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "夜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腌", + "codepoint": "U+814C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-814C", + "status": "exact_ids", + "ids": "⿰月奄", + "canonical_ids": "⿰月奄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "月" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腍", + "codepoint": "U+814D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-814D", + "status": "exact_ids", + "ids": "⿰月念", + "canonical_ids": "⿰月念", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "心", + "月" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腎", + "codepoint": "U+814E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-814E", + "status": "exact_ids", + "ids": "⿱臤月", + "canonical_ids": "⿱臤月", + "expanded_ids": "⿱⿰臣又月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "月", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腏", + "codepoint": "U+814F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-814F", + "status": "exact_ids", + "ids": "⿰月叕", + "canonical_ids": "⿰月叕", + "expanded_ids": "⿰月⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腐", + "codepoint": "U+8150", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8150", + "status": "exact_ids", + "ids": "⿱府肉", + "canonical_ids": "⿱府肉", + "expanded_ids": "⿱⿱广⿰亻寸⿻冂⿱人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "亻", + "冂", + "寸", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腑", + "codepoint": "U+8151", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8151", + "status": "exact_ids", + "ids": "⿰月府", + "canonical_ids": "⿰月府", + "expanded_ids": "⿰月⿱广⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "广", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腒", + "codepoint": "U+8152", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8152", + "status": "exact_ids", + "ids": "⿰月居", + "canonical_ids": "⿰月居", + "expanded_ids": "⿰月⿱尸⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "尸", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腓", + "codepoint": "U+8153", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8153", + "status": "exact_ids", + "ids": "⿰月非", + "canonical_ids": "⿰月非", + "expanded_ids": "⿰月非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腔", + "codepoint": "U+8154", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8154", + "status": "exact_ids", + "ids": "⿰月空", + "canonical_ids": "⿰月空", + "expanded_ids": "⿰月⿱⿱宀八工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "工", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腕", + "codepoint": "U+8155", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8155", + "status": "exact_ids", + "ids": "⿰月宛", + "canonical_ids": "⿰月宛", + "expanded_ids": "⿰月⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 144, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腖", + "codepoint": "U+8156", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8156", + "status": "exact_ids", + "ids": "⿰月東", + "canonical_ids": "⿰月東", + "expanded_ids": "⿰月⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腗", + "codepoint": "U+8157", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8157", + "status": "exact_ids", + "ids": "⿰月畁", + "canonical_ids": "⿰月畁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "月" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腘", + "codepoint": "U+8158", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8158", + "status": "exact_ids", + "ids": "⿰月国", + "canonical_ids": "⿰月国", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "国" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腙", + "codepoint": "U+8159", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8159", + "status": "exact_ids", + "ids": "⿰月宗", + "canonical_ids": "⿰月宗", + "expanded_ids": "⿰月⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腚", + "codepoint": "U+815A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-815A", + "status": "exact_ids", + "ids": "⿰月定", + "canonical_ids": "⿰月定", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "月" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腛", + "codepoint": "U+815B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-815B", + "status": "exact_ids", + "ids": "⿰月屋", + "canonical_ids": "⿰月屋", + "expanded_ids": "⿰月⿱尸⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "尸", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腜", + "codepoint": "U+815C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-815C", + "status": "exact_ids", + "ids": "⿰月某", + "canonical_ids": "⿰月某", + "expanded_ids": "⿰月⿱甘木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "木", + "甘" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腝", + "codepoint": "U+815D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-815D", + "status": "exact_ids", + "ids": "⿰月耎", + "canonical_ids": "⿰月耎", + "expanded_ids": "⿰月⿱而大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "月", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腞", + "codepoint": "U+815E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-815E", + "status": "exact_ids", + "ids": "⿰月彖", + "canonical_ids": "⿰月彖", + "expanded_ids": "⿰月⿱彑𧰨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "月", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腟", + "codepoint": "U+815F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-815F", + "status": "exact_ids", + "ids": "⿰月室", + "canonical_ids": "⿰月室", + "expanded_ids": "⿰月⿱宀⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "宀", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腠", + "codepoint": "U+8160", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8160", + "status": "exact_ids", + "ids": "⿰月奏", + "canonical_ids": "⿰月奏", + "expanded_ids": "⿰月⿱𡗗⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "月", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腡", + "codepoint": "U+8161", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8161", + "status": "exact_ids", + "ids": "⿰月咼", + "canonical_ids": "⿰月咼", + "expanded_ids": "⿰月⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腢", + "codepoint": "U+8162", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8162", + "status": "exact_ids", + "ids": "⿰月禺", + "canonical_ids": "⿰月禺", + "expanded_ids": "⿰月⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "田", + "禸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腣", + "codepoint": "U+8163", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8163", + "status": "exact_ids", + "ids": "⿰月帝", + "canonical_ids": "⿰月帝", + "expanded_ids": "⿰月⿳⿱亠八冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腤", + "codepoint": "U+8164", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8164", + "status": "exact_ids", + "ids": "⿰月音", + "canonical_ids": "⿰月音", + "expanded_ids": "⿰月⿱立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "月", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腥", + "codepoint": "U+8165", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8165", + "status": "exact_ids", + "ids": "⿰月星", + "canonical_ids": "⿰月星", + "expanded_ids": "⿰月⿱日⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "月", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腦", + "codepoint": "U+8166", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8166", + "status": "exact_ids", + "ids": "⿰月𡿺", + "canonical_ids": "⿰月𡿺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "月" + ], + "unresolved_leaves": [ + "囟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腧", + "codepoint": "U+8167", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8167", + "status": "exact_ids", + "ids": "⿰月俞", + "canonical_ids": "⿰月俞", + "expanded_ids": "⿰月⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腨", + "codepoint": "U+8168", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8168", + "status": "exact_ids", + "ids": "⿰月耑", + "canonical_ids": "⿰月耑", + "expanded_ids": "⿰月⿱山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "月", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腩", + "codepoint": "U+8169", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8169", + "status": "exact_ids", + "ids": "⿰月南", + "canonical_ids": "⿰月南", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "南" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腪", + "codepoint": "U+816A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-816A", + "status": "exact_ids", + "ids": "⿰月軍", + "canonical_ids": "⿰月軍", + "expanded_ids": "⿰月⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "月", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腫", + "codepoint": "U+816B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-816B", + "status": "exact_ids", + "ids": "⿰月重", + "canonical_ids": "⿰月重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "月" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腬", + "codepoint": "U+816C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-816C", + "status": "exact_ids", + "ids": "⿰月柔", + "canonical_ids": "⿰月柔", + "expanded_ids": "⿰月⿱矛木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "木", + "矛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腭", + "codepoint": "U+816D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-816D", + "status": "exact_ids", + "ids": "⿰月咢", + "canonical_ids": "⿰月咢", + "expanded_ids": "⿰月⿱⿰口口⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腮", + "codepoint": "U+816E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-816E", + "status": "exact_ids", + "ids": "⿰月思", + "canonical_ids": "⿰月思", + "expanded_ids": "⿰月⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "月", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腯", + "codepoint": "U+816F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-816F", + "status": "exact_ids", + "ids": "⿰月盾", + "canonical_ids": "⿰月盾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "月", + "目" + ], + "unresolved_leaves": [ + "⺁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腰", + "codepoint": "U+8170", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8170", + "status": "exact_ids", + "ids": "⿰月要", + "canonical_ids": "⿰月要", + "expanded_ids": "⿰月⿱覀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "月", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腱", + "codepoint": "U+8171", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8171", + "status": "exact_ids", + "ids": "⿰月建", + "canonical_ids": "⿰月建", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廴", + "月" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腲", + "codepoint": "U+8172", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8172", + "status": "exact_ids", + "ids": "⿰月畏", + "canonical_ids": "⿰月畏", + "expanded_ids": "⿰月⿱田氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "氏", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腳", + "codepoint": "U+8173", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8173", + "status": "exact_ids", + "ids": "⿰月卻", + "canonical_ids": "⿰月卻", + "expanded_ids": "⿰月⿰⿱八⿱八口卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "卩", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腴", + "codepoint": "U+8174", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8174", + "status": "exact_ids", + "ids": "⿰月臾", + "canonical_ids": "⿰月臾", + "expanded_ids": "⿰月⿻人臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "月", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腵", + "codepoint": "U+8175", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8175", + "status": "exact_ids", + "ids": "⿰月叚", + "canonical_ids": "⿰月叚", + "expanded_ids": "⿰月叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腶", + "codepoint": "U+8176", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8176", + "status": "exact_ids", + "ids": "⿰月段", + "canonical_ids": "⿰月段", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "段" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腷", + "codepoint": "U+8177", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8177", + "status": "exact_ids", + "ids": "⿰月畐", + "canonical_ids": "⿰月畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腸", + "codepoint": "U+8178", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8178", + "status": "exact_ids", + "ids": "⿰月昜", + "canonical_ids": "⿰月昜", + "expanded_ids": "⿰月⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腹", + "codepoint": "U+8179", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8179", + "status": "exact_ids", + "ids": "⿰月复", + "canonical_ids": "⿰月复", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "复" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腺", + "codepoint": "U+817A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-817A", + "status": "exact_ids", + "ids": "⿰月泉", + "canonical_ids": "⿰月泉", + "expanded_ids": "⿰月⿱⿻日丶水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "月", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腻", + "codepoint": "U+817B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-817B", + "status": "exact_ids", + "ids": "⿰月贰", + "canonical_ids": "⿰月贰", + "expanded_ids": "⿰月⿱⿱弋二⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "人", + "冂", + "弋", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腼", + "codepoint": "U+817C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-817C", + "status": "exact_ids", + "ids": "⿰月面", + "canonical_ids": "⿰月面", + "expanded_ids": "⿰月面", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "面" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腽", + "codepoint": "U+817D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-817D", + "status": "exact_ids", + "ids": "⿰月昷", + "canonical_ids": "⿰月昷", + "expanded_ids": "⿰月⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "月", + "皿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "腾", + "codepoint": "U+817E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-817E", + "status": "exact_ids", + "ids": "⿰月駦", + "canonical_ids": "⿰月駦", + "expanded_ids": "⿰月⿱⿱丷⿻一大馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "月", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [ + "騰" + ] + }, + { + "character": "腿", + "codepoint": "U+817F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-817F", + "status": "exact_ids", + "ids": "⿰月退", + "canonical_ids": "⿰月退", + "expanded_ids": "⿰月⿰辶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "艮", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膀", + "codepoint": "U+8180", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8180", + "status": "exact_ids", + "ids": "⿰月旁", + "canonical_ids": "⿰月旁", + "expanded_ids": "⿰月⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "方", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膁", + "codepoint": "U+8181", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8181", + "status": "exact_ids", + "ids": "⿰月兼", + "canonical_ids": "⿰月兼", + "expanded_ids": "⿰月兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膂", + "codepoint": "U+8182", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8182", + "status": "exact_ids", + "ids": "⿱旅月", + "canonical_ids": "⿱旅月", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "旅" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膃", + "codepoint": "U+8183", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8183", + "status": "exact_ids", + "ids": "⿰月𥁕", + "canonical_ids": "⿰月𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "皿" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膄", + "codepoint": "U+8184", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8184", + "status": "exact_ids", + "ids": "⿰月叟", + "canonical_ids": "⿰月叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "月" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膅", + "codepoint": "U+8185", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8185", + "status": "exact_ids", + "ids": "⿰月唐", + "canonical_ids": "⿰月唐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膆", + "codepoint": "U+8186", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8186", + "status": "exact_ids", + "ids": "⿰月素", + "canonical_ids": "⿰月素", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "月" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膇", + "codepoint": "U+8187", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8187", + "status": "exact_ids", + "ids": "⿰月追", + "canonical_ids": "⿰月追", + "expanded_ids": "⿰月⿰辶⿱丿㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "丿", + "月", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膈", + "codepoint": "U+8188", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8188", + "status": "exact_ids", + "ids": "⿰月鬲", + "canonical_ids": "⿰月鬲", + "expanded_ids": "⿰月鬲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膉", + "codepoint": "U+8189", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8189", + "status": "exact_ids", + "ids": "⿰月益", + "canonical_ids": "⿰月益", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膊", + "codepoint": "U+818A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-818A", + "status": "exact_ids", + "ids": "⿰月尃", + "canonical_ids": "⿰月尃", + "expanded_ids": "⿰月⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "月", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膋", + "codepoint": "U+818B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-818B", + "status": "exact_ids", + "ids": "⿳炏冖月", + "canonical_ids": "⿳炏冖月", + "expanded_ids": "⿳⿰火火冖月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "月", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膌", + "codepoint": "U+818C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-818C", + "status": "exact_ids", + "ids": "⿰月脊", + "canonical_ids": "⿰月脊", + "expanded_ids": "⿰月⿱兆月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膍", + "codepoint": "U+818D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-818D", + "status": "exact_ids", + "ids": "⿰月𣬉", + "canonical_ids": "⿰月𣬉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "月" + ], + "unresolved_leaves": [ + "囟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膎", + "codepoint": "U+818E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-818E", + "status": "exact_ids", + "ids": "⿰月奚", + "canonical_ids": "⿰月奚", + "expanded_ids": "⿰月⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "幺", + "月", + "爪" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膏", + "codepoint": "U+818F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-818F", + "status": "exact_ids", + "ids": "⿱高月", + "canonical_ids": "⿱高月", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膐", + "codepoint": "U+8190", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8190", + "status": "exact_ids", + "ids": "⿱旅肉", + "canonical_ids": "⿱旅肉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [ + "旅" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膑", + "codepoint": "U+8191", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8191", + "status": "exact_ids", + "ids": "⿰月宾", + "canonical_ids": "⿰月宾", + "expanded_ids": "⿰月⿱宀⿱丘八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "八", + "宀", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膒", + "codepoint": "U+8192", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8192", + "status": "exact_ids", + "ids": "⿰月區", + "canonical_ids": "⿰月區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膓", + "codepoint": "U+8193", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8193", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膔", + "codepoint": "U+8194", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8194", + "status": "exact_ids", + "ids": "⿰月鹿", + "canonical_ids": "⿰月鹿", + "expanded_ids": "⿰月鹿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膕", + "codepoint": "U+8195", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8195", + "status": "exact_ids", + "ids": "⿰月國", + "canonical_ids": "⿰月國", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "國" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膖", + "codepoint": "U+8196", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8196", + "status": "exact_ids", + "ids": "⿰月逢", + "canonical_ids": "⿰月逢", + "expanded_ids": "⿰月⿰辶⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "月", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膗", + "codepoint": "U+8197", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8197", + "status": "exact_ids", + "ids": "⿰月崔", + "canonical_ids": "⿰月崔", + "expanded_ids": "⿰月⿱山隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "月", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膘", + "codepoint": "U+8198", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8198", + "status": "exact_ids", + "ids": "⿰月票", + "canonical_ids": "⿰月票", + "expanded_ids": "⿰月⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "月", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膙", + "codepoint": "U+8199", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8199", + "status": "exact_ids", + "ids": "⿰月强", + "canonical_ids": "⿰月强", + "expanded_ids": "⿰月⿰弓⿱口虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "弓", + "月", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膚", + "codepoint": "U+819A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-819A", + "status": "exact_ids", + "ids": "⿱虍胃", + "canonical_ids": "⿱虍胃", + "expanded_ids": "⿱虍⿱田月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "田", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膛", + "codepoint": "U+819B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-819B", + "status": "exact_ids", + "ids": "⿰月堂", + "canonical_ids": "⿰月堂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "月" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膜", + "codepoint": "U+819C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-819C", + "status": "exact_ids", + "ids": "⿰月莫", + "canonical_ids": "⿰月莫", + "expanded_ids": "⿰月⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "月", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膝", + "codepoint": "U+819D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-819D", + "status": "exact_ids", + "ids": "⿰月桼", + "canonical_ids": "⿰月桼", + "expanded_ids": "⿰月⿱木⿱入水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "月", + "木", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膞", + "codepoint": "U+819E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-819E", + "status": "exact_ids", + "ids": "⿰月專", + "canonical_ids": "⿰月專", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "寸", + "月" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膟", + "codepoint": "U+819F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-819F", + "status": "exact_ids", + "ids": "⿰月率", + "canonical_ids": "⿰月率", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "率" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膠", + "codepoint": "U+81A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81A0", + "status": "exact_ids", + "ids": "⿰月翏", + "canonical_ids": "⿰月翏", + "expanded_ids": "⿰月⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膡", + "codepoint": "U+81A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81A1", + "status": "exact_ids", + "ids": "⿰月眷", + "canonical_ids": "⿰月眷", + "expanded_ids": "⿰月⿱龹目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "目", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膢", + "codepoint": "U+81A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81A2", + "status": "exact_ids", + "ids": "⿰月婁", + "canonical_ids": "⿰月婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膣", + "codepoint": "U+81A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81A3", + "status": "exact_ids", + "ids": "⿰月窒", + "canonical_ids": "⿰月窒", + "expanded_ids": "⿰月⿱⿱宀八⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "厶", + "土", + "宀", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膤", + "codepoint": "U+81A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81A4", + "status": "exact_ids", + "ids": "⿰月雪", + "canonical_ids": "⿰月雪", + "expanded_ids": "⿰月⿱雨彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "月", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膥", + "codepoint": "U+81A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81A5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膦", + "codepoint": "U+81A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81A6", + "status": "exact_ids", + "ids": "⿰月粦", + "canonical_ids": "⿰月粦", + "expanded_ids": "⿰月⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膧", + "codepoint": "U+81A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81A7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膨", + "codepoint": "U+81A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81A8", + "status": "exact_ids", + "ids": "⿰月彭", + "canonical_ids": "⿰月彭", + "expanded_ids": "⿰月⿰⿱十豆彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "彡", + "月", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膩", + "codepoint": "U+81A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81A9", + "status": "exact_ids", + "ids": "⿰月貳", + "canonical_ids": "⿰月貳", + "expanded_ids": "⿰月⿱⿱弋二⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "八", + "弋", + "月", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膪", + "codepoint": "U+81AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81AA", + "status": "exact_ids", + "ids": "⿰月啻", + "canonical_ids": "⿰月啻", + "expanded_ids": "⿰月⿱⿳⿱亠八冖⿻冂丨口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 251, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膫", + "codepoint": "U+81AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81AB", + "status": "exact_ids", + "ids": "⿰月尞", + "canonical_ids": "⿰月尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膬", + "codepoint": "U+81AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81AC", + "status": "exact_ids", + "ids": "⿰月毳", + "canonical_ids": "⿰月毳", + "expanded_ids": "⿰月⿱毛⿰毛毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膭", + "codepoint": "U+81AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81AD", + "status": "exact_ids", + "ids": "⿰月貴", + "canonical_ids": "⿰月貴", + "expanded_ids": "⿰月⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "月", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膮", + "codepoint": "U+81AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81AE", + "status": "exact_ids", + "ids": "⿰月堯", + "canonical_ids": "⿰月堯", + "expanded_ids": "⿰月⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膯", + "codepoint": "U+81AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81AF", + "status": "exact_ids", + "ids": "⿰月登", + "canonical_ids": "⿰月登", + "expanded_ids": "⿰月⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "癶", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膰", + "codepoint": "U+81B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81B0", + "status": "exact_ids", + "ids": "⿰月番", + "canonical_ids": "⿰月番", + "expanded_ids": "⿰月⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "月", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膱", + "codepoint": "U+81B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81B1", + "status": "exact_ids", + "ids": "⿰月戠", + "canonical_ids": "⿰月戠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "月", + "立" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膲", + "codepoint": "U+81B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81B2", + "status": "exact_ids", + "ids": "⿰月焦", + "canonical_ids": "⿰月焦", + "expanded_ids": "⿰月⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "灬", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膳", + "codepoint": "U+81B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81B3", + "status": "exact_ids", + "ids": "⿰月善", + "canonical_ids": "⿰月善", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "善" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膴", + "codepoint": "U+81B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81B4", + "status": "exact_ids", + "ids": "⿰月無", + "canonical_ids": "⿰月無", + "expanded_ids": "⿰月無", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "無" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膵", + "codepoint": "U+81B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81B5", + "status": "exact_ids", + "ids": "⿰月萃", + "canonical_ids": "⿰月萃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "艹" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膶", + "codepoint": "U+81B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81B6", + "status": "exact_ids", + "ids": "⿰月閏", + "canonical_ids": "⿰月閏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "閏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膷", + "codepoint": "U+81B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81B7", + "status": "exact_ids", + "ids": "⿰月鄉", + "canonical_ids": "⿰月鄉", + "expanded_ids": "⿰月⿰乡⿰⿻丶艮阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乡", + "月", + "艮", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膸", + "codepoint": "U+81B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81B8", + "status": "exact_ids", + "ids": "⿰月遀", + "canonical_ids": "⿰月遀", + "expanded_ids": "⿰月⿰辶⿱⿱牛一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "月", + "牛", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膹", + "codepoint": "U+81B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81B9", + "status": "exact_ids", + "ids": "⿰月賁", + "canonical_ids": "⿰月賁", + "expanded_ids": "⿰月⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "廾", + "月", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膺", + "codepoint": "U+81BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81BA", + "status": "exact_ids", + "ids": "⿱䧹月", + "canonical_ids": "⿱䧹月", + "expanded_ids": "⿱⿱广⿰亻隹月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "广", + "月", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膻", + "codepoint": "U+81BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81BB", + "status": "exact_ids", + "ids": "⿰月亶", + "canonical_ids": "⿰月亶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "日", + "月" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膼", + "codepoint": "U+81BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81BC", + "status": "exact_ids", + "ids": "⿰月過", + "canonical_ids": "⿰月過", + "expanded_ids": "⿰月⿰辶⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "月", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膽", + "codepoint": "U+81BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81BD", + "status": "exact_ids", + "ids": "⿰月詹", + "canonical_ids": "⿰月詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膾", + "codepoint": "U+81BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81BE", + "status": "exact_ids", + "ids": "⿰月會", + "canonical_ids": "⿰月會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "月" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "膿", + "codepoint": "U+81BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81BF", + "status": "exact_ids", + "ids": "⿰月農", + "canonical_ids": "⿰月農", + "expanded_ids": "⿰月⿱曲辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "月", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臀", + "codepoint": "U+81C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81C0", + "status": "exact_ids", + "ids": "⿱殿月", + "canonical_ids": "⿱殿月", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "殿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臁", + "codepoint": "U+81C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81C1", + "status": "exact_ids", + "ids": "⿰月廉", + "canonical_ids": "⿰月廉", + "expanded_ids": "⿰月⿱广兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "广", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臂", + "codepoint": "U+81C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81C2", + "status": "exact_ids", + "ids": "⿱辟月", + "canonical_ids": "⿱辟月", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "月", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臃", + "codepoint": "U+81C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81C3", + "status": "exact_ids", + "ids": "⿰月雍", + "canonical_ids": "⿰月雍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "雍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臄", + "codepoint": "U+81C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81C4", + "status": "exact_ids", + "ids": "⿰月豦", + "canonical_ids": "⿰月豦", + "expanded_ids": "⿰月⿱虍豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "虍", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臅", + "codepoint": "U+81C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81C5", + "status": "exact_ids", + "ids": "⿰月蜀", + "canonical_ids": "⿰月蜀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "罒" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臆", + "codepoint": "U+81C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81C6", + "status": "exact_ids", + "ids": "⿰月意", + "canonical_ids": "⿰月意", + "expanded_ids": "⿰月⿱⿱立日心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "日", + "月", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臇", + "codepoint": "U+81C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81C7", + "status": "exact_ids", + "ids": "⿰月雋", + "canonical_ids": "⿰月雋", + "expanded_ids": "⿰月⿱隹弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "月", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臈", + "codepoint": "U+81C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81C8", + "status": "exact_ids", + "ids": "⿰月葛", + "canonical_ids": "⿰月葛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "月", + "艹" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臉", + "codepoint": "U+81C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81C9", + "status": "exact_ids", + "ids": "⿰月僉", + "canonical_ids": "⿰月僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臊", + "codepoint": "U+81CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81CA", + "status": "exact_ids", + "ids": "⿰月喿", + "canonical_ids": "⿰月喿", + "expanded_ids": "⿰月⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臋", + "codepoint": "U+81CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81CB", + "status": "exact_ids", + "ids": "⿱殿肉", + "canonical_ids": "⿱殿肉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [ + "殿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臌", + "codepoint": "U+81CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81CC", + "status": "exact_ids", + "ids": "⿰月鼓", + "canonical_ids": "⿰月鼓", + "expanded_ids": "⿰月⿰⿱十豆⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "月", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臍", + "codepoint": "U+81CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81CD", + "status": "exact_ids", + "ids": "⿰月齊", + "canonical_ids": "⿰月齊", + "expanded_ids": "⿰月齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臎", + "codepoint": "U+81CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81CE", + "status": "exact_ids", + "ids": "⿰月翠", + "canonical_ids": "⿰月翠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "月" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臏", + "codepoint": "U+81CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81CF", + "status": "exact_ids", + "ids": "⿰月賓", + "canonical_ids": "⿰月賓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臐", + "codepoint": "U+81D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81D0", + "status": "exact_ids", + "ids": "⿰月熏", + "canonical_ids": "⿰月熏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "熏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臑", + "codepoint": "U+81D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81D1", + "status": "exact_ids", + "ids": "⿰月需", + "canonical_ids": "⿰月需", + "expanded_ids": "⿰月⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臒", + "codepoint": "U+81D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81D2", + "status": "exact_ids", + "ids": "⿰月蒦", + "canonical_ids": "⿰月蒦", + "expanded_ids": "⿰月⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "月", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臓", + "codepoint": "U+81D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81D3", + "status": "exact_ids", + "ids": "⿰月蔵", + "canonical_ids": "⿰月蔵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "蔵" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臔", + "codepoint": "U+81D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81D4", + "status": "exact_ids", + "ids": "⿰月賢", + "canonical_ids": "⿰月賢", + "expanded_ids": "⿰月⿱⿰臣又⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "又", + "月", + "目", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臕", + "codepoint": "U+81D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81D5", + "status": "exact_ids", + "ids": "⿰月麃", + "canonical_ids": "⿰月麃", + "expanded_ids": "⿰月⿱鹿灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "灬", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臖", + "codepoint": "U+81D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81D6", + "status": "exact_ids", + "ids": "⿱興月", + "canonical_ids": "⿱興月", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "興" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臗", + "codepoint": "U+81D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81D7", + "status": "exact_ids", + "ids": "⿰月寬", + "canonical_ids": "⿰月寬", + "expanded_ids": "⿰月⿱宀萈", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "月", + "萈" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臘", + "codepoint": "U+81D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81D8", + "status": "exact_ids", + "ids": "⿰月巤", + "canonical_ids": "⿰月巤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "巤" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臙", + "codepoint": "U+81D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81D9", + "status": "exact_ids", + "ids": "⿰月燕", + "canonical_ids": "⿰月燕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "燕" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臚", + "codepoint": "U+81DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81DA", + "status": "exact_ids", + "ids": "⿰月盧", + "canonical_ids": "⿰月盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "皿" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臛", + "codepoint": "U+81DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81DB", + "status": "exact_ids", + "ids": "⿰月霍", + "canonical_ids": "⿰月霍", + "expanded_ids": "⿰月⿱雨隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "隹", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臜", + "codepoint": "U+81DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81DC", + "status": "exact_ids", + "ids": "⿰月赞", + "canonical_ids": "⿰月赞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "赞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臝", + "codepoint": "U+81DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81DD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臞", + "codepoint": "U+81DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81DE", + "status": "exact_ids", + "ids": "⿰月瞿", + "canonical_ids": "⿰月瞿", + "expanded_ids": "⿰月⿱⿰目目隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臟", + "codepoint": "U+81DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81DF", + "status": "exact_ids", + "ids": "⿰月藏", + "canonical_ids": "⿰月藏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "艹" + ], + "unresolved_leaves": [ + "臧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臠", + "codepoint": "U+81E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81E0", + "status": "exact_ids", + "ids": "⿱䜌肉", + "canonical_ids": "⿱䜌肉", + "expanded_ids": "⿱⿲⿱幺小言⿱幺小⿻冂⿱人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "小", + "幺", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 291, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臡", + "codepoint": "U+81E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81E1", + "status": "exact_ids", + "ids": "⿱難肉", + "canonical_ids": "⿱難肉", + "expanded_ids": "⿱⿰堇隹⿻冂⿱人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "堇", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臢", + "codepoint": "U+81E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81E2", + "status": "exact_ids", + "ids": "⿰月贊", + "canonical_ids": "⿰月贊", + "expanded_ids": "⿰月⿱⿰⿱牛儿⿱牛儿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "月", + "牛", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臣", + "codepoint": "U+81E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81E3", + "status": "leaf_self_fallback", + "ids": "臣", + "canonical_ids": "臣", + "expanded_ids": "臣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臤", + "codepoint": "U+81E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81E4", + "status": "exact_ids", + "ids": "⿰臣又", + "canonical_ids": "⿰臣又", + "expanded_ids": "⿰臣又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臥", + "codepoint": "U+81E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81E5", + "status": "exact_ids", + "ids": "⿰臣人", + "canonical_ids": "⿰臣人", + "expanded_ids": "⿰臣人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臦", + "codepoint": "U+81E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81E6", + "status": "exact_ids", + "ids": "⿰臣臣", + "canonical_ids": "⿰臣臣", + "expanded_ids": "⿰臣臣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臧", + "codepoint": "U+81E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81E7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臨", + "codepoint": "U+81E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81E8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臩", + "codepoint": "U+81E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81E9", + "status": "exact_ids", + "ids": "⿱臦夰", + "canonical_ids": "⿱臦夰", + "expanded_ids": "⿱⿰臣臣⿱大儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "大", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "自", + "codepoint": "U+81EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81EA", + "status": "exact_ids", + "ids": "⿻目丶", + "canonical_ids": "⿻目丶", + "expanded_ids": "⿻目丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臫", + "codepoint": "U+81EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81EB", + "status": "exact_ids", + "ids": "⿰自乚", + "canonical_ids": "⿰自乚", + "expanded_ids": "⿰⿻目丶乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乚", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臬", + "codepoint": "U+81EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81EC", + "status": "exact_ids", + "ids": "⿱自木", + "canonical_ids": "⿱自木", + "expanded_ids": "⿱⿻目丶木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臭", + "codepoint": "U+81ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81ED", + "status": "exact_ids", + "ids": "⿱自犬", + "canonical_ids": "⿱自犬", + "expanded_ids": "⿱⿻目丶⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臮", + "codepoint": "U+81EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81EE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臯", + "codepoint": "U+81EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81EF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臰", + "codepoint": "U+81F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81F0", + "status": "exact_ids", + "ids": "⿱自死", + "canonical_ids": "⿱自死", + "expanded_ids": "⿱⿻目丶⿰⿻夕一匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "匕", + "夕", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臱", + "codepoint": "U+81F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81F1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臲", + "codepoint": "U+81F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81F2", + "status": "exact_ids", + "ids": "⿰臬危", + "canonical_ids": "⿰臬危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "丶", + "厂", + "木", + "目" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "至", + "codepoint": "U+81F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81F3", + "status": "exact_ids", + "ids": "⿱𠫔土", + "canonical_ids": "⿱𠫔土", + "expanded_ids": "⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "致", + "codepoint": "U+81F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81F4", + "status": "exact_ids", + "ids": "⿰至攵", + "canonical_ids": "⿰至攵", + "expanded_ids": "⿰⿱⿱一厶土攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臵", + "codepoint": "U+81F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81F5", + "status": "exact_ids", + "ids": "⿰至各", + "canonical_ids": "⿰至各", + "expanded_ids": "⿰⿱⿱一厶土⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "口", + "土", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臶", + "codepoint": "U+81F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81F6", + "status": "exact_ids", + "ids": "⿰至存", + "canonical_ids": "⿰至存", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土" + ], + "unresolved_leaves": [ + "存" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臷", + "codepoint": "U+81F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81F7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臸", + "codepoint": "U+81F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81F8", + "status": "exact_ids", + "ids": "⿰至至", + "canonical_ids": "⿰至至", + "expanded_ids": "⿰⿱⿱一厶土⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臹", + "codepoint": "U+81F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81F9", + "status": "exact_ids", + "ids": "⿰至成", + "canonical_ids": "⿰至成", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土" + ], + "unresolved_leaves": [ + "成" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臺", + "codepoint": "U+81FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81FA", + "status": "exact_ids", + "ids": "⿳吉冖至", + "canonical_ids": "⿳吉冖至", + "expanded_ids": "⿳⿱士口冖⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冖", + "厶", + "口", + "土", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臻", + "codepoint": "U+81FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81FB", + "status": "exact_ids", + "ids": "⿰至秦", + "canonical_ids": "⿰至秦", + "expanded_ids": "⿰⿱⿱一厶土⿱𡗗⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "厶", + "土", + "木", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 228, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臼", + "codepoint": "U+81FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81FC", + "status": "leaf_self_fallback", + "ids": "臼", + "canonical_ids": "臼", + "expanded_ids": "臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臽", + "codepoint": "U+81FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81FD", + "status": "exact_ids", + "ids": "⿱⺈臼", + "canonical_ids": "⿱⺈臼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "臼" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臾", + "codepoint": "U+81FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81FE", + "status": "exact_ids", + "ids": "⿻人臼", + "canonical_ids": "⿻人臼", + "expanded_ids": "⿻人臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "臿", + "codepoint": "U+81FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-81FF", + "status": "exact_ids", + "ids": "⿱千臼", + "canonical_ids": "⿱千臼", + "expanded_ids": "⿱⿱丿十臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舀", + "codepoint": "U+8200", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8200", + "status": "exact_ids", + "ids": "⿱爫臼", + "canonical_ids": "⿱爫臼", + "expanded_ids": "⿱爫臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爫", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舁", + "codepoint": "U+8201", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8201", + "status": "exact_ids", + "ids": "⿱臼廾", + "canonical_ids": "⿱臼廾", + "expanded_ids": "⿱臼廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舂", + "codepoint": "U+8202", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8202", + "status": "exact_ids", + "ids": "⿱𡗗臼", + "canonical_ids": "⿱𡗗臼", + "expanded_ids": "⿱𡗗臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "臼", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 78, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舃", + "codepoint": "U+8203", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8203", + "status": "exact_ids", + "ids": "⿱臼𤆛", + "canonical_ids": "⿱臼𤆛", + "expanded_ids": "⿱臼⿱⿱卜乙灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "卜", + "灬", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舄", + "codepoint": "U+8204", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8204", + "status": "exact_ids", + "ids": "⿱臼灳", + "canonical_ids": "⿱臼灳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "臼" + ], + "unresolved_leaves": [ + "灳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舅", + "codepoint": "U+8205", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8205", + "status": "exact_ids", + "ids": "⿱臼男", + "canonical_ids": "⿱臼男", + "expanded_ids": "⿱臼⿱田力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "田", + "臼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舆", + "codepoint": "U+8206", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8206", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "與", + "codepoint": "U+8207", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8207", + "status": "leaf_self_fallback", + "ids": "與", + "canonical_ids": "與", + "expanded_ids": "與", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "與" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "興", + "codepoint": "U+8208", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8208", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舉", + "codepoint": "U+8209", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8209", + "status": "exact_ids", + "ids": "⿱與㐄", + "canonical_ids": "⿱與㐄", + "expanded_ids": "⿱與⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "與" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舊", + "codepoint": "U+820A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-820A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舋", + "codepoint": "U+820B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-820B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舌", + "codepoint": "U+820C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-820C", + "status": "exact_ids", + "ids": "⿱千口", + "canonical_ids": "⿱千口", + "expanded_ids": "⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舍", + "codepoint": "U+820D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-820D", + "status": "exact_ids", + "ids": "⿱亼古", + "canonical_ids": "⿱亼古", + "expanded_ids": "⿱⿱人一⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舎", + "codepoint": "U+820E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-820E", + "status": "exact_ids", + "ids": "⿱人吉", + "canonical_ids": "⿱人吉", + "expanded_ids": "⿱人⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "口", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舏", + "codepoint": "U+820F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-820F", + "status": "exact_ids", + "ids": "⿰舌丩", + "canonical_ids": "⿰舌丩", + "expanded_ids": "⿰⿱⿱丿十口⿰丨丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丿", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舐", + "codepoint": "U+8210", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8210", + "status": "exact_ids", + "ids": "⿰舌氏", + "canonical_ids": "⿰舌氏", + "expanded_ids": "⿰⿱⿱丿十口氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舑", + "codepoint": "U+8211", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8211", + "status": "exact_ids", + "ids": "⿰舌冉", + "canonical_ids": "⿰舌冉", + "expanded_ids": "⿰⿱⿱丿十口⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "冂", + "十", + "口", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舒", + "codepoint": "U+8212", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8212", + "status": "exact_ids", + "ids": "⿰舍予", + "canonical_ids": "⿰舍予", + "expanded_ids": "⿰⿱⿱人一⿻十口⿱龴⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "人", + "十", + "口", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舓", + "codepoint": "U+8213", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8213", + "status": "exact_ids", + "ids": "⿰舌易", + "canonical_ids": "⿰舌易", + "expanded_ids": "⿰⿱⿱丿十口⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "勿", + "十", + "口", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舔", + "codepoint": "U+8214", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8214", + "status": "exact_ids", + "ids": "⿰舌忝", + "canonical_ids": "⿰舌忝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "大" + ], + "unresolved_leaves": [ + "㣺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舕", + "codepoint": "U+8215", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8215", + "status": "exact_ids", + "ids": "⿰舌炎", + "canonical_ids": "⿰舌炎", + "expanded_ids": "⿰⿱⿱丿十口⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舖", + "codepoint": "U+8216", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8216", + "status": "exact_ids", + "ids": "⿰舍甫", + "canonical_ids": "⿰舍甫", + "expanded_ids": "⿰⿱⿱人一⿻十口甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "十", + "口", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舗", + "codepoint": "U+8217", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8217", + "status": "exact_ids", + "ids": "⿰舎甫", + "canonical_ids": "⿰舎甫", + "expanded_ids": "⿰⿱人⿱士口甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "口", + "士", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舘", + "codepoint": "U+8218", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8218", + "status": "exact_ids", + "ids": "⿰舍官", + "canonical_ids": "⿰舍官", + "expanded_ids": "⿰⿱⿱人一⿻十口⿱宀㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "一", + "人", + "十", + "口", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 220, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舙", + "codepoint": "U+8219", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8219", + "status": "exact_ids", + "ids": "⿱舌⿰舌舌", + "canonical_ids": "⿱舌⿰舌舌", + "expanded_ids": "⿱⿱⿱丿十口⿰⿱⿱丿十口⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 336, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舚", + "codepoint": "U+821A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-821A", + "status": "exact_ids", + "ids": "⿰舌詹", + "canonical_ids": "⿰舌詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舛", + "codepoint": "U+821B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-821B", + "status": "exact_ids", + "ids": "⿰夕㐄", + "canonical_ids": "⿰夕㐄", + "expanded_ids": "⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舜", + "codepoint": "U+821C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-821C", + "status": "exact_ids", + "ids": "⿳爫冖舛", + "canonical_ids": "⿳爫冖舛", + "expanded_ids": "⿳爫冖⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "冖", + "夕", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舝", + "codepoint": "U+821D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-821D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舞", + "codepoint": "U+821E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-821E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舟", + "codepoint": "U+821F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-821F", + "status": "leaf_self_fallback", + "ids": "舟", + "canonical_ids": "舟", + "expanded_ids": "舟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舠", + "codepoint": "U+8220", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8220", + "status": "exact_ids", + "ids": "⿰舟刀", + "canonical_ids": "⿰舟刀", + "expanded_ids": "⿰舟刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舡", + "codepoint": "U+8221", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8221", + "status": "exact_ids", + "ids": "⿰舟工", + "canonical_ids": "⿰舟工", + "expanded_ids": "⿰舟工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舢", + "codepoint": "U+8222", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8222", + "status": "exact_ids", + "ids": "⿰舟山", + "canonical_ids": "⿰舟山", + "expanded_ids": "⿰舟山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舣", + "codepoint": "U+8223", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8223", + "status": "exact_ids", + "ids": "⿰舟义", + "canonical_ids": "⿰舟义", + "expanded_ids": "⿰舟⿻乂丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乂", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舤", + "codepoint": "U+8224", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8224", + "status": "exact_ids", + "ids": "⿰舟凡", + "canonical_ids": "⿰舟凡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舥", + "codepoint": "U+8225", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8225", + "status": "exact_ids", + "ids": "⿰舟巴", + "canonical_ids": "⿰舟巴", + "expanded_ids": "⿰舟巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舦", + "codepoint": "U+8226", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8226", + "status": "exact_ids", + "ids": "⿰舟太", + "canonical_ids": "⿰舟太", + "expanded_ids": "⿰舟⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舧", + "codepoint": "U+8227", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8227", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舨", + "codepoint": "U+8228", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8228", + "status": "exact_ids", + "ids": "⿰舟反", + "canonical_ids": "⿰舟反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舩", + "codepoint": "U+8229", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8229", + "status": "exact_ids", + "ids": "⿰舟公", + "canonical_ids": "⿰舟公", + "expanded_ids": "⿰舟⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "航", + "codepoint": "U+822A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-822A", + "status": "exact_ids", + "ids": "⿰舟亢", + "canonical_ids": "⿰舟亢", + "expanded_ids": "⿰舟⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舫", + "codepoint": "U+822B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-822B", + "status": "exact_ids", + "ids": "⿰舟方", + "canonical_ids": "⿰舟方", + "expanded_ids": "⿰舟方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "般", + "codepoint": "U+822C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-822C", + "status": "exact_ids", + "ids": "⿰舟殳", + "canonical_ids": "⿰舟殳", + "expanded_ids": "⿰舟⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舭", + "codepoint": "U+822D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-822D", + "status": "exact_ids", + "ids": "⿰舟比", + "canonical_ids": "⿰舟比", + "expanded_ids": "⿰舟⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舮", + "codepoint": "U+822E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-822E", + "status": "exact_ids", + "ids": "⿰舟戸", + "canonical_ids": "⿰舟戸", + "expanded_ids": "⿰舟⿻一尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舯", + "codepoint": "U+822F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-822F", + "status": "exact_ids", + "ids": "⿰舟中", + "canonical_ids": "⿰舟中", + "expanded_ids": "⿰舟⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舰", + "codepoint": "U+8230", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8230", + "status": "exact_ids", + "ids": "⿰舟见", + "canonical_ids": "⿰舟见", + "expanded_ids": "⿰舟⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舱", + "codepoint": "U+8231", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8231", + "status": "exact_ids", + "ids": "⿰舟仓", + "canonical_ids": "⿰舟仓", + "expanded_ids": "⿰舟⿱人㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "人", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舲", + "codepoint": "U+8232", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8232", + "status": "exact_ids", + "ids": "⿰舟令", + "canonical_ids": "⿰舟令", + "expanded_ids": "⿰舟⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "舟", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舳", + "codepoint": "U+8233", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8233", + "status": "exact_ids", + "ids": "⿰舟由", + "canonical_ids": "⿰舟由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舴", + "codepoint": "U+8234", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8234", + "status": "exact_ids", + "ids": "⿰舟乍", + "canonical_ids": "⿰舟乍", + "expanded_ids": "⿰舟乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舵", + "codepoint": "U+8235", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8235", + "status": "exact_ids", + "ids": "⿰舟它", + "canonical_ids": "⿰舟它", + "expanded_ids": "⿰舟⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舶", + "codepoint": "U+8236", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8236", + "status": "exact_ids", + "ids": "⿰舟白", + "canonical_ids": "⿰舟白", + "expanded_ids": "⿰舟⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舷", + "codepoint": "U+8237", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8237", + "status": "exact_ids", + "ids": "⿰舟玄", + "canonical_ids": "⿰舟玄", + "expanded_ids": "⿰舟⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舸", + "codepoint": "U+8238", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8238", + "status": "exact_ids", + "ids": "⿰舟可", + "canonical_ids": "⿰舟可", + "expanded_ids": "⿰舟⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "船", + "codepoint": "U+8239", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8239", + "status": "exact_ids", + "ids": "⿰舟㕣", + "canonical_ids": "⿰舟㕣", + "expanded_ids": "⿰舟⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舺", + "codepoint": "U+823A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-823A", + "status": "exact_ids", + "ids": "⿰舟甲", + "canonical_ids": "⿰舟甲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟" + ], + "unresolved_leaves": [ + "甲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舻", + "codepoint": "U+823B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-823B", + "status": "exact_ids", + "ids": "⿰舟卢", + "canonical_ids": "⿰舟卢", + "expanded_ids": "⿰舟⿱卜尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "尸", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舼", + "codepoint": "U+823C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-823C", + "status": "exact_ids", + "ids": "⿰舟共", + "canonical_ids": "⿰舟共", + "expanded_ids": "⿰舟⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舽", + "codepoint": "U+823D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-823D", + "status": "exact_ids", + "ids": "⿰舟夅", + "canonical_ids": "⿰舟夅", + "expanded_ids": "⿰舟⿱夂⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夂", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舾", + "codepoint": "U+823E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-823E", + "status": "exact_ids", + "ids": "⿰舟西", + "canonical_ids": "⿰舟西", + "expanded_ids": "⿰舟⿻⿱一儿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "舿", + "codepoint": "U+823F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-823F", + "status": "exact_ids", + "ids": "⿰舟夸", + "canonical_ids": "⿰舟夸", + "expanded_ids": "⿰舟⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艀", + "codepoint": "U+8240", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8240", + "status": "exact_ids", + "ids": "⿰舟孚", + "canonical_ids": "⿰舟孚", + "expanded_ids": "⿰舟⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "爫", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艁", + "codepoint": "U+8241", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8241", + "status": "exact_ids", + "ids": "⿰舟告", + "canonical_ids": "⿰舟告", + "expanded_ids": "⿰舟⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艂", + "codepoint": "U+8242", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8242", + "status": "exact_ids", + "ids": "⿰舟夆", + "canonical_ids": "⿰舟夆", + "expanded_ids": "⿰舟⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艃", + "codepoint": "U+8243", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8243", + "status": "exact_ids", + "ids": "⿰舟里", + "canonical_ids": "⿰舟里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艄", + "codepoint": "U+8244", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8244", + "status": "exact_ids", + "ids": "⿰舟肖", + "canonical_ids": "⿰舟肖", + "expanded_ids": "⿰舟⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艅", + "codepoint": "U+8245", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8245", + "status": "exact_ids", + "ids": "⿰舟余", + "canonical_ids": "⿰舟余", + "expanded_ids": "⿰舟⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艆", + "codepoint": "U+8246", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8246", + "status": "exact_ids", + "ids": "⿰舟良", + "canonical_ids": "⿰舟良", + "expanded_ids": "⿰舟⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "舟", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艇", + "codepoint": "U+8247", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8247", + "status": "exact_ids", + "ids": "⿰舟廷", + "canonical_ids": "⿰舟廷", + "expanded_ids": "⿰舟⿰廴⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "廴", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艈", + "codepoint": "U+8248", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8248", + "status": "exact_ids", + "ids": "⿰舟㐬", + "canonical_ids": "⿰舟㐬", + "expanded_ids": "⿰舟⿱亠⿱厶川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "厶", + "川", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艉", + "codepoint": "U+8249", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8249", + "status": "exact_ids", + "ids": "⿰舟尾", + "canonical_ids": "⿰舟尾", + "expanded_ids": "⿰舟⿱尸毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "毛", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艊", + "codepoint": "U+824A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-824A", + "status": "exact_ids", + "ids": "⿰舟帛", + "canonical_ids": "⿰舟帛", + "expanded_ids": "⿰舟⿱⿻日丶⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丶", + "冂", + "日", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艋", + "codepoint": "U+824B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-824B", + "status": "exact_ids", + "ids": "⿰舟孟", + "canonical_ids": "⿰舟孟", + "expanded_ids": "⿰舟⿱子皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "皿", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艌", + "codepoint": "U+824C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-824C", + "status": "exact_ids", + "ids": "⿰舟念", + "canonical_ids": "⿰舟念", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "心", + "舟" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艍", + "codepoint": "U+824D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-824D", + "status": "exact_ids", + "ids": "⿰舟居", + "canonical_ids": "⿰舟居", + "expanded_ids": "⿰舟⿱尸⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "尸", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艎", + "codepoint": "U+824E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-824E", + "status": "exact_ids", + "ids": "⿰舟皇", + "canonical_ids": "⿰舟皇", + "expanded_ids": "⿰舟⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "王", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艏", + "codepoint": "U+824F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-824F", + "status": "exact_ids", + "ids": "⿰舟首", + "canonical_ids": "⿰舟首", + "expanded_ids": "⿰舟⿱䒑⿻目丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "丶", + "目", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艐", + "codepoint": "U+8250", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8250", + "status": "exact_ids", + "ids": "⿰舟㚇", + "canonical_ids": "⿰舟㚇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "夊", + "舟" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艑", + "codepoint": "U+8251", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8251", + "status": "exact_ids", + "ids": "⿰舟扁", + "canonical_ids": "⿰舟扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "舟" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艒", + "codepoint": "U+8252", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8252", + "status": "exact_ids", + "ids": "⿰舟冒", + "canonical_ids": "⿰舟冒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "舟" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艓", + "codepoint": "U+8253", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8253", + "status": "exact_ids", + "ids": "⿰舟枼", + "canonical_ids": "⿰舟枼", + "expanded_ids": "⿰舟⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艔", + "codepoint": "U+8254", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8254", + "status": "exact_ids", + "ids": "⿰舟度", + "canonical_ids": "⿰舟度", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟" + ], + "unresolved_leaves": [ + "度" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艕", + "codepoint": "U+8255", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8255", + "status": "exact_ids", + "ids": "⿰舟旁", + "canonical_ids": "⿰舟旁", + "expanded_ids": "⿰舟⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "方", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艖", + "codepoint": "U+8256", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8256", + "status": "exact_ids", + "ids": "⿰舟差", + "canonical_ids": "⿰舟差", + "expanded_ids": "⿰舟⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "羊", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艗", + "codepoint": "U+8257", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8257", + "status": "exact_ids", + "ids": "⿰舟益", + "canonical_ids": "⿰舟益", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艘", + "codepoint": "U+8258", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8258", + "status": "exact_ids", + "ids": "⿰舟叟", + "canonical_ids": "⿰舟叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "舟" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艙", + "codepoint": "U+8259", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8259", + "status": "exact_ids", + "ids": "⿰舟倉", + "canonical_ids": "⿰舟倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艚", + "codepoint": "U+825A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-825A", + "status": "exact_ids", + "ids": "⿰舟曹", + "canonical_ids": "⿰舟曹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟" + ], + "unresolved_leaves": [ + "曹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艛", + "codepoint": "U+825B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-825B", + "status": "exact_ids", + "ids": "⿰舟婁", + "canonical_ids": "⿰舟婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艜", + "codepoint": "U+825C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-825C", + "status": "exact_ids", + "ids": "⿰舟帶", + "canonical_ids": "⿰舟帶", + "expanded_ids": "⿰舟⿳卌冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "卌", + "舟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艝", + "codepoint": "U+825D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-825D", + "status": "exact_ids", + "ids": "⿰舟雪", + "canonical_ids": "⿰舟雪", + "expanded_ids": "⿰舟⿱雨彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "舟", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艞", + "codepoint": "U+825E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-825E", + "status": "exact_ids", + "ids": "⿰舟筄", + "canonical_ids": "⿰舟筄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "舟" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艟", + "codepoint": "U+825F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-825F", + "status": "exact_ids", + "ids": "⿰舟童", + "canonical_ids": "⿰舟童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立", + "舟" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艠", + "codepoint": "U+8260", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8260", + "status": "exact_ids", + "ids": "⿰舟登", + "canonical_ids": "⿰舟登", + "expanded_ids": "⿰舟⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "癶", + "舟", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艡", + "codepoint": "U+8261", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8261", + "status": "exact_ids", + "ids": "⿰舟當", + "canonical_ids": "⿰舟當", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "田", + "舟" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艢", + "codepoint": "U+8262", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8262", + "status": "exact_ids", + "ids": "⿰舟嗇", + "canonical_ids": "⿰舟嗇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "舟" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艣", + "codepoint": "U+8263", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8263", + "status": "exact_ids", + "ids": "⿰舟虜", + "canonical_ids": "⿰舟虜", + "expanded_ids": "⿰舟⿱虍⿱田力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "田", + "舟", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艤", + "codepoint": "U+8264", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8264", + "status": "exact_ids", + "ids": "⿰舟義", + "canonical_ids": "⿰舟義", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟" + ], + "unresolved_leaves": [ + "義" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艥", + "codepoint": "U+8265", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8265", + "status": "exact_ids", + "ids": "⿰舟戢", + "canonical_ids": "⿰舟戢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "耳", + "舟" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艦", + "codepoint": "U+8266", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8266", + "status": "exact_ids", + "ids": "⿰舟監", + "canonical_ids": "⿰舟監", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艧", + "codepoint": "U+8267", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8267", + "status": "exact_ids", + "ids": "⿰舟蒦", + "canonical_ids": "⿰舟蒦", + "expanded_ids": "⿰舟⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "舟", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艨", + "codepoint": "U+8268", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8268", + "status": "exact_ids", + "ids": "⿰舟蒙", + "canonical_ids": "⿰舟蒙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟", + "艹", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艩", + "codepoint": "U+8269", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8269", + "status": "exact_ids", + "ids": "⿰舟齊", + "canonical_ids": "⿰舟齊", + "expanded_ids": "⿰舟齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艪", + "codepoint": "U+826A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-826A", + "status": "exact_ids", + "ids": "⿰舟魯", + "canonical_ids": "⿰舟魯", + "expanded_ids": "⿰舟⿱魚日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "舟", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艫", + "codepoint": "U+826B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-826B", + "status": "exact_ids", + "ids": "⿰舟盧", + "canonical_ids": "⿰舟盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "舟" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艬", + "codepoint": "U+826C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-826C", + "status": "exact_ids", + "ids": "⿰舟毚", + "canonical_ids": "⿰舟毚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟" + ], + "unresolved_leaves": [ + "毚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艭", + "codepoint": "U+826D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-826D", + "status": "exact_ids", + "ids": "⿰舟雙", + "canonical_ids": "⿰舟雙", + "expanded_ids": "⿰舟⿱⿰隹隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "舟", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艮", + "codepoint": "U+826E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-826E", + "status": "leaf_self_fallback", + "ids": "艮", + "canonical_ids": "艮", + "expanded_ids": "艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "良", + "codepoint": "U+826F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-826F", + "status": "exact_ids", + "ids": "⿻丶艮", + "canonical_ids": "⿻丶艮", + "expanded_ids": "⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艰", + "codepoint": "U+8270", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8270", + "status": "exact_ids", + "ids": "⿰又艮", + "canonical_ids": "⿰又艮", + "expanded_ids": "⿰又艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艱", + "codepoint": "U+8271", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8271", + "status": "exact_ids", + "ids": "⿰堇艮", + "canonical_ids": "⿰堇艮", + "expanded_ids": "⿰堇艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "色", + "codepoint": "U+8272", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8272", + "status": "exact_ids", + "ids": "⿱⺈巴", + "canonical_ids": "⿱⺈巴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艳", + "codepoint": "U+8273", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8273", + "status": "exact_ids", + "ids": "⿰丰色", + "canonical_ids": "⿰丰色", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "巴" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艴", + "codepoint": "U+8274", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8274", + "status": "exact_ids", + "ids": "⿰弗色", + "canonical_ids": "⿰弗色", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "巴", + "弓" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艵", + "codepoint": "U+8275", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8275", + "status": "exact_ids", + "ids": "⿰并色", + "canonical_ids": "⿰并色", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "巴", + "廾" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艶", + "codepoint": "U+8276", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8276", + "status": "exact_ids", + "ids": "⿰豊色", + "canonical_ids": "⿰豊色", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "曲", + "豆" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艷", + "codepoint": "U+8277", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8277", + "status": "exact_ids", + "ids": "⿰豐色", + "canonical_ids": "⿰豐色", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "豆" + ], + "unresolved_leaves": [ + "⺈", + "𠁳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艸", + "codepoint": "U+8278", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8278", + "status": "exact_ids", + "ids": "⿰屮屮", + "canonical_ids": "⿰屮屮", + "expanded_ids": "⿰屮屮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艹", + "codepoint": "U+8279", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8279", + "status": "leaf_self_fallback", + "ids": "艹", + "canonical_ids": "艹", + "expanded_ids": "艹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艺", + "codepoint": "U+827A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-827A", + "status": "exact_ids", + "ids": "⿱艹乙", + "canonical_ids": "⿱艹乙", + "expanded_ids": "⿱艹乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艻", + "codepoint": "U+827B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-827B", + "status": "exact_ids", + "ids": "⿱艹力", + "canonical_ids": "⿱艹力", + "expanded_ids": "⿱艹力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艼", + "codepoint": "U+827C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-827C", + "status": "exact_ids", + "ids": "⿱艹丁", + "canonical_ids": "⿱艹丁", + "expanded_ids": "⿱艹⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艽", + "codepoint": "U+827D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-827D", + "status": "exact_ids", + "ids": "⿱艹九", + "canonical_ids": "⿱艹九", + "expanded_ids": "⿱艹九", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艾", + "codepoint": "U+827E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-827E", + "status": "exact_ids", + "ids": "⿱艹乂", + "canonical_ids": "⿱艹乂", + "expanded_ids": "⿱艹乂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "艿", + "codepoint": "U+827F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-827F", + "status": "exact_ids", + "ids": "⿱艹乃", + "canonical_ids": "⿱艹乃", + "expanded_ids": "⿱艹乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芀", + "codepoint": "U+8280", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8280", + "status": "exact_ids", + "ids": "⿱艹刀", + "canonical_ids": "⿱艹刀", + "expanded_ids": "⿱艹刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芁", + "codepoint": "U+8281", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8281", + "status": "exact_ids", + "ids": "⿱艹几", + "canonical_ids": "⿱艹几", + "expanded_ids": "⿱艹几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "节", + "codepoint": "U+8282", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8282", + "status": "exact_ids", + "ids": "⿱艹卩", + "canonical_ids": "⿱艹卩", + "expanded_ids": "⿱艹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芃", + "codepoint": "U+8283", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8283", + "status": "exact_ids", + "ids": "⿱艹凡", + "canonical_ids": "⿱艹凡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芄", + "codepoint": "U+8284", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8284", + "status": "exact_ids", + "ids": "⿱艹丸", + "canonical_ids": "⿱艹丸", + "expanded_ids": "⿱艹⿻九丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芅", + "codepoint": "U+8285", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8285", + "status": "exact_ids", + "ids": "⿱艹弋", + "canonical_ids": "⿱艹弋", + "expanded_ids": "⿱艹弋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弋", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芆", + "codepoint": "U+8286", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8286", + "status": "exact_ids", + "ids": "⿱艹叉", + "canonical_ids": "⿱艹叉", + "expanded_ids": "⿱艹⿻又丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "又", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芇", + "codepoint": "U+8287", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8287", + "status": "exact_ids", + "ids": "⿱艹巾", + "canonical_ids": "⿱艹巾", + "expanded_ids": "⿱艹⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芈", + "codepoint": "U+8288", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8288", + "status": "exact_ids", + "ids": "⿻卝㐄", + "canonical_ids": "⿻卝㐄", + "expanded_ids": "⿻卝⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "卝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芉", + "codepoint": "U+8289", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8289", + "status": "exact_ids", + "ids": "⿱艹干", + "canonical_ids": "⿱艹干", + "expanded_ids": "⿱艹⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芊", + "codepoint": "U+828A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-828A", + "status": "exact_ids", + "ids": "⿱艹千", + "canonical_ids": "⿱艹千", + "expanded_ids": "⿱艹⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芋", + "codepoint": "U+828B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-828B", + "status": "exact_ids", + "ids": "⿱艹于", + "canonical_ids": "⿱艹于", + "expanded_ids": "⿱艹⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芌", + "codepoint": "U+828C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-828C", + "status": "exact_ids", + "ids": "⿱艹亏", + "canonical_ids": "⿱艹亏", + "expanded_ids": "⿱艹⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芍", + "codepoint": "U+828D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-828D", + "status": "exact_ids", + "ids": "⿱艹勺", + "canonical_ids": "⿱艹勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芎", + "codepoint": "U+828E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-828E", + "status": "exact_ids", + "ids": "⿱艹弓", + "canonical_ids": "⿱艹弓", + "expanded_ids": "⿱艹弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芏", + "codepoint": "U+828F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-828F", + "status": "exact_ids", + "ids": "⿱艹土", + "canonical_ids": "⿱艹土", + "expanded_ids": "⿱艹土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芐", + "codepoint": "U+8290", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8290", + "status": "exact_ids", + "ids": "⿱艹下", + "canonical_ids": "⿱艹下", + "expanded_ids": "⿱艹⿱一卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "卜", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芑", + "codepoint": "U+8291", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8291", + "status": "exact_ids", + "ids": "⿱艹己", + "canonical_ids": "⿱艹己", + "expanded_ids": "⿱艹己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芒", + "codepoint": "U+8292", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8292", + "status": "exact_ids", + "ids": "⿱艹亡", + "canonical_ids": "⿱艹亡", + "expanded_ids": "⿱艹⿻亠乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芓", + "codepoint": "U+8293", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8293", + "status": "exact_ids", + "ids": "⿱艹子", + "canonical_ids": "⿱艹子", + "expanded_ids": "⿱艹子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芔", + "codepoint": "U+8294", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8294", + "status": "exact_ids", + "ids": "⿱屮⿰屮屮", + "canonical_ids": "⿱屮⿰屮屮", + "expanded_ids": "⿱屮⿰屮屮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芕", + "codepoint": "U+8295", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8295", + "status": "exact_ids", + "ids": "⿱艹夕", + "canonical_ids": "⿱艹夕", + "expanded_ids": "⿱艹夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芖", + "codepoint": "U+8296", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8296", + "status": "exact_ids", + "ids": "⿱艹大", + "canonical_ids": "⿱艹大", + "expanded_ids": "⿱艹大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芗", + "codepoint": "U+8297", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8297", + "status": "exact_ids", + "ids": "⿱艹乡", + "canonical_ids": "⿱艹乡", + "expanded_ids": "⿱艹乡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乡", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芘", + "codepoint": "U+8298", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8298", + "status": "exact_ids", + "ids": "⿱艹比", + "canonical_ids": "⿱艹比", + "expanded_ids": "⿱艹⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芙", + "codepoint": "U+8299", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8299", + "status": "exact_ids", + "ids": "⿱艹夫", + "canonical_ids": "⿱艹夫", + "expanded_ids": "⿱艹⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芚", + "codepoint": "U+829A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-829A", + "status": "exact_ids", + "ids": "⿱艹屯", + "canonical_ids": "⿱艹屯", + "expanded_ids": "⿱艹屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芛", + "codepoint": "U+829B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-829B", + "status": "exact_ids", + "ids": "⿱艹尹", + "canonical_ids": "⿱艹尹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芜", + "codepoint": "U+829C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-829C", + "status": "exact_ids", + "ids": "⿱艹无", + "canonical_ids": "⿱艹无", + "expanded_ids": "⿱艹无", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "无", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芝", + "codepoint": "U+829D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-829D", + "status": "exact_ids", + "ids": "⿱艹之", + "canonical_ids": "⿱艹之", + "expanded_ids": "⿱艹之", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "之", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芞", + "codepoint": "U+829E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-829E", + "status": "exact_ids", + "ids": "⿱艹气", + "canonical_ids": "⿱艹气", + "expanded_ids": "⿱艹气", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "气", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芟", + "codepoint": "U+829F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-829F", + "status": "exact_ids", + "ids": "⿱艹殳", + "canonical_ids": "⿱艹殳", + "expanded_ids": "⿱艹⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芠", + "codepoint": "U+82A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82A0", + "status": "exact_ids", + "ids": "⿱艹文", + "canonical_ids": "⿱艹文", + "expanded_ids": "⿱艹文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芡", + "codepoint": "U+82A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82A1", + "status": "exact_ids", + "ids": "⿱艹欠", + "canonical_ids": "⿱艹欠", + "expanded_ids": "⿱艹欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芢", + "codepoint": "U+82A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82A2", + "status": "exact_ids", + "ids": "⿱艹仁", + "canonical_ids": "⿱艹仁", + "expanded_ids": "⿱艹⿰亻二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "亻", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芣", + "codepoint": "U+82A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82A3", + "status": "exact_ids", + "ids": "⿱艹不", + "canonical_ids": "⿱艹不", + "expanded_ids": "⿱艹不", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芤", + "codepoint": "U+82A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82A4", + "status": "exact_ids", + "ids": "⿱艹孔", + "canonical_ids": "⿱艹孔", + "expanded_ids": "⿱艹⿰子乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "子", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芥", + "codepoint": "U+82A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82A5", + "status": "exact_ids", + "ids": "⿱艹介", + "canonical_ids": "⿱艹介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芦", + "codepoint": "U+82A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82A6", + "status": "exact_ids", + "ids": "⿱艹户", + "canonical_ids": "⿱艹户", + "expanded_ids": "⿱艹⿻丶尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "尸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芧", + "codepoint": "U+82A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82A7", + "status": "exact_ids", + "ids": "⿱艹予", + "canonical_ids": "⿱艹予", + "expanded_ids": "⿱艹⿱龴⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "艹", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芨", + "codepoint": "U+82A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82A8", + "status": "exact_ids", + "ids": "⿱艹及", + "canonical_ids": "⿱艹及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "艹" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芩", + "codepoint": "U+82A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82A9", + "status": "exact_ids", + "ids": "⿱艹今", + "canonical_ids": "⿱艹今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "艹" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芪", + "codepoint": "U+82AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82AA", + "status": "exact_ids", + "ids": "⿱艹氏", + "canonical_ids": "⿱艹氏", + "expanded_ids": "⿱艹氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氏", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芫", + "codepoint": "U+82AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82AB", + "status": "exact_ids", + "ids": "⿱艹元", + "canonical_ids": "⿱艹元", + "expanded_ids": "⿱艹⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芬", + "codepoint": "U+82AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82AC", + "status": "exact_ids", + "ids": "⿱艹分", + "canonical_ids": "⿱艹分", + "expanded_ids": "⿱艹⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芭", + "codepoint": "U+82AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82AD", + "status": "exact_ids", + "ids": "⿱艹巴", + "canonical_ids": "⿱艹巴", + "expanded_ids": "⿱艹巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芮", + "codepoint": "U+82AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82AE", + "status": "exact_ids", + "ids": "⿱艹内", + "canonical_ids": "⿱艹内", + "expanded_ids": "⿱艹⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芯", + "codepoint": "U+82AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82AF", + "status": "exact_ids", + "ids": "⿱艹心", + "canonical_ids": "⿱艹心", + "expanded_ids": "⿱艹心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芰", + "codepoint": "U+82B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82B0", + "status": "exact_ids", + "ids": "⿱艹支", + "canonical_ids": "⿱艹支", + "expanded_ids": "⿱艹⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "花", + "codepoint": "U+82B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82B1", + "status": "exact_ids", + "ids": "⿱艹化", + "canonical_ids": "⿱艹化", + "expanded_ids": "⿱艹⿰亻匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芲", + "codepoint": "U+82B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82B2", + "status": "exact_ids", + "ids": "⿱艹仑", + "canonical_ids": "⿱艹仑", + "expanded_ids": "⿱艹⿱人匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "匕", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芳", + "codepoint": "U+82B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82B3", + "status": "exact_ids", + "ids": "⿱艹方", + "canonical_ids": "⿱艹方", + "expanded_ids": "⿱艹方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芴", + "codepoint": "U+82B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82B4", + "status": "exact_ids", + "ids": "⿱艹勿", + "canonical_ids": "⿱艹勿", + "expanded_ids": "⿱艹勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芵", + "codepoint": "U+82B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82B5", + "status": "exact_ids", + "ids": "⿱艹夬", + "canonical_ids": "⿱艹夬", + "expanded_ids": "⿱艹⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "大", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芶", + "codepoint": "U+82B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82B6", + "status": "exact_ids", + "ids": "⿱艹勾", + "canonical_ids": "⿱艹勾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "勾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芷", + "codepoint": "U+82B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82B7", + "status": "exact_ids", + "ids": "⿱艹止", + "canonical_ids": "⿱艹止", + "expanded_ids": "⿱艹止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芸", + "codepoint": "U+82B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82B8", + "status": "exact_ids", + "ids": "⿱艹云", + "canonical_ids": "⿱艹云", + "expanded_ids": "⿱艹⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芹", + "codepoint": "U+82B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82B9", + "status": "exact_ids", + "ids": "⿱艹斤", + "canonical_ids": "⿱艹斤", + "expanded_ids": "⿱艹斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芺", + "codepoint": "U+82BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82BA", + "status": "exact_ids", + "ids": "⿱艹夭", + "canonical_ids": "⿱艹夭", + "expanded_ids": "⿱艹⿱丿大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芻", + "codepoint": "U+82BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82BB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芼", + "codepoint": "U+82BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82BC", + "status": "exact_ids", + "ids": "⿱艹毛", + "canonical_ids": "⿱艹毛", + "expanded_ids": "⿱艹毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芽", + "codepoint": "U+82BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82BD", + "status": "exact_ids", + "ids": "⿱艹牙", + "canonical_ids": "⿱艹牙", + "expanded_ids": "⿱艹牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芾", + "codepoint": "U+82BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82BE", + "status": "exact_ids", + "ids": "⿱艹巿", + "canonical_ids": "⿱艹巿", + "expanded_ids": "⿱艹⿻⿻冂丨一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "芿", + "codepoint": "U+82BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82BF", + "status": "exact_ids", + "ids": "⿱艹仍", + "canonical_ids": "⿱艹仍", + "expanded_ids": "⿱艹⿰亻乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "亻", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苀", + "codepoint": "U+82C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82C0", + "status": "exact_ids", + "ids": "⿱艹亢", + "canonical_ids": "⿱艹亢", + "expanded_ids": "⿱艹⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苁", + "codepoint": "U+82C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82C1", + "status": "exact_ids", + "ids": "⿱艹从", + "canonical_ids": "⿱艹从", + "expanded_ids": "⿱艹⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苂", + "codepoint": "U+82C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82C2", + "status": "exact_ids", + "ids": "⿱艹火", + "canonical_ids": "⿱艹火", + "expanded_ids": "⿱艹火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苃", + "codepoint": "U+82C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82C3", + "status": "exact_ids", + "ids": "⿱艹友", + "canonical_ids": "⿱艹友", + "expanded_ids": "⿱艹⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苄", + "codepoint": "U+82C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82C4", + "status": "exact_ids", + "ids": "⿱艹卞", + "canonical_ids": "⿱艹卞", + "expanded_ids": "⿱艹⿱亠卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "卜", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苅", + "codepoint": "U+82C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82C5", + "status": "exact_ids", + "ids": "⿱艹刈", + "canonical_ids": "⿱艹刈", + "expanded_ids": "⿱艹⿰乂刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "刂", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苆", + "codepoint": "U+82C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82C6", + "status": "exact_ids", + "ids": "⿱艹切", + "canonical_ids": "⿱艹切", + "expanded_ids": "⿱艹⿰七刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "刀", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苇", + "codepoint": "U+82C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82C7", + "status": "exact_ids", + "ids": "⿱艹韦", + "canonical_ids": "⿱艹韦", + "expanded_ids": "⿱艹韦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "韦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苈", + "codepoint": "U+82C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82C8", + "status": "exact_ids", + "ids": "⿱艹历", + "canonical_ids": "⿱艹历", + "expanded_ids": "⿱艹⿱厂力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "厂", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苉", + "codepoint": "U+82C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82C9", + "status": "exact_ids", + "ids": "⿱艹匹", + "canonical_ids": "⿱艹匹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苊", + "codepoint": "U+82CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82CA", + "status": "exact_ids", + "ids": "⿱艹厄", + "canonical_ids": "⿱艹厄", + "expanded_ids": "⿱艹⿱厂㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苋", + "codepoint": "U+82CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82CB", + "status": "exact_ids", + "ids": "⿱艹见", + "canonical_ids": "⿱艹见", + "expanded_ids": "⿱艹⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苌", + "codepoint": "U+82CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82CC", + "status": "exact_ids", + "ids": "⿱艹长", + "canonical_ids": "⿱艹长", + "expanded_ids": "⿱艹长", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "长" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苍", + "codepoint": "U+82CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82CD", + "status": "exact_ids", + "ids": "⿱艹仓", + "canonical_ids": "⿱艹仓", + "expanded_ids": "⿱艹⿱人㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "人", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苎", + "codepoint": "U+82CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82CE", + "status": "exact_ids", + "ids": "⿱艹㝉", + "canonical_ids": "⿱艹㝉", + "expanded_ids": "⿱艹⿱宀一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "宀", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苏", + "codepoint": "U+82CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82CF", + "status": "exact_ids", + "ids": "⿱艹办", + "canonical_ids": "⿱艹办", + "expanded_ids": "⿱艹⿻力丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "力", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苐", + "codepoint": "U+82D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82D0", + "status": "exact_ids", + "ids": "⿱艹𢎨", + "canonical_ids": "⿱艹𢎨", + "expanded_ids": "⿱艹⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丿", + "弓", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苑", + "codepoint": "U+82D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82D1", + "status": "exact_ids", + "ids": "⿱艹夗", + "canonical_ids": "⿱艹夗", + "expanded_ids": "⿱艹⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苒", + "codepoint": "U+82D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82D2", + "status": "exact_ids", + "ids": "⿱艹冉", + "canonical_ids": "⿱艹冉", + "expanded_ids": "⿱艹⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "土", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苓", + "codepoint": "U+82D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82D3", + "status": "exact_ids", + "ids": "⿱艹令", + "canonical_ids": "⿱艹令", + "expanded_ids": "⿱艹⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "艹", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苔", + "codepoint": "U+82D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82D4", + "status": "exact_ids", + "ids": "⿱艹台", + "canonical_ids": "⿱艹台", + "expanded_ids": "⿱艹⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苕", + "codepoint": "U+82D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82D5", + "status": "exact_ids", + "ids": "⿱艹召", + "canonical_ids": "⿱艹召", + "expanded_ids": "⿱艹⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苖", + "codepoint": "U+82D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82D6", + "status": "exact_ids", + "ids": "⿱艹由", + "canonical_ids": "⿱艹由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苗", + "codepoint": "U+82D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82D7", + "status": "exact_ids", + "ids": "⿱艹田", + "canonical_ids": "⿱艹田", + "expanded_ids": "⿱艹田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苘", + "codepoint": "U+82D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82D8", + "status": "exact_ids", + "ids": "⿱艹冋", + "canonical_ids": "⿱艹冋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苙", + "codepoint": "U+82D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82D9", + "status": "exact_ids", + "ids": "⿱艹立", + "canonical_ids": "⿱艹立", + "expanded_ids": "⿱艹立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苚", + "codepoint": "U+82DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82DA", + "status": "exact_ids", + "ids": "⿱艹用", + "canonical_ids": "⿱艹用", + "expanded_ids": "⿱艹⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苛", + "codepoint": "U+82DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82DB", + "status": "exact_ids", + "ids": "⿱艹可", + "canonical_ids": "⿱艹可", + "expanded_ids": "⿱艹⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苜", + "codepoint": "U+82DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82DC", + "status": "exact_ids", + "ids": "⿱艹目", + "canonical_ids": "⿱艹目", + "expanded_ids": "⿱艹目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苝", + "codepoint": "U+82DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82DD", + "status": "exact_ids", + "ids": "⿱艹北", + "canonical_ids": "⿱艹北", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苞", + "codepoint": "U+82DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82DE", + "status": "exact_ids", + "ids": "⿱艹包", + "canonical_ids": "⿱艹包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苟", + "codepoint": "U+82DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82DF", + "status": "exact_ids", + "ids": "⿱艹句", + "canonical_ids": "⿱艹句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苠", + "codepoint": "U+82E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82E0", + "status": "exact_ids", + "ids": "⿱艹民", + "canonical_ids": "⿱艹民", + "expanded_ids": "⿱艹民", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "民", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苡", + "codepoint": "U+82E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82E1", + "status": "exact_ids", + "ids": "⿱艹以", + "canonical_ids": "⿱艹以", + "expanded_ids": "⿱艹⿰厶人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "厶", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苢", + "codepoint": "U+82E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82E2", + "status": "exact_ids", + "ids": "⿱艹㠯", + "canonical_ids": "⿱艹㠯", + "expanded_ids": "⿱艹㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苣", + "codepoint": "U+82E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82E3", + "status": "exact_ids", + "ids": "⿱艹巨", + "canonical_ids": "⿱艹巨", + "expanded_ids": "⿱艹巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苤", + "codepoint": "U+82E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82E4", + "status": "exact_ids", + "ids": "⿱艹丕", + "canonical_ids": "⿱艹丕", + "expanded_ids": "⿱艹⿱不一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "若", + "codepoint": "U+82E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82E5", + "status": "exact_ids", + "ids": "⿱艹右", + "canonical_ids": "⿱艹右", + "expanded_ids": "⿱艹⿱⿻丿一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苦", + "codepoint": "U+82E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82E6", + "status": "exact_ids", + "ids": "⿱艹古", + "canonical_ids": "⿱艹古", + "expanded_ids": "⿱艹⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苧", + "codepoint": "U+82E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82E7", + "status": "exact_ids", + "ids": "⿱艹宁", + "canonical_ids": "⿱艹宁", + "expanded_ids": "⿱艹⿱宀⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "宀", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苨", + "codepoint": "U+82E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82E8", + "status": "exact_ids", + "ids": "⿱艹尼", + "canonical_ids": "⿱艹尼", + "expanded_ids": "⿱艹⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "尸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苩", + "codepoint": "U+82E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82E9", + "status": "exact_ids", + "ids": "⿱艹白", + "canonical_ids": "⿱艹白", + "expanded_ids": "⿱艹⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苪", + "codepoint": "U+82EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82EA", + "status": "exact_ids", + "ids": "⿱艹丙", + "canonical_ids": "⿱艹丙", + "expanded_ids": "⿱艹⿱一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苫", + "codepoint": "U+82EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82EB", + "status": "exact_ids", + "ids": "⿱艹占", + "canonical_ids": "⿱艹占", + "expanded_ids": "⿱艹⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苬", + "codepoint": "U+82EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82EC", + "status": "exact_ids", + "ids": "⿱艹囚", + "canonical_ids": "⿱艹囚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苭", + "codepoint": "U+82ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82ED", + "status": "exact_ids", + "ids": "⿱艹幼", + "canonical_ids": "⿱艹幼", + "expanded_ids": "⿱艹⿰幺力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "幺", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苮", + "codepoint": "U+82EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82EE", + "status": "exact_ids", + "ids": "⿱艹仙", + "canonical_ids": "⿱艹仙", + "expanded_ids": "⿱艹⿰亻山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "山", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苯", + "codepoint": "U+82EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82EF", + "status": "exact_ids", + "ids": "⿱艹本", + "canonical_ids": "⿱艹本", + "expanded_ids": "⿱艹⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "苿", + "茉" + ] + }, + { + "character": "苰", + "codepoint": "U+82F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82F0", + "status": "exact_ids", + "ids": "⿱艹弘", + "canonical_ids": "⿱艹弘", + "expanded_ids": "⿱艹⿰弓厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "弓", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "英", + "codepoint": "U+82F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82F1", + "status": "exact_ids", + "ids": "⿱艹央", + "canonical_ids": "⿱艹央", + "expanded_ids": "⿱艹⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苲", + "codepoint": "U+82F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82F2", + "status": "exact_ids", + "ids": "⿱艹乍", + "canonical_ids": "⿱艹乍", + "expanded_ids": "⿱艹乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苳", + "codepoint": "U+82F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82F3", + "status": "exact_ids", + "ids": "⿱艹冬", + "canonical_ids": "⿱艹冬", + "expanded_ids": "⿱艹⿱夂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "夂", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苴", + "codepoint": "U+82F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82F4", + "status": "exact_ids", + "ids": "⿱艹且", + "canonical_ids": "⿱艹且", + "expanded_ids": "⿱艹且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苵", + "codepoint": "U+82F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82F5", + "status": "exact_ids", + "ids": "⿱艹失", + "canonical_ids": "⿱艹失", + "expanded_ids": "⿱艹⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苶", + "codepoint": "U+82F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82F6", + "status": "exact_ids", + "ids": "⿱艹尒", + "canonical_ids": "⿱艹尒", + "expanded_ids": "⿱艹⿱人小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "小", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苷", + "codepoint": "U+82F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82F7", + "status": "exact_ids", + "ids": "⿱艹甘", + "canonical_ids": "⿱艹甘", + "expanded_ids": "⿱艹甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甘", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苸", + "codepoint": "U+82F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82F8", + "status": "exact_ids", + "ids": "⿱艹乎", + "canonical_ids": "⿱艹乎", + "expanded_ids": "⿱艹乎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乎", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苹", + "codepoint": "U+82F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82F9", + "status": "exact_ids", + "ids": "⿱艹平", + "canonical_ids": "⿱艹平", + "expanded_ids": "⿱艹⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "十", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苺", + "codepoint": "U+82FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82FA", + "status": "exact_ids", + "ids": "⿱艹母", + "canonical_ids": "⿱艹母", + "expanded_ids": "⿱艹母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "母", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苻", + "codepoint": "U+82FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82FB", + "status": "exact_ids", + "ids": "⿱艹付", + "canonical_ids": "⿱艹付", + "expanded_ids": "⿱艹⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苼", + "codepoint": "U+82FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82FC", + "status": "exact_ids", + "ids": "⿱艹生", + "canonical_ids": "⿱艹生", + "expanded_ids": "⿱艹⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "牛", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苽", + "codepoint": "U+82FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82FD", + "status": "exact_ids", + "ids": "⿱艹瓜", + "canonical_ids": "⿱艹瓜", + "expanded_ids": "⿱艹瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓜", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苾", + "codepoint": "U+82FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82FE", + "status": "exact_ids", + "ids": "⿱艹必", + "canonical_ids": "⿱艹必", + "expanded_ids": "⿱艹⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "苿", + "codepoint": "U+82FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-82FF", + "status": "exact_ids", + "ids": "⿱艹未", + "canonical_ids": "⿱艹未", + "expanded_ids": "⿱艹⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "苯", + "茉" + ] + }, + { + "character": "茀", + "codepoint": "U+8300", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8300", + "status": "exact_ids", + "ids": "⿱艹弗", + "canonical_ids": "⿱艹弗", + "expanded_ids": "⿱艹⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "弓", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茁", + "codepoint": "U+8301", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8301", + "status": "exact_ids", + "ids": "⿱艹出", + "canonical_ids": "⿱艹出", + "expanded_ids": "⿱艹⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茂", + "codepoint": "U+8302", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8302", + "status": "exact_ids", + "ids": "⿱艹戊", + "canonical_ids": "⿱艹戊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "艹" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "范", + "codepoint": "U+8303", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8303", + "status": "exact_ids", + "ids": "⿱艹氾", + "canonical_ids": "⿱艹氾", + "expanded_ids": "⿱艹⿰氵㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茄", + "codepoint": "U+8304", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8304", + "status": "exact_ids", + "ids": "⿱艹加", + "canonical_ids": "⿱艹加", + "expanded_ids": "⿱艹⿰力口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茅", + "codepoint": "U+8305", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8305", + "status": "exact_ids", + "ids": "⿱艹矛", + "canonical_ids": "⿱艹矛", + "expanded_ids": "⿱艹矛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "矛", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茆", + "codepoint": "U+8306", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8306", + "status": "exact_ids", + "ids": "⿱艹卯", + "canonical_ids": "⿱艹卯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "卯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茇", + "codepoint": "U+8307", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8307", + "status": "exact_ids", + "ids": "⿱艹犮", + "canonical_ids": "⿱艹犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茈", + "codepoint": "U+8308", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8308", + "status": "exact_ids", + "ids": "⿱艹此", + "canonical_ids": "⿱艹此", + "expanded_ids": "⿱艹⿰止匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "止", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茉", + "codepoint": "U+8309", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8309", + "status": "exact_ids", + "ids": "⿱艹末", + "canonical_ids": "⿱艹末", + "expanded_ids": "⿱艹⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "苯", + "苿" + ] + }, + { + "character": "茊", + "codepoint": "U+830A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-830A", + "status": "exact_ids", + "ids": "⿱艹丘", + "canonical_ids": "⿱艹丘", + "expanded_ids": "⿱艹丘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茋", + "codepoint": "U+830B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-830B", + "status": "exact_ids", + "ids": "⿱艹氐", + "canonical_ids": "⿱艹氐", + "expanded_ids": "⿱艹⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氏", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茌", + "codepoint": "U+830C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-830C", + "status": "exact_ids", + "ids": "⿱艹仕", + "canonical_ids": "⿱艹仕", + "expanded_ids": "⿱艹⿰亻士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "士", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茍", + "codepoint": "U+830D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-830D", + "status": "exact_ids", + "ids": "⿱卝句", + "canonical_ids": "⿱卝句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卝" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茎", + "codepoint": "U+830E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-830E", + "status": "exact_ids", + "ids": "⿱艹圣", + "canonical_ids": "⿱艹圣", + "expanded_ids": "⿱艹⿱又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "土", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茏", + "codepoint": "U+830F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-830F", + "status": "exact_ids", + "ids": "⿱艹龙", + "canonical_ids": "⿱艹龙", + "expanded_ids": "⿱艹龙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茐", + "codepoint": "U+8310", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8310", + "status": "exact_ids", + "ids": "⿱艹匆", + "canonical_ids": "⿱艹匆", + "expanded_ids": "⿱艹⿻勿丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "勿", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茑", + "codepoint": "U+8311", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8311", + "status": "exact_ids", + "ids": "⿱艹鸟", + "canonical_ids": "⿱艹鸟", + "expanded_ids": "⿱艹鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茒", + "codepoint": "U+8312", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8312", + "status": "exact_ids", + "ids": "⿱艹邜", + "canonical_ids": "⿱艹邜", + "expanded_ids": "⿱艹⿰夕阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "艹", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茓", + "codepoint": "U+8313", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8313", + "status": "exact_ids", + "ids": "⿱艹穴", + "canonical_ids": "⿱艹穴", + "expanded_ids": "⿱艹⿱宀八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茔", + "codepoint": "U+8314", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8314", + "status": "exact_ids", + "ids": "⿳艹冖土", + "canonical_ids": "⿳艹冖土", + "expanded_ids": "⿳艹冖土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "土", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 101, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茕", + "codepoint": "U+8315", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8315", + "status": "exact_ids", + "ids": "⿳艹冖卂", + "canonical_ids": "⿳艹冖卂", + "expanded_ids": "⿳艹冖⿱乁十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乁", + "冖", + "十", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茖", + "codepoint": "U+8316", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8316", + "status": "exact_ids", + "ids": "⿱艹各", + "canonical_ids": "⿱艹各", + "expanded_ids": "⿱艹⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茗", + "codepoint": "U+8317", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8317", + "status": "exact_ids", + "ids": "⿱艹名", + "canonical_ids": "⿱艹名", + "expanded_ids": "⿱艹⿱夕口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夕", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茘", + "codepoint": "U+8318", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8318", + "status": "exact_ids", + "ids": "⿱艹刕", + "canonical_ids": "⿱艹刕", + "expanded_ids": "⿱艹⿱刀⿰刀刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茙", + "codepoint": "U+8319", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8319", + "status": "exact_ids", + "ids": "⿱艹戎", + "canonical_ids": "⿱艹戎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "艹" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茚", + "codepoint": "U+831A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-831A", + "status": "exact_ids", + "ids": "⿱艹印", + "canonical_ids": "⿱艹印", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "印" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茛", + "codepoint": "U+831B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-831B", + "status": "exact_ids", + "ids": "⿱艹艮", + "canonical_ids": "⿱艹艮", + "expanded_ids": "⿱艹艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艮", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茜", + "codepoint": "U+831C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-831C", + "status": "exact_ids", + "ids": "⿱艹西", + "canonical_ids": "⿱艹西", + "expanded_ids": "⿱艹⿻⿱一儿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茝", + "codepoint": "U+831D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-831D", + "status": "exact_ids", + "ids": "⿱艹𦣞", + "canonical_ids": "⿱艹𦣞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "𦣞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茞", + "codepoint": "U+831E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-831E", + "status": "exact_ids", + "ids": "⿱艹臣", + "canonical_ids": "⿱艹臣", + "expanded_ids": "⿱艹臣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "臣", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茟", + "codepoint": "U+831F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-831F", + "status": "exact_ids", + "ids": "⿱艹聿", + "canonical_ids": "⿱艹聿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茠", + "codepoint": "U+8320", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8320", + "status": "exact_ids", + "ids": "⿱艹休", + "canonical_ids": "⿱艹休", + "expanded_ids": "⿱艹⿰亻木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茡", + "codepoint": "U+8321", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8321", + "status": "exact_ids", + "ids": "⿱艹字", + "canonical_ids": "⿱艹字", + "expanded_ids": "⿱艹⿱宀子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "宀", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茢", + "codepoint": "U+8322", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8322", + "status": "exact_ids", + "ids": "⿱艹列", + "canonical_ids": "⿱艹列", + "expanded_ids": "⿱艹⿰⿻夕一刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "夕", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茣", + "codepoint": "U+8323", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8323", + "status": "exact_ids", + "ids": "⿱艹吴", + "canonical_ids": "⿱艹吴", + "expanded_ids": "⿱艹⿱口⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "大", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茤", + "codepoint": "U+8324", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8324", + "status": "exact_ids", + "ids": "⿱艹多", + "canonical_ids": "⿱艹多", + "expanded_ids": "⿱艹⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茥", + "codepoint": "U+8325", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8325", + "status": "exact_ids", + "ids": "⿱艹圭", + "canonical_ids": "⿱艹圭", + "expanded_ids": "⿱艹⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茦", + "codepoint": "U+8326", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8326", + "status": "exact_ids", + "ids": "⿱艹朿", + "canonical_ids": "⿱艹朿", + "expanded_ids": "⿱艹⿻木冂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茧", + "codepoint": "U+8327", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8327", + "status": "exact_ids", + "ids": "⿱艹虫", + "canonical_ids": "⿱艹虫", + "expanded_ids": "⿱艹虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茨", + "codepoint": "U+8328", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8328", + "status": "exact_ids", + "ids": "⿱艹次", + "canonical_ids": "⿱艹次", + "expanded_ids": "⿱艹⿰冫欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "欠", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茩", + "codepoint": "U+8329", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8329", + "status": "exact_ids", + "ids": "⿱艹后", + "canonical_ids": "⿱艹后", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "后" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茪", + "codepoint": "U+832A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-832A", + "status": "exact_ids", + "ids": "⿱艹光", + "canonical_ids": "⿱艹光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "艹" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茫", + "codepoint": "U+832B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-832B", + "status": "exact_ids", + "ids": "⿱艹汒", + "canonical_ids": "⿱艹汒", + "expanded_ids": "⿱艹⿰氵⿻亠乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茬", + "codepoint": "U+832C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-832C", + "status": "exact_ids", + "ids": "⿱艹在", + "canonical_ids": "⿱艹在", + "expanded_ids": "⿱艹⿱才土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "才", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茭", + "codepoint": "U+832D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-832D", + "status": "exact_ids", + "ids": "⿱艹交", + "canonical_ids": "⿱艹交", + "expanded_ids": "⿱艹⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "父", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茮", + "codepoint": "U+832E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-832E", + "status": "exact_ids", + "ids": "⿱艹尗", + "canonical_ids": "⿱艹尗", + "expanded_ids": "⿱艹⿱上小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "小", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茯", + "codepoint": "U+832F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-832F", + "status": "exact_ids", + "ids": "⿱艹伏", + "canonical_ids": "⿱艹伏", + "expanded_ids": "⿱艹⿰亻⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亻", + "大", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茰", + "codepoint": "U+8330", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8330", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茱", + "codepoint": "U+8331", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8331", + "status": "exact_ids", + "ids": "⿱艹朱", + "canonical_ids": "⿱艹朱", + "expanded_ids": "⿱艹⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茲", + "codepoint": "U+8332", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8332", + "status": "exact_ids", + "ids": "⿱艹𢆶", + "canonical_ids": "⿱艹𢆶", + "expanded_ids": "⿱艹⿰幺幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茳", + "codepoint": "U+8333", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8333", + "status": "exact_ids", + "ids": "⿱艹江", + "canonical_ids": "⿱艹江", + "expanded_ids": "⿱艹⿰氵工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茴", + "codepoint": "U+8334", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8334", + "status": "exact_ids", + "ids": "⿱艹回", + "canonical_ids": "⿱艹回", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茵", + "codepoint": "U+8335", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8335", + "status": "exact_ids", + "ids": "⿱艹因", + "canonical_ids": "⿱艹因", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茶", + "codepoint": "U+8336", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8336", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茷", + "codepoint": "U+8337", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8337", + "status": "exact_ids", + "ids": "⿱艹伐", + "canonical_ids": "⿱艹伐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "艹" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茸", + "codepoint": "U+8338", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8338", + "status": "exact_ids", + "ids": "⿱艹耳", + "canonical_ids": "⿱艹耳", + "expanded_ids": "⿱艹耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茹", + "codepoint": "U+8339", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8339", + "status": "exact_ids", + "ids": "⿱艹如", + "canonical_ids": "⿱艹如", + "expanded_ids": "⿱艹⿰女口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茺", + "codepoint": "U+833A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-833A", + "status": "exact_ids", + "ids": "⿱艹充", + "canonical_ids": "⿱艹充", + "expanded_ids": "⿱艹⿱亠⿱厶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "儿", + "厶", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茻", + "codepoint": "U+833B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-833B", + "status": "exact_ids", + "ids": "⿱⿰屮屮⿰屮屮", + "canonical_ids": "⿱⿰屮屮⿰屮屮", + "expanded_ids": "⿱⿰屮屮⿰屮屮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茼", + "codepoint": "U+833C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-833C", + "status": "exact_ids", + "ids": "⿱艹同", + "canonical_ids": "⿱艹同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茽", + "codepoint": "U+833D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-833D", + "status": "exact_ids", + "ids": "⿱艹仲", + "canonical_ids": "⿱艹仲", + "expanded_ids": "⿱艹⿰亻⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亻", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茾", + "codepoint": "U+833E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-833E", + "status": "exact_ids", + "ids": "⿱艹开", + "canonical_ids": "⿱艹开", + "expanded_ids": "⿱艹⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廾", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "茿", + "codepoint": "U+833F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-833F", + "status": "exact_ids", + "ids": "⿱艹巩", + "canonical_ids": "⿱艹巩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "艹" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荀", + "codepoint": "U+8340", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8340", + "status": "exact_ids", + "ids": "⿱艹旬", + "canonical_ids": "⿱艹旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荁", + "codepoint": "U+8341", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8341", + "status": "exact_ids", + "ids": "⿱艹亘", + "canonical_ids": "⿱艹亘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荂", + "codepoint": "U+8342", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8342", + "status": "exact_ids", + "ids": "⿱艹夸", + "canonical_ids": "⿱艹夸", + "expanded_ids": "⿱艹⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荃", + "codepoint": "U+8343", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8343", + "status": "exact_ids", + "ids": "⿱艹全", + "canonical_ids": "⿱艹全", + "expanded_ids": "⿱艹⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "王", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荄", + "codepoint": "U+8344", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8344", + "status": "exact_ids", + "ids": "⿱艹亥", + "canonical_ids": "⿱艹亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荅", + "codepoint": "U+8345", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8345", + "status": "exact_ids", + "ids": "⿱艹合", + "canonical_ids": "⿱艹合", + "expanded_ids": "⿱艹⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荆", + "codepoint": "U+8346", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8346", + "status": "exact_ids", + "ids": "⿰茾刂", + "canonical_ids": "⿰茾刂", + "expanded_ids": "⿰⿱艹⿱一廾刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "廾", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荇", + "codepoint": "U+8347", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8347", + "status": "exact_ids", + "ids": "⿱艹行", + "canonical_ids": "⿱艹行", + "expanded_ids": "⿱艹⿰彳彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荈", + "codepoint": "U+8348", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8348", + "status": "exact_ids", + "ids": "⿱艹舛", + "canonical_ids": "⿱艹舛", + "expanded_ids": "⿱艹⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夕", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "草", + "codepoint": "U+8349", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8349", + "status": "exact_ids", + "ids": "⿱艹早", + "canonical_ids": "⿱艹早", + "expanded_ids": "⿱艹⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荊", + "codepoint": "U+834A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-834A", + "status": "exact_ids", + "ids": "⿱艹刑", + "canonical_ids": "⿱艹刑", + "expanded_ids": "⿱艹⿰⿱一廾刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "廾", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荋", + "codepoint": "U+834B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-834B", + "status": "exact_ids", + "ids": "⿱艹而", + "canonical_ids": "⿱艹而", + "expanded_ids": "⿱艹而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "而", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荌", + "codepoint": "U+834C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-834C", + "status": "exact_ids", + "ids": "⿱艹安", + "canonical_ids": "⿱艹安", + "expanded_ids": "⿱艹⿱宀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荍", + "codepoint": "U+834D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-834D", + "status": "exact_ids", + "ids": "⿱艹收", + "canonical_ids": "⿱艹收", + "expanded_ids": "⿱艹⿰⿰丨丨攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "攵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荎", + "codepoint": "U+834E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-834E", + "status": "exact_ids", + "ids": "⿱艹至", + "canonical_ids": "⿱艹至", + "expanded_ids": "⿱艹⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荏", + "codepoint": "U+834F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-834F", + "status": "exact_ids", + "ids": "⿱艹任", + "canonical_ids": "⿱艹任", + "expanded_ids": "⿱艹⿰亻⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "士", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荐", + "codepoint": "U+8350", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8350", + "status": "exact_ids", + "ids": "⿱艹存", + "canonical_ids": "⿱艹存", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "存" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荑", + "codepoint": "U+8351", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8351", + "status": "exact_ids", + "ids": "⿱艹夷", + "canonical_ids": "⿱艹夷", + "expanded_ids": "⿱艹⿻大弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "弓", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荒", + "codepoint": "U+8352", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8352", + "status": "exact_ids", + "ids": "⿱艹巟", + "canonical_ids": "⿱艹巟", + "expanded_ids": "⿱艹⿱⿻亠乚川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "川", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荓", + "codepoint": "U+8353", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8353", + "status": "exact_ids", + "ids": "⿱艹并", + "canonical_ids": "⿱艹并", + "expanded_ids": "⿱艹⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荔", + "codepoint": "U+8354", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8354", + "status": "exact_ids", + "ids": "⿱艹劦", + "canonical_ids": "⿱艹劦", + "expanded_ids": "⿱艹⿱力⿰力力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荕", + "codepoint": "U+8355", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8355", + "status": "exact_ids", + "ids": "⿱艹肋", + "canonical_ids": "⿱艹肋", + "expanded_ids": "⿱艹⿰月力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "月", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荖", + "codepoint": "U+8356", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8356", + "status": "exact_ids", + "ids": "⿱艹老", + "canonical_ids": "⿱艹老", + "expanded_ids": "⿱艹⿱⿻土丿匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荗", + "codepoint": "U+8357", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8357", + "status": "exact_ids", + "ids": "⿱艹戍", + "canonical_ids": "⿱艹戍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "戍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荘", + "codepoint": "U+8358", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8358", + "status": "exact_ids", + "ids": "⿱艹壮", + "canonical_ids": "⿱艹壮", + "expanded_ids": "⿱艹⿰⿰冫丨士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冫", + "士", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荙", + "codepoint": "U+8359", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8359", + "status": "exact_ids", + "ids": "⿱艹达", + "canonical_ids": "⿱艹达", + "expanded_ids": "⿱艹⿰辶大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "艹", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荚", + "codepoint": "U+835A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-835A", + "status": "exact_ids", + "ids": "⿱艹夹", + "canonical_ids": "⿱艹夹", + "expanded_ids": "⿱艹⿻⿻一大丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荛", + "codepoint": "U+835B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-835B", + "status": "exact_ids", + "ids": "⿱艹尧", + "canonical_ids": "⿱艹尧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "尧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荜", + "codepoint": "U+835C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-835C", + "status": "exact_ids", + "ids": "⿱艹毕", + "canonical_ids": "⿱艹毕", + "expanded_ids": "⿱艹⿱⿰匕匕十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "十", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荝", + "codepoint": "U+835D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-835D", + "status": "exact_ids", + "ids": "⿱艹则", + "canonical_ids": "⿱艹则", + "expanded_ids": "⿱艹⿰⿻冂人刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "刂", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荞", + "codepoint": "U+835E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-835E", + "status": "exact_ids", + "ids": "⿱艹乔", + "canonical_ids": "⿱艹乔", + "expanded_ids": "⿱艹⿱丿⿱大儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "大", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荟", + "codepoint": "U+835F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-835F", + "status": "exact_ids", + "ids": "⿱艹会", + "canonical_ids": "⿱艹会", + "expanded_ids": "⿱艹⿱⿱人一⿱一厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "厶", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荠", + "codepoint": "U+8360", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8360", + "status": "exact_ids", + "ids": "⿱艹齐", + "canonical_ids": "⿱艹齐", + "expanded_ids": "⿱艹齐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "齐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荡", + "codepoint": "U+8361", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8361", + "status": "exact_ids", + "ids": "⿱艹汤", + "canonical_ids": "⿱艹汤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "艹" + ], + "unresolved_leaves": [ + "𠃓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荢", + "codepoint": "U+8362", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8362", + "status": "exact_ids", + "ids": "⿱艹宇", + "canonical_ids": "⿱艹宇", + "expanded_ids": "⿱艹⿱宀⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "宀", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荣", + "codepoint": "U+8363", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8363", + "status": "exact_ids", + "ids": "⿳艹冖木", + "canonical_ids": "⿳艹冖木", + "expanded_ids": "⿳艹冖木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 101, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荤", + "codepoint": "U+8364", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8364", + "status": "exact_ids", + "ids": "⿳艹冖车", + "canonical_ids": "⿳艹冖车", + "expanded_ids": "⿳艹冖车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "艹", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 103, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荥", + "codepoint": "U+8365", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8365", + "status": "exact_ids", + "ids": "⿳艹冖水", + "canonical_ids": "⿳艹冖水", + "expanded_ids": "⿳艹冖水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "水", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 101, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荦", + "codepoint": "U+8366", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8366", + "status": "exact_ids", + "ids": "⿳艹冖牛", + "canonical_ids": "⿳艹冖牛", + "expanded_ids": "⿳艹冖牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "牛", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 101, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荧", + "codepoint": "U+8367", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8367", + "status": "exact_ids", + "ids": "⿳艹冖火", + "canonical_ids": "⿳艹冖火", + "expanded_ids": "⿳艹冖火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "火", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 101, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荨", + "codepoint": "U+8368", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8368", + "status": "exact_ids", + "ids": "⿱艹寻", + "canonical_ids": "⿱艹寻", + "expanded_ids": "⿱艹⿱彐寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "彐", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荩", + "codepoint": "U+8369", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8369", + "status": "exact_ids", + "ids": "⿱艹尽", + "canonical_ids": "⿱艹尽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "尸", + "艹" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荪", + "codepoint": "U+836A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-836A", + "status": "exact_ids", + "ids": "⿱艹孙", + "canonical_ids": "⿱艹孙", + "expanded_ids": "⿱艹⿰子小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "小", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荫", + "codepoint": "U+836B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-836B", + "status": "exact_ids", + "ids": "⿱艹阴", + "canonical_ids": "⿱艹阴", + "expanded_ids": "⿱艹⿰阝月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "艹", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荬", + "codepoint": "U+836C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-836C", + "status": "exact_ids", + "ids": "⿱艹买", + "canonical_ids": "⿱艹买", + "expanded_ids": "⿱艹⿱乛⿻大冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "冫", + "大", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荭", + "codepoint": "U+836D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-836D", + "status": "exact_ids", + "ids": "⿱艹红", + "canonical_ids": "⿱艹红", + "expanded_ids": "⿱艹⿰纟工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "纟", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荮", + "codepoint": "U+836E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-836E", + "status": "exact_ids", + "ids": "⿱艹纣", + "canonical_ids": "⿱艹纣", + "expanded_ids": "⿱艹⿰纟寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "纟", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "药", + "codepoint": "U+836F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-836F", + "status": "exact_ids", + "ids": "⿱艹约", + "canonical_ids": "⿱艹约", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "纟", + "艹" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荰", + "codepoint": "U+8370", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8370", + "status": "exact_ids", + "ids": "⿱艹杜", + "canonical_ids": "⿱艹杜", + "expanded_ids": "⿱艹⿰木土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荱", + "codepoint": "U+8371", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8371", + "status": "exact_ids", + "ids": "⿱艹尾", + "canonical_ids": "⿱艹尾", + "expanded_ids": "⿱艹⿱尸毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "毛", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荲", + "codepoint": "U+8372", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8372", + "status": "exact_ids", + "ids": "⿱艹里", + "canonical_ids": "⿱艹里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荳", + "codepoint": "U+8373", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8373", + "status": "exact_ids", + "ids": "⿱艹豆", + "canonical_ids": "⿱艹豆", + "expanded_ids": "⿱艹豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荴", + "codepoint": "U+8374", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8374", + "status": "exact_ids", + "ids": "⿱艹扶", + "canonical_ids": "⿱艹扶", + "expanded_ids": "⿱艹⿰扌⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "扌", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荵", + "codepoint": "U+8375", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8375", + "status": "exact_ids", + "ids": "⿱艹忍", + "canonical_ids": "⿱艹忍", + "expanded_ids": "⿱艹⿱⿻刀丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "心", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荶", + "codepoint": "U+8376", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8376", + "status": "exact_ids", + "ids": "⿱艹吟", + "canonical_ids": "⿱艹吟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "艹" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荷", + "codepoint": "U+8377", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8377", + "status": "exact_ids", + "ids": "⿱艹何", + "canonical_ids": "⿱艹何", + "expanded_ids": "⿱艹⿰亻⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "亻", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荸", + "codepoint": "U+8378", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8378", + "status": "exact_ids", + "ids": "⿱艹孛", + "canonical_ids": "⿱艹孛", + "expanded_ids": "⿱艹⿳十冖子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "子", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荹", + "codepoint": "U+8379", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8379", + "status": "exact_ids", + "ids": "⿱艹步", + "canonical_ids": "⿱艹步", + "expanded_ids": "⿱艹⿱止𣥂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止", + "艹", + "𣥂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荺", + "codepoint": "U+837A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-837A", + "status": "exact_ids", + "ids": "⿱艹均", + "canonical_ids": "⿱艹均", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "艹" + ], + "unresolved_leaves": [ + "匀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荻", + "codepoint": "U+837B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-837B", + "status": "exact_ids", + "ids": "⿱艹狄", + "canonical_ids": "⿱艹狄", + "expanded_ids": "⿱艹⿰犭火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "犭", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荼", + "codepoint": "U+837C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-837C", + "status": "exact_ids", + "ids": "⿱艹余", + "canonical_ids": "⿱艹余", + "expanded_ids": "⿱艹⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荽", + "codepoint": "U+837D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-837D", + "status": "exact_ids", + "ids": "⿱艹妥", + "canonical_ids": "⿱艹妥", + "expanded_ids": "⿱艹⿱爫女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "爫", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荾", + "codepoint": "U+837E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-837E", + "status": "exact_ids", + "ids": "⿱艹夋", + "canonical_ids": "⿱艹夋", + "expanded_ids": "⿱艹⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "荿", + "codepoint": "U+837F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-837F", + "status": "exact_ids", + "ids": "⿱艹成", + "canonical_ids": "⿱艹成", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "成" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莀", + "codepoint": "U+8380", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8380", + "status": "exact_ids", + "ids": "⿱艹辰", + "canonical_ids": "⿱艹辰", + "expanded_ids": "⿱艹辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莁", + "codepoint": "U+8381", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8381", + "status": "exact_ids", + "ids": "⿱艹巫", + "canonical_ids": "⿱艹巫", + "expanded_ids": "⿱艹⿻工⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "工", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莂", + "codepoint": "U+8382", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8382", + "status": "exact_ids", + "ids": "⿱艹别", + "canonical_ids": "⿱艹别", + "expanded_ids": "⿱艹⿰⿱口力刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "力", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莃", + "codepoint": "U+8383", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8383", + "status": "exact_ids", + "ids": "⿱艹希", + "canonical_ids": "⿱艹希", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "艹" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莄", + "codepoint": "U+8384", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8384", + "status": "exact_ids", + "ids": "⿱艹更", + "canonical_ids": "⿱艹更", + "expanded_ids": "⿱艹更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "更", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莅", + "codepoint": "U+8385", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8385", + "status": "exact_ids", + "ids": "⿱艹位", + "canonical_ids": "⿱艹位", + "expanded_ids": "⿱艹⿰亻立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "立", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莆", + "codepoint": "U+8386", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8386", + "status": "exact_ids", + "ids": "⿱艹甫", + "canonical_ids": "⿱艹甫", + "expanded_ids": "⿱艹甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甫", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莇", + "codepoint": "U+8387", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8387", + "status": "exact_ids", + "ids": "⿱艹助", + "canonical_ids": "⿱艹助", + "expanded_ids": "⿱艹⿰且力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "力", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莈", + "codepoint": "U+8388", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8388", + "status": "exact_ids", + "ids": "⿱艹沒", + "canonical_ids": "⿱艹沒", + "expanded_ids": "⿱艹⿰氵⿱刀又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "又", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莉", + "codepoint": "U+8389", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8389", + "status": "exact_ids", + "ids": "⿱艹利", + "canonical_ids": "⿱艹利", + "expanded_ids": "⿱艹⿰⿻丿木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莊", + "codepoint": "U+838A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-838A", + "status": "exact_ids", + "ids": "⿱艹壯", + "canonical_ids": "⿱艹壯", + "expanded_ids": "⿱艹⿰爿土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "爿", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莋", + "codepoint": "U+838B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-838B", + "status": "exact_ids", + "ids": "⿱艹作", + "canonical_ids": "⿱艹作", + "expanded_ids": "⿱艹⿰亻乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "亻", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莌", + "codepoint": "U+838C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-838C", + "status": "exact_ids", + "ids": "⿱艹兌", + "canonical_ids": "⿱艹兌", + "expanded_ids": "⿱艹⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莍", + "codepoint": "U+838D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-838D", + "status": "exact_ids", + "ids": "⿱艹求", + "canonical_ids": "⿱艹求", + "expanded_ids": "⿱艹求", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "求", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莎", + "codepoint": "U+838E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-838E", + "status": "exact_ids", + "ids": "⿱艹沙", + "canonical_ids": "⿱艹沙", + "expanded_ids": "⿱艹⿰氵⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莏", + "codepoint": "U+838F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-838F", + "status": "exact_ids", + "ids": "⿱艹抄", + "canonical_ids": "⿱艹抄", + "expanded_ids": "⿱艹⿰扌⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "扌", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莐", + "codepoint": "U+8390", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8390", + "status": "exact_ids", + "ids": "⿱艹沈", + "canonical_ids": "⿱艹沈", + "expanded_ids": "⿱艹⿰氵⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莑", + "codepoint": "U+8391", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8391", + "status": "exact_ids", + "ids": "⿱艹夆", + "canonical_ids": "⿱艹夆", + "expanded_ids": "⿱艹⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莒", + "codepoint": "U+8392", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8392", + "status": "exact_ids", + "ids": "⿱艹呂", + "canonical_ids": "⿱艹呂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "呂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莓", + "codepoint": "U+8393", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8393", + "status": "exact_ids", + "ids": "⿱艹每", + "canonical_ids": "⿱艹每", + "expanded_ids": "⿱艹⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "母", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莔", + "codepoint": "U+8394", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8394", + "status": "exact_ids", + "ids": "⿱艹囧", + "canonical_ids": "⿱艹囧", + "expanded_ids": "⿱艹囧", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "囧", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莕", + "codepoint": "U+8395", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8395", + "status": "exact_ids", + "ids": "⿱艹杏", + "canonical_ids": "⿱艹杏", + "expanded_ids": "⿱艹⿱木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莖", + "codepoint": "U+8396", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8396", + "status": "exact_ids", + "ids": "⿱艹巠", + "canonical_ids": "⿱艹巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莗", + "codepoint": "U+8397", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8397", + "status": "exact_ids", + "ids": "⿱艹車", + "canonical_ids": "⿱艹車", + "expanded_ids": "⿱艹車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莘", + "codepoint": "U+8398", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8398", + "status": "exact_ids", + "ids": "⿱艹辛", + "canonical_ids": "⿱艹辛", + "expanded_ids": "⿱艹⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莙", + "codepoint": "U+8399", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8399", + "status": "exact_ids", + "ids": "⿱艹君", + "canonical_ids": "⿱艹君", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艹" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莚", + "codepoint": "U+839A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-839A", + "status": "exact_ids", + "ids": "⿱艹延", + "canonical_ids": "⿱艹延", + "expanded_ids": "⿱艹⿰廴⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廴", + "止", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莛", + "codepoint": "U+839B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-839B", + "status": "exact_ids", + "ids": "⿱艹廷", + "canonical_ids": "⿱艹廷", + "expanded_ids": "⿱艹⿰廴⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "廴", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莜", + "codepoint": "U+839C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-839C", + "status": "exact_ids", + "ids": "⿱艹攸", + "canonical_ids": "⿱艹攸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "攸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莝", + "codepoint": "U+839D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-839D", + "status": "exact_ids", + "ids": "⿱艹坐", + "canonical_ids": "⿱艹坐", + "expanded_ids": "⿱艹⿱⿰人人土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "土", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莞", + "codepoint": "U+839E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-839E", + "status": "exact_ids", + "ids": "⿱艹完", + "canonical_ids": "⿱艹完", + "expanded_ids": "⿱艹⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "宀", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莟", + "codepoint": "U+839F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-839F", + "status": "exact_ids", + "ids": "⿱艹含", + "canonical_ids": "⿱艹含", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "艹" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莠", + "codepoint": "U+83A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83A0", + "status": "exact_ids", + "ids": "⿱艹秀", + "canonical_ids": "⿱艹秀", + "expanded_ids": "⿱艹⿱⿻丿木乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乃", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莡", + "codepoint": "U+83A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83A1", + "status": "exact_ids", + "ids": "⿱艹足", + "canonical_ids": "⿱艹足", + "expanded_ids": "⿱艹⿱口龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艹", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莢", + "codepoint": "U+83A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83A2", + "status": "exact_ids", + "ids": "⿱艹夾", + "canonical_ids": "⿱艹夾", + "expanded_ids": "⿱艹⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莣", + "codepoint": "U+83A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83A3", + "status": "exact_ids", + "ids": "⿱艹忘", + "canonical_ids": "⿱艹忘", + "expanded_ids": "⿱艹⿱⿻亠乚心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "心", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莤", + "codepoint": "U+83A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83A4", + "status": "exact_ids", + "ids": "⿱艹酉", + "canonical_ids": "⿱艹酉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莥", + "codepoint": "U+83A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83A5", + "status": "exact_ids", + "ids": "⿱艹狃", + "canonical_ids": "⿱艹狃", + "expanded_ids": "⿱艹⿰犭丑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑", + "犭", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莦", + "codepoint": "U+83A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83A6", + "status": "exact_ids", + "ids": "⿱艹肖", + "canonical_ids": "⿱艹肖", + "expanded_ids": "⿱艹⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莧", + "codepoint": "U+83A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83A7", + "status": "exact_ids", + "ids": "⿱艹見", + "canonical_ids": "⿱艹見", + "expanded_ids": "⿱艹⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莨", + "codepoint": "U+83A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83A8", + "status": "exact_ids", + "ids": "⿱艹良", + "canonical_ids": "⿱艹良", + "expanded_ids": "⿱艹⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "艮", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莩", + "codepoint": "U+83A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83A9", + "status": "exact_ids", + "ids": "⿱艹孚", + "canonical_ids": "⿱艹孚", + "expanded_ids": "⿱艹⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "爫", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莪", + "codepoint": "U+83AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83AA", + "status": "exact_ids", + "ids": "⿱艹我", + "canonical_ids": "⿱艹我", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "艹" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莫", + "codepoint": "U+83AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83AB", + "status": "exact_ids", + "ids": "⿱艹旲", + "canonical_ids": "⿱艹旲", + "expanded_ids": "⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莬", + "codepoint": "U+83AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83AC", + "status": "exact_ids", + "ids": "⿱艹免", + "canonical_ids": "⿱艹免", + "expanded_ids": "⿱艹免", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "免", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莭", + "codepoint": "U+83AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83AD", + "status": "exact_ids", + "ids": "⿱艹即", + "canonical_ids": "⿱艹即", + "expanded_ids": "⿱艹⿰艮卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "艮", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莮", + "codepoint": "U+83AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83AE", + "status": "exact_ids", + "ids": "⿱艹男", + "canonical_ids": "⿱艹男", + "expanded_ids": "⿱艹⿱田力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莯", + "codepoint": "U+83AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83AF", + "status": "exact_ids", + "ids": "⿱艹沐", + "canonical_ids": "⿱艹沐", + "expanded_ids": "⿱艹⿰氵木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莰", + "codepoint": "U+83B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83B0", + "status": "exact_ids", + "ids": "⿱艹坎", + "canonical_ids": "⿱艹坎", + "expanded_ids": "⿱艹⿰土欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "欠", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莱", + "codepoint": "U+83B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83B1", + "status": "exact_ids", + "ids": "⿱艹来", + "canonical_ids": "⿱艹来", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "来" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莲", + "codepoint": "U+83B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83B2", + "status": "exact_ids", + "ids": "⿱艹连", + "canonical_ids": "⿱艹连", + "expanded_ids": "⿱艹⿰辶车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "车", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莳", + "codepoint": "U+83B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83B3", + "status": "exact_ids", + "ids": "⿱艹时", + "canonical_ids": "⿱艹时", + "expanded_ids": "⿱艹⿰日寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莴", + "codepoint": "U+83B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83B4", + "status": "exact_ids", + "ids": "⿱艹呙", + "canonical_ids": "⿱艹呙", + "expanded_ids": "⿱艹⿱口⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莵", + "codepoint": "U+83B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83B5", + "status": "exact_ids", + "ids": "⿱艹兎", + "canonical_ids": "⿱艹兎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "兎" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莶", + "codepoint": "U+83B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83B6", + "status": "exact_ids", + "ids": "⿱艹佥", + "canonical_ids": "⿱艹佥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "佥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "获", + "codepoint": "U+83B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83B7", + "status": "exact_ids", + "ids": "⿱艹犾", + "canonical_ids": "⿱艹犾", + "expanded_ids": "⿱艹⿰犭⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "犭", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莸", + "codepoint": "U+83B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83B8", + "status": "exact_ids", + "ids": "⿱艹犹", + "canonical_ids": "⿱艹犹", + "expanded_ids": "⿱艹⿰犭尤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "犭", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莹", + "codepoint": "U+83B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83B9", + "status": "exact_ids", + "ids": "⿳艹冖玉", + "canonical_ids": "⿳艹冖玉", + "expanded_ids": "⿳艹冖⿻王丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "冖", + "王", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莺", + "codepoint": "U+83BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83BA", + "status": "exact_ids", + "ids": "⿳艹冖鸟", + "canonical_ids": "⿳艹冖鸟", + "expanded_ids": "⿳艹冖鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "艹", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 103, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莻", + "codepoint": "U+83BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83BB", + "status": "exact_ids", + "ids": "⿱艿叱", + "canonical_ids": "⿱艿叱", + "expanded_ids": "⿱⿱艹乃⿰口七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "乃", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莼", + "codepoint": "U+83BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83BC", + "status": "exact_ids", + "ids": "⿱艹纯", + "canonical_ids": "⿱艹纯", + "expanded_ids": "⿱艹⿰纟屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "纟", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莽", + "codepoint": "U+83BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83BD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莾", + "codepoint": "U+83BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83BE", + "status": "exact_ids", + "ids": "⿱艹奔", + "canonical_ids": "⿱艹奔", + "expanded_ids": "⿱艹⿱大⿱十廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "大", + "廾", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "莿", + "codepoint": "U+83BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83BF", + "status": "exact_ids", + "ids": "⿱艹刺", + "canonical_ids": "⿱艹刺", + "expanded_ids": "⿱艹⿰⿻木冂刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "刂", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菀", + "codepoint": "U+83C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83C0", + "status": "exact_ids", + "ids": "⿱艹宛", + "canonical_ids": "⿱艹宛", + "expanded_ids": "⿱艹⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菁", + "codepoint": "U+83C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83C1", + "status": "exact_ids", + "ids": "⿱艹靑", + "canonical_ids": "⿱艹靑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "円", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菂", + "codepoint": "U+83C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83C2", + "status": "exact_ids", + "ids": "⿱艹的", + "canonical_ids": "⿱艹的", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "艹" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菃", + "codepoint": "U+83C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83C3", + "status": "exact_ids", + "ids": "⿱艹洰", + "canonical_ids": "⿱艹洰", + "expanded_ids": "⿱艹⿰氵巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菄", + "codepoint": "U+83C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83C4", + "status": "exact_ids", + "ids": "⿱艹東", + "canonical_ids": "⿱艹東", + "expanded_ids": "⿱艹⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菅", + "codepoint": "U+83C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83C5", + "status": "exact_ids", + "ids": "⿱艹官", + "canonical_ids": "⿱艹官", + "expanded_ids": "⿱艹⿱宀㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "宀", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菆", + "codepoint": "U+83C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83C6", + "status": "exact_ids", + "ids": "⿱艹取", + "canonical_ids": "⿱艹取", + "expanded_ids": "⿱艹⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "耳", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菇", + "codepoint": "U+83C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83C7", + "status": "exact_ids", + "ids": "⿱艹姑", + "canonical_ids": "⿱艹姑", + "expanded_ids": "⿱艹⿰女⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "女", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菈", + "codepoint": "U+83C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83C8", + "status": "exact_ids", + "ids": "⿱艹拉", + "canonical_ids": "⿱艹拉", + "expanded_ids": "⿱艹⿰扌立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "立", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菉", + "codepoint": "U+83C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83C9", + "status": "exact_ids", + "ids": "⿱艹录", + "canonical_ids": "⿱艹录", + "expanded_ids": "⿱艹⿱彐氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "氺", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菊", + "codepoint": "U+83CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83CA", + "status": "exact_ids", + "ids": "⿱艹匊", + "canonical_ids": "⿱艹匊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "匊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菋", + "codepoint": "U+83CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83CB", + "status": "exact_ids", + "ids": "⿱艹味", + "canonical_ids": "⿱艹味", + "expanded_ids": "⿱艹⿰口⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菌", + "codepoint": "U+83CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83CC", + "status": "exact_ids", + "ids": "⿱艹囷", + "canonical_ids": "⿱艹囷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "囷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菍", + "codepoint": "U+83CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83CD", + "status": "exact_ids", + "ids": "⿱艹念", + "canonical_ids": "⿱艹念", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "心", + "艹" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菎", + "codepoint": "U+83CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83CE", + "status": "exact_ids", + "ids": "⿱艹昆", + "canonical_ids": "⿱艹昆", + "expanded_ids": "⿱艹⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菏", + "codepoint": "U+83CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83CF", + "status": "exact_ids", + "ids": "⿱艹河", + "canonical_ids": "⿱艹河", + "expanded_ids": "⿱艹⿰氵⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菐", + "codepoint": "U+83D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83D0", + "status": "exact_ids", + "ids": "⿱业羌", + "canonical_ids": "⿱业羌", + "expanded_ids": "⿱业⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "儿", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菑", + "codepoint": "U+83D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83D1", + "status": "exact_ids", + "ids": "⿱艹甾", + "canonical_ids": "⿱艹甾", + "expanded_ids": "⿱艹⿱巛田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "葘" + ] + }, + { + "character": "菒", + "codepoint": "U+83D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83D2", + "status": "exact_ids", + "ids": "⿱艹杲", + "canonical_ids": "⿱艹杲", + "expanded_ids": "⿱艹⿱日木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菓", + "codepoint": "U+83D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83D3", + "status": "exact_ids", + "ids": "⿱艹果", + "canonical_ids": "⿱艹果", + "expanded_ids": "⿱艹⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菔", + "codepoint": "U+83D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83D4", + "status": "exact_ids", + "ids": "⿱艹服", + "canonical_ids": "⿱艹服", + "expanded_ids": "⿱艹⿰月⿻卩又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "又", + "月", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菕", + "codepoint": "U+83D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83D5", + "status": "exact_ids", + "ids": "⿱艹侖", + "canonical_ids": "⿱艹侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "艹" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菖", + "codepoint": "U+83D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83D6", + "status": "exact_ids", + "ids": "⿱艹昌", + "canonical_ids": "⿱艹昌", + "expanded_ids": "⿱艹⿱日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菗", + "codepoint": "U+83D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83D7", + "status": "exact_ids", + "ids": "⿱艹抽", + "canonical_ids": "⿱艹抽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "艹" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菘", + "codepoint": "U+83D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83D8", + "status": "exact_ids", + "ids": "⿱艹松", + "canonical_ids": "⿱艹松", + "expanded_ids": "⿱艹⿰木⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菙", + "codepoint": "U+83D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83D9", + "status": "exact_ids", + "ids": "⿱艹垂", + "canonical_ids": "⿱艹垂", + "expanded_ids": "⿱艹垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "垂", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菚", + "codepoint": "U+83DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83DA", + "status": "exact_ids", + "ids": "⿱艹戔", + "canonical_ids": "⿱艹戔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菛", + "codepoint": "U+83DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83DB", + "status": "exact_ids", + "ids": "⿱艹門", + "canonical_ids": "⿱艹門", + "expanded_ids": "⿱艹門", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "門" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菜", + "codepoint": "U+83DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83DC", + "status": "exact_ids", + "ids": "⿱艹采", + "canonical_ids": "⿱艹采", + "expanded_ids": "⿱艹⿱爫木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "爫", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菝", + "codepoint": "U+83DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83DD", + "status": "exact_ids", + "ids": "⿱艹拔", + "canonical_ids": "⿱艹拔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "艹" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菞", + "codepoint": "U+83DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83DE", + "status": "exact_ids", + "ids": "⿱艹𥝢", + "canonical_ids": "⿱艹𥝢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "𥝢" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菟", + "codepoint": "U+83DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83DF", + "status": "exact_ids", + "ids": "⿱艹兔", + "canonical_ids": "⿱艹兔", + "expanded_ids": "⿱艹⿻免丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "免", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菠", + "codepoint": "U+83E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83E0", + "status": "exact_ids", + "ids": "⿱艹波", + "canonical_ids": "⿱艹波", + "expanded_ids": "⿱艹⿰氵皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "皮", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菡", + "codepoint": "U+83E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83E1", + "status": "exact_ids", + "ids": "⿱艹函", + "canonical_ids": "⿱艹函", + "expanded_ids": "⿱艹函", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "函", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菢", + "codepoint": "U+83E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83E2", + "status": "exact_ids", + "ids": "⿱艹抱", + "canonical_ids": "⿱艹抱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "艹" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菣", + "codepoint": "U+83E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83E3", + "status": "exact_ids", + "ids": "⿱艹臤", + "canonical_ids": "⿱艹臤", + "expanded_ids": "⿱艹⿰臣又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "臣", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菤", + "codepoint": "U+83E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83E4", + "status": "exact_ids", + "ids": "⿱艹卷", + "canonical_ids": "⿱艹卷", + "expanded_ids": "⿱艹⿱龹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "艹", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菥", + "codepoint": "U+83E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83E5", + "status": "exact_ids", + "ids": "⿱艹析", + "canonical_ids": "⿱艹析", + "expanded_ids": "⿱艹⿰木斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菦", + "codepoint": "U+83E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83E6", + "status": "exact_ids", + "ids": "⿱艹近", + "canonical_ids": "⿱艹近", + "expanded_ids": "⿱艹⿰辶斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "艹", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菧", + "codepoint": "U+83E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83E7", + "status": "exact_ids", + "ids": "⿱艹底", + "canonical_ids": "⿱艹底", + "expanded_ids": "⿱艹⿱广⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "广", + "氏", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菨", + "codepoint": "U+83E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83E8", + "status": "exact_ids", + "ids": "⿱艹妾", + "canonical_ids": "⿱艹妾", + "expanded_ids": "⿱艹⿱立女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "立", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菩", + "codepoint": "U+83E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83E9", + "status": "exact_ids", + "ids": "⿱艹咅", + "canonical_ids": "⿱艹咅", + "expanded_ids": "⿱艹⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "立", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菪", + "codepoint": "U+83EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83EA", + "status": "exact_ids", + "ids": "⿱艹宕", + "canonical_ids": "⿱艹宕", + "expanded_ids": "⿱艹⿱宀石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "石", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菫", + "codepoint": "U+83EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83EB", + "status": "leaf_self_fallback", + "ids": "菫", + "canonical_ids": "菫", + "expanded_ids": "菫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "菫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菬", + "codepoint": "U+83EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83EC", + "status": "exact_ids", + "ids": "⿱艹沼", + "canonical_ids": "⿱艹沼", + "expanded_ids": "⿱艹⿰氵⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菭", + "codepoint": "U+83ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83ED", + "status": "exact_ids", + "ids": "⿱艹治", + "canonical_ids": "⿱艹治", + "expanded_ids": "⿱艹⿰氵⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菮", + "codepoint": "U+83EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83EE", + "status": "exact_ids", + "ids": "⿱艹庚", + "canonical_ids": "⿱艹庚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "庚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "華", + "codepoint": "U+83EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83EF", + "status": "exact_ids", + "ids": "⿱艹𠦒", + "canonical_ids": "⿱艹𠦒", + "expanded_ids": "⿱艹𠦒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "𠦒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 78, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菰", + "codepoint": "U+83F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83F0", + "status": "exact_ids", + "ids": "⿱艹孤", + "canonical_ids": "⿱艹孤", + "expanded_ids": "⿱艹⿰子瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "瓜", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菱", + "codepoint": "U+83F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83F1", + "status": "exact_ids", + "ids": "⿱艹夌", + "canonical_ids": "⿱艹夌", + "expanded_ids": "⿱艹⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菲", + "codepoint": "U+83F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83F2", + "status": "exact_ids", + "ids": "⿱艹非", + "canonical_ids": "⿱艹非", + "expanded_ids": "⿱艹非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菳", + "codepoint": "U+83F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83F3", + "status": "exact_ids", + "ids": "⿱艹金", + "canonical_ids": "⿱艹金", + "expanded_ids": "⿱艹金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菴", + "codepoint": "U+83F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83F4", + "status": "exact_ids", + "ids": "⿱艹奄", + "canonical_ids": "⿱艹奄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "艹" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菵", + "codepoint": "U+83F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83F5", + "status": "exact_ids", + "ids": "⿱艹罔", + "canonical_ids": "⿱艹罔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "罔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菶", + "codepoint": "U+83F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83F6", + "status": "exact_ids", + "ids": "⿱艹奉", + "canonical_ids": "⿱艹奉", + "expanded_ids": "⿱艹⿱𡗗⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "艹", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 154, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菷", + "codepoint": "U+83F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83F7", + "status": "exact_ids", + "ids": "⿱艹帚", + "canonical_ids": "⿱艹帚", + "expanded_ids": "⿱艹⿳彐冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "彐", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菸", + "codepoint": "U+83F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83F8", + "status": "exact_ids", + "ids": "⿱艹於", + "canonical_ids": "⿱艹於", + "expanded_ids": "⿱艹⿰方⿱人冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冫", + "方", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菹", + "codepoint": "U+83F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83F9", + "status": "exact_ids", + "ids": "⿱艹沮", + "canonical_ids": "⿱艹沮", + "expanded_ids": "⿱艹⿰氵且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菺", + "codepoint": "U+83FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83FA", + "status": "exact_ids", + "ids": "⿱艹肩", + "canonical_ids": "⿱艹肩", + "expanded_ids": "⿱艹⿱⿻一尸月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "月", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菻", + "codepoint": "U+83FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83FB", + "status": "exact_ids", + "ids": "⿱艹林", + "canonical_ids": "⿱艹林", + "expanded_ids": "⿱艹⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菼", + "codepoint": "U+83FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83FC", + "status": "exact_ids", + "ids": "⿱艹炎", + "canonical_ids": "⿱艹炎", + "expanded_ids": "⿱艹⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菽", + "codepoint": "U+83FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83FD", + "status": "exact_ids", + "ids": "⿱艹叔", + "canonical_ids": "⿱艹叔", + "expanded_ids": "⿱艹⿰⿱上小又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "又", + "小", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菾", + "codepoint": "U+83FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83FE", + "status": "exact_ids", + "ids": "⿱艹忝", + "canonical_ids": "⿱艹忝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "艹" + ], + "unresolved_leaves": [ + "㣺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "菿", + "codepoint": "U+83FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-83FF", + "status": "exact_ids", + "ids": "⿱艹到", + "canonical_ids": "⿱艹到", + "expanded_ids": "⿱艹⿰⿱⿱一厶土刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "厶", + "土", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萀", + "codepoint": "U+8400", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8400", + "status": "exact_ids", + "ids": "⿱艹虎", + "canonical_ids": "⿱艹虎", + "expanded_ids": "⿱艹⿱虍儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "艹", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萁", + "codepoint": "U+8401", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8401", + "status": "exact_ids", + "ids": "⿱艹其", + "canonical_ids": "⿱艹其", + "expanded_ids": "⿱艹其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萂", + "codepoint": "U+8402", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8402", + "status": "exact_ids", + "ids": "⿱艹和", + "canonical_ids": "⿱艹和", + "expanded_ids": "⿱艹⿰⿻丿木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萃", + "codepoint": "U+8403", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8403", + "status": "exact_ids", + "ids": "⿱艹卒", + "canonical_ids": "⿱艹卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萄", + "codepoint": "U+8404", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8404", + "status": "exact_ids", + "ids": "⿱艹匋", + "canonical_ids": "⿱艹匋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "匋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萅", + "codepoint": "U+8405", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8405", + "status": "exact_ids", + "ids": "⿱芚日", + "canonical_ids": "⿱芚日", + "expanded_ids": "⿱⿱艹屯日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萆", + "codepoint": "U+8406", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8406", + "status": "exact_ids", + "ids": "⿱艹卑", + "canonical_ids": "⿱艹卑", + "expanded_ids": "⿱艹卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萇", + "codepoint": "U+8407", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8407", + "status": "exact_ids", + "ids": "⿱艹長", + "canonical_ids": "⿱艹長", + "expanded_ids": "⿱艹長", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "長" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萈", + "codepoint": "U+8408", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8408", + "status": "leaf_self_fallback", + "ids": "萈", + "canonical_ids": "萈", + "expanded_ids": "萈", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "萈" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萉", + "codepoint": "U+8409", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8409", + "status": "exact_ids", + "ids": "⿱艹肥", + "canonical_ids": "⿱艹肥", + "expanded_ids": "⿱艹⿰月巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "月", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萊", + "codepoint": "U+840A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-840A", + "status": "exact_ids", + "ids": "⿱艹來", + "canonical_ids": "⿱艹來", + "expanded_ids": "⿱艹⿻木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萋", + "codepoint": "U+840B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-840B", + "status": "exact_ids", + "ids": "⿱艹妻", + "canonical_ids": "⿱艹妻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "妻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萌", + "codepoint": "U+840C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-840C", + "status": "exact_ids", + "ids": "⿱艹明", + "canonical_ids": "⿱艹明", + "expanded_ids": "⿱艹⿰日月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "月", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萍", + "codepoint": "U+840D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-840D", + "status": "exact_ids", + "ids": "⿱艹泙", + "canonical_ids": "⿱艹泙", + "expanded_ids": "⿱艹⿰氵⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "十", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萎", + "codepoint": "U+840E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-840E", + "status": "exact_ids", + "ids": "⿱艹委", + "canonical_ids": "⿱艹委", + "expanded_ids": "⿱艹⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萏", + "codepoint": "U+840F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-840F", + "status": "exact_ids", + "ids": "⿱艹臽", + "canonical_ids": "⿱艹臽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "臼", + "艹" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萐", + "codepoint": "U+8410", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8410", + "status": "exact_ids", + "ids": "⿱艹疌", + "canonical_ids": "⿱艹疌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "疌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萑", + "codepoint": "U+8411", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8411", + "status": "exact_ids", + "ids": "⿱艹隹", + "canonical_ids": "⿱艹隹", + "expanded_ids": "⿱艹隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萒", + "codepoint": "U+8412", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8412", + "status": "exact_ids", + "ids": "⿱艹兖", + "canonical_ids": "⿱艹兖", + "expanded_ids": "⿱艹⿱⿱亠八⿱厶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "儿", + "八", + "厶", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萓", + "codepoint": "U+8413", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8413", + "status": "exact_ids", + "ids": "⿱艹宜", + "canonical_ids": "⿱艹宜", + "expanded_ids": "⿱艹⿱宀且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "宀", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萔", + "codepoint": "U+8414", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8414", + "status": "exact_ids", + "ids": "⿱艹招", + "canonical_ids": "⿱艹招", + "expanded_ids": "⿱艹⿰扌⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "扌", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萕", + "codepoint": "U+8415", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8415", + "status": "exact_ids", + "ids": "⿱艹斉", + "canonical_ids": "⿱艹斉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "斉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萖", + "codepoint": "U+8416", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8416", + "status": "exact_ids", + "ids": "⿱艹兒", + "canonical_ids": "⿱艹兒", + "expanded_ids": "⿱艹⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "臼", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萗", + "codepoint": "U+8417", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8417", + "status": "exact_ids", + "ids": "⿱艹宗", + "canonical_ids": "⿱艹宗", + "expanded_ids": "⿱艹⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萘", + "codepoint": "U+8418", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8418", + "status": "exact_ids", + "ids": "⿱艹奈", + "canonical_ids": "⿱艹奈", + "expanded_ids": "⿱艹⿱大⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "大", + "小", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萙", + "codepoint": "U+8419", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8419", + "status": "exact_ids", + "ids": "⿱艹枕", + "canonical_ids": "⿱艹枕", + "expanded_ids": "⿱艹⿰木⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萚", + "codepoint": "U+841A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-841A", + "status": "exact_ids", + "ids": "⿱艹择", + "canonical_ids": "⿱艹择", + "expanded_ids": "⿱艹⿰扌⿱又⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "又", + "扌", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萛", + "codepoint": "U+841B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-841B", + "status": "exact_ids", + "ids": "⿱艹𥃺", + "canonical_ids": "⿱艹𥃺", + "expanded_ids": "⿱艹⿱⿱一儿目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萜", + "codepoint": "U+841C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-841C", + "status": "exact_ids", + "ids": "⿱艹帖", + "canonical_ids": "⿱艹帖", + "expanded_ids": "⿱艹⿰⿻冂丨⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "卜", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萝", + "codepoint": "U+841D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-841D", + "status": "exact_ids", + "ids": "⿱艹罗", + "canonical_ids": "⿱艹罗", + "expanded_ids": "⿱艹⿱罒夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "罒", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萞", + "codepoint": "U+841E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-841E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萟", + "codepoint": "U+841F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-841F", + "status": "exact_ids", + "ids": "⿱艹秇", + "canonical_ids": "⿱艹秇", + "expanded_ids": "⿱艹⿰⿻丿木⿻九丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "九", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萠", + "codepoint": "U+8420", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8420", + "status": "exact_ids", + "ids": "⿱艹朋", + "canonical_ids": "⿱艹朋", + "expanded_ids": "⿱艹⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萡", + "codepoint": "U+8421", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8421", + "status": "exact_ids", + "ids": "⿱艹泊", + "canonical_ids": "⿱艹泊", + "expanded_ids": "⿱艹⿰氵⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萢", + "codepoint": "U+8422", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8422", + "status": "exact_ids", + "ids": "⿱艹泡", + "canonical_ids": "⿱艹泡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "艹" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萣", + "codepoint": "U+8423", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8423", + "status": "exact_ids", + "ids": "⿱艹定", + "canonical_ids": "⿱艹定", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "艹" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萤", + "codepoint": "U+8424", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8424", + "status": "exact_ids", + "ids": "⿳艹冖虫", + "canonical_ids": "⿳艹冖虫", + "expanded_ids": "⿳艹冖虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "艹", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 103, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "营", + "codepoint": "U+8425", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8425", + "status": "exact_ids", + "ids": "⿳艹冖吕", + "canonical_ids": "⿳艹冖吕", + "expanded_ids": "⿳艹冖⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萦", + "codepoint": "U+8426", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8426", + "status": "exact_ids", + "ids": "⿳艹冖糸", + "canonical_ids": "⿳艹冖糸", + "expanded_ids": "⿳艹冖⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "小", + "幺", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萧", + "codepoint": "U+8427", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8427", + "status": "exact_ids", + "ids": "⿱艹肃", + "canonical_ids": "⿱艹肃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "肃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萨", + "codepoint": "U+8428", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8428", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萩", + "codepoint": "U+8429", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8429", + "status": "exact_ids", + "ids": "⿱艹秋", + "canonical_ids": "⿱艹秋", + "expanded_ids": "⿱艹⿰⿻丿木火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "火", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萪", + "codepoint": "U+842A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-842A", + "status": "exact_ids", + "ids": "⿱艹科", + "canonical_ids": "⿱艹科", + "expanded_ids": "⿱艹⿰⿻丿木斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "斗", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萫", + "codepoint": "U+842B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-842B", + "status": "exact_ids", + "ids": "⿱艹香", + "canonical_ids": "⿱艹香", + "expanded_ids": "⿱艹⿱⿻丿木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "日", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萬", + "codepoint": "U+842C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-842C", + "status": "exact_ids", + "ids": "⿱艹禺", + "canonical_ids": "⿱艹禺", + "expanded_ids": "⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "禸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萭", + "codepoint": "U+842D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-842D", + "status": "exact_ids", + "ids": "⿱艹禹", + "canonical_ids": "⿱艹禹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "禹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萮", + "codepoint": "U+842E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-842E", + "status": "exact_ids", + "ids": "⿱艹俞", + "canonical_ids": "⿱艹俞", + "expanded_ids": "⿱艹⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "月", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萯", + "codepoint": "U+842F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-842F", + "status": "exact_ids", + "ids": "⿱艹負", + "canonical_ids": "⿱艹負", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "艹" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萰", + "codepoint": "U+8430", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8430", + "status": "exact_ids", + "ids": "⿱艹柬", + "canonical_ids": "⿱艹柬", + "expanded_ids": "⿱艹柬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "柬", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萱", + "codepoint": "U+8431", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8431", + "status": "exact_ids", + "ids": "⿱艹宣", + "canonical_ids": "⿱艹宣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "艹" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萲", + "codepoint": "U+8432", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8432", + "status": "exact_ids", + "ids": "⿱艹爰", + "canonical_ids": "⿱艹爰", + "expanded_ids": "⿱艹⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "爫", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萳", + "codepoint": "U+8433", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8433", + "status": "exact_ids", + "ids": "⿱艹南", + "canonical_ids": "⿱艹南", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "南" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萴", + "codepoint": "U+8434", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8434", + "status": "exact_ids", + "ids": "⿱艹則", + "canonical_ids": "⿱艹則", + "expanded_ids": "⿱艹⿰⿱目八刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刂", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萵", + "codepoint": "U+8435", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8435", + "status": "exact_ids", + "ids": "⿱艹咼", + "canonical_ids": "⿱艹咼", + "expanded_ids": "⿱艹⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萶", + "codepoint": "U+8436", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8436", + "status": "exact_ids", + "ids": "⿱艹春", + "canonical_ids": "⿱艹春", + "expanded_ids": "⿱艹⿱𡗗日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "艹", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萷", + "codepoint": "U+8437", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8437", + "status": "exact_ids", + "ids": "⿱艹削", + "canonical_ids": "⿱艹削", + "expanded_ids": "⿱艹⿰⿱小月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "小", + "月", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萸", + "codepoint": "U+8438", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8438", + "status": "exact_ids", + "ids": "⿱艹臾", + "canonical_ids": "⿱艹臾", + "expanded_ids": "⿱艹⿻人臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "臼", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萹", + "codepoint": "U+8439", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8439", + "status": "exact_ids", + "ids": "⿱艹扁", + "canonical_ids": "⿱艹扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "艹" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萺", + "codepoint": "U+843A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-843A", + "status": "exact_ids", + "ids": "⿱艹冒", + "canonical_ids": "⿱艹冒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "艹" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萻", + "codepoint": "U+843B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-843B", + "status": "exact_ids", + "ids": "⿱艹音", + "canonical_ids": "⿱艹音", + "expanded_ids": "⿱艹⿱立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "立", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萼", + "codepoint": "U+843C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-843C", + "status": "exact_ids", + "ids": "⿱艹咢", + "canonical_ids": "⿱艹咢", + "expanded_ids": "⿱艹⿱⿰口口⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "落", + "codepoint": "U+843D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-843D", + "status": "exact_ids", + "ids": "⿱艹洛", + "canonical_ids": "⿱艹洛", + "expanded_ids": "⿱艹⿰氵⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萾", + "codepoint": "U+843E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-843E", + "status": "exact_ids", + "ids": "⿱艹盈", + "canonical_ids": "⿱艹盈", + "expanded_ids": "⿱艹⿱⿻乃又皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "又", + "皿", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "萿", + "codepoint": "U+843F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-843F", + "status": "exact_ids", + "ids": "⿱艹活", + "canonical_ids": "⿱艹活", + "expanded_ids": "⿱艹⿰氵⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葀", + "codepoint": "U+8440", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8440", + "status": "exact_ids", + "ids": "⿱艹括", + "canonical_ids": "⿱艹括", + "expanded_ids": "⿱艹⿰扌⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "扌", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葁", + "codepoint": "U+8441", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8441", + "status": "exact_ids", + "ids": "⿱艹姜", + "canonical_ids": "⿱艹姜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "艹" + ], + "unresolved_leaves": [ + "𦍌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葂", + "codepoint": "U+8442", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8442", + "status": "exact_ids", + "ids": "⿱艹勉", + "canonical_ids": "⿱艹勉", + "expanded_ids": "⿱艹⿰免力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "免", + "力", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葃", + "codepoint": "U+8443", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8443", + "status": "exact_ids", + "ids": "⿱艹昨", + "canonical_ids": "⿱艹昨", + "expanded_ids": "⿱艹⿰日乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葄", + "codepoint": "U+8444", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8444", + "status": "exact_ids", + "ids": "⿱艹胙", + "canonical_ids": "⿱艹胙", + "expanded_ids": "⿱艹⿰月乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "月", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葅", + "codepoint": "U+8445", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8445", + "status": "exact_ids", + "ids": "⿱艹俎", + "canonical_ids": "⿱艹俎", + "expanded_ids": "⿱艹⿰⿱人人且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "人", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葆", + "codepoint": "U+8446", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8446", + "status": "exact_ids", + "ids": "⿱艹保", + "canonical_ids": "⿱艹保", + "expanded_ids": "⿱艹⿰亻⿱口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葇", + "codepoint": "U+8447", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8447", + "status": "exact_ids", + "ids": "⿱艹柔", + "canonical_ids": "⿱艹柔", + "expanded_ids": "⿱艹⿱矛木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "矛", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葈", + "codepoint": "U+8448", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8448", + "status": "exact_ids", + "ids": "⿱艹枲", + "canonical_ids": "⿱艹枲", + "expanded_ids": "⿱艹⿱厶⿱口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葉", + "codepoint": "U+8449", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8449", + "status": "exact_ids", + "ids": "⿱艹枼", + "canonical_ids": "⿱艹枼", + "expanded_ids": "⿱艹⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葊", + "codepoint": "U+844A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-844A", + "status": "exact_ids", + "ids": "⿱艹弇", + "canonical_ids": "⿱艹弇", + "expanded_ids": "⿱艹⿱⿱⿱人一口廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "廾", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葋", + "codepoint": "U+844B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-844B", + "status": "exact_ids", + "ids": "⿱艹朐", + "canonical_ids": "⿱艹朐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "艹" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葌", + "codepoint": "U+844C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-844C", + "status": "exact_ids", + "ids": "⿱艹姦", + "canonical_ids": "⿱艹姦", + "expanded_ids": "⿱艹⿱女⿰女女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葍", + "codepoint": "U+844D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-844D", + "status": "exact_ids", + "ids": "⿱艹畐", + "canonical_ids": "⿱艹畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葎", + "codepoint": "U+844E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-844E", + "status": "exact_ids", + "ids": "⿱艹律", + "canonical_ids": "⿱艹律", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "艹" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葏", + "codepoint": "U+844F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-844F", + "status": "exact_ids", + "ids": "⿱艹津", + "canonical_ids": "⿱艹津", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "艹" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葐", + "codepoint": "U+8450", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8450", + "status": "exact_ids", + "ids": "⿱艹盆", + "canonical_ids": "⿱艹盆", + "expanded_ids": "⿱艹⿱⿱八刀皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "皿", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葑", + "codepoint": "U+8451", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8451", + "status": "exact_ids", + "ids": "⿱艹封", + "canonical_ids": "⿱艹封", + "expanded_ids": "⿱艹⿰⿱土土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葒", + "codepoint": "U+8452", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8452", + "status": "exact_ids", + "ids": "⿱艹紅", + "canonical_ids": "⿱艹紅", + "expanded_ids": "⿱艹⿰⿻幺小工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "工", + "幺", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葓", + "codepoint": "U+8453", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8453", + "status": "exact_ids", + "ids": "⿱艹洪", + "canonical_ids": "⿱艹洪", + "expanded_ids": "⿱艹⿰氵⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葔", + "codepoint": "U+8454", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8454", + "status": "exact_ids", + "ids": "⿱艹侯", + "canonical_ids": "⿱艹侯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "侯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葕", + "codepoint": "U+8455", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8455", + "status": "exact_ids", + "ids": "⿱艹衍", + "canonical_ids": "⿱艹衍", + "expanded_ids": "⿱艹⿲彳氵彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葖", + "codepoint": "U+8456", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8456", + "status": "exact_ids", + "ids": "⿱艹突", + "canonical_ids": "⿱艹突", + "expanded_ids": "⿱艹⿱⿱宀八⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "八", + "大", + "宀", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "著", + "codepoint": "U+8457", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8457", + "status": "exact_ids", + "ids": "⿱艹者", + "canonical_ids": "⿱艹者", + "expanded_ids": "⿱艹⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葘", + "codepoint": "U+8458", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8458", + "status": "exact_ids", + "ids": "⿱艹甾", + "canonical_ids": "⿱艹甾", + "expanded_ids": "⿱艹⿱巛田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "菑" + ] + }, + { + "character": "葙", + "codepoint": "U+8459", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8459", + "status": "exact_ids", + "ids": "⿱艹相", + "canonical_ids": "⿱艹相", + "expanded_ids": "⿱艹⿰木目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葚", + "codepoint": "U+845A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-845A", + "status": "exact_ids", + "ids": "⿱艹甚", + "canonical_ids": "⿱艹甚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甘", + "艹" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葛", + "codepoint": "U+845B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-845B", + "status": "exact_ids", + "ids": "⿱艹曷", + "canonical_ids": "⿱艹曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "艹" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葜", + "codepoint": "U+845C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-845C", + "status": "exact_ids", + "ids": "⿱艹契", + "canonical_ids": "⿱艹契", + "expanded_ids": "⿱艹⿱⿰丰刀大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "大", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葝", + "codepoint": "U+845D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-845D", + "status": "exact_ids", + "ids": "⿱艹勁", + "canonical_ids": "⿱艹勁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "艹" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葞", + "codepoint": "U+845E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-845E", + "status": "exact_ids", + "ids": "⿱艹弭", + "canonical_ids": "⿱艹弭", + "expanded_ids": "⿱艹⿰弓耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "耳", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葟", + "codepoint": "U+845F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-845F", + "status": "exact_ids", + "ids": "⿱艹皇", + "canonical_ids": "⿱艹皇", + "expanded_ids": "⿱艹⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "王", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葠", + "codepoint": "U+8460", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8460", + "status": "exact_ids", + "ids": "⿱艹侵", + "canonical_ids": "⿱艹侵", + "expanded_ids": "⿱艹⿰亻⿳彐冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "冖", + "又", + "彐", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葡", + "codepoint": "U+8461", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8461", + "status": "exact_ids", + "ids": "⿱艹匍", + "canonical_ids": "⿱艹匍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "匍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葢", + "codepoint": "U+8462", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8462", + "status": "exact_ids", + "ids": "⿱艹盇", + "canonical_ids": "⿱艹盇", + "expanded_ids": "⿱艹⿱⿻大丶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "皿", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "董", + "codepoint": "U+8463", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8463", + "status": "exact_ids", + "ids": "⿱艹重", + "canonical_ids": "⿱艹重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "艹" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葤", + "codepoint": "U+8464", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8464", + "status": "exact_ids", + "ids": "⿱艹紂", + "canonical_ids": "⿱艹紂", + "expanded_ids": "⿱艹⿰⿻幺小寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "小", + "幺", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葥", + "codepoint": "U+8465", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8465", + "status": "exact_ids", + "ids": "⿱艹前", + "canonical_ids": "⿱艹前", + "expanded_ids": "⿱艹⿱止⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "月", + "止", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葦", + "codepoint": "U+8466", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8466", + "status": "exact_ids", + "ids": "⿱艹韋", + "canonical_ids": "⿱艹韋", + "expanded_ids": "⿱艹韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葧", + "codepoint": "U+8467", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8467", + "status": "exact_ids", + "ids": "⿱艹勃", + "canonical_ids": "⿱艹勃", + "expanded_ids": "⿱艹⿰⿳十冖子力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "十", + "子", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葨", + "codepoint": "U+8468", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8468", + "status": "exact_ids", + "ids": "⿱艹畏", + "canonical_ids": "⿱艹畏", + "expanded_ids": "⿱艹⿱田氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氏", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葩", + "codepoint": "U+8469", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8469", + "status": "exact_ids", + "ids": "⿱艹皅", + "canonical_ids": "⿱艹皅", + "expanded_ids": "⿱艹⿰⿻日丶巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "巴", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葪", + "codepoint": "U+846A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-846A", + "status": "exact_ids", + "ids": "⿱艹㓩", + "canonical_ids": "⿱艹㓩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "刂", + "月", + "艹" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葫", + "codepoint": "U+846B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-846B", + "status": "exact_ids", + "ids": "⿱艹胡", + "canonical_ids": "⿱艹胡", + "expanded_ids": "⿱艹⿰⿻十口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "月", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葬", + "codepoint": "U+846C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-846C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葭", + "codepoint": "U+846D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-846D", + "status": "exact_ids", + "ids": "⿱艹叚", + "canonical_ids": "⿱艹叚", + "expanded_ids": "⿱艹叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葮", + "codepoint": "U+846E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-846E", + "status": "exact_ids", + "ids": "⿱艹段", + "canonical_ids": "⿱艹段", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "段" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葯", + "codepoint": "U+846F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-846F", + "status": "exact_ids", + "ids": "⿱艹約", + "canonical_ids": "⿱艹約", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "艹" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葰", + "codepoint": "U+8470", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8470", + "status": "exact_ids", + "ids": "⿱艹俊", + "canonical_ids": "⿱艹俊", + "expanded_ids": "⿱艹⿰亻⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "儿", + "厶", + "夂", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葱", + "codepoint": "U+8471", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8471", + "status": "exact_ids", + "ids": "⿱艹怱", + "canonical_ids": "⿱艹怱", + "expanded_ids": "⿱艹⿱⿻勿丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "勿", + "心", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葲", + "codepoint": "U+8472", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8472", + "status": "exact_ids", + "ids": "⿱艹泉", + "canonical_ids": "⿱艹泉", + "expanded_ids": "⿱艹⿱⿻日丶水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "水", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葳", + "codepoint": "U+8473", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8473", + "status": "exact_ids", + "ids": "⿱艹威", + "canonical_ids": "⿱艹威", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "威" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葴", + "codepoint": "U+8474", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8474", + "status": "exact_ids", + "ids": "⿱艹咸", + "canonical_ids": "⿱艹咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葵", + "codepoint": "U+8475", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8475", + "status": "exact_ids", + "ids": "⿱艹癸", + "canonical_ids": "⿱艹癸", + "expanded_ids": "⿱艹⿱癶⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "癶", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葶", + "codepoint": "U+8476", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8476", + "status": "exact_ids", + "ids": "⿱艹亭", + "canonical_ids": "⿱艹亭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "亭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葷", + "codepoint": "U+8477", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8477", + "status": "exact_ids", + "ids": "⿳艹冖車", + "canonical_ids": "⿳艹冖車", + "expanded_ids": "⿳艹冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "艹", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 103, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葸", + "codepoint": "U+8478", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8478", + "status": "exact_ids", + "ids": "⿱艹思", + "canonical_ids": "⿱艹思", + "expanded_ids": "⿱艹⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葹", + "codepoint": "U+8479", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8479", + "status": "exact_ids", + "ids": "⿱艹施", + "canonical_ids": "⿱艹施", + "expanded_ids": "⿱艹⿰⿰方人⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "人", + "方", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葺", + "codepoint": "U+847A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-847A", + "status": "exact_ids", + "ids": "⿱艹咠", + "canonical_ids": "⿱艹咠", + "expanded_ids": "⿱艹⿱口耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "耳", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葻", + "codepoint": "U+847B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-847B", + "status": "exact_ids", + "ids": "⿱艹風", + "canonical_ids": "⿱艹風", + "expanded_ids": "⿱艹風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葼", + "codepoint": "U+847C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-847C", + "status": "exact_ids", + "ids": "⿱艹㚇", + "canonical_ids": "⿱艹㚇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "夊", + "艹" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葽", + "codepoint": "U+847D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-847D", + "status": "exact_ids", + "ids": "⿱艹要", + "canonical_ids": "⿱艹要", + "expanded_ids": "⿱艹⿱覀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "艹", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葾", + "codepoint": "U+847E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-847E", + "status": "exact_ids", + "ids": "⿱艹怨", + "canonical_ids": "⿱艹怨", + "expanded_ids": "⿱艹⿱⿰夕㔾心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "心", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "葿", + "codepoint": "U+847F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-847F", + "status": "exact_ids", + "ids": "⿱艹眉", + "canonical_ids": "⿱艹眉", + "expanded_ids": "⿱艹⿱⿻尸丨目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "尸", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒀", + "codepoint": "U+8480", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8480", + "status": "exact_ids", + "ids": "⿱艹昷", + "canonical_ids": "⿱艹昷", + "expanded_ids": "⿱艹⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "皿", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒁", + "codepoint": "U+8481", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8481", + "status": "exact_ids", + "ids": "⿱艹述", + "canonical_ids": "⿱艹述", + "expanded_ids": "⿱艹⿰辶⿻木丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "木", + "艹", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒂", + "codepoint": "U+8482", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8482", + "status": "exact_ids", + "ids": "⿱艹帝", + "canonical_ids": "⿱艹帝", + "expanded_ids": "⿱艹⿳⿱亠八冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒃", + "codepoint": "U+8483", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8483", + "status": "exact_ids", + "ids": "⿱艹彖", + "canonical_ids": "⿱艹彖", + "expanded_ids": "⿱艹⿱彑𧰨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "艹", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒄", + "codepoint": "U+8484", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8484", + "status": "exact_ids", + "ids": "⿱艹冠", + "canonical_ids": "⿱艹冠", + "expanded_ids": "⿱艹⿱冖⿰⿱一⿱一儿寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "冖", + "寸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒅", + "codepoint": "U+8485", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8485", + "status": "exact_ids", + "ids": "⿱艹染", + "canonical_ids": "⿱艹染", + "expanded_ids": "⿱艹⿱⿰氵九木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "木", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒆", + "codepoint": "U+8486", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8486", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒇", + "codepoint": "U+8487", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8487", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒈", + "codepoint": "U+8488", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8488", + "status": "exact_ids", + "ids": "⿱艹皆", + "canonical_ids": "⿱艹皆", + "expanded_ids": "⿱艹⿱⿰匕匕⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒉", + "codepoint": "U+8489", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8489", + "status": "exact_ids", + "ids": "⿱艹贵", + "canonical_ids": "⿱艹贵", + "expanded_ids": "⿱艹⿱⿱⿻口丨一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "人", + "冂", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒊", + "codepoint": "U+848A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-848A", + "status": "exact_ids", + "ids": "⿱花叱", + "canonical_ids": "⿱花叱", + "expanded_ids": "⿱⿱艹⿰亻匕⿰口七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "亻", + "匕", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒋", + "codepoint": "U+848B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-848B", + "status": "exact_ids", + "ids": "⿱艹将", + "canonical_ids": "⿱艹将", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "将" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒌", + "codepoint": "U+848C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-848C", + "status": "exact_ids", + "ids": "⿱艹娄", + "canonical_ids": "⿱艹娄", + "expanded_ids": "⿱艹⿱⿻木丷女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "女", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒍", + "codepoint": "U+848D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-848D", + "status": "exact_ids", + "ids": "⿱艹為", + "canonical_ids": "⿱艹為", + "expanded_ids": "⿱艹為", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "為", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒎", + "codepoint": "U+848E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-848E", + "status": "exact_ids", + "ids": "⿱艹派", + "canonical_ids": "⿱艹派", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "派" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒏", + "codepoint": "U+848F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-848F", + "status": "exact_ids", + "ids": "⿳艹冖酉", + "canonical_ids": "⿳艹冖酉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "艹" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒐", + "codepoint": "U+8490", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8490", + "status": "exact_ids", + "ids": "⿱艹鬼", + "canonical_ids": "⿱艹鬼", + "expanded_ids": "⿱艹鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒑", + "codepoint": "U+8491", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8491", + "status": "exact_ids", + "ids": "⿱艹殷", + "canonical_ids": "⿱艹殷", + "expanded_ids": "⿱艹⿰㐆⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㐆", + "几", + "又", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒒", + "codepoint": "U+8492", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8492", + "status": "exact_ids", + "ids": "⿱艹師", + "canonical_ids": "⿱艹師", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "師" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒓", + "codepoint": "U+8493", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8493", + "status": "exact_ids", + "ids": "⿱艹純", + "canonical_ids": "⿱艹純", + "expanded_ids": "⿱艹⿰⿻幺小屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "屯", + "幺", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒔", + "codepoint": "U+8494", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8494", + "status": "exact_ids", + "ids": "⿱艹時", + "canonical_ids": "⿱艹時", + "expanded_ids": "⿱艹⿰日⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒕", + "codepoint": "U+8495", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8495", + "status": "exact_ids", + "ids": "⿱艹𥁕", + "canonical_ids": "⿱艹𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "艹" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒖", + "codepoint": "U+8496", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8496", + "status": "exact_ids", + "ids": "⿱艹真", + "canonical_ids": "⿱艹真", + "expanded_ids": "⿱艹⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒗", + "codepoint": "U+8497", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8497", + "status": "exact_ids", + "ids": "⿱艹浪", + "canonical_ids": "⿱艹浪", + "expanded_ids": "⿱艹⿰氵⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氵", + "艮", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒘", + "codepoint": "U+8498", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8498", + "status": "exact_ids", + "ids": "⿱艹挐", + "canonical_ids": "⿱艹挐", + "expanded_ids": "⿱艹⿱⿰女口手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "手", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒙", + "codepoint": "U+8499", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8499", + "status": "exact_ids", + "ids": "⿱艹冡", + "canonical_ids": "⿱艹冡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒚", + "codepoint": "U+849A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-849A", + "status": "exact_ids", + "ids": "⿱艹鬲", + "canonical_ids": "⿱艹鬲", + "expanded_ids": "⿱艹鬲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒛", + "codepoint": "U+849B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-849B", + "status": "exact_ids", + "ids": "⿱艹缺", + "canonical_ids": "⿱艹缺", + "expanded_ids": "⿱艹⿰缶⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "大", + "缶", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒜", + "codepoint": "U+849C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-849C", + "status": "exact_ids", + "ids": "⿱艹祘", + "canonical_ids": "⿱艹祘", + "expanded_ids": "⿱艹⿰⿱二小⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒝", + "codepoint": "U+849D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-849D", + "status": "exact_ids", + "ids": "⿱艹原", + "canonical_ids": "⿱艹原", + "expanded_ids": "⿱艹⿱厂⿱⿻日丶小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "小", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒞", + "codepoint": "U+849E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-849E", + "status": "exact_ids", + "ids": "⿱艹涖", + "canonical_ids": "⿱艹涖", + "expanded_ids": "⿱艹⿰氵⿰亻立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "氵", + "立", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒟", + "codepoint": "U+849F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-849F", + "status": "exact_ids", + "ids": "⿱艹竘", + "canonical_ids": "⿱艹竘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立", + "艹" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒠", + "codepoint": "U+84A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84A0", + "status": "exact_ids", + "ids": "⿱艹息", + "canonical_ids": "⿱艹息", + "expanded_ids": "⿱艹⿱⿻目丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "心", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒡", + "codepoint": "U+84A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84A1", + "status": "exact_ids", + "ids": "⿱艹旁", + "canonical_ids": "⿱艹旁", + "expanded_ids": "⿱艹⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "方", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒢", + "codepoint": "U+84A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84A2", + "status": "exact_ids", + "ids": "⿱艹除", + "canonical_ids": "⿱艹除", + "expanded_ids": "⿱艹⿰阝⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "艹", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒣", + "codepoint": "U+84A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84A3", + "status": "exact_ids", + "ids": "⿱艹徐", + "canonical_ids": "⿱艹徐", + "expanded_ids": "⿱艹⿰彳⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "彳", + "朩", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒤", + "codepoint": "U+84A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84A4", + "status": "exact_ids", + "ids": "⿱艹涂", + "canonical_ids": "⿱艹涂", + "expanded_ids": "⿱艹⿰氵⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒥", + "codepoint": "U+84A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84A5", + "status": "exact_ids", + "ids": "⿱艹留", + "canonical_ids": "⿱艹留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒦", + "codepoint": "U+84A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84A6", + "status": "exact_ids", + "ids": "⿱艹隻", + "canonical_ids": "⿱艹隻", + "expanded_ids": "⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒧", + "codepoint": "U+84A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84A7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒨", + "codepoint": "U+84A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84A8", + "status": "exact_ids", + "ids": "⿱艹倩", + "canonical_ids": "⿱艹倩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "艹" + ], + "unresolved_leaves": [ + "円", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒩", + "codepoint": "U+84A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84A9", + "status": "exact_ids", + "ids": "⿱艹租", + "canonical_ids": "⿱艹租", + "expanded_ids": "⿱艹⿰⿻丿木且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "丿", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒪", + "codepoint": "U+84AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84AA", + "status": "exact_ids", + "ids": "⿱艹尃", + "canonical_ids": "⿱艹尃", + "expanded_ids": "⿱艹⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "甫", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒫", + "codepoint": "U+84AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84AB", + "status": "exact_ids", + "ids": "⿱艹差", + "canonical_ids": "⿱艹差", + "expanded_ids": "⿱艹⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "羊", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒬", + "codepoint": "U+84AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84AC", + "status": "exact_ids", + "ids": "⿳艹冖兔", + "canonical_ids": "⿳艹冖兔", + "expanded_ids": "⿳艹冖⿻免丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "免", + "冖", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒭", + "codepoint": "U+84AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84AD", + "status": "exact_ids", + "ids": "⿱艹芻", + "canonical_ids": "⿱艹芻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "芻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒮", + "codepoint": "U+84AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84AE", + "status": "exact_ids", + "ids": "⿱艹隺", + "canonical_ids": "⿱艹隺", + "expanded_ids": "⿱艹⿻冖隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒯", + "codepoint": "U+84AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84AF", + "status": "exact_ids", + "ids": "⿰萠刂", + "canonical_ids": "⿰萠刂", + "expanded_ids": "⿰⿱艹⿰月月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "月", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒰", + "codepoint": "U+84B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84B0", + "status": "exact_ids", + "ids": "⿱艹般", + "canonical_ids": "⿱艹般", + "expanded_ids": "⿱艹⿰舟⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "舟", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒱", + "codepoint": "U+84B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84B1", + "status": "exact_ids", + "ids": "⿱艹捕", + "canonical_ids": "⿱艹捕", + "expanded_ids": "⿱艹⿰扌甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "甫", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒲", + "codepoint": "U+84B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84B2", + "status": "exact_ids", + "ids": "⿱艹浦", + "canonical_ids": "⿱艹浦", + "expanded_ids": "⿱艹⿰氵甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "甫", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒳", + "codepoint": "U+84B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84B3", + "status": "exact_ids", + "ids": "⿱艹納", + "canonical_ids": "⿱艹納", + "expanded_ids": "⿱艹⿰⿻幺小⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "小", + "幺", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒴", + "codepoint": "U+84B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84B4", + "status": "exact_ids", + "ids": "⿱艹朔", + "canonical_ids": "⿱艹朔", + "expanded_ids": "⿱艹⿰⿱䒑屮月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "屮", + "月", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒵", + "codepoint": "U+84B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84B5", + "status": "exact_ids", + "ids": "⿱艹奚", + "canonical_ids": "⿱艹奚", + "expanded_ids": "⿱艹⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "幺", + "爪", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒶", + "codepoint": "U+84B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84B6", + "status": "exact_ids", + "ids": "⿱艹紛", + "canonical_ids": "⿱艹紛", + "expanded_ids": "⿱艹⿰⿻幺小⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "小", + "幺", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒷", + "codepoint": "U+84B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84B7", + "status": "exact_ids", + "ids": "⿱艹員", + "canonical_ids": "⿱艹員", + "expanded_ids": "⿱艹⿱口⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒸", + "codepoint": "U+84B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84B8", + "status": "exact_ids", + "ids": "⿱艹烝", + "canonical_ids": "⿱艹烝", + "expanded_ids": "⿱艹⿱⿱⿱乛水一灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乛", + "水", + "灬", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒹", + "codepoint": "U+84B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84B9", + "status": "exact_ids", + "ids": "⿱艹兼", + "canonical_ids": "⿱艹兼", + "expanded_ids": "⿱艹兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒺", + "codepoint": "U+84BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84BA", + "status": "exact_ids", + "ids": "⿱艹疾", + "canonical_ids": "⿱艹疾", + "expanded_ids": "⿱艹⿱⿰冫广⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "冫", + "大", + "广", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒻", + "codepoint": "U+84BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84BB", + "status": "exact_ids", + "ids": "⿱艹弱", + "canonical_ids": "⿱艹弱", + "expanded_ids": "⿱艹⿰⿱弓二⿱弓二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "弓", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒼", + "codepoint": "U+84BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84BC", + "status": "exact_ids", + "ids": "⿱艹倉", + "canonical_ids": "⿱艹倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒽", + "codepoint": "U+84BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84BD", + "status": "exact_ids", + "ids": "⿱艹恩", + "canonical_ids": "⿱艹恩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "艹" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒾", + "codepoint": "U+84BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84BE", + "status": "exact_ids", + "ids": "⿱艹迷", + "canonical_ids": "⿱艹迷", + "expanded_ids": "⿱艹⿰辶⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "艹", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蒿", + "codepoint": "U+84BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84BF", + "status": "exact_ids", + "ids": "⿱艹高", + "canonical_ids": "⿱艹高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓀", + "codepoint": "U+84C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84C0", + "status": "exact_ids", + "ids": "⿱艹孫", + "canonical_ids": "⿱艹孫", + "expanded_ids": "⿱艹⿰子⿱丿⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "子", + "小", + "幺", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓁", + "codepoint": "U+84C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84C1", + "status": "exact_ids", + "ids": "⿱艹秦", + "canonical_ids": "⿱艹秦", + "expanded_ids": "⿱艹⿱𡗗⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "艹", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 154, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓂", + "codepoint": "U+84C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84C2", + "status": "exact_ids", + "ids": "⿱艹冥", + "canonical_ids": "⿱艹冥", + "expanded_ids": "⿱艹⿱冖⿱日⿱亠八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓃", + "codepoint": "U+84C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84C3", + "status": "exact_ids", + "ids": "⿱艹叟", + "canonical_ids": "⿱艹叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "艹" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓄", + "codepoint": "U+84C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84C4", + "status": "exact_ids", + "ids": "⿱艹畜", + "canonical_ids": "⿱艹畜", + "expanded_ids": "⿱艹⿱⿱亠幺田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓅", + "codepoint": "U+84C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84C5", + "status": "exact_ids", + "ids": "⿱艹流", + "canonical_ids": "⿱艹流", + "expanded_ids": "⿱艹⿰氵⿱亠⿱厶川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "厶", + "川", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓆", + "codepoint": "U+84C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84C6", + "status": "exact_ids", + "ids": "⿱艹席", + "canonical_ids": "⿱艹席", + "expanded_ids": "⿱艹⿱广⿱艹⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "广", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓇", + "codepoint": "U+84C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84C7", + "status": "exact_ids", + "ids": "⿱艹骨", + "canonical_ids": "⿱艹骨", + "expanded_ids": "⿱艹⿱冎月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓈", + "codepoint": "U+84C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84C8", + "status": "exact_ids", + "ids": "⿱艹郎", + "canonical_ids": "⿱艹郎", + "expanded_ids": "⿱艹⿰⿻丶艮阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "艮", + "艹", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓉", + "codepoint": "U+84C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84C9", + "status": "exact_ids", + "ids": "⿱艹容", + "canonical_ids": "⿱艹容", + "expanded_ids": "⿱艹⿱宀⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓊", + "codepoint": "U+84CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84CA", + "status": "exact_ids", + "ids": "⿱艹翁", + "canonical_ids": "⿱艹翁", + "expanded_ids": "⿱艹⿱⿱八厶⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "八", + "厶", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓋", + "codepoint": "U+84CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84CB", + "status": "exact_ids", + "ids": "⿱艹盍", + "canonical_ids": "⿱艹盍", + "expanded_ids": "⿱艹⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "皿", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓌", + "codepoint": "U+84CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84CC", + "status": "exact_ids", + "ids": "⿱艹夎", + "canonical_ids": "⿱艹夎", + "expanded_ids": "⿱艹⿱⿱⿰人人土夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "土", + "夂", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓍", + "codepoint": "U+84CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84CD", + "status": "exact_ids", + "ids": "⿱艹耆", + "canonical_ids": "⿱艹耆", + "expanded_ids": "⿱艹⿱⿱⿻土丿匕日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓎", + "codepoint": "U+84CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84CE", + "status": "exact_ids", + "ids": "⿱艹唐", + "canonical_ids": "⿱艹唐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓏", + "codepoint": "U+84CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84CF", + "status": "exact_ids", + "ids": "⿱艹㼌", + "canonical_ids": "⿱艹㼌", + "expanded_ids": "⿱艹⿰瓜瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓜", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓐", + "codepoint": "U+84D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84D0", + "status": "exact_ids", + "ids": "⿱艹辱", + "canonical_ids": "⿱艹辱", + "expanded_ids": "⿱艹⿱辰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "艹", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓑", + "codepoint": "U+84D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84D1", + "status": "exact_ids", + "ids": "⿱艹衰", + "canonical_ids": "⿱艹衰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "衰" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓒", + "codepoint": "U+84D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84D2", + "status": "exact_ids", + "ids": "⿱艹軒", + "canonical_ids": "⿱艹軒", + "expanded_ids": "⿱艹⿰車⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "艹", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓓", + "codepoint": "U+84D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84D3", + "status": "exact_ids", + "ids": "⿱艹倍", + "canonical_ids": "⿱艹倍", + "expanded_ids": "⿱艹⿰亻⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "立", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓔", + "codepoint": "U+84D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84D4", + "status": "exact_ids", + "ids": "⿱艹羔", + "canonical_ids": "⿱艹羔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "羔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓕", + "codepoint": "U+84D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84D5", + "status": "exact_ids", + "ids": "⿱艹桂", + "canonical_ids": "⿱艹桂", + "expanded_ids": "⿱艹⿰木⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓖", + "codepoint": "U+84D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84D6", + "status": "exact_ids", + "ids": "⿱艹𣬉", + "canonical_ids": "⿱艹𣬉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "艹" + ], + "unresolved_leaves": [ + "囟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓗", + "codepoint": "U+84D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84D7", + "status": "exact_ids", + "ids": "⿱艹徒", + "canonical_ids": "⿱艹徒", + "expanded_ids": "⿱艹⿰彳⿱土龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "彳", + "艹", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓘", + "codepoint": "U+84D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84D8", + "status": "exact_ids", + "ids": "⿱艹衮", + "canonical_ids": "⿱艹衮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "衮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓙", + "codepoint": "U+84D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84D9", + "status": "exact_ids", + "ids": "⿱艹座", + "canonical_ids": "⿱艹座", + "expanded_ids": "⿱艹⿱广⿱⿰人人土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "土", + "广", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓚", + "codepoint": "U+84DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84DA", + "status": "exact_ids", + "ids": "⿱艹修", + "canonical_ids": "⿱艹修", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "修" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓛", + "codepoint": "U+84DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84DB", + "status": "exact_ids", + "ids": "⿱艹敇", + "canonical_ids": "⿱艹敇", + "expanded_ids": "⿱艹⿰⿻木冂攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "攵", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓜", + "codepoint": "U+84DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84DC", + "status": "exact_ids", + "ids": "⿱艹配", + "canonical_ids": "⿱艹配", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "艹" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓝", + "codepoint": "U+84DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84DD", + "status": "exact_ids", + "ids": "⿱艹监", + "canonical_ids": "⿱艹监", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "监" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓞", + "codepoint": "U+84DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84DE", + "status": "exact_ids", + "ids": "⿱艹舀", + "canonical_ids": "⿱艹舀", + "expanded_ids": "⿱艹⿱爫臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爫", + "臼", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓟", + "codepoint": "U+84DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84DF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓠", + "codepoint": "U+84E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84E0", + "status": "exact_ids", + "ids": "⿱艹离", + "canonical_ids": "⿱艹离", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "禸", + "艹" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓡", + "codepoint": "U+84E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84E1", + "status": "exact_ids", + "ids": "⿱艹浸", + "canonical_ids": "⿱艹浸", + "expanded_ids": "⿱艹⿰氵⿳彐冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "又", + "彐", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓢", + "codepoint": "U+84E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84E2", + "status": "exact_ids", + "ids": "⿱艹朗", + "canonical_ids": "⿱艹朗", + "expanded_ids": "⿱艹⿰⿻丶艮月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "月", + "艮", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓣", + "codepoint": "U+84E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84E3", + "status": "exact_ids", + "ids": "⿱艹预", + "canonical_ids": "⿱艹预", + "expanded_ids": "⿱艹⿰⿱龴⿱一亅⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亅", + "人", + "冂", + "艹", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 302, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓤", + "codepoint": "U+84E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84E4", + "status": "exact_ids", + "ids": "⿱艹凌", + "canonical_ids": "⿱艹凌", + "expanded_ids": "⿱艹⿰冫⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冫", + "土", + "夂", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓥", + "codepoint": "U+84E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84E5", + "status": "exact_ids", + "ids": "⿳艹冖金", + "canonical_ids": "⿳艹冖金", + "expanded_ids": "⿳艹冖金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "艹", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 103, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓦", + "codepoint": "U+84E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84E6", + "status": "exact_ids", + "ids": "⿱莫马", + "canonical_ids": "⿱莫马", + "expanded_ids": "⿱⿱艹⿱日大马", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "艹", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓧", + "codepoint": "U+84E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84E7", + "status": "exact_ids", + "ids": "⿱艹條", + "canonical_ids": "⿱艹條", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "條" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓨", + "codepoint": "U+84E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84E8", + "status": "exact_ids", + "ids": "⿱艹脩", + "canonical_ids": "⿱艹脩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "脩" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓩", + "codepoint": "U+84E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84E9", + "status": "exact_ids", + "ids": "⿱艹務", + "canonical_ids": "⿱艹務", + "expanded_ids": "⿱艹⿰矛⿱夂力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "夂", + "矛", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓪", + "codepoint": "U+84EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84EA", + "status": "exact_ids", + "ids": "⿱艹通", + "canonical_ids": "⿱艹通", + "expanded_ids": "⿱艹⿰辶⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "艹", + "辶", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓫", + "codepoint": "U+84EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84EB", + "status": "exact_ids", + "ids": "⿱艹逐", + "canonical_ids": "⿱艹逐", + "expanded_ids": "⿱艹⿰辶豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "豕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓬", + "codepoint": "U+84EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84EC", + "status": "exact_ids", + "ids": "⿱艹逢", + "canonical_ids": "⿱艹逢", + "expanded_ids": "⿱艹⿰辶⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "艹", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓭", + "codepoint": "U+84ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84ED", + "status": "exact_ids", + "ids": "⿱艹庵", + "canonical_ids": "⿱艹庵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "广", + "艹" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓮", + "codepoint": "U+84EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84EE", + "status": "exact_ids", + "ids": "⿱艹連", + "canonical_ids": "⿱艹連", + "expanded_ids": "⿱艹⿰辶車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "車", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓯", + "codepoint": "U+84EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84EF", + "status": "exact_ids", + "ids": "⿱艹從", + "canonical_ids": "⿱艹從", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "從" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓰", + "codepoint": "U+84F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84F0", + "status": "exact_ids", + "ids": "⿱艹徙", + "canonical_ids": "⿱艹徙", + "expanded_ids": "⿱艹⿰彳⿱止止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "止", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓱", + "codepoint": "U+84F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84F1", + "status": "exact_ids", + "ids": "⿱艹洴", + "canonical_ids": "⿱艹洴", + "expanded_ids": "⿱艹⿰氵⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓲", + "codepoint": "U+84F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84F2", + "status": "exact_ids", + "ids": "⿱艹區", + "canonical_ids": "⿱艹區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓳", + "codepoint": "U+84F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84F3", + "status": "exact_ids", + "ids": "⿱艹堇", + "canonical_ids": "⿱艹堇", + "expanded_ids": "⿱艹堇", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓴", + "codepoint": "U+84F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84F4", + "status": "exact_ids", + "ids": "⿱艹專", + "canonical_ids": "⿱艹專", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "寸", + "艹" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓵", + "codepoint": "U+84F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84F5", + "status": "exact_ids", + "ids": "⿱艹捷", + "canonical_ids": "⿱艹捷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "艹" + ], + "unresolved_leaves": [ + "疌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓶", + "codepoint": "U+84F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84F6", + "status": "exact_ids", + "ids": "⿱艹唯", + "canonical_ids": "⿱艹唯", + "expanded_ids": "⿱艹⿰口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓷", + "codepoint": "U+84F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84F7", + "status": "exact_ids", + "ids": "⿱艹推", + "canonical_ids": "⿱艹推", + "expanded_ids": "⿱艹⿰扌隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓸", + "codepoint": "U+84F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84F8", + "status": "exact_ids", + "ids": "⿱艹曹", + "canonical_ids": "⿱艹曹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "曹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓹", + "codepoint": "U+84F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84F9", + "status": "exact_ids", + "ids": "⿱艹御", + "canonical_ids": "⿱艹御", + "expanded_ids": "⿱艹⿰彳⿰𦈢卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "彳", + "艹", + "𦈢" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 154, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓺", + "codepoint": "U+84FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84FA", + "status": "exact_ids", + "ids": "⿱艹埶", + "canonical_ids": "⿱艹埶", + "expanded_ids": "⿱艹⿰⿱⿱土儿土⿻九丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "儿", + "土", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓻", + "codepoint": "U+84FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84FB", + "status": "exact_ids", + "ids": "⿱艹執", + "canonical_ids": "⿱艹執", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "土", + "艹" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓼", + "codepoint": "U+84FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84FC", + "status": "exact_ids", + "ids": "⿱艹翏", + "canonical_ids": "⿱艹翏", + "expanded_ids": "⿱艹⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓽", + "codepoint": "U+84FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84FD", + "status": "exact_ids", + "ids": "⿱艹畢", + "canonical_ids": "⿱艹畢", + "expanded_ids": "⿱艹畢", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "畢", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓾", + "codepoint": "U+84FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84FE", + "status": "exact_ids", + "ids": "⿱艹鹵", + "canonical_ids": "⿱艹鹵", + "expanded_ids": "⿱艹鹵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "鹵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蓿", + "codepoint": "U+84FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-84FF", + "status": "exact_ids", + "ids": "⿱艹宿", + "canonical_ids": "⿱艹宿", + "expanded_ids": "⿱艹⿱宀⿰亻⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "亻", + "宀", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔀", + "codepoint": "U+8500", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8500", + "status": "exact_ids", + "ids": "⿱艹部", + "canonical_ids": "⿱艹部", + "expanded_ids": "⿱艹⿰⿱立口阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "立", + "艹", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔁", + "codepoint": "U+8501", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8501", + "status": "exact_ids", + "ids": "⿱艹章", + "canonical_ids": "⿱艹章", + "expanded_ids": "⿱艹⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "立", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔂", + "codepoint": "U+8502", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8502", + "status": "exact_ids", + "ids": "⿱艹累", + "canonical_ids": "⿱艹累", + "expanded_ids": "⿱艹⿱田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔃", + "codepoint": "U+8503", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8503", + "status": "exact_ids", + "ids": "⿱艹强", + "canonical_ids": "⿱艹强", + "expanded_ids": "⿱艹⿰弓⿱口虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "弓", + "艹", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔄", + "codepoint": "U+8504", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8504", + "status": "exact_ids", + "ids": "⿱艹問", + "canonical_ids": "⿱艹問", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "問" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔅", + "codepoint": "U+8505", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8505", + "status": "exact_ids", + "ids": "⿱艹𨳐", + "canonical_ids": "⿱艹𨳐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "𨳐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔆", + "codepoint": "U+8506", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8506", + "status": "exact_ids", + "ids": "⿱艹淩", + "canonical_ids": "⿱艹淩", + "expanded_ids": "⿱艹⿰氵⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔇", + "codepoint": "U+8507", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8507", + "status": "exact_ids", + "ids": "⿱艹既", + "canonical_ids": "⿱艹既", + "expanded_ids": "⿱艹⿰艮旡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "旡", + "艮", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔈", + "codepoint": "U+8508", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8508", + "status": "exact_ids", + "ids": "⿱艹票", + "canonical_ids": "⿱艹票", + "expanded_ids": "⿱艹⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "艹", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔉", + "codepoint": "U+8509", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8509", + "status": "exact_ids", + "ids": "⿱艹袞", + "canonical_ids": "⿱艹袞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "袞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔊", + "codepoint": "U+850A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-850A", + "status": "exact_ids", + "ids": "⿱艹焊", + "canonical_ids": "⿱艹焊", + "expanded_ids": "⿱艹⿰火⿱日⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "日", + "火", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔋", + "codepoint": "U+850B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-850B", + "status": "exact_ids", + "ids": "⿱艹淑", + "canonical_ids": "⿱艹淑", + "expanded_ids": "⿱艹⿰氵⿰⿱上小又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "又", + "小", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔌", + "codepoint": "U+850C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-850C", + "status": "exact_ids", + "ids": "⿱艹欶", + "canonical_ids": "⿱艹欶", + "expanded_ids": "⿱艹⿰⿻木口欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "欠", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔍", + "codepoint": "U+850D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-850D", + "status": "exact_ids", + "ids": "⿱艹鹿", + "canonical_ids": "⿱艹鹿", + "expanded_ids": "⿱艹鹿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔎", + "codepoint": "U+850E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-850E", + "status": "exact_ids", + "ids": "⿱艹設", + "canonical_ids": "⿱艹設", + "expanded_ids": "⿱艹⿰言⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "艹", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔏", + "codepoint": "U+850F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-850F", + "status": "exact_ids", + "ids": "⿱艹商", + "canonical_ids": "⿱艹商", + "expanded_ids": "⿱艹⿱⿱亠八⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冂", + "口", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔐", + "codepoint": "U+8510", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8510", + "status": "exact_ids", + "ids": "⿱艹啇", + "canonical_ids": "⿱艹啇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔑", + "codepoint": "U+8511", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8511", + "status": "exact_ids", + "ids": "⿱艹𥅛", + "canonical_ids": "⿱艹𥅛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "艹" + ], + "unresolved_leaves": [ + "戌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔒", + "codepoint": "U+8512", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8512", + "status": "exact_ids", + "ids": "⿱艹焄", + "canonical_ids": "⿱艹焄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "灬", + "艹" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔓", + "codepoint": "U+8513", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8513", + "status": "exact_ids", + "ids": "⿱艹曼", + "canonical_ids": "⿱艹曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔔", + "codepoint": "U+8514", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8514", + "status": "exact_ids", + "ids": "⿱艹匐", + "canonical_ids": "⿱艹匐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "匐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔕", + "codepoint": "U+8515", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8515", + "status": "exact_ids", + "ids": "⿱艹帶", + "canonical_ids": "⿱艹帶", + "expanded_ids": "⿱艹⿳卌冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "卌", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔖", + "codepoint": "U+8516", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8516", + "status": "exact_ids", + "ids": "⿱艹虘", + "canonical_ids": "⿱艹虘", + "expanded_ids": "⿱艹⿱虍且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "艹", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔗", + "codepoint": "U+8517", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8517", + "status": "exact_ids", + "ids": "⿱艹庶", + "canonical_ids": "⿱艹庶", + "expanded_ids": "⿱艹⿱广⿱廿火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "廿", + "火", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔘", + "codepoint": "U+8518", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8518", + "status": "exact_ids", + "ids": "⿱艹參", + "canonical_ids": "⿱艹參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔙", + "codepoint": "U+8519", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8519", + "status": "exact_ids", + "ids": "⿱艹旋", + "canonical_ids": "⿱艹旋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "旋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔚", + "codepoint": "U+851A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-851A", + "status": "exact_ids", + "ids": "⿱艹尉", + "canonical_ids": "⿱艹尉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "尉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔛", + "codepoint": "U+851B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-851B", + "status": "exact_ids", + "ids": "⿱艹斛", + "canonical_ids": "⿱艹斛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "斗", + "月", + "艹" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔜", + "codepoint": "U+851C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-851C", + "status": "exact_ids", + "ids": "⿱艹敖", + "canonical_ids": "⿱艹敖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔝", + "codepoint": "U+851D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-851D", + "status": "exact_ids", + "ids": "⿱艹眯", + "canonical_ids": "⿱艹眯", + "expanded_ids": "⿱艹⿰目⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔞", + "codepoint": "U+851E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-851E", + "status": "exact_ids", + "ids": "⿱艹婁", + "canonical_ids": "⿱艹婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔟", + "codepoint": "U+851F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-851F", + "status": "exact_ids", + "ids": "⿱艹族", + "canonical_ids": "⿱艹族", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "族" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔠", + "codepoint": "U+8520", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8520", + "status": "exact_ids", + "ids": "⿱艹終", + "canonical_ids": "⿱艹終", + "expanded_ids": "⿱艹⿰⿻幺小⿱夂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "夂", + "小", + "幺", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔡", + "codepoint": "U+8521", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8521", + "status": "exact_ids", + "ids": "⿱艹祭", + "canonical_ids": "⿱艹祭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔢", + "codepoint": "U+8522", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8522", + "status": "exact_ids", + "ids": "⿱艹婆", + "canonical_ids": "⿱艹婆", + "expanded_ids": "⿱艹⿱⿰氵皮女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "氵", + "皮", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔣", + "codepoint": "U+8523", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8523", + "status": "exact_ids", + "ids": "⿱艹將", + "canonical_ids": "⿱艹將", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "將" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔤", + "codepoint": "U+8524", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8524", + "status": "exact_ids", + "ids": "⿱艹密", + "canonical_ids": "⿱艹密", + "expanded_ids": "⿱艹⿱⿱宀⿻心丿山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "宀", + "山", + "心", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔥", + "codepoint": "U+8525", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8525", + "status": "exact_ids", + "ids": "⿱艹悤", + "canonical_ids": "⿱艹悤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "艹" + ], + "unresolved_leaves": [ + "囱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔦", + "codepoint": "U+8526", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8526", + "status": "exact_ids", + "ids": "⿱艹鳥", + "canonical_ids": "⿱艹鳥", + "expanded_ids": "⿱艹鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔧", + "codepoint": "U+8527", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8527", + "status": "exact_ids", + "ids": "⿱艹彗", + "canonical_ids": "⿱艹彗", + "expanded_ids": "⿱艹⿱⿰丰丰彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "彐", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔨", + "codepoint": "U+8528", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8528", + "status": "exact_ids", + "ids": "⿱艹圈", + "canonical_ids": "⿱艹圈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "圈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔩", + "codepoint": "U+8529", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8529", + "status": "exact_ids", + "ids": "⿱艹寅", + "canonical_ids": "⿱艹寅", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "寅" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔪", + "codepoint": "U+852A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-852A", + "status": "exact_ids", + "ids": "⿱艹斬", + "canonical_ids": "⿱艹斬", + "expanded_ids": "⿱艹⿰車斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "艹", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔫", + "codepoint": "U+852B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-852B", + "status": "exact_ids", + "ids": "⿱艹焉", + "canonical_ids": "⿱艹焉", + "expanded_ids": "⿱艹⿱⿱一止⿱⿱卜乙灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乙", + "卜", + "止", + "灬", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔬", + "codepoint": "U+852C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-852C", + "status": "exact_ids", + "ids": "⿱艹疏", + "canonical_ids": "⿱艹疏", + "expanded_ids": "⿱艹⿰疋⿱亠⿱厶川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "厶", + "川", + "疋", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔭", + "codepoint": "U+852D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-852D", + "status": "exact_ids", + "ids": "⿱艹陰", + "canonical_ids": "⿱艹陰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "二", + "人", + "厶", + "艹", + "阝" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔮", + "codepoint": "U+852E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-852E", + "status": "exact_ids", + "ids": "⿱艹國", + "canonical_ids": "⿱艹國", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "國" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔯", + "codepoint": "U+852F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-852F", + "status": "exact_ids", + "ids": "⿱艹陳", + "canonical_ids": "⿱艹陳", + "expanded_ids": "⿱艹⿰阝⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "艹", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔰", + "codepoint": "U+8530", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8530", + "status": "exact_ids", + "ids": "⿱艹扈", + "canonical_ids": "⿱艹扈", + "expanded_ids": "⿱艹⿱⿻一尸⿱口巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "尸", + "巴", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔱", + "codepoint": "U+8531", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8531", + "status": "exact_ids", + "ids": "⿱艹殺", + "canonical_ids": "⿱艹殺", + "expanded_ids": "⿱艹⿰⿱乂朩⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "几", + "又", + "朩", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔲", + "codepoint": "U+8532", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8532", + "status": "exact_ids", + "ids": "⿱艹宼", + "canonical_ids": "⿱艹宼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "宼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔳", + "codepoint": "U+8533", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8533", + "status": "exact_ids", + "ids": "⿱艹清", + "canonical_ids": "⿱艹清", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "氵", + "艹" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔴", + "codepoint": "U+8534", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8534", + "status": "exact_ids", + "ids": "⿱艹麻", + "canonical_ids": "⿱艹麻", + "expanded_ids": "⿱艹⿱广⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔵", + "codepoint": "U+8535", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8535", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔶", + "codepoint": "U+8536", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8536", + "status": "exact_ids", + "ids": "⿱艹責", + "canonical_ids": "⿱艹責", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "艹" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔷", + "codepoint": "U+8537", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8537", + "status": "exact_ids", + "ids": "⿱艹啬", + "canonical_ids": "⿱艹啬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "啬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔸", + "codepoint": "U+8538", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8538", + "status": "exact_ids", + "ids": "⿱艹兜", + "canonical_ids": "⿱艹兜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "兜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔹", + "codepoint": "U+8539", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8539", + "status": "exact_ids", + "ids": "⿱艹敛", + "canonical_ids": "⿱艹敛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "艹" + ], + "unresolved_leaves": [ + "佥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔺", + "codepoint": "U+853A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-853A", + "status": "exact_ids", + "ids": "⿱艹閵", + "canonical_ids": "⿱艹閵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "閵" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔻", + "codepoint": "U+853B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-853B", + "status": "exact_ids", + "ids": "⿱艹寇", + "canonical_ids": "⿱艹寇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "寇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔼", + "codepoint": "U+853C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-853C", + "status": "exact_ids", + "ids": "⿱艹谒", + "canonical_ids": "⿱艹谒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "艹", + "讠" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔽", + "codepoint": "U+853D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-853D", + "status": "exact_ids", + "ids": "⿱艹敝", + "canonical_ids": "⿱艹敝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "艹" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔾", + "codepoint": "U+853E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-853E", + "status": "exact_ids", + "ids": "⿱艹棃", + "canonical_ids": "⿱艹棃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "棃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蔿", + "codepoint": "U+853F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-853F", + "status": "exact_ids", + "ids": "⿱艹爲", + "canonical_ids": "⿱艹爲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "爲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕀", + "codepoint": "U+8540", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8540", + "status": "exact_ids", + "ids": "⿱艹棘", + "canonical_ids": "⿱艹棘", + "expanded_ids": "⿱艹⿰⿻木冂⿻木冂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕁", + "codepoint": "U+8541", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8541", + "status": "exact_ids", + "ids": "⿱艹尋", + "canonical_ids": "⿱艹尋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "尋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕂", + "codepoint": "U+8542", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8542", + "status": "exact_ids", + "ids": "⿱艹勝", + "canonical_ids": "⿱艹勝", + "expanded_ids": "⿱艹⿰月⿱龹力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "月", + "艹", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕃", + "codepoint": "U+8543", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8543", + "status": "exact_ids", + "ids": "⿱艹番", + "canonical_ids": "⿱艹番", + "expanded_ids": "⿱艹⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "木", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕄", + "codepoint": "U+8544", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8544", + "status": "exact_ids", + "ids": "⿱艹悶", + "canonical_ids": "⿱艹悶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "悶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕅", + "codepoint": "U+8545", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8545", + "status": "exact_ids", + "ids": "⿱艹湡", + "canonical_ids": "⿱艹湡", + "expanded_ids": "⿱艹⿰氵⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "田", + "禸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕆", + "codepoint": "U+8546", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8546", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕇", + "codepoint": "U+8547", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8547", + "status": "exact_ids", + "ids": "⿱艹單", + "canonical_ids": "⿱艹單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕈", + "codepoint": "U+8548", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8548", + "status": "exact_ids", + "ids": "⿱艹覃", + "canonical_ids": "⿱艹覃", + "expanded_ids": "⿱艹⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "艹", + "襾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕉", + "codepoint": "U+8549", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8549", + "status": "exact_ids", + "ids": "⿱艹焦", + "canonical_ids": "⿱艹焦", + "expanded_ids": "⿱艹⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕊", + "codepoint": "U+854A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-854A", + "status": "exact_ids", + "ids": "⿱艹惢", + "canonical_ids": "⿱艹惢", + "expanded_ids": "⿱艹⿱心⿰心心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕋", + "codepoint": "U+854B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-854B", + "status": "exact_ids", + "ids": "⿱艹歮", + "canonical_ids": "⿱艹歮", + "expanded_ids": "⿱艹⿱止⿰止止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕌", + "codepoint": "U+854C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-854C", + "status": "exact_ids", + "ids": "⿱艹晶", + "canonical_ids": "⿱艹晶", + "expanded_ids": "⿱艹⿱日⿰日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕍", + "codepoint": "U+854D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-854D", + "status": "exact_ids", + "ids": "⿱艹渝", + "canonical_ids": "⿱艹渝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "艹" + ], + "unresolved_leaves": [ + "兪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕎", + "codepoint": "U+854E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-854E", + "status": "exact_ids", + "ids": "⿱艹喬", + "canonical_ids": "⿱艹喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "艹" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕏", + "codepoint": "U+854F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-854F", + "status": "exact_ids", + "ids": "⿱艹猪", + "canonical_ids": "⿱艹猪", + "expanded_ids": "⿱艹⿰犭⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "犭", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕐", + "codepoint": "U+8550", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8550", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕑", + "codepoint": "U+8551", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8551", + "status": "exact_ids", + "ids": "⿱艹閒", + "canonical_ids": "⿱艹閒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "閒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕒", + "codepoint": "U+8552", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8552", + "status": "exact_ids", + "ids": "⿱艹買", + "canonical_ids": "⿱艹買", + "expanded_ids": "⿱艹⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "罒", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕓", + "codepoint": "U+8553", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8553", + "status": "exact_ids", + "ids": "⿱艹雲", + "canonical_ids": "⿱艹雲", + "expanded_ids": "⿱艹⿱雨⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "艹", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕔", + "codepoint": "U+8554", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8554", + "status": "exact_ids", + "ids": "⿱艹報", + "canonical_ids": "⿱艹報", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "又", + "土", + "艹" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕕", + "codepoint": "U+8555", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8555", + "status": "exact_ids", + "ids": "⿱艹猶", + "canonical_ids": "⿱艹猶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "犭", + "艹" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕖", + "codepoint": "U+8556", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8556", + "status": "exact_ids", + "ids": "⿱艹渠", + "canonical_ids": "⿱艹渠", + "expanded_ids": "⿱艹⿱⿰氵巨木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "木", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕗", + "codepoint": "U+8557", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8557", + "status": "exact_ids", + "ids": "⿱艹路", + "canonical_ids": "⿱艹路", + "expanded_ids": "⿱艹⿰⿱口龰⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "艹", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕘", + "codepoint": "U+8558", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8558", + "status": "exact_ids", + "ids": "⿱艹堯", + "canonical_ids": "⿱艹堯", + "expanded_ids": "⿱艹⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕙", + "codepoint": "U+8559", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8559", + "status": "exact_ids", + "ids": "⿱艹惠", + "canonical_ids": "⿱艹惠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "心", + "艹" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕚", + "codepoint": "U+855A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-855A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕛", + "codepoint": "U+855B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-855B", + "status": "exact_ids", + "ids": "⿱艹稊", + "canonical_ids": "⿱艹稊", + "expanded_ids": "⿱艹⿰⿻丿木⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕜", + "codepoint": "U+855C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-855C", + "status": "exact_ids", + "ids": "⿱艹悲", + "canonical_ids": "⿱艹悲", + "expanded_ids": "⿱艹⿱非心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "艹", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕝", + "codepoint": "U+855D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-855D", + "status": "exact_ids", + "ids": "⿱艹絕", + "canonical_ids": "⿱艹絕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "絕" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕞", + "codepoint": "U+855E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-855E", + "status": "exact_ids", + "ids": "⿱艹最", + "canonical_ids": "⿱艹最", + "expanded_ids": "⿱艹⿱曰⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "曰", + "耳", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕟", + "codepoint": "U+855F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-855F", + "status": "exact_ids", + "ids": "⿱艹發", + "canonical_ids": "⿱艹發", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "發" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕠", + "codepoint": "U+8560", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8560", + "status": "exact_ids", + "ids": "⿱艹絮", + "canonical_ids": "⿱艹絮", + "expanded_ids": "⿱艹⿱⿰女口⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "小", + "幺", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕡", + "codepoint": "U+8561", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8561", + "status": "exact_ids", + "ids": "⿱艹賁", + "canonical_ids": "⿱艹賁", + "expanded_ids": "⿱艹⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "廾", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕢", + "codepoint": "U+8562", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8562", + "status": "exact_ids", + "ids": "⿱艹貴", + "canonical_ids": "⿱艹貴", + "expanded_ids": "⿱艹⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕣", + "codepoint": "U+8563", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8563", + "status": "exact_ids", + "ids": "⿱艹舜", + "canonical_ids": "⿱艹舜", + "expanded_ids": "⿱艹⿳爫冖⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "冖", + "夕", + "爫", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕤", + "codepoint": "U+8564", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8564", + "status": "exact_ids", + "ids": "⿱艹甤", + "canonical_ids": "⿱艹甤", + "expanded_ids": "⿱艹⿰豕⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "牛", + "艹", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕥", + "codepoint": "U+8565", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8565", + "status": "exact_ids", + "ids": "⿱艹雅", + "canonical_ids": "⿱艹雅", + "expanded_ids": "⿱艹⿰牙隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕦", + "codepoint": "U+8566", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8566", + "status": "exact_ids", + "ids": "⿱艹須", + "canonical_ids": "⿱艹須", + "expanded_ids": "⿱艹⿰彡⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "彡", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕧", + "codepoint": "U+8567", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8567", + "status": "exact_ids", + "ids": "⿱艹復", + "canonical_ids": "⿱艹復", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "艹" + ], + "unresolved_leaves": [ + "复" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕨", + "codepoint": "U+8568", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8568", + "status": "exact_ids", + "ids": "⿱艹厥", + "canonical_ids": "⿱艹厥", + "expanded_ids": "⿱艹⿱厂⿰⿱䒑屮欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "厂", + "屮", + "欠", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕩", + "codepoint": "U+8569", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8569", + "status": "exact_ids", + "ids": "⿱艹湯", + "canonical_ids": "⿱艹湯", + "expanded_ids": "⿱艹⿰氵⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕪", + "codepoint": "U+856A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-856A", + "status": "exact_ids", + "ids": "⿱艹無", + "canonical_ids": "⿱艹無", + "expanded_ids": "⿱艹無", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "無", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕫", + "codepoint": "U+856B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-856B", + "status": "exact_ids", + "ids": "⿱艹童", + "canonical_ids": "⿱艹童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立", + "艹" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕬", + "codepoint": "U+856C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-856C", + "status": "exact_ids", + "ids": "⿱艹絲", + "canonical_ids": "⿱艹絲", + "expanded_ids": "⿱艹⿰⿻幺小⿻幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕭", + "codepoint": "U+856D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-856D", + "status": "exact_ids", + "ids": "⿱艹肅", + "canonical_ids": "⿱艹肅", + "expanded_ids": "⿱艹⿻肀𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "肀", + "艹", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 118, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕮", + "codepoint": "U+856E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-856E", + "status": "exact_ids", + "ids": "⿱艹舄", + "canonical_ids": "⿱艹舄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "臼", + "艹" + ], + "unresolved_leaves": [ + "灳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕯", + "codepoint": "U+856F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-856F", + "status": "exact_ids", + "ids": "⿱艹隆", + "canonical_ids": "⿱艹隆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "隆" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕰", + "codepoint": "U+8570", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8570", + "status": "exact_ids", + "ids": "⿱艹温", + "canonical_ids": "⿱艹温", + "expanded_ids": "⿱艹⿰氵⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "氵", + "皿", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕱", + "codepoint": "U+8571", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8571", + "status": "exact_ids", + "ids": "⿱艹稍", + "canonical_ids": "⿱艹稍", + "expanded_ids": "⿱艹⿰⿻丿木⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "月", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕲", + "codepoint": "U+8572", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8572", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕳", + "codepoint": "U+8573", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8573", + "status": "exact_ids", + "ids": "⿱艹間", + "canonical_ids": "⿱艹間", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "間" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕴", + "codepoint": "U+8574", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8574", + "status": "exact_ids", + "ids": "⿱艹缊", + "canonical_ids": "⿱艹缊", + "expanded_ids": "⿱艹⿰纟⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "皿", + "纟", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕵", + "codepoint": "U+8575", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8575", + "status": "exact_ids", + "ids": "⿱艹飧", + "canonical_ids": "⿱艹飧", + "expanded_ids": "⿱艹⿰夕⿱人⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "夕", + "艮", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕶", + "codepoint": "U+8576", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8576", + "status": "exact_ids", + "ids": "⿱艹零", + "canonical_ids": "⿱艹零", + "expanded_ids": "⿱艹⿱雨⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "艹", + "雨", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕷", + "codepoint": "U+8577", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8577", + "status": "exact_ids", + "ids": "⿱艹預", + "canonical_ids": "⿱艹預", + "expanded_ids": "⿱艹⿰⿱龴⿱一亅⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亅", + "八", + "目", + "艹", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 302, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕸", + "codepoint": "U+8578", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8578", + "status": "exact_ids", + "ids": "⿱艹遐", + "canonical_ids": "⿱艹遐", + "expanded_ids": "⿱艹⿰辶叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "艹", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕹", + "codepoint": "U+8579", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8579", + "status": "exact_ids", + "ids": "⿱艹雍", + "canonical_ids": "⿱艹雍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "雍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕺", + "codepoint": "U+857A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-857A", + "status": "exact_ids", + "ids": "⿱艹戢", + "canonical_ids": "⿱艹戢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "耳", + "艹" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕻", + "codepoint": "U+857B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-857B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕼", + "codepoint": "U+857C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-857C", + "status": "exact_ids", + "ids": "⿱艹肆", + "canonical_ids": "⿱艹肆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "镸" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕽", + "codepoint": "U+857D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-857D", + "status": "exact_ids", + "ids": "⿱艹農", + "canonical_ids": "⿱艹農", + "expanded_ids": "⿱艹⿱曲辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "艹", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕾", + "codepoint": "U+857E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-857E", + "status": "exact_ids", + "ids": "⿱艹雷", + "canonical_ids": "⿱艹雷", + "expanded_ids": "⿱艹⿱雨田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "艹", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蕿", + "codepoint": "U+857F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-857F", + "status": "exact_ids", + "ids": "⿱艹煖", + "canonical_ids": "⿱艹煖", + "expanded_ids": "⿱艹⿰火⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "火", + "爫", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薀", + "codepoint": "U+8580", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8580", + "status": "exact_ids", + "ids": "⿱艹溫", + "canonical_ids": "⿱艹溫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "皿", + "艹" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薁", + "codepoint": "U+8581", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8581", + "status": "exact_ids", + "ids": "⿱艹奧", + "canonical_ids": "⿱艹奧", + "expanded_ids": "⿱艹⿱⿱宀⿱丿⿻木丷大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "大", + "宀", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薂", + "codepoint": "U+8582", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8582", + "status": "exact_ids", + "ids": "⿱艹敫", + "canonical_ids": "⿱艹敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薃", + "codepoint": "U+8583", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8583", + "status": "exact_ids", + "ids": "⿱艹滈", + "canonical_ids": "⿱艹滈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "艹" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薄", + "codepoint": "U+8584", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8584", + "status": "exact_ids", + "ids": "⿱艹溥", + "canonical_ids": "⿱艹溥", + "expanded_ids": "⿱艹⿰氵⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "氵", + "甫", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薅", + "codepoint": "U+8585", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8585", + "status": "exact_ids", + "ids": "⿱艹媷", + "canonical_ids": "⿱艹媷", + "expanded_ids": "⿱艹⿰女⿱辰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "寸", + "艹", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薆", + "codepoint": "U+8586", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8586", + "status": "exact_ids", + "ids": "⿱艹愛", + "canonical_ids": "⿱艹愛", + "expanded_ids": "⿱艹⿳爫冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "夊", + "心", + "爫", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薇", + "codepoint": "U+8587", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8587", + "status": "exact_ids", + "ids": "⿱艹微", + "canonical_ids": "⿱艹微", + "expanded_ids": "⿱艹⿰彳⿰⿳山冖几攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "几", + "山", + "彳", + "攵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薈", + "codepoint": "U+8588", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8588", + "status": "exact_ids", + "ids": "⿱艹會", + "canonical_ids": "⿱艹會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "艹" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薉", + "codepoint": "U+8589", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8589", + "status": "exact_ids", + "ids": "⿱艹歲", + "canonical_ids": "⿱艹歲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "歲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薊", + "codepoint": "U+858A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-858A", + "status": "exact_ids", + "ids": "⿱艹魝", + "canonical_ids": "⿱艹魝", + "expanded_ids": "⿱艹⿰魚刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "艹", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薋", + "codepoint": "U+858B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-858B", + "status": "exact_ids", + "ids": "⿱艹資", + "canonical_ids": "⿱艹資", + "expanded_ids": "⿱艹⿱⿰冫欠⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冫", + "欠", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薌", + "codepoint": "U+858C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-858C", + "status": "exact_ids", + "ids": "⿱艹鄉", + "canonical_ids": "⿱艹鄉", + "expanded_ids": "⿱艹⿰乡⿰⿻丶艮阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乡", + "艮", + "艹", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薍", + "codepoint": "U+858D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-858D", + "status": "exact_ids", + "ids": "⿱艹亂", + "canonical_ids": "⿱艹亂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "艹" + ], + "unresolved_leaves": [ + "𤔔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薎", + "codepoint": "U+858E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-858E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薏", + "codepoint": "U+858F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-858F", + "status": "exact_ids", + "ids": "⿱艹意", + "canonical_ids": "⿱艹意", + "expanded_ids": "⿱艹⿱⿱立日心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "日", + "立", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薐", + "codepoint": "U+8590", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8590", + "status": "exact_ids", + "ids": "⿱艹稜", + "canonical_ids": "⿱艹稜", + "expanded_ids": "⿱艹⿰⿻丿木⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "土", + "夂", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薑", + "codepoint": "U+8591", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8591", + "status": "exact_ids", + "ids": "⿱艹畺", + "canonical_ids": "⿱艹畺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "艹" + ], + "unresolved_leaves": [ + "三" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薒", + "codepoint": "U+8592", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8592", + "status": "exact_ids", + "ids": "⿱艹粲", + "canonical_ids": "⿱艹粲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "艹" + ], + "unresolved_leaves": [ + "𣦼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薓", + "codepoint": "U+8593", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8593", + "status": "exact_ids", + "ids": "⿱艹𣹰", + "canonical_ids": "⿱艹𣹰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "𣹰" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薔", + "codepoint": "U+8594", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8594", + "status": "exact_ids", + "ids": "⿱艹嗇", + "canonical_ids": "⿱艹嗇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "艹" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薕", + "codepoint": "U+8595", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8595", + "status": "exact_ids", + "ids": "⿱艹廉", + "canonical_ids": "⿱艹廉", + "expanded_ids": "⿱艹⿱广兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "广", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薖", + "codepoint": "U+8596", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8596", + "status": "exact_ids", + "ids": "⿱艹過", + "canonical_ids": "⿱艹過", + "expanded_ids": "⿱艹⿰辶⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "艹", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薗", + "codepoint": "U+8597", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8597", + "status": "exact_ids", + "ids": "⿱艹園", + "canonical_ids": "⿱艹園", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "園" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薘", + "codepoint": "U+8598", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8598", + "status": "exact_ids", + "ids": "⿱艹達", + "canonical_ids": "⿱艹達", + "expanded_ids": "⿱艹⿰辶⿱土羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "羊", + "艹", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薙", + "codepoint": "U+8599", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8599", + "status": "exact_ids", + "ids": "⿱艹雉", + "canonical_ids": "⿱艹雉", + "expanded_ids": "⿱艹⿰⿱⿻丿一大隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薚", + "codepoint": "U+859A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-859A", + "status": "exact_ids", + "ids": "⿱艹𣨟", + "canonical_ids": "⿱艹𣨟", + "expanded_ids": "⿱艹⿰⿻夕一⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "夕", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薛", + "codepoint": "U+859B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-859B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薜", + "codepoint": "U+859C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-859C", + "status": "exact_ids", + "ids": "⿱艹辟", + "canonical_ids": "⿱艹辟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立", + "艹" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薝", + "codepoint": "U+859D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-859D", + "status": "exact_ids", + "ids": "⿱艹詹", + "canonical_ids": "⿱艹詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薞", + "codepoint": "U+859E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-859E", + "status": "exact_ids", + "ids": "⿱艹飱", + "canonical_ids": "⿱艹飱", + "expanded_ids": "⿱艹⿰⿻夕一⿱人⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "人", + "夕", + "艮", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薟", + "codepoint": "U+859F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-859F", + "status": "exact_ids", + "ids": "⿱艹僉", + "canonical_ids": "⿱艹僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薠", + "codepoint": "U+85A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85A0", + "status": "exact_ids", + "ids": "⿱艹煩", + "canonical_ids": "⿱艹煩", + "expanded_ids": "⿱艹⿰火⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "火", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薡", + "codepoint": "U+85A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85A1", + "status": "exact_ids", + "ids": "⿱艹鼎", + "canonical_ids": "⿱艹鼎", + "expanded_ids": "⿱艹鼎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "鼎" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薢", + "codepoint": "U+85A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85A2", + "status": "exact_ids", + "ids": "⿱艹解", + "canonical_ids": "⿱艹解", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "解" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薣", + "codepoint": "U+85A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85A3", + "status": "exact_ids", + "ids": "⿱艹鼓", + "canonical_ids": "⿱艹鼓", + "expanded_ids": "⿱艹⿰⿱十豆⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "艹", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薤", + "codepoint": "U+85A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85A4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薥", + "codepoint": "U+85A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85A5", + "status": "exact_ids", + "ids": "⿱艹蜀", + "canonical_ids": "⿱艹蜀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒", + "艹" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薦", + "codepoint": "U+85A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85A6", + "status": "exact_ids", + "ids": "⿱艹廌", + "canonical_ids": "⿱艹廌", + "expanded_ids": "⿱艹廌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廌", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薧", + "codepoint": "U+85A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85A7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薨", + "codepoint": "U+85A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85A8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薩", + "codepoint": "U+85A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85A9", + "status": "exact_ids", + "ids": "⿱艹隡", + "canonical_ids": "⿱艹隡", + "expanded_ids": "⿱艹⿰阝⿱⿱⿱亠八厂⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "八", + "厂", + "牛", + "艹", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 264, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薪", + "codepoint": "U+85AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85AA", + "status": "exact_ids", + "ids": "⿱艹新", + "canonical_ids": "⿱艹新", + "expanded_ids": "⿱艹⿰⿱立朩斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "朩", + "立", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薫", + "codepoint": "U+85AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85AB", + "status": "exact_ids", + "ids": "⿱艹𤋱", + "canonical_ids": "⿱艹𤋱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "𤋱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薬", + "codepoint": "U+85AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85AC", + "status": "exact_ids", + "ids": "⿱艹楽", + "canonical_ids": "⿱艹楽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "楽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薭", + "codepoint": "U+85AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85AD", + "status": "exact_ids", + "ids": "⿱艹稗", + "canonical_ids": "⿱艹稗", + "expanded_ids": "⿱艹⿰⿻丿木卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "卑", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薮", + "codepoint": "U+85AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85AE", + "status": "exact_ids", + "ids": "⿱艹数", + "canonical_ids": "⿱艹数", + "expanded_ids": "⿱艹⿰⿱⿻木丷女攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "女", + "攵", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薯", + "codepoint": "U+85AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85AF", + "status": "exact_ids", + "ids": "⿱艹署", + "canonical_ids": "⿱艹署", + "expanded_ids": "⿱艹⿱罒⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "罒", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薰", + "codepoint": "U+85B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85B0", + "status": "exact_ids", + "ids": "⿱艹熏", + "canonical_ids": "⿱艹熏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "熏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薱", + "codepoint": "U+85B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85B1", + "status": "exact_ids", + "ids": "⿱艹對", + "canonical_ids": "⿱艹對", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "寸", + "艹" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薲", + "codepoint": "U+85B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85B2", + "status": "exact_ids", + "ids": "⿱艹賓", + "canonical_ids": "⿱艹賓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薳", + "codepoint": "U+85B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85B3", + "status": "exact_ids", + "ids": "⿱艹遠", + "canonical_ids": "⿱艹遠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "辶" + ], + "unresolved_leaves": [ + "袁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薴", + "codepoint": "U+85B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85B4", + "status": "exact_ids", + "ids": "⿱艹寧", + "canonical_ids": "⿱艹寧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "艹" + ], + "unresolved_leaves": [ + "寍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薵", + "codepoint": "U+85B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85B5", + "status": "exact_ids", + "ids": "⿱艹壽", + "canonical_ids": "⿱艹壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薶", + "codepoint": "U+85B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85B6", + "status": "exact_ids", + "ids": "⿱艹貍", + "canonical_ids": "⿱艹貍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "豸" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薷", + "codepoint": "U+85B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85B7", + "status": "exact_ids", + "ids": "⿱艹需", + "canonical_ids": "⿱艹需", + "expanded_ids": "⿱艹⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "而", + "艹", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薸", + "codepoint": "U+85B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85B8", + "status": "exact_ids", + "ids": "⿱艹漂", + "canonical_ids": "⿱艹漂", + "expanded_ids": "⿱艹⿰氵⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "氵", + "艹", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薹", + "codepoint": "U+85B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85B9", + "status": "exact_ids", + "ids": "⿱艹臺", + "canonical_ids": "⿱艹臺", + "expanded_ids": "⿱艹⿳⿱士口冖⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冖", + "厶", + "口", + "土", + "士", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 253, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薺", + "codepoint": "U+85BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85BA", + "status": "exact_ids", + "ids": "⿱艹齊", + "canonical_ids": "⿱艹齊", + "expanded_ids": "⿱艹齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薻", + "codepoint": "U+85BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85BB", + "status": "exact_ids", + "ids": "⿱艹漅", + "canonical_ids": "⿱艹漅", + "expanded_ids": "⿱艹⿰氵⿱巛⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "木", + "氵", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薼", + "codepoint": "U+85BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85BC", + "status": "exact_ids", + "ids": "⿱艹塵", + "canonical_ids": "⿱艹塵", + "expanded_ids": "⿱艹⿱鹿土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "艹", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薽", + "codepoint": "U+85BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85BD", + "status": "exact_ids", + "ids": "⿱艹甄", + "canonical_ids": "⿱艹甄", + "expanded_ids": "⿱艹⿰⿱覀土瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "瓦", + "艹", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薾", + "codepoint": "U+85BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85BE", + "status": "exact_ids", + "ids": "⿱艹爾", + "canonical_ids": "⿱艹爾", + "expanded_ids": "⿱艹爾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爾", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "薿", + "codepoint": "U+85BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85BF", + "status": "exact_ids", + "ids": "⿱艹疑", + "canonical_ids": "⿱艹疑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "疑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藀", + "codepoint": "U+85C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85C0", + "status": "exact_ids", + "ids": "⿱艹熒", + "canonical_ids": "⿱艹熒", + "expanded_ids": "⿱艹⿳⿰火火冖火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "火", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藁", + "codepoint": "U+85C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85C1", + "status": "exact_ids", + "ids": "⿱蒿木", + "canonical_ids": "⿱蒿木", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "艹" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藂", + "codepoint": "U+85C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85C2", + "status": "exact_ids", + "ids": "⿱艹聚", + "canonical_ids": "⿱艹聚", + "expanded_ids": "⿱艹⿱⿰耳又乑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乑", + "又", + "耳", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藃", + "codepoint": "U+85C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85C3", + "status": "exact_ids", + "ids": "⿱艹歊", + "canonical_ids": "⿱艹歊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "艹" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藄", + "codepoint": "U+85C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85C4", + "status": "exact_ids", + "ids": "⿱艹綦", + "canonical_ids": "⿱艹綦", + "expanded_ids": "⿱艹⿱其⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "小", + "幺", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藅", + "codepoint": "U+85C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85C5", + "status": "exact_ids", + "ids": "⿱艹罰", + "canonical_ids": "⿱艹罰", + "expanded_ids": "⿱艹⿱罒⿰言刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "罒", + "艹", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藆", + "codepoint": "U+85C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85C6", + "status": "exact_ids", + "ids": "⿱艹搴", + "canonical_ids": "⿱艹搴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "搴" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藇", + "codepoint": "U+85C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85C7", + "status": "exact_ids", + "ids": "⿱艹與", + "canonical_ids": "⿱艹與", + "expanded_ids": "⿱艹與", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "與", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藈", + "codepoint": "U+85C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85C8", + "status": "exact_ids", + "ids": "⿱艹睽", + "canonical_ids": "⿱艹睽", + "expanded_ids": "⿱艹⿰目⿱癶⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "癶", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藉", + "codepoint": "U+85C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85C9", + "status": "exact_ids", + "ids": "⿱艹耤", + "canonical_ids": "⿱艹耤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "艹" + ], + "unresolved_leaves": [ + "耒", + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藊", + "codepoint": "U+85CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85CA", + "status": "exact_ids", + "ids": "⿱艹稨", + "canonical_ids": "⿱艹稨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "尸", + "木", + "艹" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藋", + "codepoint": "U+85CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85CB", + "status": "exact_ids", + "ids": "⿱艹翟", + "canonical_ids": "⿱艹翟", + "expanded_ids": "⿱艹⿱⿰习习隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藌", + "codepoint": "U+85CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85CC", + "status": "exact_ids", + "ids": "⿱艹蜜", + "canonical_ids": "⿱艹蜜", + "expanded_ids": "⿱艹⿱⿱宀⿻心丿虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "宀", + "心", + "艹", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藍", + "codepoint": "U+85CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85CD", + "status": "exact_ids", + "ids": "⿱艹監", + "canonical_ids": "⿱艹監", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藎", + "codepoint": "U+85CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85CE", + "status": "exact_ids", + "ids": "⿱艹盡", + "canonical_ids": "⿱艹盡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "盡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藏", + "codepoint": "U+85CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85CF", + "status": "exact_ids", + "ids": "⿱艹臧", + "canonical_ids": "⿱艹臧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "臧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藐", + "codepoint": "U+85D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85D0", + "status": "exact_ids", + "ids": "⿱艹貌", + "canonical_ids": "⿱艹貌", + "expanded_ids": "⿱艹⿰豸⿱⿻日丶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "儿", + "日", + "艹", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藑", + "codepoint": "U+85D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85D1", + "status": "exact_ids", + "ids": "⿱艹敻", + "canonical_ids": "⿱艹敻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "敻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藒", + "codepoint": "U+85D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85D2", + "status": "exact_ids", + "ids": "⿱艹䅥", + "canonical_ids": "⿱艹䅥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "曰", + "木", + "艹" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藓", + "codepoint": "U+85D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85D3", + "status": "exact_ids", + "ids": "⿱艹鲜", + "canonical_ids": "⿱艹鲜", + "expanded_ids": "⿱艹⿰鱼羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "羊", + "艹", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藔", + "codepoint": "U+85D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85D4", + "status": "exact_ids", + "ids": "⿱艹寮", + "canonical_ids": "⿱艹寮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "小", + "艹" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藕", + "codepoint": "U+85D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85D5", + "status": "exact_ids", + "ids": "⿱艹耦", + "canonical_ids": "⿱艹耦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "禸", + "艹" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藖", + "codepoint": "U+85D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85D6", + "status": "exact_ids", + "ids": "⿱艹賢", + "canonical_ids": "⿱艹賢", + "expanded_ids": "⿱艹⿱⿰臣又⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "又", + "目", + "臣", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藗", + "codepoint": "U+85D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85D7", + "status": "exact_ids", + "ids": "⿱艹遬", + "canonical_ids": "⿱艹遬", + "expanded_ids": "⿱艹⿰辶⿰⿻木口欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "欠", + "艹", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藘", + "codepoint": "U+85D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85D8", + "status": "exact_ids", + "ids": "⿱艹慮", + "canonical_ids": "⿱艹慮", + "expanded_ids": "⿱艹⿱虍⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "田", + "艹", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藙", + "codepoint": "U+85D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85D9", + "status": "exact_ids", + "ids": "⿱艹毅", + "canonical_ids": "⿱艹毅", + "expanded_ids": "⿱艹⿰⿱立𧰨⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "立", + "艹", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 192, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藚", + "codepoint": "U+85DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85DA", + "status": "exact_ids", + "ids": "⿱艹賣", + "canonical_ids": "⿱艹賣", + "expanded_ids": "⿱艹⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "士", + "目", + "罒", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藛", + "codepoint": "U+85DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85DB", + "status": "exact_ids", + "ids": "⿱艹寫", + "canonical_ids": "⿱艹寫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "臼", + "艹" + ], + "unresolved_leaves": [ + "灳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藜", + "codepoint": "U+85DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85DC", + "status": "exact_ids", + "ids": "⿱艹黎", + "canonical_ids": "⿱艹黎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "黎" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藝", + "codepoint": "U+85DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85DD", + "status": "exact_ids", + "ids": "⿱蓺云", + "canonical_ids": "⿱蓺云", + "expanded_ids": "⿱⿱艹⿰⿱⿱土儿土⿻九丶⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "二", + "儿", + "厶", + "土", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 300, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藞", + "codepoint": "U+85DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85DE", + "status": "exact_ids", + "ids": "⿱艹磊", + "canonical_ids": "⿱艹磊", + "expanded_ids": "⿱艹⿱石⿰石石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藟", + "codepoint": "U+85DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85DF", + "status": "exact_ids", + "ids": "⿱艹畾", + "canonical_ids": "⿱艹畾", + "expanded_ids": "⿱艹⿱田⿰田田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藠", + "codepoint": "U+85E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85E0", + "status": "exact_ids", + "ids": "⿱艹皛", + "canonical_ids": "⿱艹皛", + "expanded_ids": "⿱艹⿱⿻日丶⿰⿻日丶⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藡", + "codepoint": "U+85E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85E1", + "status": "exact_ids", + "ids": "⿱艹適", + "canonical_ids": "⿱艹適", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "辶" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藢", + "codepoint": "U+85E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85E2", + "status": "exact_ids", + "ids": "⿱艹徵", + "canonical_ids": "⿱艹徵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "徵" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藣", + "codepoint": "U+85E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85E3", + "status": "exact_ids", + "ids": "⿱艹罷", + "canonical_ids": "⿱艹罷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒", + "艹" + ], + "unresolved_leaves": [ + "能" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藤", + "codepoint": "U+85E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85E4", + "status": "exact_ids", + "ids": "⿱艹滕", + "canonical_ids": "⿱艹滕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "艹" + ], + "unresolved_leaves": [ + "𣳾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藥", + "codepoint": "U+85E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85E5", + "status": "exact_ids", + "ids": "⿱艹樂", + "canonical_ids": "⿱艹樂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "樂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藦", + "codepoint": "U+85E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85E6", + "status": "exact_ids", + "ids": "⿱艹摩", + "canonical_ids": "⿱艹摩", + "expanded_ids": "⿱艹⿱⿱广⿰木木手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "手", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藧", + "codepoint": "U+85E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85E7", + "status": "exact_ids", + "ids": "⿱艹緩", + "canonical_ids": "⿱艹緩", + "expanded_ids": "⿱艹⿰⿱幺小⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "小", + "幺", + "爫", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 300, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藨", + "codepoint": "U+85E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85E8", + "status": "exact_ids", + "ids": "⿱艹麃", + "canonical_ids": "⿱艹麃", + "expanded_ids": "⿱艹⿱鹿灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬", + "艹", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藩", + "codepoint": "U+85E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85E9", + "status": "exact_ids", + "ids": "⿱艹潘", + "canonical_ids": "⿱艹潘", + "expanded_ids": "⿱艹⿰氵⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "木", + "氵", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藪", + "codepoint": "U+85EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85EA", + "status": "exact_ids", + "ids": "⿱艹數", + "canonical_ids": "⿱艹數", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "艹" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藫", + "codepoint": "U+85EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85EB", + "status": "exact_ids", + "ids": "⿱艹潭", + "canonical_ids": "⿱艹潭", + "expanded_ids": "⿱艹⿰氵⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "氵", + "艹", + "襾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藬", + "codepoint": "U+85EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85EC", + "status": "exact_ids", + "ids": "⿱艹隤", + "canonical_ids": "⿱艹隤", + "expanded_ids": "⿱艹⿰阝⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "目", + "艹", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 264, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藭", + "codepoint": "U+85ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85ED", + "status": "exact_ids", + "ids": "⿱艹窮", + "canonical_ids": "⿱艹窮", + "expanded_ids": "⿱艹⿱⿱宀八⿰身弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "弓", + "艹", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藮", + "codepoint": "U+85EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85EE", + "status": "exact_ids", + "ids": "⿱艹樵", + "canonical_ids": "⿱艹樵", + "expanded_ids": "⿱艹⿰木⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "灬", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藯", + "codepoint": "U+85EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85EF", + "status": "exact_ids", + "ids": "⿱艹慰", + "canonical_ids": "⿱艹慰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "艹" + ], + "unresolved_leaves": [ + "尉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藰", + "codepoint": "U+85F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85F0", + "status": "exact_ids", + "ids": "⿱艹劉", + "canonical_ids": "⿱艹劉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "艹" + ], + "unresolved_leaves": [ + "𨥫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藱", + "codepoint": "U+85F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85F1", + "status": "exact_ids", + "ids": "⿱艹瘣", + "canonical_ids": "⿱艹瘣", + "expanded_ids": "⿱艹⿱⿰冫广鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "广", + "艹", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藲", + "codepoint": "U+85F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85F2", + "status": "exact_ids", + "ids": "⿱艹樞", + "canonical_ids": "⿱艹樞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "艹" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藳", + "codepoint": "U+85F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85F3", + "status": "exact_ids", + "ids": "⿱蒿禾", + "canonical_ids": "⿱蒿禾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "艹" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藴", + "codepoint": "U+85F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85F4", + "status": "exact_ids", + "ids": "⿱艹緼", + "canonical_ids": "⿱艹緼", + "expanded_ids": "⿱艹⿰⿻幺小⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "日", + "皿", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藵", + "codepoint": "U+85F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85F5", + "status": "exact_ids", + "ids": "⿱艹𧛱", + "canonical_ids": "⿱艹𧛱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "𧛱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藶", + "codepoint": "U+85F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85F6", + "status": "exact_ids", + "ids": "⿱艹歷", + "canonical_ids": "⿱艹歷", + "expanded_ids": "⿱艹⿱⿱厂⿰⿻丿木⿻丿木止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厂", + "木", + "止", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藷", + "codepoint": "U+85F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85F7", + "status": "exact_ids", + "ids": "⿱艹諸", + "canonical_ids": "⿱艹諸", + "expanded_ids": "⿱艹⿰言⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "艹", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藸", + "codepoint": "U+85F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85F8", + "status": "exact_ids", + "ids": "⿱艹豬", + "canonical_ids": "⿱艹豬", + "expanded_ids": "⿱艹⿰豕⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "艹", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藹", + "codepoint": "U+85F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85F9", + "status": "exact_ids", + "ids": "⿱艹謁", + "canonical_ids": "⿱艹謁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "艹", + "言" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藺", + "codepoint": "U+85FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85FA", + "status": "exact_ids", + "ids": "⿱艹閵", + "canonical_ids": "⿱艹閵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "閵" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藻", + "codepoint": "U+85FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85FB", + "status": "exact_ids", + "ids": "⿱艹澡", + "canonical_ids": "⿱艹澡", + "expanded_ids": "⿱艹⿰氵⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "氵", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藼", + "codepoint": "U+85FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85FC", + "status": "exact_ids", + "ids": "⿱艹憲", + "canonical_ids": "⿱艹憲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "憲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藽", + "codepoint": "U+85FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85FD", + "status": "exact_ids", + "ids": "⿱艹親", + "canonical_ids": "⿱艹親", + "expanded_ids": "⿱艹⿰⿱立朩⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "朩", + "目", + "立", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藾", + "codepoint": "U+85FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85FE", + "status": "exact_ids", + "ids": "⿱艹賴", + "canonical_ids": "⿱艹賴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "賴" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "藿", + "codepoint": "U+85FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-85FF", + "status": "exact_ids", + "ids": "⿱艹霍", + "canonical_ids": "⿱艹霍", + "expanded_ids": "⿱艹⿱雨隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "隹", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘀", + "codepoint": "U+8600", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8600", + "status": "exact_ids", + "ids": "⿱艹擇", + "canonical_ids": "⿱艹擇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "扌", + "罒", + "艹" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘁", + "codepoint": "U+8601", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8601", + "status": "exact_ids", + "ids": "⿱艹噩", + "canonical_ids": "⿱艹噩", + "expanded_ids": "⿱艹⿻王⿰⿱口口⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "王", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘂", + "codepoint": "U+8602", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8602", + "status": "exact_ids", + "ids": "⿱艹橤", + "canonical_ids": "⿱艹橤", + "expanded_ids": "⿱艹⿱⿱心⿰心心木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘃", + "codepoint": "U+8603", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8603", + "status": "exact_ids", + "ids": "⿱蕋木", + "canonical_ids": "⿱蕋木", + "expanded_ids": "⿱⿱艹⿱止⿰止止木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "止", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘄", + "codepoint": "U+8604", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8604", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘅", + "codepoint": "U+8605", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8605", + "status": "exact_ids", + "ids": "⿱艹衡", + "canonical_ids": "⿱艹衡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "衡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘆", + "codepoint": "U+8606", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8606", + "status": "exact_ids", + "ids": "⿱艹盧", + "canonical_ids": "⿱艹盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "艹" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘇", + "codepoint": "U+8607", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8607", + "status": "exact_ids", + "ids": "⿱艹穌", + "canonical_ids": "⿱艹穌", + "expanded_ids": "⿱艹⿰魚⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "艹", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘈", + "codepoint": "U+8608", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8608", + "status": "exact_ids", + "ids": "⿱艹頽", + "canonical_ids": "⿱艹頽", + "expanded_ids": "⿱艹⿰⿱⿻丿木几⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "几", + "木", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 300, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘉", + "codepoint": "U+8609", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8609", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘊", + "codepoint": "U+860A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-860A", + "status": "exact_ids", + "ids": "⿱艹縕", + "canonical_ids": "⿱艹縕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "皿", + "艹" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘋", + "codepoint": "U+860B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-860B", + "status": "exact_ids", + "ids": "⿱艹頻", + "canonical_ids": "⿱艹頻", + "expanded_ids": "⿱艹⿰⿱止𣥂⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "止", + "目", + "艹", + "𣥂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 268, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘌", + "codepoint": "U+860C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-860C", + "status": "exact_ids", + "ids": "⿱艹禦", + "canonical_ids": "⿱艹禦", + "expanded_ids": "⿱艹⿱⿰彳⿰𦈢卩⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "卩", + "小", + "彳", + "艹", + "𦈢" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 230, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘍", + "codepoint": "U+860D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-860D", + "status": "exact_ids", + "ids": "⿱艹勳", + "canonical_ids": "⿱艹勳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "艹" + ], + "unresolved_leaves": [ + "熏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘎", + "codepoint": "U+860E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-860E", + "status": "exact_ids", + "ids": "⿱𦲸肥", + "canonical_ids": "⿱𦲸肥", + "expanded_ids": "⿱⿱艹雨⿰月巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "月", + "艹", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘏", + "codepoint": "U+860F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-860F", + "status": "exact_ids", + "ids": "⿱艹頴", + "canonical_ids": "⿱艹頴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目", + "艹" + ], + "unresolved_leaves": [ + "𥘈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘐", + "codepoint": "U+8610", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8610", + "status": "exact_ids", + "ids": "⿱艹諼", + "canonical_ids": "⿱艹諼", + "expanded_ids": "⿱艹⿰言⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "爫", + "艹", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 264, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘑", + "codepoint": "U+8611", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8611", + "status": "exact_ids", + "ids": "⿱艹磨", + "canonical_ids": "⿱艹磨", + "expanded_ids": "⿱艹⿱⿱广⿰木木石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "木", + "石", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘒", + "codepoint": "U+8612", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8612", + "status": "exact_ids", + "ids": "⿱艹穐", + "canonical_ids": "⿱艹穐", + "expanded_ids": "⿱艹⿰⿻丿木亀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亀", + "木", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘓", + "codepoint": "U+8613", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8613", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘔", + "codepoint": "U+8614", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8614", + "status": "exact_ids", + "ids": "⿱艹穎", + "canonical_ids": "⿱艹穎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "穎" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘕", + "codepoint": "U+8615", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8615", + "status": "exact_ids", + "ids": "⿱艹縫", + "canonical_ids": "⿱艹縫", + "expanded_ids": "⿱艹⿰⿱幺小⿰辶⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "小", + "幺", + "艹", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘖", + "codepoint": "U+8616", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8616", + "status": "exact_ids", + "ids": "⿱薛木", + "canonical_ids": "⿱薛木", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "薛" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘗", + "codepoint": "U+8617", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8617", + "status": "exact_ids", + "ids": "⿱艹檗", + "canonical_ids": "⿱艹檗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "木", + "立", + "艹" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘘", + "codepoint": "U+8618", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8618", + "status": "exact_ids", + "ids": "⿱艹襄", + "canonical_ids": "⿱艹襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘙", + "codepoint": "U+8619", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8619", + "status": "exact_ids", + "ids": "⿱艹翳", + "canonical_ids": "⿱艹翳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "几", + "又", + "艹" + ], + "unresolved_leaves": [ + "医" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘚", + "codepoint": "U+861A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-861A", + "status": "exact_ids", + "ids": "⿱艹鮮", + "canonical_ids": "⿱艹鮮", + "expanded_ids": "⿱艹⿰魚羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "羊", + "艹", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘛", + "codepoint": "U+861B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-861B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘜", + "codepoint": "U+861C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-861C", + "status": "exact_ids", + "ids": "⿱艹鞠", + "canonical_ids": "⿱艹鞠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "革" + ], + "unresolved_leaves": [ + "匊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘝", + "codepoint": "U+861D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-861D", + "status": "exact_ids", + "ids": "⿱艹歛", + "canonical_ids": "⿱艹歛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "艹" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘞", + "codepoint": "U+861E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-861E", + "status": "exact_ids", + "ids": "⿱艹斂", + "canonical_ids": "⿱艹斂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "艹" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘟", + "codepoint": "U+861F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-861F", + "status": "exact_ids", + "ids": "⿱艹隱", + "canonical_ids": "⿱艹隱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "隱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘠", + "codepoint": "U+8620", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8620", + "status": "exact_ids", + "ids": "⿱艹牆", + "canonical_ids": "⿱艹牆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "爿", + "艹" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘡", + "codepoint": "U+8621", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8621", + "status": "exact_ids", + "ids": "⿱艹嬰", + "canonical_ids": "⿱艹嬰", + "expanded_ids": "⿱艹⿱⿰⿱目八⿱目八女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "女", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘢", + "codepoint": "U+8622", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8622", + "status": "exact_ids", + "ids": "⿱艹龍", + "canonical_ids": "⿱艹龍", + "expanded_ids": "⿱艹龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘣", + "codepoint": "U+8623", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8623", + "status": "exact_ids", + "ids": "⿱艹黈", + "canonical_ids": "⿱艹黈", + "expanded_ids": "⿱艹⿰黄⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王", + "艹", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘤", + "codepoint": "U+8624", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8624", + "status": "exact_ids", + "ids": "⿱艹𤾡", + "canonical_ids": "⿱艹𤾡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "𤾡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘥", + "codepoint": "U+8625", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8625", + "status": "exact_ids", + "ids": "⿱艹龠", + "canonical_ids": "⿱艹龠", + "expanded_ids": "⿱艹龠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "龠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘦", + "codepoint": "U+8626", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8626", + "status": "exact_ids", + "ids": "⿱艹霝", + "canonical_ids": "⿱艹霝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "雨" + ], + "unresolved_leaves": [ + "𠱠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘧", + "codepoint": "U+8627", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8627", + "status": "exact_ids", + "ids": "⿱艹遽", + "canonical_ids": "⿱艹遽", + "expanded_ids": "⿱艹⿰辶⿱虍豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "虍", + "豕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 154, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘨", + "codepoint": "U+8628", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8628", + "status": "exact_ids", + "ids": "⿱艹繇", + "canonical_ids": "⿱艹繇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "繇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘩", + "codepoint": "U+8629", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8629", + "status": "exact_ids", + "ids": "⿱艹繁", + "canonical_ids": "⿱艹繁", + "expanded_ids": "⿱艹⿱⿰⿱⿻丿一母攵⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "小", + "幺", + "攵", + "母", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘪", + "codepoint": "U+862A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-862A", + "status": "exact_ids", + "ids": "⿱艹麋", + "canonical_ids": "⿱艹麋", + "expanded_ids": "⿱艹⿱鹿⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "艹", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘫", + "codepoint": "U+862B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-862B", + "status": "exact_ids", + "ids": "⿱艹濫", + "canonical_ids": "⿱艹濫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "艹" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘬", + "codepoint": "U+862C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-862C", + "status": "exact_ids", + "ids": "⿱艹歸", + "canonical_ids": "⿱艹歸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "歸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘭", + "codepoint": "U+862D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-862D", + "status": "exact_ids", + "ids": "⿱艹闌", + "canonical_ids": "⿱艹闌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘮", + "codepoint": "U+862E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-862E", + "status": "exact_ids", + "ids": "⿱艹罽", + "canonical_ids": "⿱艹罽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "罽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘯", + "codepoint": "U+862F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-862F", + "status": "exact_ids", + "ids": "⿱艹盪", + "canonical_ids": "⿱艹盪", + "expanded_ids": "⿱艹⿱⿰氵⿱⿱日一勿皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "氵", + "皿", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘰", + "codepoint": "U+8630", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8630", + "status": "exact_ids", + "ids": "⿱艹縵", + "canonical_ids": "⿱艹縵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "艹" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘱", + "codepoint": "U+8631", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8631", + "status": "exact_ids", + "ids": "⿱艹類", + "canonical_ids": "⿱艹類", + "expanded_ids": "⿱艹⿰⿱⿻木丷大⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "丿", + "八", + "大", + "木", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 300, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘲", + "codepoint": "U+8632", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8632", + "status": "exact_ids", + "ids": "⿱艹壘", + "canonical_ids": "⿱艹壘", + "expanded_ids": "⿱艹⿱⿱田⿰田田土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘳", + "codepoint": "U+8633", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8633", + "status": "exact_ids", + "ids": "⿱艹黊", + "canonical_ids": "⿱艹黊", + "expanded_ids": "⿱艹⿰黄⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "艹", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘴", + "codepoint": "U+8634", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8634", + "status": "exact_ids", + "ids": "⿱艹豐", + "canonical_ids": "⿱艹豐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "豆" + ], + "unresolved_leaves": [ + "𠁳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘵", + "codepoint": "U+8635", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8635", + "status": "exact_ids", + "ids": "⿱艹職", + "canonical_ids": "⿱艹職", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "立", + "耳", + "艹" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘶", + "codepoint": "U+8636", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8636", + "status": "exact_ids", + "ids": "⿱艹魏", + "canonical_ids": "⿱艹魏", + "expanded_ids": "⿱艹⿰⿱⿻丿木女鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "木", + "艹", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘷", + "codepoint": "U+8637", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8637", + "status": "exact_ids", + "ids": "⿱艹夒", + "canonical_ids": "⿱艹夒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "夒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘸", + "codepoint": "U+8638", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8638", + "status": "exact_ids", + "ids": "⿱艹醮", + "canonical_ids": "⿱艹醮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬", + "艹", + "隹" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘹", + "codepoint": "U+8639", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8639", + "status": "exact_ids", + "ids": "⿱艹懷", + "canonical_ids": "⿱艹懷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "忄", + "艹" + ], + "unresolved_leaves": [ + "褱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘺", + "codepoint": "U+863A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-863A", + "status": "exact_ids", + "ids": "⿱艹離", + "canonical_ids": "⿱艹離", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "禸", + "艹", + "隹" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘻", + "codepoint": "U+863B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-863B", + "status": "exact_ids", + "ids": "⿱艹繫", + "canonical_ids": "⿱艹繫", + "expanded_ids": "⿱艹⿱⿰⿱車凵⿱几又⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "凵", + "又", + "小", + "幺", + "艹", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 264, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘼", + "codepoint": "U+863C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-863C", + "status": "exact_ids", + "ids": "⿱艹靡", + "canonical_ids": "⿱艹靡", + "expanded_ids": "⿱艹⿱⿱广⿰木木非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "木", + "艹", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘽", + "codepoint": "U+863D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-863D", + "status": "exact_ids", + "ids": "⿱艹櫐", + "canonical_ids": "⿱艹櫐", + "expanded_ids": "⿱艹⿱⿱田⿰田田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘾", + "codepoint": "U+863E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-863E", + "status": "exact_ids", + "ids": "⿱艹壞", + "canonical_ids": "⿱艹壞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "艹" + ], + "unresolved_leaves": [ + "褱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蘿", + "codepoint": "U+863F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-863F", + "status": "exact_ids", + "ids": "⿱艹羅", + "canonical_ids": "⿱艹羅", + "expanded_ids": "⿱艹⿱罒⿰⿻幺小隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "罒", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虀", + "codepoint": "U+8640", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8640", + "status": "exact_ids", + "ids": "⿱艹韲", + "canonical_ids": "⿱艹韲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "韲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虁", + "codepoint": "U+8641", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8641", + "status": "exact_ids", + "ids": "⿱艹夔", + "canonical_ids": "⿱艹夔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "艹" + ], + "unresolved_leaves": [ + "夒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虂", + "codepoint": "U+8642", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8642", + "status": "exact_ids", + "ids": "⿱艹露", + "canonical_ids": "⿱艹露", + "expanded_ids": "⿱艹⿱雨⿰⿱口龰⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "艹", + "雨", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 228, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虃", + "codepoint": "U+8643", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8643", + "status": "exact_ids", + "ids": "⿱艹瀸", + "canonical_ids": "⿱艹瀸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "艹" + ], + "unresolved_leaves": [ + "韱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虄", + "codepoint": "U+8644", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8644", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虅", + "codepoint": "U+8645", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8645", + "status": "exact_ids", + "ids": "⿱艹騰", + "canonical_ids": "⿱艹騰", + "expanded_ids": "⿱艹⿰月⿱⿱丷⿻一大馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "月", + "艹", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虆", + "codepoint": "U+8646", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8646", + "status": "exact_ids", + "ids": "⿱艹纍", + "canonical_ids": "⿱艹纍", + "expanded_ids": "⿱艹⿱⿱田⿰田田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "田", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虇", + "codepoint": "U+8647", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8647", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虈", + "codepoint": "U+8648", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8648", + "status": "exact_ids", + "ids": "⿱艹嚻", + "canonical_ids": "⿱艹嚻", + "expanded_ids": "⿱艹⿲⿱口口⿱⿱一丿⿱目八⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "口", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 329, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虉", + "codepoint": "U+8649", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8649", + "status": "exact_ids", + "ids": "⿱艹鷊", + "canonical_ids": "⿱艹鷊", + "expanded_ids": "⿱艹⿰鬲鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "鬲", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虊", + "codepoint": "U+864A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-864A", + "status": "exact_ids", + "ids": "⿱艹欒", + "canonical_ids": "⿱艹欒", + "expanded_ids": "⿱艹⿱⿲⿱幺小言⿱幺小木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "木", + "艹", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 255, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虋", + "codepoint": "U+864B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-864B", + "status": "exact_ids", + "ids": "⿱艹釁", + "canonical_ids": "⿱艹釁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹" + ], + "unresolved_leaves": [ + "釁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虌", + "codepoint": "U+864C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-864C", + "status": "exact_ids", + "ids": "⿱蔽黽", + "canonical_ids": "⿱蔽黽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "艹", + "黽" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虍", + "codepoint": "U+864D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-864D", + "status": "leaf_self_fallback", + "ids": "虍", + "canonical_ids": "虍", + "expanded_ids": "虍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虎", + "codepoint": "U+864E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-864E", + "status": "exact_ids", + "ids": "⿱虍儿", + "canonical_ids": "⿱虍儿", + "expanded_ids": "⿱虍儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虏", + "codepoint": "U+864F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-864F", + "status": "exact_ids", + "ids": "⿱虍力", + "canonical_ids": "⿱虍力", + "expanded_ids": "⿱虍力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虐", + "codepoint": "U+8650", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8650", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虑", + "codepoint": "U+8651", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8651", + "status": "exact_ids", + "ids": "⿱虍心", + "canonical_ids": "⿱虍心", + "expanded_ids": "⿱虍心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虒", + "codepoint": "U+8652", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8652", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虓", + "codepoint": "U+8653", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8653", + "status": "exact_ids", + "ids": "⿰九虎", + "canonical_ids": "⿰九虎", + "expanded_ids": "⿰九⿱虍儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "儿", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虔", + "codepoint": "U+8654", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8654", + "status": "exact_ids", + "ids": "⿱虍文", + "canonical_ids": "⿱虍文", + "expanded_ids": "⿱虍文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "處", + "codepoint": "U+8655", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8655", + "status": "exact_ids", + "ids": "⿱虍処", + "canonical_ids": "⿱虍処", + "expanded_ids": "⿱虍⿰夂几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "夂", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虖", + "codepoint": "U+8656", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8656", + "status": "exact_ids", + "ids": "⿱虍乎", + "canonical_ids": "⿱虍乎", + "expanded_ids": "⿱虍乎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乎", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虗", + "codepoint": "U+8657", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8657", + "status": "exact_ids", + "ids": "⿱虍丘", + "canonical_ids": "⿱虍丘", + "expanded_ids": "⿱虍丘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虘", + "codepoint": "U+8658", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8658", + "status": "exact_ids", + "ids": "⿱虍且", + "canonical_ids": "⿱虍且", + "expanded_ids": "⿱虍且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虙", + "codepoint": "U+8659", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8659", + "status": "exact_ids", + "ids": "⿱虍必", + "canonical_ids": "⿱虍必", + "expanded_ids": "⿱虍⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虚", + "codepoint": "U+865A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-865A", + "status": "exact_ids", + "ids": "⿱虍业", + "canonical_ids": "⿱虍业", + "expanded_ids": "⿱虍业", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虛", + "codepoint": "U+865B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-865B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虜", + "codepoint": "U+865C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-865C", + "status": "exact_ids", + "ids": "⿱虍男", + "canonical_ids": "⿱虍男", + "expanded_ids": "⿱虍⿱田力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "田", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虝", + "codepoint": "U+865D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-865D", + "status": "exact_ids", + "ids": "⿰虎勿", + "canonical_ids": "⿰虎勿", + "expanded_ids": "⿰⿱虍儿勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "勿", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虞", + "codepoint": "U+865E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-865E", + "status": "exact_ids", + "ids": "⿱虍吳", + "canonical_ids": "⿱虍吳", + "expanded_ids": "⿱虍⿱口⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "口", + "大", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "號", + "codepoint": "U+865F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-865F", + "status": "exact_ids", + "ids": "⿰号虎", + "canonical_ids": "⿰号虎", + "expanded_ids": "⿰⿱口丂⿱虍儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "儿", + "口", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虠", + "codepoint": "U+8660", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8660", + "status": "exact_ids", + "ids": "⿰交虎", + "canonical_ids": "⿰交虎", + "expanded_ids": "⿰⿱亠父⿱虍儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "儿", + "父", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虡", + "codepoint": "U+8661", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8661", + "status": "exact_ids", + "ids": "⿱虚八", + "canonical_ids": "⿱虚八", + "expanded_ids": "⿱⿱虍业八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "八", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虢", + "codepoint": "U+8662", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8662", + "status": "exact_ids", + "ids": "⿰寽虎", + "canonical_ids": "⿰寽虎", + "expanded_ids": "⿰⿱爫寸⿱虍儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "寸", + "爫", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虣", + "codepoint": "U+8663", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8663", + "status": "exact_ids", + "ids": "⿰武虎", + "canonical_ids": "⿰武虎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "虍" + ], + "unresolved_leaves": [ + "武" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虤", + "codepoint": "U+8664", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8664", + "status": "exact_ids", + "ids": "⿰虎虎", + "canonical_ids": "⿰虎虎", + "expanded_ids": "⿰⿱虍儿⿱虍儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虥", + "codepoint": "U+8665", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8665", + "status": "exact_ids", + "ids": "⿰虎戔", + "canonical_ids": "⿰虎戔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "虍" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虦", + "codepoint": "U+8666", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8666", + "status": "exact_ids", + "ids": "⿰戔虎", + "canonical_ids": "⿰戔虎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "虍" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虧", + "codepoint": "U+8667", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8667", + "status": "exact_ids", + "ids": "⿰雐亐", + "canonical_ids": "⿰雐亐", + "expanded_ids": "⿰⿱虍隹亐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亐", + "虍", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虨", + "codepoint": "U+8668", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8668", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虩", + "codepoint": "U+8669", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8669", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虪", + "codepoint": "U+866A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-866A", + "status": "exact_ids", + "ids": "⿰虎儵", + "canonical_ids": "⿰虎儵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "虍" + ], + "unresolved_leaves": [ + "儵" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虫", + "codepoint": "U+866B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-866B", + "status": "leaf_self_fallback", + "ids": "虫", + "canonical_ids": "虫", + "expanded_ids": "虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虬", + "codepoint": "U+866C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-866C", + "status": "exact_ids", + "ids": "⿰虫乚", + "canonical_ids": "⿰虫乚", + "expanded_ids": "⿰虫乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虭", + "codepoint": "U+866D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-866D", + "status": "exact_ids", + "ids": "⿰虫刀", + "canonical_ids": "⿰虫刀", + "expanded_ids": "⿰虫刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虮", + "codepoint": "U+866E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-866E", + "status": "exact_ids", + "ids": "⿰虫几", + "canonical_ids": "⿰虫几", + "expanded_ids": "⿰虫几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虯", + "codepoint": "U+866F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-866F", + "status": "exact_ids", + "ids": "⿰虫丩", + "canonical_ids": "⿰虫丩", + "expanded_ids": "⿰虫⿰丨丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虰", + "codepoint": "U+8670", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8670", + "status": "exact_ids", + "ids": "⿰虫丁", + "canonical_ids": "⿰虫丁", + "expanded_ids": "⿰虫⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虱", + "codepoint": "U+8671", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8671", + "status": "exact_ids", + "ids": "⿱乁䖝", + "canonical_ids": "⿱乁䖝", + "expanded_ids": "⿱乁⿱丿虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乁", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虲", + "codepoint": "U+8672", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8672", + "status": "exact_ids", + "ids": "⿰虫卜", + "canonical_ids": "⿰虫卜", + "expanded_ids": "⿰虫卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虳", + "codepoint": "U+8673", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8673", + "status": "exact_ids", + "ids": "⿰虫勺", + "canonical_ids": "⿰虫勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虴", + "codepoint": "U+8674", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8674", + "status": "exact_ids", + "ids": "⿰虫乇", + "canonical_ids": "⿰虫乇", + "expanded_ids": "⿰虫⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虵", + "codepoint": "U+8675", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8675", + "status": "exact_ids", + "ids": "⿰虫也", + "canonical_ids": "⿰虫也", + "expanded_ids": "⿰虫⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虶", + "codepoint": "U+8676", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8676", + "status": "exact_ids", + "ids": "⿰虫于", + "canonical_ids": "⿰虫于", + "expanded_ids": "⿰虫⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虷", + "codepoint": "U+8677", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8677", + "status": "exact_ids", + "ids": "⿰虫干", + "canonical_ids": "⿰虫干", + "expanded_ids": "⿰虫⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虸", + "codepoint": "U+8678", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8678", + "status": "exact_ids", + "ids": "⿰虫子", + "canonical_ids": "⿰虫子", + "expanded_ids": "⿰虫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虹", + "codepoint": "U+8679", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8679", + "status": "exact_ids", + "ids": "⿰虫工", + "canonical_ids": "⿰虫工", + "expanded_ids": "⿰虫工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虺", + "codepoint": "U+867A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-867A", + "status": "exact_ids", + "ids": "⿰兀虫", + "canonical_ids": "⿰兀虫", + "expanded_ids": "⿰⿱一儿虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虻", + "codepoint": "U+867B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-867B", + "status": "exact_ids", + "ids": "⿰虫亡", + "canonical_ids": "⿰虫亡", + "expanded_ids": "⿰虫⿻亠乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虼", + "codepoint": "U+867C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-867C", + "status": "exact_ids", + "ids": "⿰虫乞", + "canonical_ids": "⿰虫乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虽", + "codepoint": "U+867D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-867D", + "status": "exact_ids", + "ids": "⿱口虫", + "canonical_ids": "⿱口虫", + "expanded_ids": "⿱口虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虾", + "codepoint": "U+867E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-867E", + "status": "exact_ids", + "ids": "⿰虫下", + "canonical_ids": "⿰虫下", + "expanded_ids": "⿰虫⿱一卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "卜", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "虿", + "codepoint": "U+867F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-867F", + "status": "exact_ids", + "ids": "⿱万虫", + "canonical_ids": "⿱万虫", + "expanded_ids": "⿱万虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "万", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚀", + "codepoint": "U+8680", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8680", + "status": "exact_ids", + "ids": "⿰饣虫", + "canonical_ids": "⿰饣虫", + "expanded_ids": "⿰饣虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚁", + "codepoint": "U+8681", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8681", + "status": "exact_ids", + "ids": "⿰虫义", + "canonical_ids": "⿰虫义", + "expanded_ids": "⿰虫⿻乂丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乂", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚂", + "codepoint": "U+8682", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8682", + "status": "exact_ids", + "ids": "⿰虫马", + "canonical_ids": "⿰虫马", + "expanded_ids": "⿰虫马", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚃", + "codepoint": "U+8683", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8683", + "status": "exact_ids", + "ids": "⿱乡虫", + "canonical_ids": "⿱乡虫", + "expanded_ids": "⿱乡虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乡", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚄", + "codepoint": "U+8684", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8684", + "status": "exact_ids", + "ids": "⿰虫方", + "canonical_ids": "⿰虫方", + "expanded_ids": "⿰虫方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚅", + "codepoint": "U+8685", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8685", + "status": "exact_ids", + "ids": "⿰虫厄", + "canonical_ids": "⿰虫厄", + "expanded_ids": "⿰虫⿱厂㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚆", + "codepoint": "U+8686", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8686", + "status": "exact_ids", + "ids": "⿰虫巴", + "canonical_ids": "⿰虫巴", + "expanded_ids": "⿰虫巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚇", + "codepoint": "U+8687", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8687", + "status": "exact_ids", + "ids": "⿰虫尺", + "canonical_ids": "⿰虫尺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "虫" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚈", + "codepoint": "U+8688", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8688", + "status": "exact_ids", + "ids": "⿰虫开", + "canonical_ids": "⿰虫开", + "expanded_ids": "⿰虫⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廾", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚉", + "codepoint": "U+8689", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8689", + "status": "exact_ids", + "ids": "⿱文虫", + "canonical_ids": "⿱文虫", + "expanded_ids": "⿱文虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚊", + "codepoint": "U+868A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-868A", + "status": "exact_ids", + "ids": "⿰虫文", + "canonical_ids": "⿰虫文", + "expanded_ids": "⿰虫文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚋", + "codepoint": "U+868B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-868B", + "status": "exact_ids", + "ids": "⿰虫內", + "canonical_ids": "⿰虫內", + "expanded_ids": "⿰虫⿻冂入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "冂", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚌", + "codepoint": "U+868C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-868C", + "status": "exact_ids", + "ids": "⿰虫丰", + "canonical_ids": "⿰虫丰", + "expanded_ids": "⿰虫丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚍", + "codepoint": "U+868D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-868D", + "status": "exact_ids", + "ids": "⿰虫比", + "canonical_ids": "⿰虫比", + "expanded_ids": "⿰虫⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚎", + "codepoint": "U+868E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-868E", + "status": "exact_ids", + "ids": "⿰虫日", + "canonical_ids": "⿰虫日", + "expanded_ids": "⿰虫日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚏", + "codepoint": "U+868F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-868F", + "status": "exact_ids", + "ids": "⿰虫月", + "canonical_ids": "⿰虫月", + "expanded_ids": "⿰虫月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚐", + "codepoint": "U+8690", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8690", + "status": "exact_ids", + "ids": "⿰虫匀", + "canonical_ids": "⿰虫匀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "匀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚑", + "codepoint": "U+8691", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8691", + "status": "exact_ids", + "ids": "⿰虫支", + "canonical_ids": "⿰虫支", + "expanded_ids": "⿰虫⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚒", + "codepoint": "U+8692", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8692", + "status": "exact_ids", + "ids": "⿰虫丹", + "canonical_ids": "⿰虫丹", + "expanded_ids": "⿰虫丹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丹", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚓", + "codepoint": "U+8693", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8693", + "status": "exact_ids", + "ids": "⿰虫引", + "canonical_ids": "⿰虫引", + "expanded_ids": "⿰虫⿰弓丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "弓", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚔", + "codepoint": "U+8694", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8694", + "status": "exact_ids", + "ids": "⿰虫氏", + "canonical_ids": "⿰虫氏", + "expanded_ids": "⿰虫氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氏", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚕", + "codepoint": "U+8695", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8695", + "status": "exact_ids", + "ids": "⿱天虫", + "canonical_ids": "⿱天虫", + "expanded_ids": "⿱⿻一大虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚖", + "codepoint": "U+8696", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8696", + "status": "exact_ids", + "ids": "⿰虫元", + "canonical_ids": "⿰虫元", + "expanded_ids": "⿰虫⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚗", + "codepoint": "U+8697", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8697", + "status": "exact_ids", + "ids": "⿰虫夬", + "canonical_ids": "⿰虫夬", + "expanded_ids": "⿰虫⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "大", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚘", + "codepoint": "U+8698", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8698", + "status": "exact_ids", + "ids": "⿰虫尤", + "canonical_ids": "⿰虫尤", + "expanded_ids": "⿰虫尤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚙", + "codepoint": "U+8699", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8699", + "status": "exact_ids", + "ids": "⿰虫今", + "canonical_ids": "⿰虫今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "虫" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚚", + "codepoint": "U+869A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-869A", + "status": "exact_ids", + "ids": "⿰虫斤", + "canonical_ids": "⿰虫斤", + "expanded_ids": "⿰虫斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚛", + "codepoint": "U+869B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-869B", + "status": "exact_ids", + "ids": "⿰虫中", + "canonical_ids": "⿰虫中", + "expanded_ids": "⿰虫⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚜", + "codepoint": "U+869C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-869C", + "status": "exact_ids", + "ids": "⿰虫牙", + "canonical_ids": "⿰虫牙", + "expanded_ids": "⿰虫牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚝", + "codepoint": "U+869D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-869D", + "status": "exact_ids", + "ids": "⿰虫毛", + "canonical_ids": "⿰虫毛", + "expanded_ids": "⿰虫毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚞", + "codepoint": "U+869E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-869E", + "status": "exact_ids", + "ids": "⿰虫木", + "canonical_ids": "⿰虫木", + "expanded_ids": "⿰虫木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚟", + "codepoint": "U+869F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-869F", + "status": "exact_ids", + "ids": "⿰虫王", + "canonical_ids": "⿰虫王", + "expanded_ids": "⿰虫王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚠", + "codepoint": "U+86A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86A0", + "status": "exact_ids", + "ids": "⿱分虫", + "canonical_ids": "⿱分虫", + "expanded_ids": "⿱⿱八刀虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚡", + "codepoint": "U+86A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86A1", + "status": "exact_ids", + "ids": "⿰虫分", + "canonical_ids": "⿰虫分", + "expanded_ids": "⿰虫⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚢", + "codepoint": "U+86A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86A2", + "status": "exact_ids", + "ids": "⿰虫亢", + "canonical_ids": "⿰虫亢", + "expanded_ids": "⿰虫⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚣", + "codepoint": "U+86A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86A3", + "status": "exact_ids", + "ids": "⿰虫公", + "canonical_ids": "⿰虫公", + "expanded_ids": "⿰虫⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚤", + "codepoint": "U+86A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86A4", + "status": "exact_ids", + "ids": "⿱叉虫", + "canonical_ids": "⿱叉虫", + "expanded_ids": "⿱⿻又丶虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "又", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚥", + "codepoint": "U+86A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86A5", + "status": "exact_ids", + "ids": "⿰虫父", + "canonical_ids": "⿰虫父", + "expanded_ids": "⿰虫父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "父", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚦", + "codepoint": "U+86A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86A6", + "status": "exact_ids", + "ids": "⿰虫冄", + "canonical_ids": "⿰虫冄", + "expanded_ids": "⿰虫⿻冂二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "冂", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚧", + "codepoint": "U+86A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86A7", + "status": "exact_ids", + "ids": "⿰虫介", + "canonical_ids": "⿰虫介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚨", + "codepoint": "U+86A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86A8", + "status": "exact_ids", + "ids": "⿰虫夫", + "canonical_ids": "⿰虫夫", + "expanded_ids": "⿰虫⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚩", + "codepoint": "U+86A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86A9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚪", + "codepoint": "U+86AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86AA", + "status": "exact_ids", + "ids": "⿰虫斗", + "canonical_ids": "⿰虫斗", + "expanded_ids": "⿰虫斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斗", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚫", + "codepoint": "U+86AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86AB", + "status": "exact_ids", + "ids": "⿰虫包", + "canonical_ids": "⿰虫包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚬", + "codepoint": "U+86AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86AC", + "status": "exact_ids", + "ids": "⿰虫见", + "canonical_ids": "⿰虫见", + "expanded_ids": "⿰虫⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚭", + "codepoint": "U+86AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86AD", + "status": "exact_ids", + "ids": "⿰虫尼", + "canonical_ids": "⿰虫尼", + "expanded_ids": "⿰虫⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "尸", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚮", + "codepoint": "U+86AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86AE", + "status": "exact_ids", + "ids": "⿰虫代", + "canonical_ids": "⿰虫代", + "expanded_ids": "⿰虫⿰亻弋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "弋", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚯", + "codepoint": "U+86AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86AF", + "status": "exact_ids", + "ids": "⿰虫丘", + "canonical_ids": "⿰虫丘", + "expanded_ids": "⿰虫丘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚰", + "codepoint": "U+86B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86B0", + "status": "exact_ids", + "ids": "⿰虫由", + "canonical_ids": "⿰虫由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚱", + "codepoint": "U+86B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86B1", + "status": "exact_ids", + "ids": "⿰虫乍", + "canonical_ids": "⿰虫乍", + "expanded_ids": "⿰虫乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚲", + "codepoint": "U+86B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86B2", + "status": "exact_ids", + "ids": "⿰虫平", + "canonical_ids": "⿰虫平", + "expanded_ids": "⿰虫⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "十", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚳", + "codepoint": "U+86B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86B3", + "status": "exact_ids", + "ids": "⿰虫氐", + "canonical_ids": "⿰虫氐", + "expanded_ids": "⿰虫⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氏", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚴", + "codepoint": "U+86B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86B4", + "status": "exact_ids", + "ids": "⿰虫幼", + "canonical_ids": "⿰虫幼", + "expanded_ids": "⿰虫⿰幺力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "幺", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚵", + "codepoint": "U+86B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86B5", + "status": "exact_ids", + "ids": "⿰虫可", + "canonical_ids": "⿰虫可", + "expanded_ids": "⿰虫⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚶", + "codepoint": "U+86B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86B6", + "status": "exact_ids", + "ids": "⿰虫甘", + "canonical_ids": "⿰虫甘", + "expanded_ids": "⿰虫甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甘", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚷", + "codepoint": "U+86B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86B7", + "status": "exact_ids", + "ids": "⿰虫巨", + "canonical_ids": "⿰虫巨", + "expanded_ids": "⿰虫巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚸", + "codepoint": "U+86B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86B8", + "status": "exact_ids", + "ids": "⿰虫斥", + "canonical_ids": "⿰虫斥", + "expanded_ids": "⿰虫⿻斤丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "斤", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚹", + "codepoint": "U+86B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86B9", + "status": "exact_ids", + "ids": "⿰虫付", + "canonical_ids": "⿰虫付", + "expanded_ids": "⿰虫⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚺", + "codepoint": "U+86BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86BA", + "status": "exact_ids", + "ids": "⿰虫冉", + "canonical_ids": "⿰虫冉", + "expanded_ids": "⿰虫⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "土", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚻", + "codepoint": "U+86BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86BB", + "status": "exact_ids", + "ids": "⿱札虫", + "canonical_ids": "⿱札虫", + "expanded_ids": "⿱⿰木乚虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚼", + "codepoint": "U+86BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86BC", + "status": "exact_ids", + "ids": "⿰虫句", + "canonical_ids": "⿰虫句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚽", + "codepoint": "U+86BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86BD", + "status": "exact_ids", + "ids": "⿰虫丕", + "canonical_ids": "⿰虫丕", + "expanded_ids": "⿰虫⿱不一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚾", + "codepoint": "U+86BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86BE", + "status": "exact_ids", + "ids": "⿰虫皮", + "canonical_ids": "⿰虫皮", + "expanded_ids": "⿰虫皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皮", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蚿", + "codepoint": "U+86BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86BF", + "status": "exact_ids", + "ids": "⿰虫玄", + "canonical_ids": "⿰虫玄", + "expanded_ids": "⿰虫⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛀", + "codepoint": "U+86C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86C0", + "status": "exact_ids", + "ids": "⿰虫主", + "canonical_ids": "⿰虫主", + "expanded_ids": "⿰虫⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛁", + "codepoint": "U+86C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86C1", + "status": "exact_ids", + "ids": "⿰虫召", + "canonical_ids": "⿰虫召", + "expanded_ids": "⿰虫⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛂", + "codepoint": "U+86C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86C2", + "status": "exact_ids", + "ids": "⿰虫犮", + "canonical_ids": "⿰虫犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛃", + "codepoint": "U+86C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86C3", + "status": "exact_ids", + "ids": "⿰虫丙", + "canonical_ids": "⿰虫丙", + "expanded_ids": "⿰虫⿱一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛄", + "codepoint": "U+86C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86C4", + "status": "exact_ids", + "ids": "⿰虫古", + "canonical_ids": "⿰虫古", + "expanded_ids": "⿰虫⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛅", + "codepoint": "U+86C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86C5", + "status": "exact_ids", + "ids": "⿰虫占", + "canonical_ids": "⿰虫占", + "expanded_ids": "⿰虫⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛆", + "codepoint": "U+86C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86C6", + "status": "exact_ids", + "ids": "⿰虫且", + "canonical_ids": "⿰虫且", + "expanded_ids": "⿰虫且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛇", + "codepoint": "U+86C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86C7", + "status": "exact_ids", + "ids": "⿰虫它", + "canonical_ids": "⿰虫它", + "expanded_ids": "⿰虫⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛈", + "codepoint": "U+86C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86C8", + "status": "exact_ids", + "ids": "⿰虫失", + "canonical_ids": "⿰虫失", + "expanded_ids": "⿰虫⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛉", + "codepoint": "U+86C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86C9", + "status": "exact_ids", + "ids": "⿰虫令", + "canonical_ids": "⿰虫令", + "expanded_ids": "⿰虫⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "虫", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛊", + "codepoint": "U+86CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86CA", + "status": "exact_ids", + "ids": "⿱虫皿", + "canonical_ids": "⿱虫皿", + "expanded_ids": "⿱虫皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛋", + "codepoint": "U+86CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86CB", + "status": "exact_ids", + "ids": "⿱疋虫", + "canonical_ids": "⿱疋虫", + "expanded_ids": "⿱疋虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "疋", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛌", + "codepoint": "U+86CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86CC", + "status": "exact_ids", + "ids": "⿰虫瓜", + "canonical_ids": "⿰虫瓜", + "expanded_ids": "⿰虫瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓜", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛍", + "codepoint": "U+86CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86CD", + "status": "exact_ids", + "ids": "⿳小冖虫", + "canonical_ids": "⿳小冖虫", + "expanded_ids": "⿳小冖虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "小", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 101, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛎", + "codepoint": "U+86CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86CE", + "status": "exact_ids", + "ids": "⿰虫厉", + "canonical_ids": "⿰虫厉", + "expanded_ids": "⿰虫⿱厂万", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "万", + "厂", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛏", + "codepoint": "U+86CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86CF", + "status": "exact_ids", + "ids": "⿰虫圣", + "canonical_ids": "⿰虫圣", + "expanded_ids": "⿰虫⿱又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "土", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛐", + "codepoint": "U+86D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86D0", + "status": "exact_ids", + "ids": "⿰虫曲", + "canonical_ids": "⿰虫曲", + "expanded_ids": "⿰虫曲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛑", + "codepoint": "U+86D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86D1", + "status": "exact_ids", + "ids": "⿰虫牟", + "canonical_ids": "⿰虫牟", + "expanded_ids": "⿰虫⿱厶牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "牛", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛒", + "codepoint": "U+86D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86D2", + "status": "exact_ids", + "ids": "⿰虫各", + "canonical_ids": "⿰虫各", + "expanded_ids": "⿰虫⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛓", + "codepoint": "U+86D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86D3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛔", + "codepoint": "U+86D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86D4", + "status": "exact_ids", + "ids": "⿰虫回", + "canonical_ids": "⿰虫回", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛕", + "codepoint": "U+86D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86D5", + "status": "exact_ids", + "ids": "⿰虫有", + "canonical_ids": "⿰虫有", + "expanded_ids": "⿰虫⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "月", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛖", + "codepoint": "U+86D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86D6", + "status": "exact_ids", + "ids": "⿰虫尨", + "canonical_ids": "⿰虫尨", + "expanded_ids": "⿰虫⿰尤彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "彡", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛗", + "codepoint": "U+86D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86D7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛘", + "codepoint": "U+86D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86D8", + "status": "exact_ids", + "ids": "⿰虫羊", + "canonical_ids": "⿰虫羊", + "expanded_ids": "⿰虫羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "羊", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛙", + "codepoint": "U+86D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86D9", + "status": "exact_ids", + "ids": "⿰虫圭", + "canonical_ids": "⿰虫圭", + "expanded_ids": "⿰虫⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛚", + "codepoint": "U+86DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86DA", + "status": "exact_ids", + "ids": "⿰虫列", + "canonical_ids": "⿰虫列", + "expanded_ids": "⿰虫⿰⿻夕一刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "夕", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛛", + "codepoint": "U+86DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86DB", + "status": "exact_ids", + "ids": "⿰虫朱", + "canonical_ids": "⿰虫朱", + "expanded_ids": "⿰虫⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛜", + "codepoint": "U+86DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86DC", + "status": "exact_ids", + "ids": "⿰虫伊", + "canonical_ids": "⿰虫伊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "虫" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛝", + "codepoint": "U+86DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86DD", + "status": "exact_ids", + "ids": "⿰虫艮", + "canonical_ids": "⿰虫艮", + "expanded_ids": "⿰虫艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艮", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛞", + "codepoint": "U+86DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86DE", + "status": "exact_ids", + "ids": "⿰虫舌", + "canonical_ids": "⿰虫舌", + "expanded_ids": "⿰虫⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛟", + "codepoint": "U+86DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86DF", + "status": "exact_ids", + "ids": "⿰虫交", + "canonical_ids": "⿰虫交", + "expanded_ids": "⿰虫⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "父", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛠", + "codepoint": "U+86E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86E0", + "status": "exact_ids", + "ids": "⿰虫劦", + "canonical_ids": "⿰虫劦", + "expanded_ids": "⿰虫⿱力⿰力力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛡", + "codepoint": "U+86E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86E1", + "status": "exact_ids", + "ids": "⿰虫羽", + "canonical_ids": "⿰虫羽", + "expanded_ids": "⿰虫⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛢", + "codepoint": "U+86E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86E2", + "status": "exact_ids", + "ids": "⿰虫并", + "canonical_ids": "⿰虫并", + "expanded_ids": "⿰虫⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛣", + "codepoint": "U+86E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86E3", + "status": "exact_ids", + "ids": "⿰虫吉", + "canonical_ids": "⿰虫吉", + "expanded_ids": "⿰虫⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛤", + "codepoint": "U+86E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86E4", + "status": "exact_ids", + "ids": "⿰虫合", + "canonical_ids": "⿰虫合", + "expanded_ids": "⿰虫⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛥", + "codepoint": "U+86E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86E5", + "status": "exact_ids", + "ids": "⿰虫多", + "canonical_ids": "⿰虫多", + "expanded_ids": "⿰虫⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛦", + "codepoint": "U+86E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86E6", + "status": "exact_ids", + "ids": "⿰虫夷", + "canonical_ids": "⿰虫夷", + "expanded_ids": "⿰虫⿻大弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "弓", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛧", + "codepoint": "U+86E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86E7", + "status": "exact_ids", + "ids": "⿰虫网", + "canonical_ids": "⿰虫网", + "expanded_ids": "⿰虫网", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "网", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛨", + "codepoint": "U+86E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86E8", + "status": "exact_ids", + "ids": "⿰虫百", + "canonical_ids": "⿰虫百", + "expanded_ids": "⿰虫⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "日", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛩", + "codepoint": "U+86E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86E9", + "status": "exact_ids", + "ids": "⿱巩虫", + "canonical_ids": "⿱巩虫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "虫" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛪", + "codepoint": "U+86EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86EA", + "status": "exact_ids", + "ids": "⿱㓞虫", + "canonical_ids": "⿱㓞虫", + "expanded_ids": "⿱⿰丰刀虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛫", + "codepoint": "U+86EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86EB", + "status": "exact_ids", + "ids": "⿰虫危", + "canonical_ids": "⿰虫危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "虫" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛬", + "codepoint": "U+86EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86EC", + "status": "exact_ids", + "ids": "⿱共虫", + "canonical_ids": "⿱共虫", + "expanded_ids": "⿱⿱廿廾虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛭", + "codepoint": "U+86ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86ED", + "status": "exact_ids", + "ids": "⿰虫至", + "canonical_ids": "⿰虫至", + "expanded_ids": "⿰虫⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛮", + "codepoint": "U+86EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86EE", + "status": "exact_ids", + "ids": "⿱亦虫", + "canonical_ids": "⿱亦虫", + "expanded_ids": "⿱亦虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛯", + "codepoint": "U+86EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86EF", + "status": "exact_ids", + "ids": "⿰虫老", + "canonical_ids": "⿰虫老", + "expanded_ids": "⿰虫⿱⿻土丿匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛰", + "codepoint": "U+86F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86F0", + "status": "exact_ids", + "ids": "⿱执虫", + "canonical_ids": "⿱执虫", + "expanded_ids": "⿱⿰扌⿻九丶虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "扌", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛱", + "codepoint": "U+86F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86F1", + "status": "exact_ids", + "ids": "⿰虫夹", + "canonical_ids": "⿰虫夹", + "expanded_ids": "⿰虫⿻⿻一大丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛲", + "codepoint": "U+86F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86F2", + "status": "exact_ids", + "ids": "⿰虫尧", + "canonical_ids": "⿰虫尧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "尧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛳", + "codepoint": "U+86F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86F3", + "status": "exact_ids", + "ids": "⿰虫师", + "canonical_ids": "⿰虫师", + "expanded_ids": "⿰虫⿰刂⿱一⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "刂", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛴", + "codepoint": "U+86F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86F4", + "status": "exact_ids", + "ids": "⿰虫齐", + "canonical_ids": "⿰虫齐", + "expanded_ids": "⿰虫齐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "齐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛵", + "codepoint": "U+86F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86F5", + "status": "exact_ids", + "ids": "⿰虫巠", + "canonical_ids": "⿰虫巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛶", + "codepoint": "U+86F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86F6", + "status": "exact_ids", + "ids": "⿰虫寽", + "canonical_ids": "⿰虫寽", + "expanded_ids": "⿰虫⿱爫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "爫", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛷", + "codepoint": "U+86F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86F7", + "status": "exact_ids", + "ids": "⿰虫求", + "canonical_ids": "⿰虫求", + "expanded_ids": "⿰虫求", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "求", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛸", + "codepoint": "U+86F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86F8", + "status": "exact_ids", + "ids": "⿰虫肖", + "canonical_ids": "⿰虫肖", + "expanded_ids": "⿰虫⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛹", + "codepoint": "U+86F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86F9", + "status": "exact_ids", + "ids": "⿰虫甬", + "canonical_ids": "⿰虫甬", + "expanded_ids": "⿰虫⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "虫", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛺", + "codepoint": "U+86FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86FA", + "status": "exact_ids", + "ids": "⿰虫夾", + "canonical_ids": "⿰虫夾", + "expanded_ids": "⿰虫⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛻", + "codepoint": "U+86FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86FB", + "status": "exact_ids", + "ids": "⿰虫兌", + "canonical_ids": "⿰虫兌", + "expanded_ids": "⿰虫⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [ + "蜕" + ] + }, + { + "character": "蛼", + "codepoint": "U+86FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86FC", + "status": "exact_ids", + "ids": "⿰虫車", + "canonical_ids": "⿰虫車", + "expanded_ids": "⿰虫車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛽", + "codepoint": "U+86FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86FD", + "status": "exact_ids", + "ids": "⿰虫貝", + "canonical_ids": "⿰虫貝", + "expanded_ids": "⿰虫⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛾", + "codepoint": "U+86FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86FE", + "status": "exact_ids", + "ids": "⿰虫我", + "canonical_ids": "⿰虫我", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "虫" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蛿", + "codepoint": "U+86FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-86FF", + "status": "exact_ids", + "ids": "⿰虫含", + "canonical_ids": "⿰虫含", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "虫" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜀", + "codepoint": "U+8700", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8700", + "status": "exact_ids", + "ids": "⿱罒𠣜", + "canonical_ids": "⿱罒𠣜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜁", + "codepoint": "U+8701", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8701", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜂", + "codepoint": "U+8702", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8702", + "status": "exact_ids", + "ids": "⿰虫夆", + "canonical_ids": "⿰虫夆", + "expanded_ids": "⿰虫⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜃", + "codepoint": "U+8703", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8703", + "status": "exact_ids", + "ids": "⿱辰虫", + "canonical_ids": "⿱辰虫", + "expanded_ids": "⿱辰虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜄", + "codepoint": "U+8704", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8704", + "status": "exact_ids", + "ids": "⿰虫辰", + "canonical_ids": "⿰虫辰", + "expanded_ids": "⿰虫辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜅", + "codepoint": "U+8705", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8705", + "status": "exact_ids", + "ids": "⿰虫甫", + "canonical_ids": "⿰虫甫", + "expanded_ids": "⿰虫甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甫", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜆", + "codepoint": "U+8706", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8706", + "status": "exact_ids", + "ids": "⿰虫見", + "canonical_ids": "⿰虫見", + "expanded_ids": "⿰虫⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜇", + "codepoint": "U+8707", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8707", + "status": "exact_ids", + "ids": "⿱折虫", + "canonical_ids": "⿱折虫", + "expanded_ids": "⿱⿰扌斤虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "斤", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜈", + "codepoint": "U+8708", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8708", + "status": "exact_ids", + "ids": "⿰虫吴", + "canonical_ids": "⿰虫吴", + "expanded_ids": "⿰虫⿱口⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "大", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜉", + "codepoint": "U+8709", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8709", + "status": "exact_ids", + "ids": "⿰虫孚", + "canonical_ids": "⿰虫孚", + "expanded_ids": "⿰虫⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "爫", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜊", + "codepoint": "U+870A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-870A", + "status": "exact_ids", + "ids": "⿰虫利", + "canonical_ids": "⿰虫利", + "expanded_ids": "⿰虫⿰⿻丿木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜋", + "codepoint": "U+870B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-870B", + "status": "exact_ids", + "ids": "⿰虫良", + "canonical_ids": "⿰虫良", + "expanded_ids": "⿰虫⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "艮", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜌", + "codepoint": "U+870C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-870C", + "status": "exact_ids", + "ids": "⿰虫坒", + "canonical_ids": "⿰虫坒", + "expanded_ids": "⿰虫⿱⿰匕匕土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "土", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜍", + "codepoint": "U+870D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-870D", + "status": "exact_ids", + "ids": "⿰虫余", + "canonical_ids": "⿰虫余", + "expanded_ids": "⿰虫⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜎", + "codepoint": "U+870E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-870E", + "status": "exact_ids", + "ids": "⿰虫肙", + "canonical_ids": "⿰虫肙", + "expanded_ids": "⿰虫⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜏", + "codepoint": "U+870F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-870F", + "status": "exact_ids", + "ids": "⿰虫秀", + "canonical_ids": "⿰虫秀", + "expanded_ids": "⿰虫⿱⿻丿木乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乃", + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜐", + "codepoint": "U+8710", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8710", + "status": "exact_ids", + "ids": "⿰虫劫", + "canonical_ids": "⿰虫劫", + "expanded_ids": "⿰虫⿰⿱土厶力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "厶", + "土", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜑", + "codepoint": "U+8711", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8711", + "status": "exact_ids", + "ids": "⿱延虫", + "canonical_ids": "⿱延虫", + "expanded_ids": "⿱⿰廴⿱一止虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廴", + "止", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜒", + "codepoint": "U+8712", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8712", + "status": "exact_ids", + "ids": "⿰虫延", + "canonical_ids": "⿰虫延", + "expanded_ids": "⿰虫⿰廴⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廴", + "止", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜓", + "codepoint": "U+8713", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8713", + "status": "exact_ids", + "ids": "⿰虫廷", + "canonical_ids": "⿰虫廷", + "expanded_ids": "⿰虫⿰廴⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "廴", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜔", + "codepoint": "U+8714", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8714", + "status": "exact_ids", + "ids": "⿰虫甸", + "canonical_ids": "⿰虫甸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "甸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜕", + "codepoint": "U+8715", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8715", + "status": "exact_ids", + "ids": "⿰虫兌", + "canonical_ids": "⿰虫兌", + "expanded_ids": "⿰虫⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [ + "蛻" + ] + }, + { + "character": "蜖", + "codepoint": "U+8716", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8716", + "status": "exact_ids", + "ids": "⿰虫囬", + "canonical_ids": "⿰虫囬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "囬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜗", + "codepoint": "U+8717", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8717", + "status": "exact_ids", + "ids": "⿰虫呙", + "canonical_ids": "⿰虫呙", + "expanded_ids": "⿰虫⿱口⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜘", + "codepoint": "U+8718", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8718", + "status": "exact_ids", + "ids": "⿰虫知", + "canonical_ids": "⿰虫知", + "expanded_ids": "⿰虫⿰⿱⿻丿一大口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "大", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜙", + "codepoint": "U+8719", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8719", + "status": "exact_ids", + "ids": "⿰虫松", + "canonical_ids": "⿰虫松", + "expanded_ids": "⿰虫⿰木⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜚", + "codepoint": "U+871A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-871A", + "status": "exact_ids", + "ids": "⿱非虫", + "canonical_ids": "⿱非虫", + "expanded_ids": "⿱非虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜛", + "codepoint": "U+871B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-871B", + "status": "exact_ids", + "ids": "⿰虫居", + "canonical_ids": "⿰虫居", + "expanded_ids": "⿰虫⿱尸⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "尸", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜜", + "codepoint": "U+871C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-871C", + "status": "exact_ids", + "ids": "⿱宓虫", + "canonical_ids": "⿱宓虫", + "expanded_ids": "⿱⿱宀⿻心丿虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "宀", + "心", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜝", + "codepoint": "U+871D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-871D", + "status": "exact_ids", + "ids": "⿱其虫", + "canonical_ids": "⿱其虫", + "expanded_ids": "⿱其虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜞", + "codepoint": "U+871E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-871E", + "status": "exact_ids", + "ids": "⿰虫其", + "canonical_ids": "⿰虫其", + "expanded_ids": "⿰虫其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜟", + "codepoint": "U+871F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-871F", + "status": "exact_ids", + "ids": "⿰虫育", + "canonical_ids": "⿰虫育", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "育" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜠", + "codepoint": "U+8720", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8720", + "status": "exact_ids", + "ids": "⿰虫囷", + "canonical_ids": "⿰虫囷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "囷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜡", + "codepoint": "U+8721", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8721", + "status": "exact_ids", + "ids": "⿰虫昔", + "canonical_ids": "⿰虫昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "虫" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜢", + "codepoint": "U+8722", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8722", + "status": "exact_ids", + "ids": "⿰虫孟", + "canonical_ids": "⿰虫孟", + "expanded_ids": "⿰虫⿱子皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "皿", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜣", + "codepoint": "U+8723", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8723", + "status": "exact_ids", + "ids": "⿰虫羌", + "canonical_ids": "⿰虫羌", + "expanded_ids": "⿰虫⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "羊", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜤", + "codepoint": "U+8724", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8724", + "status": "exact_ids", + "ids": "⿱析虫", + "canonical_ids": "⿱析虫", + "expanded_ids": "⿱⿰木斤虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜥", + "codepoint": "U+8725", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8725", + "status": "exact_ids", + "ids": "⿰虫析", + "canonical_ids": "⿰虫析", + "expanded_ids": "⿰虫⿰木斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜦", + "codepoint": "U+8726", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8726", + "status": "exact_ids", + "ids": "⿰虫侖", + "canonical_ids": "⿰虫侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "虫" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜧", + "codepoint": "U+8727", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8727", + "status": "exact_ids", + "ids": "⿰虫戾", + "canonical_ids": "⿰虫戾", + "expanded_ids": "⿰虫⿱⿻丿尸⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "大", + "尸", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜨", + "codepoint": "U+8728", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8728", + "status": "exact_ids", + "ids": "⿰虫疌", + "canonical_ids": "⿰虫疌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "疌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜩", + "codepoint": "U+8729", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8729", + "status": "exact_ids", + "ids": "⿰虫周", + "canonical_ids": "⿰虫周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜪", + "codepoint": "U+872A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-872A", + "status": "exact_ids", + "ids": "⿰虫匋", + "canonical_ids": "⿰虫匋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "匋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜫", + "codepoint": "U+872B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-872B", + "status": "exact_ids", + "ids": "⿰虫昆", + "canonical_ids": "⿰虫昆", + "expanded_ids": "⿰虫⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜬", + "codepoint": "U+872C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-872C", + "status": "exact_ids", + "ids": "⿰虫函", + "canonical_ids": "⿰虫函", + "expanded_ids": "⿰虫函", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "函", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜭", + "codepoint": "U+872D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-872D", + "status": "exact_ids", + "ids": "⿰虫臽", + "canonical_ids": "⿰虫臽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "臼", + "虫" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜮", + "codepoint": "U+872E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-872E", + "status": "exact_ids", + "ids": "⿰虫或", + "canonical_ids": "⿰虫或", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "或" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜯", + "codepoint": "U+872F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-872F", + "status": "exact_ids", + "ids": "⿰虫奉", + "canonical_ids": "⿰虫奉", + "expanded_ids": "⿰虫⿱𡗗⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "虫", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 154, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜰", + "codepoint": "U+8730", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8730", + "status": "exact_ids", + "ids": "⿱肥虫", + "canonical_ids": "⿱肥虫", + "expanded_ids": "⿱⿰月巴虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "月", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜱", + "codepoint": "U+8731", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8731", + "status": "exact_ids", + "ids": "⿰虫卑", + "canonical_ids": "⿰虫卑", + "expanded_ids": "⿰虫卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜲", + "codepoint": "U+8732", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8732", + "status": "exact_ids", + "ids": "⿰虫委", + "canonical_ids": "⿰虫委", + "expanded_ids": "⿰虫⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜳", + "codepoint": "U+8733", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8733", + "status": "exact_ids", + "ids": "⿰虫享", + "canonical_ids": "⿰虫享", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜴", + "codepoint": "U+8734", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8734", + "status": "exact_ids", + "ids": "⿰虫易", + "canonical_ids": "⿰虫易", + "expanded_ids": "⿰虫⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "日", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜵", + "codepoint": "U+8735", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8735", + "status": "exact_ids", + "ids": "⿰虫𣶒", + "canonical_ids": "⿰虫𣶒", + "expanded_ids": "⿰虫𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 78, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜶", + "codepoint": "U+8736", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8736", + "status": "exact_ids", + "ids": "⿰虫卒", + "canonical_ids": "⿰虫卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜷", + "codepoint": "U+8737", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8737", + "status": "exact_ids", + "ids": "⿰虫卷", + "canonical_ids": "⿰虫卷", + "expanded_ids": "⿰虫⿱龹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "虫", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜸", + "codepoint": "U+8738", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8738", + "status": "exact_ids", + "ids": "⿱臤虫", + "canonical_ids": "⿱臤虫", + "expanded_ids": "⿱⿰臣又虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "臣", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜹", + "codepoint": "U+8739", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8739", + "status": "exact_ids", + "ids": "⿰虫芮", + "canonical_ids": "⿰虫芮", + "expanded_ids": "⿰虫⿱艹⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "艹", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜺", + "codepoint": "U+873A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-873A", + "status": "exact_ids", + "ids": "⿰虫兒", + "canonical_ids": "⿰虫兒", + "expanded_ids": "⿰虫⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "臼", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜻", + "codepoint": "U+873B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-873B", + "status": "exact_ids", + "ids": "⿰虫靑", + "canonical_ids": "⿰虫靑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "円", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜼", + "codepoint": "U+873C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-873C", + "status": "exact_ids", + "ids": "⿰虫隹", + "canonical_ids": "⿰虫隹", + "expanded_ids": "⿰虫隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜽", + "codepoint": "U+873D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-873D", + "status": "exact_ids", + "ids": "⿰虫兩", + "canonical_ids": "⿰虫兩", + "expanded_ids": "⿰虫⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜾", + "codepoint": "U+873E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-873E", + "status": "exact_ids", + "ids": "⿰虫果", + "canonical_ids": "⿰虫果", + "expanded_ids": "⿰虫⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蜿", + "codepoint": "U+873F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-873F", + "status": "exact_ids", + "ids": "⿰虫宛", + "canonical_ids": "⿰虫宛", + "expanded_ids": "⿰虫⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝀", + "codepoint": "U+8740", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8740", + "status": "exact_ids", + "ids": "⿰虫東", + "canonical_ids": "⿰虫東", + "expanded_ids": "⿰虫⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝁", + "codepoint": "U+8741", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8741", + "status": "exact_ids", + "ids": "⿱亞虫", + "canonical_ids": "⿱亞虫", + "expanded_ids": "⿱亞虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亞", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝂", + "codepoint": "U+8742", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8742", + "status": "exact_ids", + "ids": "⿰虫版", + "canonical_ids": "⿰虫版", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "片", + "虫" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝃", + "codepoint": "U+8743", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8743", + "status": "exact_ids", + "ids": "⿰虫叕", + "canonical_ids": "⿰虫叕", + "expanded_ids": "⿰虫⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝄", + "codepoint": "U+8744", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8744", + "status": "exact_ids", + "ids": "⿰虫罔", + "canonical_ids": "⿰虫罔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "罔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝅", + "codepoint": "U+8745", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8745", + "status": "exact_ids", + "ids": "⿱⿰天天虫", + "canonical_ids": "⿱⿰天天虫", + "expanded_ids": "⿱⿰⿻一大⿻一大虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝆", + "codepoint": "U+8746", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8746", + "status": "exact_ids", + "ids": "⿰虫芈", + "canonical_ids": "⿰虫芈", + "expanded_ids": "⿰虫⿻卝⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "卝", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝇", + "codepoint": "U+8747", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8747", + "status": "exact_ids", + "ids": "⿰虫黾", + "canonical_ids": "⿰虫黾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "虫" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝈", + "codepoint": "U+8748", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8748", + "status": "exact_ids", + "ids": "⿰虫国", + "canonical_ids": "⿰虫国", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "国" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝉", + "codepoint": "U+8749", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8749", + "status": "exact_ids", + "ids": "⿰虫単", + "canonical_ids": "⿰虫単", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "単" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝊", + "codepoint": "U+874A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-874A", + "status": "exact_ids", + "ids": "⿰虫定", + "canonical_ids": "⿰虫定", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "虫" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝋", + "codepoint": "U+874B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-874B", + "status": "exact_ids", + "ids": "⿰虫鼡", + "canonical_ids": "⿰虫鼡", + "expanded_ids": "⿰虫鼡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "鼡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝌", + "codepoint": "U+874C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-874C", + "status": "exact_ids", + "ids": "⿰虫科", + "canonical_ids": "⿰虫科", + "expanded_ids": "⿰虫⿰⿻丿木斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "斗", + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝍", + "codepoint": "U+874D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-874D", + "status": "exact_ids", + "ids": "⿰虫即", + "canonical_ids": "⿰虫即", + "expanded_ids": "⿰虫⿰艮卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "艮", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝎", + "codepoint": "U+874E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-874E", + "status": "exact_ids", + "ids": "⿰虫曷", + "canonical_ids": "⿰虫曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "虫" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝏", + "codepoint": "U+874F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-874F", + "status": "exact_ids", + "ids": "⿰虫亭", + "canonical_ids": "⿰虫亭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "亭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝐", + "codepoint": "U+8750", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8750", + "status": "exact_ids", + "ids": "⿰虫冒", + "canonical_ids": "⿰虫冒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "虫" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝑", + "codepoint": "U+8751", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8751", + "status": "exact_ids", + "ids": "⿰虫胥", + "canonical_ids": "⿰虫胥", + "expanded_ids": "⿰虫⿱疋月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "疋", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝒", + "codepoint": "U+8752", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8752", + "status": "exact_ids", + "ids": "⿰虫面", + "canonical_ids": "⿰虫面", + "expanded_ids": "⿰虫面", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "面" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝓", + "codepoint": "U+8753", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8753", + "status": "exact_ids", + "ids": "⿰虫兪", + "canonical_ids": "⿰虫兪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "兪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝔", + "codepoint": "U+8754", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8754", + "status": "exact_ids", + "ids": "⿰虫皆", + "canonical_ids": "⿰虫皆", + "expanded_ids": "⿰虫⿱⿰匕匕⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "日", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝕", + "codepoint": "U+8755", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8755", + "status": "exact_ids", + "ids": "⿰食虫", + "canonical_ids": "⿰食虫", + "expanded_ids": "⿰⿱人⿻丶艮虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝖", + "codepoint": "U+8756", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8756", + "status": "exact_ids", + "ids": "⿰虫宣", + "canonical_ids": "⿰虫宣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "虫" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝗", + "codepoint": "U+8757", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8757", + "status": "exact_ids", + "ids": "⿰虫皇", + "canonical_ids": "⿰虫皇", + "expanded_ids": "⿰虫⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "王", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝘", + "codepoint": "U+8758", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8758", + "status": "exact_ids", + "ids": "⿰虫匽", + "canonical_ids": "⿰虫匽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "匽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝙", + "codepoint": "U+8759", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8759", + "status": "exact_ids", + "ids": "⿰虫扁", + "canonical_ids": "⿰虫扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "虫" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝚", + "codepoint": "U+875A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-875A", + "status": "exact_ids", + "ids": "⿰虫柔", + "canonical_ids": "⿰虫柔", + "expanded_ids": "⿰虫⿱矛木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "矛", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝛", + "codepoint": "U+875B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-875B", + "status": "exact_ids", + "ids": "⿰虫威", + "canonical_ids": "⿰虫威", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "威" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝜", + "codepoint": "U+875C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-875C", + "status": "exact_ids", + "ids": "⿰虫負", + "canonical_ids": "⿰虫負", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "虫" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝝", + "codepoint": "U+875D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-875D", + "status": "exact_ids", + "ids": "⿰虫彖", + "canonical_ids": "⿰虫彖", + "expanded_ids": "⿰虫⿱彑𧰨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "虫", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝞", + "codepoint": "U+875E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-875E", + "status": "exact_ids", + "ids": "⿰虫眉", + "canonical_ids": "⿰虫眉", + "expanded_ids": "⿰虫⿱⿻尸丨目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "尸", + "目", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝟", + "codepoint": "U+875F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-875F", + "status": "exact_ids", + "ids": "⿰虫胃", + "canonical_ids": "⿰虫胃", + "expanded_ids": "⿰虫⿱田月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "田", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝠", + "codepoint": "U+8760", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8760", + "status": "exact_ids", + "ids": "⿰虫畐", + "canonical_ids": "⿰虫畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝡", + "codepoint": "U+8761", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8761", + "status": "exact_ids", + "ids": "⿰虫耎", + "canonical_ids": "⿰虫耎", + "expanded_ids": "⿰虫⿱而大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "而", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝢", + "codepoint": "U+8762", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8762", + "status": "exact_ids", + "ids": "⿰虫頁", + "canonical_ids": "⿰虫頁", + "expanded_ids": "⿰虫⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝣", + "codepoint": "U+8763", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8763", + "status": "exact_ids", + "ids": "⿰虫斿", + "canonical_ids": "⿰虫斿", + "expanded_ids": "⿰虫⿰⿰方人子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "子", + "方", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝤", + "codepoint": "U+8764", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8764", + "status": "exact_ids", + "ids": "⿰虫酋", + "canonical_ids": "⿰虫酋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "虫" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝥", + "codepoint": "U+8765", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8765", + "status": "exact_ids", + "ids": "⿱敄虫", + "canonical_ids": "⿱敄虫", + "expanded_ids": "⿱⿰矛攵虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "矛", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝦", + "codepoint": "U+8766", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8766", + "status": "exact_ids", + "ids": "⿰虫叚", + "canonical_ids": "⿰虫叚", + "expanded_ids": "⿰虫叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝧", + "codepoint": "U+8767", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8767", + "status": "exact_ids", + "ids": "⿰虫英", + "canonical_ids": "⿰虫英", + "expanded_ids": "⿰虫⿱艹⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "艹", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝨", + "codepoint": "U+8768", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8768", + "status": "exact_ids", + "ids": "⿱卂䖵", + "canonical_ids": "⿱卂䖵", + "expanded_ids": "⿱⿱乁十⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乁", + "十", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝩", + "codepoint": "U+8769", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8769", + "status": "exact_ids", + "ids": "⿰虫重", + "canonical_ids": "⿰虫重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "虫" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝪", + "codepoint": "U+876A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-876A", + "status": "exact_ids", + "ids": "⿰虫昜", + "canonical_ids": "⿰虫昜", + "expanded_ids": "⿰虫⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝫", + "codepoint": "U+876B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-876B", + "status": "exact_ids", + "ids": "⿰虫者", + "canonical_ids": "⿰虫者", + "expanded_ids": "⿰虫⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝬", + "codepoint": "U+876C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-876C", + "status": "exact_ids", + "ids": "⿰虫㚇", + "canonical_ids": "⿰虫㚇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "夊", + "虫" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝭", + "codepoint": "U+876D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-876D", + "status": "exact_ids", + "ids": "⿰虫是", + "canonical_ids": "⿰虫是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "虫" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝮", + "codepoint": "U+876E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-876E", + "status": "exact_ids", + "ids": "⿰虫复", + "canonical_ids": "⿰虫复", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "复" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝯", + "codepoint": "U+876F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-876F", + "status": "exact_ids", + "ids": "⿰虫爰", + "canonical_ids": "⿰虫爰", + "expanded_ids": "⿰虫⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "爫", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝰", + "codepoint": "U+8770", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8770", + "status": "exact_ids", + "ids": "⿰虫奎", + "canonical_ids": "⿰虫奎", + "expanded_ids": "⿰虫⿱大⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "大", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝱", + "codepoint": "U+8771", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8771", + "status": "exact_ids", + "ids": "⿱亡䖵", + "canonical_ids": "⿱亡䖵", + "expanded_ids": "⿱⿻亠乚⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝲", + "codepoint": "U+8772", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8772", + "status": "exact_ids", + "ids": "⿰虫剌", + "canonical_ids": "⿰虫剌", + "expanded_ids": "⿰虫⿰⿻木口刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "口", + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝳", + "codepoint": "U+8773", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8773", + "status": "exact_ids", + "ids": "⿰虫毒", + "canonical_ids": "⿰虫毒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毋", + "虫" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝴", + "codepoint": "U+8774", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8774", + "status": "exact_ids", + "ids": "⿰虫胡", + "canonical_ids": "⿰虫胡", + "expanded_ids": "⿰虫⿰⿻十口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "月", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝵", + "codepoint": "U+8775", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8775", + "status": "exact_ids", + "ids": "⿱秋虫", + "canonical_ids": "⿱秋虫", + "expanded_ids": "⿱⿰⿻丿木火虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "火", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝶", + "codepoint": "U+8776", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8776", + "status": "exact_ids", + "ids": "⿰虫枼", + "canonical_ids": "⿰虫枼", + "expanded_ids": "⿰虫⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝷", + "codepoint": "U+8777", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8777", + "status": "exact_ids", + "ids": "⿰虫㡿", + "canonical_ids": "⿰虫㡿", + "expanded_ids": "⿰虫⿱广⿱䒑屮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "屮", + "广", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝸", + "codepoint": "U+8778", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8778", + "status": "exact_ids", + "ids": "⿰虫咼", + "canonical_ids": "⿰虫咼", + "expanded_ids": "⿰虫⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝹", + "codepoint": "U+8779", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8779", + "status": "exact_ids", + "ids": "⿰虫𥁕", + "canonical_ids": "⿰虫𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "虫" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝺", + "codepoint": "U+877A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-877A", + "status": "exact_ids", + "ids": "⿰虫禹", + "canonical_ids": "⿰虫禹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "禹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝻", + "codepoint": "U+877B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-877B", + "status": "exact_ids", + "ids": "⿰虫南", + "canonical_ids": "⿰虫南", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "南" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝼", + "codepoint": "U+877C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-877C", + "status": "exact_ids", + "ids": "⿰虫娄", + "canonical_ids": "⿰虫娄", + "expanded_ids": "⿰虫⿱⿻木丷女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "女", + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝽", + "codepoint": "U+877D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-877D", + "status": "exact_ids", + "ids": "⿰虫春", + "canonical_ids": "⿰虫春", + "expanded_ids": "⿰虫⿱𡗗日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "虫", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝾", + "codepoint": "U+877E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-877E", + "status": "exact_ids", + "ids": "⿰虫荣", + "canonical_ids": "⿰虫荣", + "expanded_ids": "⿰虫⿳艹冖木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "木", + "艹", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 141, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蝿", + "codepoint": "U+877F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-877F", + "status": "exact_ids", + "ids": "⿰虫𤰶", + "canonical_ids": "⿰虫𤰶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螀", + "codepoint": "U+8780", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8780", + "status": "exact_ids", + "ids": "⿱将虫", + "canonical_ids": "⿱将虫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "将" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螁", + "codepoint": "U+8781", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8781", + "status": "exact_ids", + "ids": "⿰虫退", + "canonical_ids": "⿰虫退", + "expanded_ids": "⿰虫⿰辶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艮", + "虫", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螂", + "codepoint": "U+8782", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8782", + "status": "exact_ids", + "ids": "⿰虫郎", + "canonical_ids": "⿰虫郎", + "expanded_ids": "⿰虫⿰⿻丶艮阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "艮", + "虫", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螃", + "codepoint": "U+8783", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8783", + "status": "exact_ids", + "ids": "⿰虫旁", + "canonical_ids": "⿰虫旁", + "expanded_ids": "⿰虫⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "方", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螄", + "codepoint": "U+8784", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8784", + "status": "exact_ids", + "ids": "⿰虫師", + "canonical_ids": "⿰虫師", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "師" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螅", + "codepoint": "U+8785", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8785", + "status": "exact_ids", + "ids": "⿰虫息", + "canonical_ids": "⿰虫息", + "expanded_ids": "⿰虫⿱⿻目丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "心", + "目", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螆", + "codepoint": "U+8786", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8786", + "status": "exact_ids", + "ids": "⿰虫兹", + "canonical_ids": "⿰虫兹", + "expanded_ids": "⿰虫⿱䒑⿰幺幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "幺", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螇", + "codepoint": "U+8787", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8787", + "status": "exact_ids", + "ids": "⿰虫奚", + "canonical_ids": "⿰虫奚", + "expanded_ids": "⿰虫⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "幺", + "爪", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螈", + "codepoint": "U+8788", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8788", + "status": "exact_ids", + "ids": "⿰虫原", + "canonical_ids": "⿰虫原", + "expanded_ids": "⿰虫⿱厂⿱⿻日丶小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "小", + "日", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螉", + "codepoint": "U+8789", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8789", + "status": "exact_ids", + "ids": "⿰虫翁", + "canonical_ids": "⿰虫翁", + "expanded_ids": "⿰虫⿱⿱八厶⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "八", + "厶", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螊", + "codepoint": "U+878A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-878A", + "status": "exact_ids", + "ids": "⿰虫兼", + "canonical_ids": "⿰虫兼", + "expanded_ids": "⿰虫兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螋", + "codepoint": "U+878B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-878B", + "status": "exact_ids", + "ids": "⿰虫叟", + "canonical_ids": "⿰虫叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "虫" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螌", + "codepoint": "U+878C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-878C", + "status": "exact_ids", + "ids": "⿱般虫", + "canonical_ids": "⿱般虫", + "expanded_ids": "⿱⿰舟⿱几又虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "舟", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "融", + "codepoint": "U+878D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-878D", + "status": "exact_ids", + "ids": "⿰鬲虫", + "canonical_ids": "⿰鬲虫", + "expanded_ids": "⿰鬲虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螎", + "codepoint": "U+878E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-878E", + "status": "exact_ids", + "ids": "⿰虫鬲", + "canonical_ids": "⿰虫鬲", + "expanded_ids": "⿰虫鬲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螏", + "codepoint": "U+878F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-878F", + "status": "exact_ids", + "ids": "⿰虫疾", + "canonical_ids": "⿰虫疾", + "expanded_ids": "⿰虫⿱⿰冫广⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "冫", + "大", + "广", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螐", + "codepoint": "U+8790", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8790", + "status": "exact_ids", + "ids": "⿰虫烏", + "canonical_ids": "⿰虫烏", + "expanded_ids": "⿰虫烏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "烏", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螑", + "codepoint": "U+8791", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8791", + "status": "exact_ids", + "ids": "⿰虫臭", + "canonical_ids": "⿰虫臭", + "expanded_ids": "⿰虫⿱⿻目丶⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "目", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螒", + "codepoint": "U+8792", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8792", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螓", + "codepoint": "U+8793", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8793", + "status": "exact_ids", + "ids": "⿰虫秦", + "canonical_ids": "⿰虫秦", + "expanded_ids": "⿰虫⿱𡗗⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "虫", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 154, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螔", + "codepoint": "U+8794", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8794", + "status": "exact_ids", + "ids": "⿰虫虒", + "canonical_ids": "⿰虫虒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "虒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螕", + "codepoint": "U+8795", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8795", + "status": "exact_ids", + "ids": "⿰虫𣬉", + "canonical_ids": "⿰虫𣬉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "虫" + ], + "unresolved_leaves": [ + "囟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螖", + "codepoint": "U+8796", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8796", + "status": "exact_ids", + "ids": "⿰虫骨", + "canonical_ids": "⿰虫骨", + "expanded_ids": "⿰虫⿱冎月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螗", + "codepoint": "U+8797", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8797", + "status": "exact_ids", + "ids": "⿰虫唐", + "canonical_ids": "⿰虫唐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螘", + "codepoint": "U+8798", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8798", + "status": "exact_ids", + "ids": "⿰虫豈", + "canonical_ids": "⿰虫豈", + "expanded_ids": "⿰虫⿱山豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "虫", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螙", + "codepoint": "U+8799", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8799", + "status": "exact_ids", + "ids": "⿱木䖵", + "canonical_ids": "⿱木䖵", + "expanded_ids": "⿱木⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螚", + "codepoint": "U+879A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-879A", + "status": "exact_ids", + "ids": "⿱能虫", + "canonical_ids": "⿱能虫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "能" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螛", + "codepoint": "U+879B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-879B", + "status": "exact_ids", + "ids": "⿰虫害", + "canonical_ids": "⿰虫害", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "害" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螜", + "codepoint": "U+879C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-879C", + "status": "exact_ids", + "ids": "⿱𣪊虫", + "canonical_ids": "⿱𣪊虫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "𣪊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螝", + "codepoint": "U+879D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-879D", + "status": "exact_ids", + "ids": "⿰虫鬼", + "canonical_ids": "⿰虫鬼", + "expanded_ids": "⿰虫鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螞", + "codepoint": "U+879E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-879E", + "status": "exact_ids", + "ids": "⿰虫馬", + "canonical_ids": "⿰虫馬", + "expanded_ids": "⿰虫馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螟", + "codepoint": "U+879F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-879F", + "status": "exact_ids", + "ids": "⿰虫冥", + "canonical_ids": "⿰虫冥", + "expanded_ids": "⿰虫⿱冖⿱日⿱亠八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "日", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螠", + "codepoint": "U+87A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87A0", + "status": "exact_ids", + "ids": "⿰虫益", + "canonical_ids": "⿰虫益", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螡", + "codepoint": "U+87A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87A1", + "status": "exact_ids", + "ids": "⿱文䖵", + "canonical_ids": "⿱文䖵", + "expanded_ids": "⿱文⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螢", + "codepoint": "U+87A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87A2", + "status": "exact_ids", + "ids": "⿳炏冖虫", + "canonical_ids": "⿳炏冖虫", + "expanded_ids": "⿳⿰火火冖虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "火", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螣", + "codepoint": "U+87A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87A3", + "status": "exact_ids", + "ids": "⿰月䖭", + "canonical_ids": "⿰月䖭", + "expanded_ids": "⿰月⿱龹虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "虫", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螤", + "codepoint": "U+87A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87A4", + "status": "exact_ids", + "ids": "⿰蚉㬰", + "canonical_ids": "⿰蚉㬰", + "expanded_ids": "⿰⿱文虫⿻曰人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "文", + "曰", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螥", + "codepoint": "U+87A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87A5", + "status": "exact_ids", + "ids": "⿰虫倉", + "canonical_ids": "⿰虫倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螦", + "codepoint": "U+87A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87A6", + "status": "exact_ids", + "ids": "⿰虫素", + "canonical_ids": "⿰虫素", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "虫" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螧", + "codepoint": "U+87A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87A7", + "status": "exact_ids", + "ids": "⿰虫耆", + "canonical_ids": "⿰虫耆", + "expanded_ids": "⿰虫⿱⿱⿻土丿匕日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "日", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螨", + "codepoint": "U+87A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87A8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螩", + "codepoint": "U+87A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87A9", + "status": "exact_ids", + "ids": "⿰虫條", + "canonical_ids": "⿰虫條", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "條" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螪", + "codepoint": "U+87AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87AA", + "status": "exact_ids", + "ids": "⿰虫商", + "canonical_ids": "⿰虫商", + "expanded_ids": "⿰虫⿱⿱亠八⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冂", + "口", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螫", + "codepoint": "U+87AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87AB", + "status": "exact_ids", + "ids": "⿱赦虫", + "canonical_ids": "⿱赦虫", + "expanded_ids": "⿱⿰赤攵虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "虫", + "赤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螬", + "codepoint": "U+87AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87AC", + "status": "exact_ids", + "ids": "⿰虫曹", + "canonical_ids": "⿰虫曹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "曹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螭", + "codepoint": "U+87AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87AD", + "status": "exact_ids", + "ids": "⿰虫离", + "canonical_ids": "⿰虫离", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "禸", + "虫" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螮", + "codepoint": "U+87AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87AE", + "status": "exact_ids", + "ids": "⿰虫帶", + "canonical_ids": "⿰虫帶", + "expanded_ids": "⿰虫⿳卌冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "卌", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螯", + "codepoint": "U+87AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87AF", + "status": "exact_ids", + "ids": "⿱敖虫", + "canonical_ids": "⿱敖虫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螰", + "codepoint": "U+87B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87B0", + "status": "exact_ids", + "ids": "⿰虫鹿", + "canonical_ids": "⿰虫鹿", + "expanded_ids": "⿰虫鹿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螱", + "codepoint": "U+87B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87B1", + "status": "exact_ids", + "ids": "⿱尉虫", + "canonical_ids": "⿱尉虫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "尉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螲", + "codepoint": "U+87B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87B2", + "status": "exact_ids", + "ids": "⿰虫窒", + "canonical_ids": "⿰虫窒", + "expanded_ids": "⿰虫⿱⿱宀八⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "厶", + "土", + "宀", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螳", + "codepoint": "U+87B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87B3", + "status": "exact_ids", + "ids": "⿰虫堂", + "canonical_ids": "⿰虫堂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "虫" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螴", + "codepoint": "U+87B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87B4", + "status": "exact_ids", + "ids": "⿱陳虫", + "canonical_ids": "⿱陳虫", + "expanded_ids": "⿱⿰阝⿻木日虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "虫", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螵", + "codepoint": "U+87B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87B5", + "status": "exact_ids", + "ids": "⿰虫票", + "canonical_ids": "⿰虫票", + "expanded_ids": "⿰虫⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "虫", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螶", + "codepoint": "U+87B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87B6", + "status": "exact_ids", + "ids": "⿱巨䖵", + "canonical_ids": "⿱巨䖵", + "expanded_ids": "⿱巨⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螷", + "codepoint": "U+87B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87B7", + "status": "exact_ids", + "ids": "⿱庳虫", + "canonical_ids": "⿱庳虫", + "expanded_ids": "⿱⿱广卑虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "广", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螸", + "codepoint": "U+87B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87B8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螹", + "codepoint": "U+87B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87B9", + "status": "exact_ids", + "ids": "⿰虫斬", + "canonical_ids": "⿰虫斬", + "expanded_ids": "⿰虫⿰車斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "虫", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螺", + "codepoint": "U+87BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87BA", + "status": "exact_ids", + "ids": "⿰虫累", + "canonical_ids": "⿰虫累", + "expanded_ids": "⿰虫⿱田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "田", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螻", + "codepoint": "U+87BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87BB", + "status": "exact_ids", + "ids": "⿰虫婁", + "canonical_ids": "⿰虫婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螼", + "codepoint": "U+87BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87BC", + "status": "exact_ids", + "ids": "⿰虫堇", + "canonical_ids": "⿰虫堇", + "expanded_ids": "⿰虫堇", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螽", + "codepoint": "U+87BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87BD", + "status": "exact_ids", + "ids": "⿱冬䖵", + "canonical_ids": "⿱冬䖵", + "expanded_ids": "⿱⿱夂冫⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "夂", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螾", + "codepoint": "U+87BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87BE", + "status": "exact_ids", + "ids": "⿰虫寅", + "canonical_ids": "⿰虫寅", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "寅" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "螿", + "codepoint": "U+87BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87BF", + "status": "exact_ids", + "ids": "⿱將虫", + "canonical_ids": "⿱將虫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "將" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟀", + "codepoint": "U+87C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87C0", + "status": "exact_ids", + "ids": "⿰虫率", + "canonical_ids": "⿰虫率", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "率" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟁", + "codepoint": "U+87C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87C1", + "status": "exact_ids", + "ids": "⿱民䖵", + "canonical_ids": "⿱民䖵", + "expanded_ids": "⿱民⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "民", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟂", + "codepoint": "U+87C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87C2", + "status": "exact_ids", + "ids": "⿰虫梟", + "canonical_ids": "⿰虫梟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "梟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟃", + "codepoint": "U+87C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87C3", + "status": "exact_ids", + "ids": "⿰虫曼", + "canonical_ids": "⿰虫曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟄", + "codepoint": "U+87C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87C4", + "status": "exact_ids", + "ids": "⿱執虫", + "canonical_ids": "⿱執虫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "土", + "虫" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟅", + "codepoint": "U+87C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87C5", + "status": "exact_ids", + "ids": "⿰虫庶", + "canonical_ids": "⿰虫庶", + "expanded_ids": "⿰虫⿱广⿱廿火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "廿", + "火", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟆", + "codepoint": "U+87C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87C6", + "status": "exact_ids", + "ids": "⿰虫莫", + "canonical_ids": "⿰虫莫", + "expanded_ids": "⿰虫⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "艹", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟇", + "codepoint": "U+87C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87C7", + "status": "exact_ids", + "ids": "⿱莫虫", + "canonical_ids": "⿱莫虫", + "expanded_ids": "⿱⿱艹⿱日大虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "艹", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟈", + "codepoint": "U+87C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87C8", + "status": "exact_ids", + "ids": "⿰虫國", + "canonical_ids": "⿰虫國", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "國" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟉", + "codepoint": "U+87C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87C9", + "status": "exact_ids", + "ids": "⿰虫翏", + "canonical_ids": "⿰虫翏", + "expanded_ids": "⿰虫⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟊", + "codepoint": "U+87CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87CA", + "status": "exact_ids", + "ids": "⿱矛䖵", + "canonical_ids": "⿱矛䖵", + "expanded_ids": "⿱矛⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "矛", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟋", + "codepoint": "U+87CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87CB", + "status": "exact_ids", + "ids": "⿰虫悉", + "canonical_ids": "⿰虫悉", + "expanded_ids": "⿰虫⿱⿱丿⿻木丷心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "心", + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟌", + "codepoint": "U+87CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87CC", + "status": "exact_ids", + "ids": "⿰虫悤", + "canonical_ids": "⿰虫悤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "虫" + ], + "unresolved_leaves": [ + "囱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟍", + "codepoint": "U+87CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87CD", + "status": "exact_ids", + "ids": "⿰虫梨", + "canonical_ids": "⿰虫梨", + "expanded_ids": "⿰虫⿱⿰⿻丿木刂木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟎", + "codepoint": "U+87CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87CE", + "status": "exact_ids", + "ids": "⿰虫㒼", + "canonical_ids": "⿰虫㒼", + "expanded_ids": "⿰虫⿱艹⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "艹", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 264, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟏", + "codepoint": "U+87CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87CF", + "status": "exact_ids", + "ids": "⿰虫萧", + "canonical_ids": "⿰虫萧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "虫" + ], + "unresolved_leaves": [ + "肃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟐", + "codepoint": "U+87D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87D0", + "status": "exact_ids", + "ids": "⿰虫常", + "canonical_ids": "⿰虫常", + "expanded_ids": "⿰虫⿳小冖⿱口⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "口", + "小", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟑", + "codepoint": "U+87D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87D1", + "status": "exact_ids", + "ids": "⿰虫章", + "canonical_ids": "⿰虫章", + "expanded_ids": "⿰虫⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "立", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟒", + "codepoint": "U+87D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87D2", + "status": "exact_ids", + "ids": "⿰虫莽", + "canonical_ids": "⿰虫莽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "莽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟓", + "codepoint": "U+87D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87D3", + "status": "exact_ids", + "ids": "⿰虫象", + "canonical_ids": "⿰虫象", + "expanded_ids": "⿰虫象", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "象" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟔", + "codepoint": "U+87D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87D4", + "status": "exact_ids", + "ids": "⿰虫黑", + "canonical_ids": "⿰虫黑", + "expanded_ids": "⿰虫黑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟕", + "codepoint": "U+87D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87D5", + "status": "exact_ids", + "ids": "⿰虫觜", + "canonical_ids": "⿰虫觜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "匕", + "月", + "止", + "虫" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟖", + "codepoint": "U+87D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87D6", + "status": "exact_ids", + "ids": "⿰虫斯", + "canonical_ids": "⿰虫斯", + "expanded_ids": "⿰虫⿰其斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "斤", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟗", + "codepoint": "U+87D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87D7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟘", + "codepoint": "U+87D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87D8", + "status": "exact_ids", + "ids": "⿰虫貸", + "canonical_ids": "⿰虫貸", + "expanded_ids": "⿰虫⿱⿰亻弋⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "弋", + "目", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟙", + "codepoint": "U+87D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87D9", + "status": "exact_ids", + "ids": "⿰虫戠", + "canonical_ids": "⿰虫戠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "立", + "虫" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟚", + "codepoint": "U+87DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87DA", + "status": "exact_ids", + "ids": "⿱彭虫", + "canonical_ids": "⿱彭虫", + "expanded_ids": "⿱⿰⿱十豆彡虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "彡", + "虫", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟛", + "codepoint": "U+87DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87DB", + "status": "exact_ids", + "ids": "⿰虫彭", + "canonical_ids": "⿰虫彭", + "expanded_ids": "⿰虫⿰⿱十豆彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "彡", + "虫", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟜", + "codepoint": "U+87DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87DC", + "status": "exact_ids", + "ids": "⿰虫喬", + "canonical_ids": "⿰虫喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "虫" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟝", + "codepoint": "U+87DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87DD", + "status": "exact_ids", + "ids": "⿰虫渠", + "canonical_ids": "⿰虫渠", + "expanded_ids": "⿰虫⿱⿰氵巨木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "木", + "氵", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟞", + "codepoint": "U+87DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87DE", + "status": "exact_ids", + "ids": "⿱敝虫", + "canonical_ids": "⿱敝虫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "虫" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟟", + "codepoint": "U+87DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87DF", + "status": "exact_ids", + "ids": "⿰虫尞", + "canonical_ids": "⿰虫尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "虫" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟠", + "codepoint": "U+87E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87E0", + "status": "exact_ids", + "ids": "⿰虫番", + "canonical_ids": "⿰虫番", + "expanded_ids": "⿰虫⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "木", + "田", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟡", + "codepoint": "U+87E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87E1", + "status": "exact_ids", + "ids": "⿰虫為", + "canonical_ids": "⿰虫為", + "expanded_ids": "⿰虫為", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "為", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟢", + "codepoint": "U+87E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87E2", + "status": "exact_ids", + "ids": "⿰虫喜", + "canonical_ids": "⿰虫喜", + "expanded_ids": "⿰虫⿱⿱十豆口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "虫", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟣", + "codepoint": "U+87E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87E3", + "status": "exact_ids", + "ids": "⿰虫幾", + "canonical_ids": "⿰虫幾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "虫" + ], + "unresolved_leaves": [ + "戍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟤", + "codepoint": "U+87E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87E4", + "status": "exact_ids", + "ids": "⿰虫巽", + "canonical_ids": "⿰虫巽", + "expanded_ids": "⿰虫⿱⿰己己⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "廾", + "廿", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟥", + "codepoint": "U+87E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87E5", + "status": "exact_ids", + "ids": "⿰虫黄", + "canonical_ids": "⿰虫黄", + "expanded_ids": "⿰虫黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟦", + "codepoint": "U+87E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87E6", + "status": "exact_ids", + "ids": "⿰虫賁", + "canonical_ids": "⿰虫賁", + "expanded_ids": "⿰虫⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "廾", + "目", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟧", + "codepoint": "U+87E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87E7", + "status": "exact_ids", + "ids": "⿰虫勞", + "canonical_ids": "⿰虫勞", + "expanded_ids": "⿰虫⿳⿰火火冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "火", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟨", + "codepoint": "U+87E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87E8", + "status": "exact_ids", + "ids": "⿱厥虫", + "canonical_ids": "⿱厥虫", + "expanded_ids": "⿱⿱厂⿰⿱䒑屮欠虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "厂", + "屮", + "欠", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟩", + "codepoint": "U+87E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87E9", + "status": "exact_ids", + "ids": "⿰虫厥", + "canonical_ids": "⿰虫厥", + "expanded_ids": "⿰虫⿱厂⿰⿱䒑屮欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "厂", + "屮", + "欠", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟪", + "codepoint": "U+87EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87EA", + "status": "exact_ids", + "ids": "⿰虫惠", + "canonical_ids": "⿰虫惠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "心", + "虫" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟫", + "codepoint": "U+87EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87EB", + "status": "exact_ids", + "ids": "⿰虫覃", + "canonical_ids": "⿰虫覃", + "expanded_ids": "⿰虫⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "虫", + "襾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟬", + "codepoint": "U+87EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87EC", + "status": "exact_ids", + "ids": "⿰虫單", + "canonical_ids": "⿰虫單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟭", + "codepoint": "U+87ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87ED", + "status": "exact_ids", + "ids": "⿰虫焦", + "canonical_ids": "⿰虫焦", + "expanded_ids": "⿰虫⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬", + "虫", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟮", + "codepoint": "U+87EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87EE", + "status": "exact_ids", + "ids": "⿰虫善", + "canonical_ids": "⿰虫善", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "善" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟯", + "codepoint": "U+87EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87EF", + "status": "exact_ids", + "ids": "⿰虫堯", + "canonical_ids": "⿰虫堯", + "expanded_ids": "⿰虫⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟰", + "codepoint": "U+87F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87F0", + "status": "exact_ids", + "ids": "⿰虫肅", + "canonical_ids": "⿰虫肅", + "expanded_ids": "⿰虫⿻肀𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "肀", + "虫", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 118, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟱", + "codepoint": "U+87F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87F1", + "status": "exact_ids", + "ids": "⿰虫無", + "canonical_ids": "⿰虫無", + "expanded_ids": "⿰虫無", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "無", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟲", + "codepoint": "U+87F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87F2", + "status": "exact_ids", + "ids": "⿱虫⿰虫虫", + "canonical_ids": "⿱虫⿰虫虫", + "expanded_ids": "⿱虫⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟳", + "codepoint": "U+87F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87F3", + "status": "exact_ids", + "ids": "⿰虫尋", + "canonical_ids": "⿰虫尋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "尋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟴", + "codepoint": "U+87F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87F4", + "status": "exact_ids", + "ids": "⿱斯虫", + "canonical_ids": "⿱斯虫", + "expanded_ids": "⿱⿰其斤虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "斤", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟵", + "codepoint": "U+87F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87F5", + "status": "exact_ids", + "ids": "⿰虫厨", + "canonical_ids": "⿰虫厨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "厨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟶", + "codepoint": "U+87F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87F6", + "status": "exact_ids", + "ids": "⿰虫聖", + "canonical_ids": "⿰虫聖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "虫" + ], + "unresolved_leaves": [ + "𦔻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟷", + "codepoint": "U+87F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87F7", + "status": "exact_ids", + "ids": "⿰虫當", + "canonical_ids": "⿰虫當", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "田", + "虫" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟸", + "codepoint": "U+87F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87F8", + "status": "exact_ids", + "ids": "⿱豕䖵", + "canonical_ids": "⿱豕䖵", + "expanded_ids": "⿱豕⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟹", + "codepoint": "U+87F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87F9", + "status": "exact_ids", + "ids": "⿱解虫", + "canonical_ids": "⿱解虫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "解" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟺", + "codepoint": "U+87FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87FA", + "status": "exact_ids", + "ids": "⿰虫亶", + "canonical_ids": "⿰虫亶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "日", + "虫" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟻", + "codepoint": "U+87FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87FB", + "status": "exact_ids", + "ids": "⿰虫義", + "canonical_ids": "⿰虫義", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "義" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟼", + "codepoint": "U+87FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87FC", + "status": "exact_ids", + "ids": "⿱敬虫", + "canonical_ids": "⿱敬虫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "艹", + "虫" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟽", + "codepoint": "U+87FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87FD", + "status": "exact_ids", + "ids": "⿰虫達", + "canonical_ids": "⿰虫達", + "expanded_ids": "⿰虫⿰辶⿱土羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "羊", + "虫", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟾", + "codepoint": "U+87FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87FE", + "status": "exact_ids", + "ids": "⿰虫詹", + "canonical_ids": "⿰虫詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蟿", + "codepoint": "U+87FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-87FF", + "status": "exact_ids", + "ids": "⿱𣪠虫", + "canonical_ids": "⿱𣪠虫", + "expanded_ids": "⿱⿰⿱車凵⿱几又虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "凵", + "又", + "虫", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠀", + "codepoint": "U+8800", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8800", + "status": "exact_ids", + "ids": "⿰虫資", + "canonical_ids": "⿰虫資", + "expanded_ids": "⿰虫⿱⿰冫欠⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冫", + "欠", + "目", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠁", + "codepoint": "U+8801", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8801", + "status": "exact_ids", + "ids": "⿱鄉虫", + "canonical_ids": "⿱鄉虫", + "expanded_ids": "⿱⿰乡⿰⿻丶艮阝虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乡", + "艮", + "虫", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠂", + "codepoint": "U+8802", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8802", + "status": "exact_ids", + "ids": "⿰虫葉", + "canonical_ids": "⿰虫葉", + "expanded_ids": "⿰虫⿱艹⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木", + "艹", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠃", + "codepoint": "U+8803", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8803", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠄", + "codepoint": "U+8804", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8804", + "status": "exact_ids", + "ids": "⿰虫禽", + "canonical_ids": "⿰虫禽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "人", + "禸", + "虫" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠅", + "codepoint": "U+8805", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8805", + "status": "exact_ids", + "ids": "⿰虫黽", + "canonical_ids": "⿰虫黽", + "expanded_ids": "⿰虫黽", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "黽" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠆", + "codepoint": "U+8806", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8806", + "status": "exact_ids", + "ids": "⿱萬虫", + "canonical_ids": "⿱萬虫", + "expanded_ids": "⿱⿱艹⿻田禸虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "禸", + "艹", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠇", + "codepoint": "U+8807", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8807", + "status": "exact_ids", + "ids": "⿰虫萬", + "canonical_ids": "⿰虫萬", + "expanded_ids": "⿰虫⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "禸", + "艹", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠈", + "codepoint": "U+8808", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8808", + "status": "exact_ids", + "ids": "⿱賊虫", + "canonical_ids": "⿱賊虫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目", + "虫" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠉", + "codepoint": "U+8809", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8809", + "status": "exact_ids", + "ids": "⿰虫睘", + "canonical_ids": "⿰虫睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠊", + "codepoint": "U+880A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-880A", + "status": "exact_ids", + "ids": "⿰虫廉", + "canonical_ids": "⿰虫廉", + "expanded_ids": "⿰虫⿱广兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "广", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠋", + "codepoint": "U+880B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-880B", + "status": "exact_ids", + "ids": "⿰虫蜀", + "canonical_ids": "⿰虫蜀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒", + "虫" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠌", + "codepoint": "U+880C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-880C", + "status": "exact_ids", + "ids": "⿰虫睪", + "canonical_ids": "⿰虫睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "罒", + "虫" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠍", + "codepoint": "U+880D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-880D", + "status": "exact_ids", + "ids": "⿰虫歇", + "canonical_ids": "⿰虫歇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "欠", + "虫" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠎", + "codepoint": "U+880E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-880E", + "status": "exact_ids", + "ids": "⿰虫莾", + "canonical_ids": "⿰虫莾", + "expanded_ids": "⿰虫⿱艹⿱大⿱十廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "大", + "廾", + "艹", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠏", + "codepoint": "U+880F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-880F", + "status": "exact_ids", + "ids": "⿰虫解", + "canonical_ids": "⿰虫解", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "解" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠐", + "codepoint": "U+8810", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8810", + "status": "exact_ids", + "ids": "⿰虫齊", + "canonical_ids": "⿰虫齊", + "expanded_ids": "⿰虫齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠑", + "codepoint": "U+8811", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8811", + "status": "exact_ids", + "ids": "⿰虫榮", + "canonical_ids": "⿰虫榮", + "expanded_ids": "⿰虫⿳⿰火火冖木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "木", + "火", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠒", + "codepoint": "U+8812", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8812", + "status": "exact_ids", + "ids": "⿱爾虫", + "canonical_ids": "⿱爾虫", + "expanded_ids": "⿱爾虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爾", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠓", + "codepoint": "U+8813", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8813", + "status": "exact_ids", + "ids": "⿰虫蒙", + "canonical_ids": "⿰虫蒙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "虫", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠔", + "codepoint": "U+8814", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8814", + "status": "exact_ids", + "ids": "⿰虫豪", + "canonical_ids": "⿰虫豪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "豪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠕", + "codepoint": "U+8815", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8815", + "status": "exact_ids", + "ids": "⿰虫需", + "canonical_ids": "⿰虫需", + "expanded_ids": "⿰虫⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "而", + "虫", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠖", + "codepoint": "U+8816", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8816", + "status": "exact_ids", + "ids": "⿰虫蒦", + "canonical_ids": "⿰虫蒦", + "expanded_ids": "⿰虫⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "艹", + "虫", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠗", + "codepoint": "U+8817", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8817", + "status": "exact_ids", + "ids": "⿰虫翟", + "canonical_ids": "⿰虫翟", + "expanded_ids": "⿰虫⿱⿰习习隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "虫", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠘", + "codepoint": "U+8818", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8818", + "status": "exact_ids", + "ids": "⿰虫截", + "canonical_ids": "⿰虫截", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "虫", + "隹" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠙", + "codepoint": "U+8819", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8819", + "status": "exact_ids", + "ids": "⿰虫賓", + "canonical_ids": "⿰虫賓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠚", + "codepoint": "U+881A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-881A", + "status": "exact_ids", + "ids": "⿱若䖵", + "canonical_ids": "⿱若䖵", + "expanded_ids": "⿱⿱艹⿱⿻丿一口⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "艹", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 228, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠛", + "codepoint": "U+881B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-881B", + "status": "exact_ids", + "ids": "⿰虫蔑", + "canonical_ids": "⿰虫蔑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "艹", + "虫" + ], + "unresolved_leaves": [ + "戌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠜", + "codepoint": "U+881C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-881C", + "status": "exact_ids", + "ids": "⿱樊虫", + "canonical_ids": "⿱樊虫", + "expanded_ids": "⿱⿱⿲木⿱乂乂木大虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "大", + "木", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠝", + "codepoint": "U+881D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-881D", + "status": "exact_ids", + "ids": "⿰虫畾", + "canonical_ids": "⿰虫畾", + "expanded_ids": "⿰虫⿱田⿰田田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠞", + "codepoint": "U+881E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-881E", + "status": "exact_ids", + "ids": "⿱節虫", + "canonical_ids": "⿱節虫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "艮", + "虫" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠟", + "codepoint": "U+881F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-881F", + "status": "exact_ids", + "ids": "⿰虫巤", + "canonical_ids": "⿰虫巤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "巤" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠠", + "codepoint": "U+8820", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8820", + "status": "exact_ids", + "ids": "⿱面䖵", + "canonical_ids": "⿱面䖵", + "expanded_ids": "⿱面⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "面" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠡", + "codepoint": "U+8821", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8821", + "status": "exact_ids", + "ids": "⿱彖䖵", + "canonical_ids": "⿱彖䖵", + "expanded_ids": "⿱⿱彑𧰨⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "虫", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 156, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠢", + "codepoint": "U+8822", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8822", + "status": "exact_ids", + "ids": "⿱春䖵", + "canonical_ids": "⿱春䖵", + "expanded_ids": "⿱⿱𡗗日⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "虫", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 156, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠣", + "codepoint": "U+8823", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8823", + "status": "exact_ids", + "ids": "⿰虫厲", + "canonical_ids": "⿰虫厲", + "expanded_ids": "⿰虫⿱厂⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "田", + "禸", + "艹", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠤", + "codepoint": "U+8824", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8824", + "status": "exact_ids", + "ids": "⿱酋䖵", + "canonical_ids": "⿱酋䖵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "虫" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠥", + "codepoint": "U+8825", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8825", + "status": "exact_ids", + "ids": "⿱辥虫", + "canonical_ids": "⿱辥虫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立", + "虫" + ], + "unresolved_leaves": [ + "𡴎" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠦", + "codepoint": "U+8826", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8826", + "status": "exact_ids", + "ids": "⿰虫盧", + "canonical_ids": "⿰虫盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "虫" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠧", + "codepoint": "U+8827", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8827", + "status": "exact_ids", + "ids": "⿱𥑟䖵", + "canonical_ids": "⿱𥑟䖵", + "expanded_ids": "⿱⿳士冖石⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "士", + "石", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 179, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠨", + "codepoint": "U+8828", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8828", + "status": "exact_ids", + "ids": "⿰虫蕭", + "canonical_ids": "⿰虫蕭", + "expanded_ids": "⿰虫⿱艹⿻肀𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "肀", + "艹", + "虫", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 158, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠩", + "codepoint": "U+8829", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8829", + "status": "exact_ids", + "ids": "⿰虫諸", + "canonical_ids": "⿰虫諸", + "expanded_ids": "⿰虫⿰言⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "虫", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠪", + "codepoint": "U+882A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-882A", + "status": "exact_ids", + "ids": "⿱龍虫", + "canonical_ids": "⿱龍虫", + "expanded_ids": "⿱龍虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠫", + "codepoint": "U+882B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-882B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠬", + "codepoint": "U+882C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-882C", + "status": "exact_ids", + "ids": "⿰虫龍", + "canonical_ids": "⿰虫龍", + "expanded_ids": "⿰虫龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠭", + "codepoint": "U+882D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-882D", + "status": "exact_ids", + "ids": "⿱逢䖵", + "canonical_ids": "⿱逢䖵", + "expanded_ids": "⿱⿰辶⿱夂丰⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "虫", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠮", + "codepoint": "U+882E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-882E", + "status": "exact_ids", + "ids": "⿰虫翳", + "canonical_ids": "⿰虫翳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "几", + "又", + "虫" + ], + "unresolved_leaves": [ + "医" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠯", + "codepoint": "U+882F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-882F", + "status": "exact_ids", + "ids": "⿱庳䖵", + "canonical_ids": "⿱庳䖵", + "expanded_ids": "⿱⿱广卑⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "广", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠰", + "codepoint": "U+8830", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8830", + "status": "exact_ids", + "ids": "⿰虫襄", + "canonical_ids": "⿰虫襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠱", + "codepoint": "U+8831", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8831", + "status": "exact_ids", + "ids": "⿱蟲皿", + "canonical_ids": "⿱蟲皿", + "expanded_ids": "⿱⿱虫⿰虫虫皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠲", + "codepoint": "U+8832", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8832", + "status": "exact_ids", + "ids": "⿰益蜀", + "canonical_ids": "⿰益蜀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒" + ], + "unresolved_leaves": [ + "益", + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠳", + "codepoint": "U+8833", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8833", + "status": "exact_ids", + "ids": "⿰虫嬰", + "canonical_ids": "⿰虫嬰", + "expanded_ids": "⿰虫⿱⿰⿱目八⿱目八女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "女", + "目", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠴", + "codepoint": "U+8834", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8834", + "status": "exact_ids", + "ids": "⿰虫薯", + "canonical_ids": "⿰虫薯", + "expanded_ids": "⿰虫⿱艹⿱罒⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "罒", + "艹", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠵", + "codepoint": "U+8835", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8835", + "status": "exact_ids", + "ids": "⿰虫巂", + "canonical_ids": "⿰虫巂", + "expanded_ids": "⿰虫⿱⿱山隹⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "山", + "虫", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠶", + "codepoint": "U+8836", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8836", + "status": "exact_ids", + "ids": "⿱朁䖵", + "canonical_ids": "⿱朁䖵", + "expanded_ids": "⿱⿱⿰旡旡曰⿰虫虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "旡", + "曰", + "虫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠷", + "codepoint": "U+8837", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8837", + "status": "exact_ids", + "ids": "⿰虫瞿", + "canonical_ids": "⿰虫瞿", + "expanded_ids": "⿰虫⿱⿰目目隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "虫", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠸", + "codepoint": "U+8838", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8838", + "status": "exact_ids", + "ids": "⿰虫雚", + "canonical_ids": "⿰虫雚", + "expanded_ids": "⿰虫⿱艹⿱⿰口口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艹", + "虫", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠹", + "codepoint": "U+8839", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8839", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠺", + "codepoint": "U+883A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-883A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠻", + "codepoint": "U+883B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-883B", + "status": "exact_ids", + "ids": "⿱䜌虫", + "canonical_ids": "⿱䜌虫", + "expanded_ids": "⿱⿲⿱幺小言⿱幺小虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "虫", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 217, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠼", + "codepoint": "U+883C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-883C", + "status": "exact_ids", + "ids": "⿰虫矍", + "canonical_ids": "⿰虫矍", + "expanded_ids": "⿰虫⿱⿰目目⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "目", + "虫", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠽", + "codepoint": "U+883D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-883D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠾", + "codepoint": "U+883E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-883E", + "status": "exact_ids", + "ids": "⿰虫屬", + "canonical_ids": "⿰虫屬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫" + ], + "unresolved_leaves": [ + "屬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蠿", + "codepoint": "U+883F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-883F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "血", + "codepoint": "U+8840", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8840", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衁", + "codepoint": "U+8841", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8841", + "status": "exact_ids", + "ids": "⿱亡血", + "canonical_ids": "⿱亡血", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠" + ], + "unresolved_leaves": [ + "血" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衂", + "codepoint": "U+8842", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8842", + "status": "exact_ids", + "ids": "⿰血刄", + "canonical_ids": "⿰血刄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乀", + "刀" + ], + "unresolved_leaves": [ + "血" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衃", + "codepoint": "U+8843", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8843", + "status": "exact_ids", + "ids": "⿰血不", + "canonical_ids": "⿰血不", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不" + ], + "unresolved_leaves": [ + "血" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衄", + "codepoint": "U+8844", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8844", + "status": "exact_ids", + "ids": "⿰血丑", + "canonical_ids": "⿰血丑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑" + ], + "unresolved_leaves": [ + "血" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衅", + "codepoint": "U+8845", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8845", + "status": "exact_ids", + "ids": "⿰血半", + "canonical_ids": "⿰血半", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半" + ], + "unresolved_leaves": [ + "血" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衆", + "codepoint": "U+8846", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8846", + "status": "exact_ids", + "ids": "⿱血乑", + "canonical_ids": "⿱血乑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乑" + ], + "unresolved_leaves": [ + "血" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衇", + "codepoint": "U+8847", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8847", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衈", + "codepoint": "U+8848", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8848", + "status": "exact_ids", + "ids": "⿰血耳", + "canonical_ids": "⿰血耳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳" + ], + "unresolved_leaves": [ + "血" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衉", + "codepoint": "U+8849", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8849", + "status": "exact_ids", + "ids": "⿰血各", + "canonical_ids": "⿰血各", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂" + ], + "unresolved_leaves": [ + "血" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衊", + "codepoint": "U+884A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-884A", + "status": "exact_ids", + "ids": "⿰血蔑", + "canonical_ids": "⿰血蔑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "艹" + ], + "unresolved_leaves": [ + "戌", + "血" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衋", + "codepoint": "U+884B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-884B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "行", + "codepoint": "U+884C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-884C", + "status": "exact_ids", + "ids": "⿰彳彳", + "canonical_ids": "⿰彳彳", + "expanded_ids": "⿰彳彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衍", + "codepoint": "U+884D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-884D", + "status": "exact_ids", + "ids": "⿲彳氵彳", + "canonical_ids": "⿲彳氵彳", + "expanded_ids": "⿲彳氵彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "氵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衎", + "codepoint": "U+884E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-884E", + "status": "exact_ids", + "ids": "⿲彳干彳", + "canonical_ids": "⿲彳干彳", + "expanded_ids": "⿲彳⿱一十彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衏", + "codepoint": "U+884F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-884F", + "status": "exact_ids", + "ids": "⿲彳元彳", + "canonical_ids": "⿲彳元彳", + "expanded_ids": "⿲彳⿱一⿱一儿彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衐", + "codepoint": "U+8850", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8850", + "status": "exact_ids", + "ids": "⿲彳巨彳", + "canonical_ids": "⿲彳巨彳", + "expanded_ids": "⿲彳巨彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 99, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衑", + "codepoint": "U+8851", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8851", + "status": "exact_ids", + "ids": "⿲彳令彳", + "canonical_ids": "⿲彳令彳", + "expanded_ids": "⿲彳⿱⿱人一龴彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "彳", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衒", + "codepoint": "U+8852", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8852", + "status": "exact_ids", + "ids": "⿲彳玄彳", + "canonical_ids": "⿲彳玄彳", + "expanded_ids": "⿲彳⿱亠幺彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "術", + "codepoint": "U+8853", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8853", + "status": "exact_ids", + "ids": "⿲彳朮彳", + "canonical_ids": "⿲彳朮彳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳" + ], + "unresolved_leaves": [ + "朮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衔", + "codepoint": "U+8854", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8854", + "status": "exact_ids", + "ids": "⿲彳钅彳", + "canonical_ids": "⿲彳钅彳", + "expanded_ids": "⿲彳钅彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 101, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衕", + "codepoint": "U+8855", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8855", + "status": "exact_ids", + "ids": "⿲彳同彳", + "canonical_ids": "⿲彳同彳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衖", + "codepoint": "U+8856", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8856", + "status": "exact_ids", + "ids": "⿲彳共彳", + "canonical_ids": "⿲彳共彳", + "expanded_ids": "⿲彳⿱廿廾彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "街", + "codepoint": "U+8857", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8857", + "status": "exact_ids", + "ids": "⿲彳圭彳", + "canonical_ids": "⿲彳圭彳", + "expanded_ids": "⿲彳⿱土土彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衘", + "codepoint": "U+8858", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8858", + "status": "exact_ids", + "ids": "⿲彳𦈢彳", + "canonical_ids": "⿲彳𦈢彳", + "expanded_ids": "⿲彳𦈢彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "𦈢" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 105, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衙", + "codepoint": "U+8859", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8859", + "status": "exact_ids", + "ids": "⿲彳吾彳", + "canonical_ids": "⿲彳吾彳", + "expanded_ids": "⿲彳⿱五口彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "彳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衚", + "codepoint": "U+885A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-885A", + "status": "exact_ids", + "ids": "⿲彳胡彳", + "canonical_ids": "⿲彳胡彳", + "expanded_ids": "⿲彳⿰⿻十口月彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "彳", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衛", + "codepoint": "U+885B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-885B", + "status": "exact_ids", + "ids": "⿲彳韋彳", + "canonical_ids": "⿲彳韋彳", + "expanded_ids": "⿲彳韋彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 101, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衜", + "codepoint": "U+885C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-885C", + "status": "exact_ids", + "ids": "⿲彳首彳", + "canonical_ids": "⿲彳首彳", + "expanded_ids": "⿲彳⿱䒑⿻目丶彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "丶", + "彳", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衝", + "codepoint": "U+885D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-885D", + "status": "exact_ids", + "ids": "⿲彳重彳", + "canonical_ids": "⿲彳重彳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "彳" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衞", + "codepoint": "U+885E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-885E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衟", + "codepoint": "U+885F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-885F", + "status": "exact_ids", + "ids": "⿲彳𩠐彳", + "canonical_ids": "⿲彳𩠐彳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳" + ], + "unresolved_leaves": [ + "𩠐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衠", + "codepoint": "U+8860", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8860", + "status": "exact_ids", + "ids": "⿲彳真彳", + "canonical_ids": "⿲彳真彳", + "expanded_ids": "⿲彳⿱十⿻⿱目八一彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "彳", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衡", + "codepoint": "U+8861", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8861", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衢", + "codepoint": "U+8862", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8862", + "status": "exact_ids", + "ids": "⿲彳瞿彳", + "canonical_ids": "⿲彳瞿彳", + "expanded_ids": "⿲彳⿱⿰目目隹彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衣", + "codepoint": "U+8863", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8863", + "status": "leaf_self_fallback", + "ids": "衣", + "canonical_ids": "衣", + "expanded_ids": "衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衤", + "codepoint": "U+8864", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8864", + "status": "leaf_self_fallback", + "ids": "衤", + "canonical_ids": "衤", + "expanded_ids": "衤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "补", + "codepoint": "U+8865", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8865", + "status": "exact_ids", + "ids": "⿰衤卜", + "canonical_ids": "⿰衤卜", + "expanded_ids": "⿰衤卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衦", + "codepoint": "U+8866", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8866", + "status": "exact_ids", + "ids": "⿰衤干", + "canonical_ids": "⿰衤干", + "expanded_ids": "⿰衤⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衧", + "codepoint": "U+8867", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8867", + "status": "exact_ids", + "ids": "⿰衤于", + "canonical_ids": "⿰衤于", + "expanded_ids": "⿰衤⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "表", + "codepoint": "U+8868", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8868", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衩", + "codepoint": "U+8869", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8869", + "status": "exact_ids", + "ids": "⿰衤叉", + "canonical_ids": "⿰衤叉", + "expanded_ids": "⿰衤⿻又丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "又", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衪", + "codepoint": "U+886A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-886A", + "status": "exact_ids", + "ids": "⿰衤也", + "canonical_ids": "⿰衤也", + "expanded_ids": "⿰衤⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衫", + "codepoint": "U+886B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-886B", + "status": "exact_ids", + "ids": "⿰衤彡", + "canonical_ids": "⿰衤彡", + "expanded_ids": "⿰衤彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衬", + "codepoint": "U+886C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-886C", + "status": "exact_ids", + "ids": "⿰衤寸", + "canonical_ids": "⿰衤寸", + "expanded_ids": "⿰衤寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衭", + "codepoint": "U+886D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-886D", + "status": "exact_ids", + "ids": "⿰衤夫", + "canonical_ids": "⿰衤夫", + "expanded_ids": "⿰衤⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衮", + "codepoint": "U+886E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-886E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衯", + "codepoint": "U+886F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-886F", + "status": "exact_ids", + "ids": "⿰衤分", + "canonical_ids": "⿰衤分", + "expanded_ids": "⿰衤⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衰", + "codepoint": "U+8870", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8870", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衱", + "codepoint": "U+8871", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8871", + "status": "exact_ids", + "ids": "⿰衤及", + "canonical_ids": "⿰衤及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "衤" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衲", + "codepoint": "U+8872", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8872", + "status": "exact_ids", + "ids": "⿰衤內", + "canonical_ids": "⿰衤內", + "expanded_ids": "⿰衤⿻冂入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "冂", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衳", + "codepoint": "U+8873", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8873", + "status": "exact_ids", + "ids": "⿰衤公", + "canonical_ids": "⿰衤公", + "expanded_ids": "⿰衤⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衴", + "codepoint": "U+8874", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8874", + "status": "exact_ids", + "ids": "⿰衤冘", + "canonical_ids": "⿰衤冘", + "expanded_ids": "⿰衤⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衵", + "codepoint": "U+8875", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8875", + "status": "exact_ids", + "ids": "⿰衤日", + "canonical_ids": "⿰衤日", + "expanded_ids": "⿰衤日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衶", + "codepoint": "U+8876", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8876", + "status": "exact_ids", + "ids": "⿰衤中", + "canonical_ids": "⿰衤中", + "expanded_ids": "⿰衤⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衷", + "codepoint": "U+8877", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8877", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衸", + "codepoint": "U+8878", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8878", + "status": "exact_ids", + "ids": "⿰衤介", + "canonical_ids": "⿰衤介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衹", + "codepoint": "U+8879", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8879", + "status": "exact_ids", + "ids": "⿰衤氏", + "canonical_ids": "⿰衤氏", + "expanded_ids": "⿰衤氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氏", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衺", + "codepoint": "U+887A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-887A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衻", + "codepoint": "U+887B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-887B", + "status": "exact_ids", + "ids": "⿰衤冄", + "canonical_ids": "⿰衤冄", + "expanded_ids": "⿰衤⿻冂二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "冂", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衼", + "codepoint": "U+887C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-887C", + "status": "exact_ids", + "ids": "⿰衤支", + "canonical_ids": "⿰衤支", + "expanded_ids": "⿰衤⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衽", + "codepoint": "U+887D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-887D", + "status": "exact_ids", + "ids": "⿰衤壬", + "canonical_ids": "⿰衤壬", + "expanded_ids": "⿰衤⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衾", + "codepoint": "U+887E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-887E", + "status": "exact_ids", + "ids": "⿱今衣", + "canonical_ids": "⿱今衣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "衣" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "衿", + "codepoint": "U+887F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-887F", + "status": "exact_ids", + "ids": "⿰衤今", + "canonical_ids": "⿰衤今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "衤" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袀", + "codepoint": "U+8880", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8880", + "status": "exact_ids", + "ids": "⿰衤匀", + "canonical_ids": "⿰衤匀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "匀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袁", + "codepoint": "U+8881", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8881", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袂", + "codepoint": "U+8882", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8882", + "status": "exact_ids", + "ids": "⿰衤夬", + "canonical_ids": "⿰衤夬", + "expanded_ids": "⿰衤⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "大", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袃", + "codepoint": "U+8883", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8883", + "status": "exact_ids", + "ids": "⿱切衣", + "canonical_ids": "⿱切衣", + "expanded_ids": "⿱⿰七刀衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "刀", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袄", + "codepoint": "U+8884", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8884", + "status": "exact_ids", + "ids": "⿰衤夭", + "canonical_ids": "⿰衤夭", + "expanded_ids": "⿰衤⿱丿大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袅", + "codepoint": "U+8885", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8885", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袆", + "codepoint": "U+8886", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8886", + "status": "exact_ids", + "ids": "⿰衤韦", + "canonical_ids": "⿰衤韦", + "expanded_ids": "⿰衤韦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤", + "韦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袇", + "codepoint": "U+8887", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8887", + "status": "exact_ids", + "ids": "⿰衤丹", + "canonical_ids": "⿰衤丹", + "expanded_ids": "⿰衤丹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丹", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袈", + "codepoint": "U+8888", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8888", + "status": "exact_ids", + "ids": "⿱加衣", + "canonical_ids": "⿱加衣", + "expanded_ids": "⿱⿰力口衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袉", + "codepoint": "U+8889", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8889", + "status": "exact_ids", + "ids": "⿰衤它", + "canonical_ids": "⿰衤它", + "expanded_ids": "⿰衤⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袊", + "codepoint": "U+888A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-888A", + "status": "exact_ids", + "ids": "⿰衤令", + "canonical_ids": "⿰衤令", + "expanded_ids": "⿰衤⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "衤", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袋", + "codepoint": "U+888B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-888B", + "status": "exact_ids", + "ids": "⿱代衣", + "canonical_ids": "⿱代衣", + "expanded_ids": "⿱⿰亻弋衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "弋", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袌", + "codepoint": "U+888C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-888C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袍", + "codepoint": "U+888D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-888D", + "status": "exact_ids", + "ids": "⿰衤包", + "canonical_ids": "⿰衤包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袎", + "codepoint": "U+888E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-888E", + "status": "exact_ids", + "ids": "⿰衤幼", + "canonical_ids": "⿰衤幼", + "expanded_ids": "⿰衤⿰幺力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "幺", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袏", + "codepoint": "U+888F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-888F", + "status": "exact_ids", + "ids": "⿰衤左", + "canonical_ids": "⿰衤左", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "左" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袐", + "codepoint": "U+8890", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8890", + "status": "exact_ids", + "ids": "⿰衤必", + "canonical_ids": "⿰衤必", + "expanded_ids": "⿰衤⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袑", + "codepoint": "U+8891", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8891", + "status": "exact_ids", + "ids": "⿰衤召", + "canonical_ids": "⿰衤召", + "expanded_ids": "⿰衤⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袒", + "codepoint": "U+8892", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8892", + "status": "exact_ids", + "ids": "⿰衤旦", + "canonical_ids": "⿰衤旦", + "expanded_ids": "⿰衤⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袓", + "codepoint": "U+8893", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8893", + "status": "exact_ids", + "ids": "⿰衤且", + "canonical_ids": "⿰衤且", + "expanded_ids": "⿰衤且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袔", + "codepoint": "U+8894", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8894", + "status": "exact_ids", + "ids": "⿰衤可", + "canonical_ids": "⿰衤可", + "expanded_ids": "⿰衤⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袕", + "codepoint": "U+8895", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8895", + "status": "exact_ids", + "ids": "⿰衤穴", + "canonical_ids": "⿰衤穴", + "expanded_ids": "⿰衤⿱宀八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袖", + "codepoint": "U+8896", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8896", + "status": "exact_ids", + "ids": "⿰衤由", + "canonical_ids": "⿰衤由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袗", + "codepoint": "U+8897", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8897", + "status": "exact_ids", + "ids": "⿰衤㐱", + "canonical_ids": "⿰衤㐱", + "expanded_ids": "⿰衤⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "彡", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袘", + "codepoint": "U+8898", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8898", + "status": "exact_ids", + "ids": "⿰衤㐌", + "canonical_ids": "⿰衤㐌", + "expanded_ids": "⿰衤⿱⿻丿一⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丿", + "乜", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袙", + "codepoint": "U+8899", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8899", + "status": "exact_ids", + "ids": "⿰衤白", + "canonical_ids": "⿰衤白", + "expanded_ids": "⿰衤⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袚", + "codepoint": "U+889A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-889A", + "status": "exact_ids", + "ids": "⿰衤犮", + "canonical_ids": "⿰衤犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袛", + "codepoint": "U+889B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-889B", + "status": "exact_ids", + "ids": "⿰衤氐", + "canonical_ids": "⿰衤氐", + "expanded_ids": "⿰衤⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氏", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袜", + "codepoint": "U+889C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-889C", + "status": "exact_ids", + "ids": "⿰衤末", + "canonical_ids": "⿰衤末", + "expanded_ids": "⿰衤⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袝", + "codepoint": "U+889D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-889D", + "status": "exact_ids", + "ids": "⿰衤付", + "canonical_ids": "⿰衤付", + "expanded_ids": "⿰衤⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袞", + "codepoint": "U+889E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-889E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袟", + "codepoint": "U+889F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-889F", + "status": "exact_ids", + "ids": "⿰衤失", + "canonical_ids": "⿰衤失", + "expanded_ids": "⿰衤⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袠", + "codepoint": "U+88A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88A0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袡", + "codepoint": "U+88A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88A1", + "status": "exact_ids", + "ids": "⿰衤冉", + "canonical_ids": "⿰衤冉", + "expanded_ids": "⿰衤⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "土", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袢", + "codepoint": "U+88A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88A2", + "status": "exact_ids", + "ids": "⿰衤半", + "canonical_ids": "⿰衤半", + "expanded_ids": "⿰衤半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袣", + "codepoint": "U+88A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88A3", + "status": "exact_ids", + "ids": "⿰衤世", + "canonical_ids": "⿰衤世", + "expanded_ids": "⿰衤世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袤", + "codepoint": "U+88A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88A4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袥", + "codepoint": "U+88A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88A5", + "status": "exact_ids", + "ids": "⿰衤石", + "canonical_ids": "⿰衤石", + "expanded_ids": "⿰衤石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袦", + "codepoint": "U+88A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88A6", + "status": "exact_ids", + "ids": "⿰衤出", + "canonical_ids": "⿰衤出", + "expanded_ids": "⿰衤⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袧", + "codepoint": "U+88A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88A7", + "status": "exact_ids", + "ids": "⿰衤句", + "canonical_ids": "⿰衤句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袨", + "codepoint": "U+88A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88A8", + "status": "exact_ids", + "ids": "⿰衤玄", + "canonical_ids": "⿰衤玄", + "expanded_ids": "⿰衤⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袩", + "codepoint": "U+88A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88A9", + "status": "exact_ids", + "ids": "⿰衤占", + "canonical_ids": "⿰衤占", + "expanded_ids": "⿰衤⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袪", + "codepoint": "U+88AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88AA", + "status": "exact_ids", + "ids": "⿰衤去", + "canonical_ids": "⿰衤去", + "expanded_ids": "⿰衤⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "被", + "codepoint": "U+88AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88AB", + "status": "exact_ids", + "ids": "⿰衤皮", + "canonical_ids": "⿰衤皮", + "expanded_ids": "⿰衤皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皮", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袬", + "codepoint": "U+88AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88AC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袭", + "codepoint": "U+88AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88AD", + "status": "exact_ids", + "ids": "⿱龙衣", + "canonical_ids": "⿱龙衣", + "expanded_ids": "⿱龙衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衣", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袮", + "codepoint": "U+88AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88AE", + "status": "exact_ids", + "ids": "⿰衤尓", + "canonical_ids": "⿰衤尓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "尓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袯", + "codepoint": "U+88AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88AF", + "status": "exact_ids", + "ids": "⿰衤发", + "canonical_ids": "⿰衤发", + "expanded_ids": "⿰衤发", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "发", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袰", + "codepoint": "U+88B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88B0", + "status": "exact_ids", + "ids": "⿱母衣", + "canonical_ids": "⿱母衣", + "expanded_ids": "⿱母衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "母", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袱", + "codepoint": "U+88B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88B1", + "status": "exact_ids", + "ids": "⿰衤伏", + "canonical_ids": "⿰衤伏", + "expanded_ids": "⿰衤⿰亻⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亻", + "大", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袲", + "codepoint": "U+88B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88B2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袳", + "codepoint": "U+88B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88B3", + "status": "exact_ids", + "ids": "⿰衤多", + "canonical_ids": "⿰衤多", + "expanded_ids": "⿰衤⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袴", + "codepoint": "U+88B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88B4", + "status": "exact_ids", + "ids": "⿰衤夸", + "canonical_ids": "⿰衤夸", + "expanded_ids": "⿰衤⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袵", + "codepoint": "U+88B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88B5", + "status": "exact_ids", + "ids": "⿰衤任", + "canonical_ids": "⿰衤任", + "expanded_ids": "⿰衤⿰亻⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "士", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袶", + "codepoint": "U+88B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88B6", + "status": "exact_ids", + "ids": "⿰衤夅", + "canonical_ids": "⿰衤夅", + "expanded_ids": "⿰衤⿱夂⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夂", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袷", + "codepoint": "U+88B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88B7", + "status": "exact_ids", + "ids": "⿰衤合", + "canonical_ids": "⿰衤合", + "expanded_ids": "⿰衤⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袸", + "codepoint": "U+88B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88B8", + "status": "exact_ids", + "ids": "⿰衤存", + "canonical_ids": "⿰衤存", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "存" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袹", + "codepoint": "U+88B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88B9", + "status": "exact_ids", + "ids": "⿰衤百", + "canonical_ids": "⿰衤百", + "expanded_ids": "⿰衤⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "日", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袺", + "codepoint": "U+88BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88BA", + "status": "exact_ids", + "ids": "⿰衤吉", + "canonical_ids": "⿰衤吉", + "expanded_ids": "⿰衤⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袻", + "codepoint": "U+88BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88BB", + "status": "exact_ids", + "ids": "⿰衤而", + "canonical_ids": "⿰衤而", + "expanded_ids": "⿰衤而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "而", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袼", + "codepoint": "U+88BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88BC", + "status": "exact_ids", + "ids": "⿰衤各", + "canonical_ids": "⿰衤各", + "expanded_ids": "⿰衤⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袽", + "codepoint": "U+88BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88BD", + "status": "exact_ids", + "ids": "⿰衤如", + "canonical_ids": "⿰衤如", + "expanded_ids": "⿰衤⿰女口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袾", + "codepoint": "U+88BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88BE", + "status": "exact_ids", + "ids": "⿰衤朱", + "canonical_ids": "⿰衤朱", + "expanded_ids": "⿰衤⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "袿", + "codepoint": "U+88BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88BF", + "status": "exact_ids", + "ids": "⿰衤圭", + "canonical_ids": "⿰衤圭", + "expanded_ids": "⿰衤⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裀", + "codepoint": "U+88C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88C0", + "status": "exact_ids", + "ids": "⿰衤因", + "canonical_ids": "⿰衤因", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裁", + "codepoint": "U+88C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88C1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裂", + "codepoint": "U+88C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88C2", + "status": "exact_ids", + "ids": "⿱列衣", + "canonical_ids": "⿱列衣", + "expanded_ids": "⿱⿰⿻夕一刂衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "夕", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裃", + "codepoint": "U+88C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88C3", + "status": "exact_ids", + "ids": "⿰衤𠧗", + "canonical_ids": "⿰衤𠧗", + "expanded_ids": "⿰衤⿱上⿱一卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "上", + "卜", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裄", + "codepoint": "U+88C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88C4", + "status": "exact_ids", + "ids": "⿰衤行", + "canonical_ids": "⿰衤行", + "expanded_ids": "⿰衤⿰彳彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "装", + "codepoint": "U+88C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88C5", + "status": "exact_ids", + "ids": "⿱壮衣", + "canonical_ids": "⿱壮衣", + "expanded_ids": "⿱⿰⿰冫丨士衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冫", + "士", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裆", + "codepoint": "U+88C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88C6", + "status": "exact_ids", + "ids": "⿰衤当", + "canonical_ids": "⿰衤当", + "expanded_ids": "⿰衤⿱小彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "彐", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裇", + "codepoint": "U+88C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88C7", + "status": "exact_ids", + "ids": "⿰衤血", + "canonical_ids": "⿰衤血", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "血" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裈", + "codepoint": "U+88C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88C8", + "status": "exact_ids", + "ids": "⿰衤军", + "canonical_ids": "⿰衤军", + "expanded_ids": "⿰衤⿱冖车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "衤", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裉", + "codepoint": "U+88C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88C9", + "status": "exact_ids", + "ids": "⿰衤艮", + "canonical_ids": "⿰衤艮", + "expanded_ids": "⿰衤艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艮", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裊", + "codepoint": "U+88CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88CA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裋", + "codepoint": "U+88CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88CB", + "status": "exact_ids", + "ids": "⿰衤豆", + "canonical_ids": "⿰衤豆", + "expanded_ids": "⿰衤豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裌", + "codepoint": "U+88CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88CC", + "status": "exact_ids", + "ids": "⿰衤夾", + "canonical_ids": "⿰衤夾", + "expanded_ids": "⿰衤⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裍", + "codepoint": "U+88CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88CD", + "status": "exact_ids", + "ids": "⿰衤困", + "canonical_ids": "⿰衤困", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "困" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裎", + "codepoint": "U+88CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88CE", + "status": "exact_ids", + "ids": "⿰衤呈", + "canonical_ids": "⿰衤呈", + "expanded_ids": "⿰衤⿱口王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "王", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裏", + "codepoint": "U+88CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88CF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裐", + "codepoint": "U+88D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88D0", + "status": "exact_ids", + "ids": "⿰衤肙", + "canonical_ids": "⿰衤肙", + "expanded_ids": "⿰衤⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裑", + "codepoint": "U+88D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88D1", + "status": "exact_ids", + "ids": "⿰衤身", + "canonical_ids": "⿰衤身", + "expanded_ids": "⿰衤身", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裒", + "codepoint": "U+88D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88D2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裓", + "codepoint": "U+88D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88D3", + "status": "exact_ids", + "ids": "⿰衤戒", + "canonical_ids": "⿰衤戒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "衤" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裔", + "codepoint": "U+88D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88D4", + "status": "exact_ids", + "ids": "⿱衣冏", + "canonical_ids": "⿱衣冏", + "expanded_ids": "⿱衣⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裕", + "codepoint": "U+88D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88D5", + "status": "exact_ids", + "ids": "⿰衤谷", + "canonical_ids": "⿰衤谷", + "expanded_ids": "⿰衤⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裖", + "codepoint": "U+88D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88D6", + "status": "exact_ids", + "ids": "⿰衤辰", + "canonical_ids": "⿰衤辰", + "expanded_ids": "⿰衤辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裗", + "codepoint": "U+88D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88D7", + "status": "exact_ids", + "ids": "⿰衤㐬", + "canonical_ids": "⿰衤㐬", + "expanded_ids": "⿰衤⿱亠⿱厶川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "厶", + "川", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裘", + "codepoint": "U+88D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88D8", + "status": "exact_ids", + "ids": "⿱求衣", + "canonical_ids": "⿱求衣", + "expanded_ids": "⿱求衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "求", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裙", + "codepoint": "U+88D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88D9", + "status": "exact_ids", + "ids": "⿰衤君", + "canonical_ids": "⿰衤君", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "衤" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裚", + "codepoint": "U+88DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88DA", + "status": "exact_ids", + "ids": "⿱折衣", + "canonical_ids": "⿱折衣", + "expanded_ids": "⿱⿰扌斤衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "斤", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裛", + "codepoint": "U+88DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88DB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "補", + "codepoint": "U+88DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88DC", + "status": "exact_ids", + "ids": "⿰衤甫", + "canonical_ids": "⿰衤甫", + "expanded_ids": "⿰衤甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甫", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裝", + "codepoint": "U+88DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88DD", + "status": "exact_ids", + "ids": "⿱壯衣", + "canonical_ids": "⿱壯衣", + "expanded_ids": "⿱⿰爿土衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "爿", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裞", + "codepoint": "U+88DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88DE", + "status": "exact_ids", + "ids": "⿰衤兌", + "canonical_ids": "⿰衤兌", + "expanded_ids": "⿰衤⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裟", + "codepoint": "U+88DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88DF", + "status": "exact_ids", + "ids": "⿱沙衣", + "canonical_ids": "⿱沙衣", + "expanded_ids": "⿱⿰氵⿱小丿衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "氵", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裠", + "codepoint": "U+88E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88E0", + "status": "exact_ids", + "ids": "⿱君衣", + "canonical_ids": "⿱君衣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "衣" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裡", + "codepoint": "U+88E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88E1", + "status": "exact_ids", + "ids": "⿰衤里", + "canonical_ids": "⿰衤里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裢", + "codepoint": "U+88E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88E2", + "status": "exact_ids", + "ids": "⿰衤连", + "canonical_ids": "⿰衤连", + "expanded_ids": "⿰衤⿰辶车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤", + "车", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裣", + "codepoint": "U+88E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88E3", + "status": "exact_ids", + "ids": "⿰衤佥", + "canonical_ids": "⿰衤佥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "佥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裤", + "codepoint": "U+88E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88E4", + "status": "exact_ids", + "ids": "⿰衤库", + "canonical_ids": "⿰衤库", + "expanded_ids": "⿰衤⿱广车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "衤", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裥", + "codepoint": "U+88E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88E5", + "status": "exact_ids", + "ids": "⿰衤间", + "canonical_ids": "⿰衤间", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "间" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裦", + "codepoint": "U+88E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88E6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裧", + "codepoint": "U+88E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88E7", + "status": "exact_ids", + "ids": "⿰衤炎", + "canonical_ids": "⿰衤炎", + "expanded_ids": "⿰衤⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裨", + "codepoint": "U+88E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88E8", + "status": "exact_ids", + "ids": "⿰衤卑", + "canonical_ids": "⿰衤卑", + "expanded_ids": "⿰衤卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裩", + "codepoint": "U+88E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88E9", + "status": "exact_ids", + "ids": "⿰衤昆", + "canonical_ids": "⿰衤昆", + "expanded_ids": "⿰衤⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裪", + "codepoint": "U+88EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88EA", + "status": "exact_ids", + "ids": "⿰衤匋", + "canonical_ids": "⿰衤匋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "匋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裫", + "codepoint": "U+88EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88EB", + "status": "exact_ids", + "ids": "⿰衤𣶒", + "canonical_ids": "⿰衤𣶒", + "expanded_ids": "⿰衤𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 78, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裬", + "codepoint": "U+88EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88EC", + "status": "exact_ids", + "ids": "⿰衤夌", + "canonical_ids": "⿰衤夌", + "expanded_ids": "⿰衤⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裭", + "codepoint": "U+88ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88ED", + "status": "exact_ids", + "ids": "⿰衤虎", + "canonical_ids": "⿰衤虎", + "expanded_ids": "⿰衤⿱虍儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "虍", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裮", + "codepoint": "U+88EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88EE", + "status": "exact_ids", + "ids": "⿰衤昌", + "canonical_ids": "⿰衤昌", + "expanded_ids": "⿰衤⿱日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裯", + "codepoint": "U+88EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88EF", + "status": "exact_ids", + "ids": "⿰衤周", + "canonical_ids": "⿰衤周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裰", + "codepoint": "U+88F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88F0", + "status": "exact_ids", + "ids": "⿰衤叕", + "canonical_ids": "⿰衤叕", + "expanded_ids": "⿰衤⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裱", + "codepoint": "U+88F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88F1", + "status": "exact_ids", + "ids": "⿰衤表", + "canonical_ids": "⿰衤表", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "表" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裲", + "codepoint": "U+88F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88F2", + "status": "exact_ids", + "ids": "⿰衤兩", + "canonical_ids": "⿰衤兩", + "expanded_ids": "⿰衤⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裳", + "codepoint": "U+88F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88F3", + "status": "exact_ids", + "ids": "⿱尚衣", + "canonical_ids": "⿱尚衣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "衣" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裴", + "codepoint": "U+88F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88F4", + "status": "exact_ids", + "ids": "⿱非衣", + "canonical_ids": "⿱非衣", + "expanded_ids": "⿱非衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衣", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裵", + "codepoint": "U+88F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88F5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裶", + "codepoint": "U+88F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88F6", + "status": "exact_ids", + "ids": "⿰衤非", + "canonical_ids": "⿰衤非", + "expanded_ids": "⿰衤非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裷", + "codepoint": "U+88F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88F7", + "status": "exact_ids", + "ids": "⿰衤卷", + "canonical_ids": "⿰衤卷", + "expanded_ids": "⿰衤⿱龹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "衤", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裸", + "codepoint": "U+88F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88F8", + "status": "exact_ids", + "ids": "⿰衤果", + "canonical_ids": "⿰衤果", + "expanded_ids": "⿰衤⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裹", + "codepoint": "U+88F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88F9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裺", + "codepoint": "U+88FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88FA", + "status": "exact_ids", + "ids": "⿰衤奄", + "canonical_ids": "⿰衤奄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "衤" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裻", + "codepoint": "U+88FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88FB", + "status": "exact_ids", + "ids": "⿱叔衣", + "canonical_ids": "⿱叔衣", + "expanded_ids": "⿱⿰⿱上小又衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "又", + "小", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裼", + "codepoint": "U+88FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88FC", + "status": "exact_ids", + "ids": "⿰衤易", + "canonical_ids": "⿰衤易", + "expanded_ids": "⿰衤⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "日", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "製", + "codepoint": "U+88FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88FD", + "status": "exact_ids", + "ids": "⿱制衣", + "canonical_ids": "⿱制衣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衣" + ], + "unresolved_leaves": [ + "制" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裾", + "codepoint": "U+88FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88FE", + "status": "exact_ids", + "ids": "⿰衤居", + "canonical_ids": "⿰衤居", + "expanded_ids": "⿰衤⿱尸⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "尸", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "裿", + "codepoint": "U+88FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-88FF", + "status": "exact_ids", + "ids": "⿰衤奇", + "canonical_ids": "⿰衤奇", + "expanded_ids": "⿰衤⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褀", + "codepoint": "U+8900", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8900", + "status": "exact_ids", + "ids": "⿰衤其", + "canonical_ids": "⿰衤其", + "expanded_ids": "⿰衤其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褁", + "codepoint": "U+8901", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8901", + "status": "exact_ids", + "ids": "⿱果𧘇", + "canonical_ids": "⿱果𧘇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田" + ], + "unresolved_leaves": [ + "𧘇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褂", + "codepoint": "U+8902", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8902", + "status": "exact_ids", + "ids": "⿰衤卦", + "canonical_ids": "⿰衤卦", + "expanded_ids": "⿰衤⿰⿱土土卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "土", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褃", + "codepoint": "U+8903", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8903", + "status": "exact_ids", + "ids": "⿰衤肯", + "canonical_ids": "⿰衤肯", + "expanded_ids": "⿰衤⿱止月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "止", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褄", + "codepoint": "U+8904", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8904", + "status": "exact_ids", + "ids": "⿰衤妻", + "canonical_ids": "⿰衤妻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "妻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褅", + "codepoint": "U+8905", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8905", + "status": "exact_ids", + "ids": "⿰衤帝", + "canonical_ids": "⿰衤帝", + "expanded_ids": "⿰衤⿳⿱亠八冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褆", + "codepoint": "U+8906", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8906", + "status": "exact_ids", + "ids": "⿰衤是", + "canonical_ids": "⿰衤是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "衤" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "複", + "codepoint": "U+8907", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8907", + "status": "exact_ids", + "ids": "⿰衤复", + "canonical_ids": "⿰衤复", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "复" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褈", + "codepoint": "U+8908", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8908", + "status": "exact_ids", + "ids": "⿰衤重", + "canonical_ids": "⿰衤重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "衤" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褉", + "codepoint": "U+8909", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8909", + "status": "exact_ids", + "ids": "⿰衤契", + "canonical_ids": "⿰衤契", + "expanded_ids": "⿰衤⿱⿰丰刀大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "大", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褊", + "codepoint": "U+890A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-890A", + "status": "exact_ids", + "ids": "⿰衤扁", + "canonical_ids": "⿰衤扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "衤" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褋", + "codepoint": "U+890B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-890B", + "status": "exact_ids", + "ids": "⿰衤枼", + "canonical_ids": "⿰衤枼", + "expanded_ids": "⿰衤⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褌", + "codepoint": "U+890C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-890C", + "status": "exact_ids", + "ids": "⿰衤軍", + "canonical_ids": "⿰衤軍", + "expanded_ids": "⿰衤⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "衤", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褍", + "codepoint": "U+890D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-890D", + "status": "exact_ids", + "ids": "⿰衤耑", + "canonical_ids": "⿰衤耑", + "expanded_ids": "⿰衤⿱山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "而", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褎", + "codepoint": "U+890E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-890E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褏", + "codepoint": "U+890F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-890F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褐", + "codepoint": "U+8910", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8910", + "status": "exact_ids", + "ids": "⿰衤曷", + "canonical_ids": "⿰衤曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "衤" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褑", + "codepoint": "U+8911", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8911", + "status": "exact_ids", + "ids": "⿰衤爰", + "canonical_ids": "⿰衤爰", + "expanded_ids": "⿰衤⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "爫", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褒", + "codepoint": "U+8912", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8912", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褓", + "codepoint": "U+8913", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8913", + "status": "exact_ids", + "ids": "⿰衤保", + "canonical_ids": "⿰衤保", + "expanded_ids": "⿰衤⿰亻⿱口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "木", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褔", + "codepoint": "U+8914", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8914", + "status": "exact_ids", + "ids": "⿰衤畐", + "canonical_ids": "⿰衤畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褕", + "codepoint": "U+8915", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8915", + "status": "exact_ids", + "ids": "⿰衤俞", + "canonical_ids": "⿰衤俞", + "expanded_ids": "⿰衤⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "月", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褖", + "codepoint": "U+8916", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8916", + "status": "exact_ids", + "ids": "⿰衤彖", + "canonical_ids": "⿰衤彖", + "expanded_ids": "⿰衤⿱彑𧰨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "衤", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褗", + "codepoint": "U+8917", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8917", + "status": "exact_ids", + "ids": "⿰衤匽", + "canonical_ids": "⿰衤匽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "匽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褘", + "codepoint": "U+8918", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8918", + "status": "exact_ids", + "ids": "⿰衤韋", + "canonical_ids": "⿰衤韋", + "expanded_ids": "⿰衤韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褙", + "codepoint": "U+8919", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8919", + "status": "exact_ids", + "ids": "⿰衤背", + "canonical_ids": "⿰衤背", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "衤" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褚", + "codepoint": "U+891A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-891A", + "status": "exact_ids", + "ids": "⿰衤者", + "canonical_ids": "⿰衤者", + "expanded_ids": "⿰衤⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褛", + "codepoint": "U+891B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-891B", + "status": "exact_ids", + "ids": "⿰衤娄", + "canonical_ids": "⿰衤娄", + "expanded_ids": "⿰衤⿱⿻木丷女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "女", + "木", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褜", + "codepoint": "U+891C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-891C", + "status": "exact_ids", + "ids": "⿱胞衣", + "canonical_ids": "⿱胞衣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "衣" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褝", + "codepoint": "U+891D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-891D", + "status": "exact_ids", + "ids": "⿰衤単", + "canonical_ids": "⿰衤単", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "単" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褞", + "codepoint": "U+891E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-891E", + "status": "exact_ids", + "ids": "⿰衤𥁕", + "canonical_ids": "⿰衤𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "衤" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褟", + "codepoint": "U+891F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-891F", + "status": "exact_ids", + "ids": "⿰衤𦐇", + "canonical_ids": "⿰衤𦐇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "衤" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褠", + "codepoint": "U+8920", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8920", + "status": "exact_ids", + "ids": "⿰衤冓", + "canonical_ids": "⿰衤冓", + "expanded_ids": "⿰衤⿱井⿱一⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "井", + "冂", + "土", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褡", + "codepoint": "U+8921", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8921", + "status": "exact_ids", + "ids": "⿰衤荅", + "canonical_ids": "⿰衤荅", + "expanded_ids": "⿰衤⿱艹⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "艹", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褢", + "codepoint": "U+8922", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8922", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褣", + "codepoint": "U+8923", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8923", + "status": "exact_ids", + "ids": "⿰衤容", + "canonical_ids": "⿰衤容", + "expanded_ids": "⿰衤⿱宀⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褤", + "codepoint": "U+8924", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8924", + "status": "exact_ids", + "ids": "⿰衤袁", + "canonical_ids": "⿰衤袁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "袁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褥", + "codepoint": "U+8925", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8925", + "status": "exact_ids", + "ids": "⿰衤辱", + "canonical_ids": "⿰衤辱", + "expanded_ids": "⿰衤⿱辰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "衤", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褦", + "codepoint": "U+8926", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8926", + "status": "exact_ids", + "ids": "⿰衤能", + "canonical_ids": "⿰衤能", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "能" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褧", + "codepoint": "U+8927", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8927", + "status": "exact_ids", + "ids": "⿱耿衣", + "canonical_ids": "⿱耿衣", + "expanded_ids": "⿱⿰耳火衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "耳", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褨", + "codepoint": "U+8928", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8928", + "status": "exact_ids", + "ids": "⿰衤差", + "canonical_ids": "⿰衤差", + "expanded_ids": "⿰衤⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "羊", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褩", + "codepoint": "U+8929", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8929", + "status": "exact_ids", + "ids": "⿱般衣", + "canonical_ids": "⿱般衣", + "expanded_ids": "⿱⿰舟⿱几又衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "舟", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褪", + "codepoint": "U+892A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-892A", + "status": "exact_ids", + "ids": "⿰衤退", + "canonical_ids": "⿰衤退", + "expanded_ids": "⿰衤⿰辶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艮", + "衤", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褫", + "codepoint": "U+892B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-892B", + "status": "exact_ids", + "ids": "⿰衤虒", + "canonical_ids": "⿰衤虒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "虒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褬", + "codepoint": "U+892C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-892C", + "status": "exact_ids", + "ids": "⿰衤桑", + "canonical_ids": "⿰衤桑", + "expanded_ids": "⿰衤⿱⿱又⿰又又木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "木", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褭", + "codepoint": "U+892D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-892D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褮", + "codepoint": "U+892E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-892E", + "status": "exact_ids", + "ids": "⿳炏冖衣", + "canonical_ids": "⿳炏冖衣", + "expanded_ids": "⿳⿰火火冖衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "火", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褯", + "codepoint": "U+892F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-892F", + "status": "exact_ids", + "ids": "⿰衤席", + "canonical_ids": "⿰衤席", + "expanded_ids": "⿰衤⿱广⿱艹⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "广", + "艹", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褰", + "codepoint": "U+8930", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8930", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褱", + "codepoint": "U+8931", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8931", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褲", + "codepoint": "U+8932", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8932", + "status": "exact_ids", + "ids": "⿰衤庫", + "canonical_ids": "⿰衤庫", + "expanded_ids": "⿰衤⿱广車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "衤", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褳", + "codepoint": "U+8933", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8933", + "status": "exact_ids", + "ids": "⿰衤連", + "canonical_ids": "⿰衤連", + "expanded_ids": "⿰衤⿰辶車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤", + "車", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褴", + "codepoint": "U+8934", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8934", + "status": "exact_ids", + "ids": "⿰衤监", + "canonical_ids": "⿰衤监", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "监" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褵", + "codepoint": "U+8935", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8935", + "status": "exact_ids", + "ids": "⿰衤离", + "canonical_ids": "⿰衤离", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "禸", + "衤" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褶", + "codepoint": "U+8936", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8936", + "status": "exact_ids", + "ids": "⿰衤習", + "canonical_ids": "⿰衤習", + "expanded_ids": "⿰衤⿱⿰习习⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "习", + "日", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褷", + "codepoint": "U+8937", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8937", + "status": "exact_ids", + "ids": "⿰衤徙", + "canonical_ids": "⿰衤徙", + "expanded_ids": "⿰衤⿰彳⿱止止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "止", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褸", + "codepoint": "U+8938", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8938", + "status": "exact_ids", + "ids": "⿰衤婁", + "canonical_ids": "⿰衤婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褹", + "codepoint": "U+8939", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8939", + "status": "exact_ids", + "ids": "⿰衤埶", + "canonical_ids": "⿰衤埶", + "expanded_ids": "⿰衤⿰⿱⿱土儿土⿻九丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "儿", + "土", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褺", + "codepoint": "U+893A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-893A", + "status": "exact_ids", + "ids": "⿱執衣", + "canonical_ids": "⿱執衣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "土", + "衣" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褻", + "codepoint": "U+893B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-893B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褼", + "codepoint": "U+893C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-893C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褽", + "codepoint": "U+893D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-893D", + "status": "exact_ids", + "ids": "⿱尉衣", + "canonical_ids": "⿱尉衣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衣" + ], + "unresolved_leaves": [ + "尉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褾", + "codepoint": "U+893E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-893E", + "status": "exact_ids", + "ids": "⿰衤票", + "canonical_ids": "⿰衤票", + "expanded_ids": "⿰衤⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "衤", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "褿", + "codepoint": "U+893F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-893F", + "status": "exact_ids", + "ids": "⿰衤曹", + "canonical_ids": "⿰衤曹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "曹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襀", + "codepoint": "U+8940", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8940", + "status": "exact_ids", + "ids": "⿰衤責", + "canonical_ids": "⿰衤責", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "衤" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襁", + "codepoint": "U+8941", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8941", + "status": "exact_ids", + "ids": "⿰衤强", + "canonical_ids": "⿰衤强", + "expanded_ids": "⿰衤⿰弓⿱口虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "弓", + "虫", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襂", + "codepoint": "U+8942", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8942", + "status": "exact_ids", + "ids": "⿰衤參", + "canonical_ids": "⿰衤參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襃", + "codepoint": "U+8943", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8943", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襄", + "codepoint": "U+8944", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8944", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襅", + "codepoint": "U+8945", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8945", + "status": "exact_ids", + "ids": "⿰衤畢", + "canonical_ids": "⿰衤畢", + "expanded_ids": "⿰衤畢", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "畢", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襆", + "codepoint": "U+8946", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8946", + "status": "exact_ids", + "ids": "⿰衤菐", + "canonical_ids": "⿰衤菐", + "expanded_ids": "⿰衤⿱业⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "儿", + "羊", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襇", + "codepoint": "U+8947", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8947", + "status": "exact_ids", + "ids": "⿰衤間", + "canonical_ids": "⿰衤間", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "間" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襈", + "codepoint": "U+8948", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8948", + "status": "exact_ids", + "ids": "⿰衤巽", + "canonical_ids": "⿰衤巽", + "expanded_ids": "⿰衤⿱⿰己己⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "廾", + "廿", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襉", + "codepoint": "U+8949", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8949", + "status": "exact_ids", + "ids": "⿰衤閒", + "canonical_ids": "⿰衤閒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "閒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襊", + "codepoint": "U+894A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-894A", + "status": "exact_ids", + "ids": "⿰衤最", + "canonical_ids": "⿰衤最", + "expanded_ids": "⿰衤⿱曰⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "曰", + "耳", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襋", + "codepoint": "U+894B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-894B", + "status": "exact_ids", + "ids": "⿰衤棘", + "canonical_ids": "⿰衤棘", + "expanded_ids": "⿰衤⿰⿻木冂⿻木冂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "木", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襌", + "codepoint": "U+894C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-894C", + "status": "exact_ids", + "ids": "⿰衤單", + "canonical_ids": "⿰衤單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襍", + "codepoint": "U+894D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-894D", + "status": "exact_ids", + "ids": "⿰衤集", + "canonical_ids": "⿰衤集", + "expanded_ids": "⿰衤⿱隹木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "衤", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襎", + "codepoint": "U+894E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-894E", + "status": "exact_ids", + "ids": "⿰衤番", + "canonical_ids": "⿰衤番", + "expanded_ids": "⿰衤⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "木", + "田", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襏", + "codepoint": "U+894F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-894F", + "status": "exact_ids", + "ids": "⿰衤發", + "canonical_ids": "⿰衤發", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "發" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襐", + "codepoint": "U+8950", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8950", + "status": "exact_ids", + "ids": "⿰衤象", + "canonical_ids": "⿰衤象", + "expanded_ids": "⿰衤象", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤", + "象" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襑", + "codepoint": "U+8951", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8951", + "status": "exact_ids", + "ids": "⿰衤尋", + "canonical_ids": "⿰衤尋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "尋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襒", + "codepoint": "U+8952", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8952", + "status": "exact_ids", + "ids": "⿰衤敝", + "canonical_ids": "⿰衤敝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "衤" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襓", + "codepoint": "U+8953", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8953", + "status": "exact_ids", + "ids": "⿰衤堯", + "canonical_ids": "⿰衤堯", + "expanded_ids": "⿰衤⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襔", + "codepoint": "U+8954", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8954", + "status": "exact_ids", + "ids": "⿰衤㒼", + "canonical_ids": "⿰衤㒼", + "expanded_ids": "⿰衤⿱艹⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "艹", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 264, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襕", + "codepoint": "U+8955", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8955", + "status": "exact_ids", + "ids": "⿰衤阑", + "canonical_ids": "⿰衤阑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "阑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襖", + "codepoint": "U+8956", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8956", + "status": "exact_ids", + "ids": "⿰衤奧", + "canonical_ids": "⿰衤奧", + "expanded_ids": "⿰衤⿱⿱宀⿱丿⿻木丷大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "大", + "宀", + "木", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襗", + "codepoint": "U+8957", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8957", + "status": "exact_ids", + "ids": "⿰衤睪", + "canonical_ids": "⿰衤睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "罒", + "衤" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襘", + "codepoint": "U+8958", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8958", + "status": "exact_ids", + "ids": "⿰衤會", + "canonical_ids": "⿰衤會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "衤" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襙", + "codepoint": "U+8959", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8959", + "status": "exact_ids", + "ids": "⿰衤喿", + "canonical_ids": "⿰衤喿", + "expanded_ids": "⿰衤⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襚", + "codepoint": "U+895A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-895A", + "status": "exact_ids", + "ids": "⿰衤遂", + "canonical_ids": "⿰衤遂", + "expanded_ids": "⿰衤⿰辶⿱八豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "衤", + "豕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襛", + "codepoint": "U+895B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-895B", + "status": "exact_ids", + "ids": "⿰衤農", + "canonical_ids": "⿰衤農", + "expanded_ids": "⿰衤⿱曲辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "衤", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襜", + "codepoint": "U+895C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-895C", + "status": "exact_ids", + "ids": "⿰衤詹", + "canonical_ids": "⿰衤詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襝", + "codepoint": "U+895D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-895D", + "status": "exact_ids", + "ids": "⿰衤僉", + "canonical_ids": "⿰衤僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襞", + "codepoint": "U+895E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-895E", + "status": "exact_ids", + "ids": "⿱辟衣", + "canonical_ids": "⿱辟衣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立", + "衣" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襟", + "codepoint": "U+895F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-895F", + "status": "exact_ids", + "ids": "⿰衤禁", + "canonical_ids": "⿰衤禁", + "expanded_ids": "⿰衤⿱⿰木木⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "木", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襠", + "codepoint": "U+8960", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8960", + "status": "exact_ids", + "ids": "⿰衤當", + "canonical_ids": "⿰衤當", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "田", + "衤" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襡", + "codepoint": "U+8961", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8961", + "status": "exact_ids", + "ids": "⿰衤蜀", + "canonical_ids": "⿰衤蜀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒", + "衤" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襢", + "codepoint": "U+8962", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8962", + "status": "exact_ids", + "ids": "⿰衤亶", + "canonical_ids": "⿰衤亶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "日", + "衤" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襣", + "codepoint": "U+8963", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8963", + "status": "exact_ids", + "ids": "⿰衤鼻", + "canonical_ids": "⿰衤鼻", + "expanded_ids": "⿰衤⿱⿻目丶⿱田丌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "丶", + "田", + "目", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襤", + "codepoint": "U+8964", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8964", + "status": "exact_ids", + "ids": "⿰衤監", + "canonical_ids": "⿰衤監", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襥", + "codepoint": "U+8965", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8965", + "status": "exact_ids", + "ids": "⿰衤僕", + "canonical_ids": "⿰衤僕", + "expanded_ids": "⿰衤⿰亻⿱业⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "亻", + "儿", + "羊", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襦", + "codepoint": "U+8966", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8966", + "status": "exact_ids", + "ids": "⿰衤需", + "canonical_ids": "⿰衤需", + "expanded_ids": "⿰衤⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "而", + "衤", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襧", + "codepoint": "U+8967", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8967", + "status": "exact_ids", + "ids": "⿰衤爾", + "canonical_ids": "⿰衤爾", + "expanded_ids": "⿰衤爾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爾", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襨", + "codepoint": "U+8968", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8968", + "status": "exact_ids", + "ids": "⿰衤對", + "canonical_ids": "⿰衤對", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "寸", + "衤" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襩", + "codepoint": "U+8969", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8969", + "status": "exact_ids", + "ids": "⿰衤賣", + "canonical_ids": "⿰衤賣", + "expanded_ids": "⿰衤⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "士", + "目", + "罒", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襪", + "codepoint": "U+896A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-896A", + "status": "exact_ids", + "ids": "⿰衤蔑", + "canonical_ids": "⿰衤蔑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "艹", + "衤" + ], + "unresolved_leaves": [ + "戌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襫", + "codepoint": "U+896B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-896B", + "status": "exact_ids", + "ids": "⿰衤奭", + "canonical_ids": "⿰衤奭", + "expanded_ids": "⿰衤⿲⿻一⿻日丶大⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "大", + "日", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 291, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襬", + "codepoint": "U+896C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-896C", + "status": "exact_ids", + "ids": "⿰衤罷", + "canonical_ids": "⿰衤罷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒", + "衤" + ], + "unresolved_leaves": [ + "能" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襭", + "codepoint": "U+896D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-896D", + "status": "exact_ids", + "ids": "⿰衤頡", + "canonical_ids": "⿰衤頡", + "expanded_ids": "⿰衤⿰⿱士口⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "口", + "士", + "目", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襮", + "codepoint": "U+896E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-896E", + "status": "exact_ids", + "ids": "⿰衤暴", + "canonical_ids": "⿰衤暴", + "expanded_ids": "⿰衤⿱日⿱⿱廿廾氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "日", + "氺", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襯", + "codepoint": "U+896F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-896F", + "status": "exact_ids", + "ids": "⿰衤親", + "canonical_ids": "⿰衤親", + "expanded_ids": "⿰衤⿰⿱立朩⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "朩", + "目", + "立", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襰", + "codepoint": "U+8970", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8970", + "status": "exact_ids", + "ids": "⿰衤賴", + "canonical_ids": "⿰衤賴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "賴" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襱", + "codepoint": "U+8971", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8971", + "status": "exact_ids", + "ids": "⿰衤龍", + "canonical_ids": "⿰衤龍", + "expanded_ids": "⿰衤龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襲", + "codepoint": "U+8972", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8972", + "status": "exact_ids", + "ids": "⿱龍衣", + "canonical_ids": "⿱龍衣", + "expanded_ids": "⿱龍衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衣", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襳", + "codepoint": "U+8973", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8973", + "status": "exact_ids", + "ids": "⿰衤韱", + "canonical_ids": "⿰衤韱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "韱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襴", + "codepoint": "U+8974", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8974", + "status": "exact_ids", + "ids": "⿰衤闌", + "canonical_ids": "⿰衤闌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襵", + "codepoint": "U+8975", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8975", + "status": "exact_ids", + "ids": "⿰衤聶", + "canonical_ids": "⿰衤聶", + "expanded_ids": "⿰衤⿱耳⿰耳耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 154, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襶", + "codepoint": "U+8976", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8976", + "status": "exact_ids", + "ids": "⿰衤戴", + "canonical_ids": "⿰衤戴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "戴" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襷", + "codepoint": "U+8977", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8977", + "status": "exact_ids", + "ids": "⿰衤擧", + "canonical_ids": "⿰衤擧", + "expanded_ids": "⿰衤⿱與手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "手", + "與", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襸", + "codepoint": "U+8978", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8978", + "status": "exact_ids", + "ids": "⿰衤贊", + "canonical_ids": "⿰衤贊", + "expanded_ids": "⿰衤⿱⿰⿱牛儿⿱牛儿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "牛", + "目", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襹", + "codepoint": "U+8979", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8979", + "status": "exact_ids", + "ids": "⿰衤麗", + "canonical_ids": "⿰衤麗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤", + "鹿" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襺", + "codepoint": "U+897A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-897A", + "status": "exact_ids", + "ids": "⿰衤繭", + "canonical_ids": "⿰衤繭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衤" + ], + "unresolved_leaves": [ + "繭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襻", + "codepoint": "U+897B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-897B", + "status": "exact_ids", + "ids": "⿰衤攀", + "canonical_ids": "⿰衤攀", + "expanded_ids": "⿰衤⿱⿱⿲木⿱乂乂木大手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "大", + "手", + "木", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 253, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襼", + "codepoint": "U+897C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-897C", + "status": "exact_ids", + "ids": "⿰衤藝", + "canonical_ids": "⿰衤藝", + "expanded_ids": "⿰衤⿱⿱艹⿰⿱⿱土儿土⿻九丶⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "二", + "儿", + "厶", + "土", + "艹", + "衤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 340, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襽", + "codepoint": "U+897D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-897D", + "status": "exact_ids", + "ids": "⿰衤蘭", + "canonical_ids": "⿰衤蘭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "衤" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "襾", + "codepoint": "U+897E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-897E", + "status": "leaf_self_fallback", + "ids": "襾", + "canonical_ids": "襾", + "expanded_ids": "襾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "襾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "西", + "codepoint": "U+897F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-897F", + "status": "exact_ids", + "ids": "⿻兀口", + "canonical_ids": "⿻兀口", + "expanded_ids": "⿻⿱一儿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覀", + "codepoint": "U+8980", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8980", + "status": "leaf_self_fallback", + "ids": "覀", + "canonical_ids": "覀", + "expanded_ids": "覀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "要", + "codepoint": "U+8981", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8981", + "status": "exact_ids", + "ids": "⿱覀女", + "canonical_ids": "⿱覀女", + "expanded_ids": "⿱覀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覂", + "codepoint": "U+8982", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8982", + "status": "exact_ids", + "ids": "⿱覀乏", + "canonical_ids": "⿱覀乏", + "expanded_ids": "⿱覀⿱丿之", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "之", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覃", + "codepoint": "U+8983", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8983", + "status": "exact_ids", + "ids": "⿱襾早", + "canonical_ids": "⿱襾早", + "expanded_ids": "⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "襾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覄", + "codepoint": "U+8984", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8984", + "status": "exact_ids", + "ids": "⿱覀伏", + "canonical_ids": "⿱覀伏", + "expanded_ids": "⿱覀⿰亻⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亻", + "大", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覅", + "codepoint": "U+8985", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8985", + "status": "exact_ids", + "ids": "⿰要勿", + "canonical_ids": "⿰要勿", + "expanded_ids": "⿰⿱覀女勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "女", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覆", + "codepoint": "U+8986", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8986", + "status": "exact_ids", + "ids": "⿱覀復", + "canonical_ids": "⿱覀復", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "覀" + ], + "unresolved_leaves": [ + "复" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覇", + "codepoint": "U+8987", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8987", + "status": "exact_ids", + "ids": "⿱覀䩗", + "canonical_ids": "⿱覀䩗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "覀" + ], + "unresolved_leaves": [ + "䩗" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覈", + "codepoint": "U+8988", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8988", + "status": "exact_ids", + "ids": "⿱襾敫", + "canonical_ids": "⿱襾敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "襾" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覉", + "codepoint": "U+8989", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8989", + "status": "exact_ids", + "ids": "⿱覀䩭", + "canonical_ids": "⿱覀䩭", + "expanded_ids": "⿱覀⿰革⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "覀", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覊", + "codepoint": "U+898A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-898A", + "status": "exact_ids", + "ids": "⿱襾䩻", + "canonical_ids": "⿱襾䩻", + "expanded_ids": "⿱襾⿰革馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "襾", + "革", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "見", + "codepoint": "U+898B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-898B", + "status": "exact_ids", + "ids": "⿱目儿", + "canonical_ids": "⿱目儿", + "expanded_ids": "⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覌", + "codepoint": "U+898C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-898C", + "status": "exact_ids", + "ids": "⿰又見", + "canonical_ids": "⿰又見", + "expanded_ids": "⿰又⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "又", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覍", + "codepoint": "U+898D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-898D", + "status": "exact_ids", + "ids": "⿱小見", + "canonical_ids": "⿱小見", + "expanded_ids": "⿱小⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "小", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覎", + "codepoint": "U+898E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-898E", + "status": "exact_ids", + "ids": "⿰見子", + "canonical_ids": "⿰見子", + "expanded_ids": "⿰⿱目儿子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "子", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "規", + "codepoint": "U+898F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-898F", + "status": "exact_ids", + "ids": "⿰夫見", + "canonical_ids": "⿰夫見", + "expanded_ids": "⿰⿻一大⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "大", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覐", + "codepoint": "U+8990", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8990", + "status": "exact_ids", + "ids": "⿰見爻", + "canonical_ids": "⿰見爻", + "expanded_ids": "⿰⿱目儿⿱乂乂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "儿", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覑", + "codepoint": "U+8991", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8991", + "status": "exact_ids", + "ids": "⿰片見", + "canonical_ids": "⿰片見", + "expanded_ids": "⿰片⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "片", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覒", + "codepoint": "U+8992", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8992", + "status": "exact_ids", + "ids": "⿰毛見", + "canonical_ids": "⿰毛見", + "expanded_ids": "⿰毛⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "毛", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覓", + "codepoint": "U+8993", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8993", + "status": "exact_ids", + "ids": "⿱爫見", + "canonical_ids": "⿱爫見", + "expanded_ids": "⿱爫⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "爫", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覔", + "codepoint": "U+8994", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8994", + "status": "exact_ids", + "ids": "⿱不見", + "canonical_ids": "⿱不見", + "expanded_ids": "⿱不⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "儿", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覕", + "codepoint": "U+8995", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8995", + "status": "exact_ids", + "ids": "⿰必見", + "canonical_ids": "⿰必見", + "expanded_ids": "⿰⿻心丿⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "心", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "視", + "codepoint": "U+8996", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8996", + "status": "exact_ids", + "ids": "⿰礻見", + "canonical_ids": "⿰礻見", + "expanded_ids": "⿰礻⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覗", + "codepoint": "U+8997", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8997", + "status": "exact_ids", + "ids": "⿰司見", + "canonical_ids": "⿰司見", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目" + ], + "unresolved_leaves": [ + "司" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覘", + "codepoint": "U+8998", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8998", + "status": "exact_ids", + "ids": "⿰占見", + "canonical_ids": "⿰占見", + "expanded_ids": "⿰⿱卜口⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "卜", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覙", + "codepoint": "U+8999", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8999", + "status": "exact_ids", + "ids": "⿰尔見", + "canonical_ids": "⿰尔見", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "小", + "目" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覚", + "codepoint": "U+899A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-899A", + "status": "exact_ids", + "ids": "⿳小冖見", + "canonical_ids": "⿳小冖見", + "expanded_ids": "⿳小冖⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "小", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覛", + "codepoint": "U+899B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-899B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覜", + "codepoint": "U+899C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-899C", + "status": "exact_ids", + "ids": "⿰兆見", + "canonical_ids": "⿰兆見", + "expanded_ids": "⿰兆⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "兆", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覝", + "codepoint": "U+899D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-899D", + "status": "exact_ids", + "ids": "⿰㶣見", + "canonical_ids": "⿰㶣見", + "expanded_ids": "⿰⿱⿱一十火⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "十", + "火", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覞", + "codepoint": "U+899E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-899E", + "status": "exact_ids", + "ids": "⿰見見", + "canonical_ids": "⿰見見", + "expanded_ids": "⿰⿱目儿⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覟", + "codepoint": "U+899F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-899F", + "status": "exact_ids", + "ids": "⿰志見", + "canonical_ids": "⿰志見", + "expanded_ids": "⿰⿱士心⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "士", + "心", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覠", + "codepoint": "U+89A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89A0", + "status": "exact_ids", + "ids": "⿰君見", + "canonical_ids": "⿰君見", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "目" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覡", + "codepoint": "U+89A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89A1", + "status": "exact_ids", + "ids": "⿰巫見", + "canonical_ids": "⿰巫見", + "expanded_ids": "⿰⿻工⿰人人⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "儿", + "工", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覢", + "codepoint": "U+89A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89A2", + "status": "exact_ids", + "ids": "⿰炎見", + "canonical_ids": "⿰炎見", + "expanded_ids": "⿰⿱火火⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "火", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覣", + "codepoint": "U+89A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89A3", + "status": "exact_ids", + "ids": "⿰委見", + "canonical_ids": "⿰委見", + "expanded_ids": "⿰⿱⿻丿木女⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "女", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覤", + "codepoint": "U+89A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89A4", + "status": "exact_ids", + "ids": "⿰虎見", + "canonical_ids": "⿰虎見", + "expanded_ids": "⿰⿱虍儿⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覥", + "codepoint": "U+89A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89A5", + "status": "exact_ids", + "ids": "⿰典見", + "canonical_ids": "⿰典見", + "expanded_ids": "⿰典⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "典", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覦", + "codepoint": "U+89A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89A6", + "status": "exact_ids", + "ids": "⿰兪見", + "canonical_ids": "⿰兪見", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目" + ], + "unresolved_leaves": [ + "兪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覧", + "codepoint": "U+89A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89A7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覨", + "codepoint": "U+89A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89A8", + "status": "exact_ids", + "ids": "⿰咢見", + "canonical_ids": "⿰咢見", + "expanded_ids": "⿰⿱⿰口口⿱一丂⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "儿", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覩", + "codepoint": "U+89A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89A9", + "status": "exact_ids", + "ids": "⿰者見", + "canonical_ids": "⿰者見", + "expanded_ids": "⿰⿱⿻土丿日⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "土", + "日", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "親", + "codepoint": "U+89AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89AA", + "status": "exact_ids", + "ids": "⿰亲見", + "canonical_ids": "⿰亲見", + "expanded_ids": "⿰⿱立朩⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "朩", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覫", + "codepoint": "U+89AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89AB", + "status": "exact_ids", + "ids": "⿰旁見", + "canonical_ids": "⿰旁見", + "expanded_ids": "⿰⿳⿱亠八冖方⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "儿", + "八", + "冖", + "方", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覬", + "codepoint": "U+89AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89AC", + "status": "exact_ids", + "ids": "⿰豈見", + "canonical_ids": "⿰豈見", + "expanded_ids": "⿰⿱山豆⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "山", + "目", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覭", + "codepoint": "U+89AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89AD", + "status": "exact_ids", + "ids": "⿰冥見", + "canonical_ids": "⿰冥見", + "expanded_ids": "⿰⿱冖⿱日⿱亠八⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "儿", + "八", + "冖", + "日", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覮", + "codepoint": "U+89AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89AE", + "status": "exact_ids", + "ids": "⿳炏冖見", + "canonical_ids": "⿳炏冖見", + "expanded_ids": "⿳⿰火火冖⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "火", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覯", + "codepoint": "U+89AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89AF", + "status": "exact_ids", + "ids": "⿰冓見", + "canonical_ids": "⿰冓見", + "expanded_ids": "⿰⿱井⿱一⿻冂土⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "井", + "儿", + "冂", + "土", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覰", + "codepoint": "U+89B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89B0", + "status": "exact_ids", + "ids": "⿰虘見", + "canonical_ids": "⿰虘見", + "expanded_ids": "⿰⿱虍且⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "儿", + "目", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覱", + "codepoint": "U+89B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89B1", + "status": "exact_ids", + "ids": "⿱斬見", + "canonical_ids": "⿱斬見", + "expanded_ids": "⿱⿰車斤⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "斤", + "目", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覲", + "codepoint": "U+89B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89B2", + "status": "exact_ids", + "ids": "⿰堇見", + "canonical_ids": "⿰堇見", + "expanded_ids": "⿰堇⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "堇", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "観", + "codepoint": "U+89B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89B3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覴", + "codepoint": "U+89B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89B4", + "status": "exact_ids", + "ids": "⿰登見", + "canonical_ids": "⿰登見", + "expanded_ids": "⿰⿱癶豆⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "癶", + "目", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覵", + "codepoint": "U+89B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89B5", + "status": "exact_ids", + "ids": "⿰閒見", + "canonical_ids": "⿰閒見", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目" + ], + "unresolved_leaves": [ + "閒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覶", + "codepoint": "U+89B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89B6", + "status": "exact_ids", + "ids": "⿰𤔔見", + "canonical_ids": "⿰𤔔見", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目" + ], + "unresolved_leaves": [ + "𤔔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覷", + "codepoint": "U+89B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89B7", + "status": "exact_ids", + "ids": "⿰虚見", + "canonical_ids": "⿰虚見", + "expanded_ids": "⿰⿱虍业⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "儿", + "目", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覸", + "codepoint": "U+89B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89B8", + "status": "exact_ids", + "ids": "⿰間見", + "canonical_ids": "⿰間見", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目" + ], + "unresolved_leaves": [ + "間" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覹", + "codepoint": "U+89B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89B9", + "status": "exact_ids", + "ids": "⿰見微", + "canonical_ids": "⿰見微", + "expanded_ids": "⿰⿱目儿⿰彳⿰⿳山冖几攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "几", + "山", + "彳", + "攵", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 251, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覺", + "codepoint": "U+89BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89BA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覻", + "codepoint": "U+89BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89BB", + "status": "exact_ids", + "ids": "⿰䖒見", + "canonical_ids": "⿰䖒見", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目" + ], + "unresolved_leaves": [ + "䖒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覼", + "codepoint": "U+89BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89BC", + "status": "exact_ids", + "ids": "⿰爾見", + "canonical_ids": "⿰爾見", + "expanded_ids": "⿰爾⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "爾", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覽", + "codepoint": "U+89BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89BD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覾", + "codepoint": "U+89BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89BE", + "status": "exact_ids", + "ids": "⿰審見", + "canonical_ids": "⿰審見", + "expanded_ids": "⿰⿱宀⿱⿱丿⿻木丷田⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "儿", + "宀", + "木", + "田", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "覿", + "codepoint": "U+89BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89BF", + "status": "exact_ids", + "ids": "⿰賣見", + "canonical_ids": "⿰賣見", + "expanded_ids": "⿰⿱士⿱罒⿱目八⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "士", + "目", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觀", + "codepoint": "U+89C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89C0", + "status": "exact_ids", + "ids": "⿰雚見", + "canonical_ids": "⿰雚見", + "expanded_ids": "⿰⿱艹⿱⿰口口隹⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "目", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "见", + "codepoint": "U+89C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89C1", + "status": "exact_ids", + "ids": "⿻冂儿", + "canonical_ids": "⿻冂儿", + "expanded_ids": "⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "观", + "codepoint": "U+89C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89C2", + "status": "exact_ids", + "ids": "⿰又见", + "canonical_ids": "⿰又见", + "expanded_ids": "⿰又⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觃", + "codepoint": "U+89C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89C3", + "status": "exact_ids", + "ids": "⿰见子", + "canonical_ids": "⿰见子", + "expanded_ids": "⿰⿻冂儿子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂", + "子" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "规", + "codepoint": "U+89C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89C4", + "status": "exact_ids", + "ids": "⿰夫见", + "canonical_ids": "⿰夫见", + "expanded_ids": "⿰⿻一大⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "冂", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觅", + "codepoint": "U+89C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89C5", + "status": "exact_ids", + "ids": "⿱爫见", + "canonical_ids": "⿱爫见", + "expanded_ids": "⿱爫⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "视", + "codepoint": "U+89C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89C6", + "status": "exact_ids", + "ids": "⿰礻见", + "canonical_ids": "⿰礻见", + "expanded_ids": "⿰礻⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂", + "礻" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觇", + "codepoint": "U+89C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89C7", + "status": "exact_ids", + "ids": "⿰占见", + "canonical_ids": "⿰占见", + "expanded_ids": "⿰⿱卜口⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂", + "卜", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "览", + "codepoint": "U+89C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89C8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觉", + "codepoint": "U+89C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89C9", + "status": "exact_ids", + "ids": "⿳小冖见", + "canonical_ids": "⿳小冖见", + "expanded_ids": "⿳小冖⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂", + "冖", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 137, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觊", + "codepoint": "U+89CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89CA", + "status": "exact_ids", + "ids": "⿰岂见", + "canonical_ids": "⿰岂见", + "expanded_ids": "⿰⿱山己⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂", + "山", + "己" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觋", + "codepoint": "U+89CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89CB", + "status": "exact_ids", + "ids": "⿰巫见", + "canonical_ids": "⿰巫见", + "expanded_ids": "⿰⿻工⿰人人⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "儿", + "冂", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觌", + "codepoint": "U+89CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89CC", + "status": "exact_ids", + "ids": "⿰卖见", + "canonical_ids": "⿰卖见", + "expanded_ids": "⿰⿱十⿱乛⿻大冫⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "儿", + "冂", + "冫", + "十", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觍", + "codepoint": "U+89CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89CD", + "status": "exact_ids", + "ids": "⿰典见", + "canonical_ids": "⿰典见", + "expanded_ids": "⿰典⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "典", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觎", + "codepoint": "U+89CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89CE", + "status": "exact_ids", + "ids": "⿰俞见", + "canonical_ids": "⿰俞见", + "expanded_ids": "⿰⿱⿱人一⿰月刂⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "儿", + "冂", + "刂", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觏", + "codepoint": "U+89CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89CF", + "status": "exact_ids", + "ids": "⿰冓见", + "canonical_ids": "⿰冓见", + "expanded_ids": "⿰⿱井⿱一⿻冂土⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "井", + "儿", + "冂", + "土" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觐", + "codepoint": "U+89D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89D0", + "status": "exact_ids", + "ids": "⿰堇见", + "canonical_ids": "⿰堇见", + "expanded_ids": "⿰堇⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂", + "堇" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觑", + "codepoint": "U+89D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89D1", + "status": "exact_ids", + "ids": "⿰虚见", + "canonical_ids": "⿰虚见", + "expanded_ids": "⿰⿱虍业⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "儿", + "冂", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "角", + "codepoint": "U+89D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89D2", + "status": "exact_ids", + "ids": "⿱⺈用", + "canonical_ids": "⿱⺈用", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觓", + "codepoint": "U+89D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89D3", + "status": "exact_ids", + "ids": "⿰角丩", + "canonical_ids": "⿰角丩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觔", + "codepoint": "U+89D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89D4", + "status": "exact_ids", + "ids": "⿰角力", + "canonical_ids": "⿰角力", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "力", + "月" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觕", + "codepoint": "U+89D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89D5", + "status": "exact_ids", + "ids": "⿰牜角", + "canonical_ids": "⿰牜角", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "牜" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觖", + "codepoint": "U+89D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89D6", + "status": "exact_ids", + "ids": "⿰角夬", + "canonical_ids": "⿰角夬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乛", + "大", + "月" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觗", + "codepoint": "U+89D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89D7", + "status": "exact_ids", + "ids": "⿰角氏", + "canonical_ids": "⿰角氏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "氏" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觘", + "codepoint": "U+89D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89D8", + "status": "exact_ids", + "ids": "⿰角少", + "canonical_ids": "⿰角少", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丿", + "小", + "月" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觙", + "codepoint": "U+89D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89D9", + "status": "exact_ids", + "ids": "⿰角及", + "canonical_ids": "⿰角及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乃", + "月" + ], + "unresolved_leaves": [ + "⺈", + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觚", + "codepoint": "U+89DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89DA", + "status": "exact_ids", + "ids": "⿰角瓜", + "canonical_ids": "⿰角瓜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "瓜" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觛", + "codepoint": "U+89DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89DB", + "status": "exact_ids", + "ids": "⿰角旦", + "canonical_ids": "⿰角旦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "日", + "月" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觜", + "codepoint": "U+89DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89DC", + "status": "exact_ids", + "ids": "⿱此角", + "canonical_ids": "⿱此角", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "匕", + "月", + "止" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觝", + "codepoint": "U+89DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89DD", + "status": "exact_ids", + "ids": "⿰角氐", + "canonical_ids": "⿰角氐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丶", + "月", + "氏" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觞", + "codepoint": "U+89DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89DE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觟", + "codepoint": "U+89DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89DF", + "status": "exact_ids", + "ids": "⿰角圭", + "canonical_ids": "⿰角圭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "土", + "月" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觠", + "codepoint": "U+89E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89E0", + "status": "exact_ids", + "ids": "⿱龹角", + "canonical_ids": "⿱龹角", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "龹" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觡", + "codepoint": "U+89E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89E1", + "status": "exact_ids", + "ids": "⿰角各", + "canonical_ids": "⿰角各", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "夂", + "月" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觢", + "codepoint": "U+89E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89E2", + "status": "exact_ids", + "ids": "⿱㓞角", + "canonical_ids": "⿱㓞角", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丰", + "刀", + "月" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "解", + "codepoint": "U+89E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89E3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觤", + "codepoint": "U+89E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89E4", + "status": "exact_ids", + "ids": "⿰角危", + "canonical_ids": "⿰角危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "丨", + "厂", + "月" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觥", + "codepoint": "U+89E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89E5", + "status": "exact_ids", + "ids": "⿰角光", + "canonical_ids": "⿰角光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "儿", + "月" + ], + "unresolved_leaves": [ + "⺈", + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "触", + "codepoint": "U+89E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89E6", + "status": "exact_ids", + "ids": "⿰角虫", + "canonical_ids": "⿰角虫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "虫" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觧", + "codepoint": "U+89E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89E7", + "status": "exact_ids", + "ids": "⿰角羊", + "canonical_ids": "⿰角羊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "羊" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觨", + "codepoint": "U+89E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89E8", + "status": "exact_ids", + "ids": "⿰角汞", + "canonical_ids": "⿰角汞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "工", + "月", + "水" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觩", + "codepoint": "U+89E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89E9", + "status": "exact_ids", + "ids": "⿰角求", + "canonical_ids": "⿰角求", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "求" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觪", + "codepoint": "U+89EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89EA", + "status": "exact_ids", + "ids": "⿰角辛", + "canonical_ids": "⿰角辛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "十", + "月", + "立" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觫", + "codepoint": "U+89EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89EB", + "status": "exact_ids", + "ids": "⿰角束", + "canonical_ids": "⿰角束", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "月", + "木" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觬", + "codepoint": "U+89EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89EC", + "status": "exact_ids", + "ids": "⿰角兒", + "canonical_ids": "⿰角兒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "儿", + "月", + "臼" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觭", + "codepoint": "U+89ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89ED", + "status": "exact_ids", + "ids": "⿰角奇", + "canonical_ids": "⿰角奇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "亅", + "口", + "大", + "月" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觮", + "codepoint": "U+89EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89EE", + "status": "exact_ids", + "ids": "⿰角录", + "canonical_ids": "⿰角录", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "彐", + "月", + "氺" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觯", + "codepoint": "U+89EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89EF", + "status": "exact_ids", + "ids": "⿰角单", + "canonical_ids": "⿰角单", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月" + ], + "unresolved_leaves": [ + "⺈", + "单" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觰", + "codepoint": "U+89F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89F0", + "status": "exact_ids", + "ids": "⿰角者", + "canonical_ids": "⿰角者", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丿", + "土", + "日", + "月" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觱", + "codepoint": "U+89F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89F1", + "status": "exact_ids", + "ids": "⿱咸角", + "canonical_ids": "⿱咸角", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月" + ], + "unresolved_leaves": [ + "⺈", + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觲", + "codepoint": "U+89F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89F2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觳", + "codepoint": "U+89F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89F3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觴", + "codepoint": "U+89F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89F4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觵", + "codepoint": "U+89F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89F5", + "status": "exact_ids", + "ids": "⿰角黄", + "canonical_ids": "⿰角黄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "黄" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觶", + "codepoint": "U+89F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89F6", + "status": "exact_ids", + "ids": "⿰角單", + "canonical_ids": "⿰角單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月" + ], + "unresolved_leaves": [ + "⺈", + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觷", + "codepoint": "U+89F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89F7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觸", + "codepoint": "U+89F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89F8", + "status": "exact_ids", + "ids": "⿰角蜀", + "canonical_ids": "⿰角蜀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "罒" + ], + "unresolved_leaves": [ + "⺈", + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觹", + "codepoint": "U+89F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89F9", + "status": "exact_ids", + "ids": "⿰角雋", + "canonical_ids": "⿰角雋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "弓", + "月", + "隹" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觺", + "codepoint": "U+89FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89FA", + "status": "exact_ids", + "ids": "⿱疑角", + "canonical_ids": "⿱疑角", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月" + ], + "unresolved_leaves": [ + "⺈", + "疑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觻", + "codepoint": "U+89FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89FB", + "status": "exact_ids", + "ids": "⿰角樂", + "canonical_ids": "⿰角樂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月" + ], + "unresolved_leaves": [ + "⺈", + "樂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觼", + "codepoint": "U+89FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89FC", + "status": "exact_ids", + "ids": "⿰角夐", + "canonical_ids": "⿰角夐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月" + ], + "unresolved_leaves": [ + "⺈", + "夐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觽", + "codepoint": "U+89FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89FD", + "status": "exact_ids", + "ids": "⿰角嶲", + "canonical_ids": "⿰角嶲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "山", + "弓", + "月", + "隹" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觾", + "codepoint": "U+89FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89FE", + "status": "exact_ids", + "ids": "⿰角燕", + "canonical_ids": "⿰角燕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月" + ], + "unresolved_leaves": [ + "⺈", + "燕" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "觿", + "codepoint": "U+89FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-89FF", + "status": "exact_ids", + "ids": "⿰角巂", + "canonical_ids": "⿰角巂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "八", + "冂", + "口", + "山", + "月", + "隹" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "言", + "codepoint": "U+8A00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A00", + "status": "leaf_self_fallback", + "ids": "言", + "canonical_ids": "言", + "expanded_ids": "言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訁", + "codepoint": "U+8A01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A01", + "status": "leaf_self_fallback", + "ids": "訁", + "canonical_ids": "訁", + "expanded_ids": "訁", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "訁" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訂", + "codepoint": "U+8A02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A02", + "status": "exact_ids", + "ids": "⿰言丁", + "canonical_ids": "⿰言丁", + "expanded_ids": "⿰言⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訃", + "codepoint": "U+8A03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A03", + "status": "exact_ids", + "ids": "⿰言卜", + "canonical_ids": "⿰言卜", + "expanded_ids": "⿰言卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訄", + "codepoint": "U+8A04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A04", + "status": "exact_ids", + "ids": "⿰九言", + "canonical_ids": "⿰九言", + "expanded_ids": "⿰九言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訅", + "codepoint": "U+8A05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A05", + "status": "exact_ids", + "ids": "⿰言九", + "canonical_ids": "⿰言九", + "expanded_ids": "⿰言九", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訆", + "codepoint": "U+8A06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A06", + "status": "exact_ids", + "ids": "⿰言丩", + "canonical_ids": "⿰言丩", + "expanded_ids": "⿰言⿰丨丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訇", + "codepoint": "U+8A07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A07", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "計", + "codepoint": "U+8A08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A08", + "status": "exact_ids", + "ids": "⿰言十", + "canonical_ids": "⿰言十", + "expanded_ids": "⿰言十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訉", + "codepoint": "U+8A09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A09", + "status": "exact_ids", + "ids": "⿰言凡", + "canonical_ids": "⿰言凡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訊", + "codepoint": "U+8A0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A0A", + "status": "exact_ids", + "ids": "⿰言卂", + "canonical_ids": "⿰言卂", + "expanded_ids": "⿰言⿱乁十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乁", + "十", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訋", + "codepoint": "U+8A0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A0B", + "status": "exact_ids", + "ids": "⿰言勺", + "canonical_ids": "⿰言勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訌", + "codepoint": "U+8A0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A0C", + "status": "exact_ids", + "ids": "⿰言工", + "canonical_ids": "⿰言工", + "expanded_ids": "⿰言工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訍", + "codepoint": "U+8A0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A0D", + "status": "exact_ids", + "ids": "⿰言叉", + "canonical_ids": "⿰言叉", + "expanded_ids": "⿰言⿻又丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "又", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "討", + "codepoint": "U+8A0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A0E", + "status": "exact_ids", + "ids": "⿰言寸", + "canonical_ids": "⿰言寸", + "expanded_ids": "⿰言寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訏", + "codepoint": "U+8A0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A0F", + "status": "exact_ids", + "ids": "⿰言于", + "canonical_ids": "⿰言于", + "expanded_ids": "⿰言⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訐", + "codepoint": "U+8A10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A10", + "status": "exact_ids", + "ids": "⿰言干", + "canonical_ids": "⿰言干", + "expanded_ids": "⿰言⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訑", + "codepoint": "U+8A11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A11", + "status": "exact_ids", + "ids": "⿰言也", + "canonical_ids": "⿰言也", + "expanded_ids": "⿰言⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訒", + "codepoint": "U+8A12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A12", + "status": "exact_ids", + "ids": "⿰言刃", + "canonical_ids": "⿰言刃", + "expanded_ids": "⿰言⿻刀丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訓", + "codepoint": "U+8A13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A13", + "status": "exact_ids", + "ids": "⿰言川", + "canonical_ids": "⿰言川", + "expanded_ids": "⿰言川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "川", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訔", + "codepoint": "U+8A14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A14", + "status": "exact_ids", + "ids": "⿱山言", + "canonical_ids": "⿱山言", + "expanded_ids": "⿱山言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訕", + "codepoint": "U+8A15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A15", + "status": "exact_ids", + "ids": "⿰言山", + "canonical_ids": "⿰言山", + "expanded_ids": "⿰言山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訖", + "codepoint": "U+8A16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A16", + "status": "exact_ids", + "ids": "⿰言乞", + "canonical_ids": "⿰言乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "託", + "codepoint": "U+8A17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A17", + "status": "exact_ids", + "ids": "⿰言乇", + "canonical_ids": "⿰言乇", + "expanded_ids": "⿰言⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "記", + "codepoint": "U+8A18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A18", + "status": "exact_ids", + "ids": "⿰言己", + "canonical_ids": "⿰言己", + "expanded_ids": "⿰言己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訙", + "codepoint": "U+8A19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A19", + "status": "exact_ids", + "ids": "⿰言丸", + "canonical_ids": "⿰言丸", + "expanded_ids": "⿰言⿻九丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訚", + "codepoint": "U+8A1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A1A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訛", + "codepoint": "U+8A1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A1B", + "status": "exact_ids", + "ids": "⿰言化", + "canonical_ids": "⿰言化", + "expanded_ids": "⿰言⿰亻匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訜", + "codepoint": "U+8A1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A1C", + "status": "exact_ids", + "ids": "⿰言分", + "canonical_ids": "⿰言分", + "expanded_ids": "⿰言⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訝", + "codepoint": "U+8A1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A1D", + "status": "exact_ids", + "ids": "⿰言牙", + "canonical_ids": "⿰言牙", + "expanded_ids": "⿰言牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訞", + "codepoint": "U+8A1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A1E", + "status": "exact_ids", + "ids": "⿰言夭", + "canonical_ids": "⿰言夭", + "expanded_ids": "⿰言⿱丿大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訟", + "codepoint": "U+8A1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A1F", + "status": "exact_ids", + "ids": "⿰言公", + "canonical_ids": "⿰言公", + "expanded_ids": "⿰言⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訠", + "codepoint": "U+8A20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A20", + "status": "exact_ids", + "ids": "⿰言引", + "canonical_ids": "⿰言引", + "expanded_ids": "⿰言⿰弓丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "弓", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訡", + "codepoint": "U+8A21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A21", + "status": "exact_ids", + "ids": "⿰言今", + "canonical_ids": "⿰言今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "言" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訢", + "codepoint": "U+8A22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A22", + "status": "exact_ids", + "ids": "⿰言斤", + "canonical_ids": "⿰言斤", + "expanded_ids": "⿰言斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訣", + "codepoint": "U+8A23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A23", + "status": "exact_ids", + "ids": "⿰言夬", + "canonical_ids": "⿰言夬", + "expanded_ids": "⿰言⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "大", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訤", + "codepoint": "U+8A24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A24", + "status": "exact_ids", + "ids": "⿰言爻", + "canonical_ids": "⿰言爻", + "expanded_ids": "⿰言⿱乂乂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訥", + "codepoint": "U+8A25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A25", + "status": "exact_ids", + "ids": "⿰言內", + "canonical_ids": "⿰言內", + "expanded_ids": "⿰言⿻冂入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "冂", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訦", + "codepoint": "U+8A26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A26", + "status": "exact_ids", + "ids": "⿰言冘", + "canonical_ids": "⿰言冘", + "expanded_ids": "⿰言⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訧", + "codepoint": "U+8A27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A27", + "status": "exact_ids", + "ids": "⿰言尤", + "canonical_ids": "⿰言尤", + "expanded_ids": "⿰言尤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訨", + "codepoint": "U+8A28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A28", + "status": "exact_ids", + "ids": "⿰言止", + "canonical_ids": "⿰言止", + "expanded_ids": "⿰言止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訩", + "codepoint": "U+8A29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A29", + "status": "exact_ids", + "ids": "⿰言凶", + "canonical_ids": "⿰言凶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訪", + "codepoint": "U+8A2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A2A", + "status": "exact_ids", + "ids": "⿰言方", + "canonical_ids": "⿰言方", + "expanded_ids": "⿰言方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訫", + "codepoint": "U+8A2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A2B", + "status": "exact_ids", + "ids": "⿰言心", + "canonical_ids": "⿰言心", + "expanded_ids": "⿰言心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訬", + "codepoint": "U+8A2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A2C", + "status": "exact_ids", + "ids": "⿰言少", + "canonical_ids": "⿰言少", + "expanded_ids": "⿰言⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "設", + "codepoint": "U+8A2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A2D", + "status": "exact_ids", + "ids": "⿰言殳", + "canonical_ids": "⿰言殳", + "expanded_ids": "⿰言⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訮", + "codepoint": "U+8A2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A2E", + "status": "exact_ids", + "ids": "⿰言开", + "canonical_ids": "⿰言开", + "expanded_ids": "⿰言⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廾", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訯", + "codepoint": "U+8A2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A2F", + "status": "exact_ids", + "ids": "⿰言及", + "canonical_ids": "⿰言及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "言" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訰", + "codepoint": "U+8A30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A30", + "status": "exact_ids", + "ids": "⿰言屯", + "canonical_ids": "⿰言屯", + "expanded_ids": "⿰言屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "許", + "codepoint": "U+8A31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A31", + "status": "exact_ids", + "ids": "⿰言午", + "canonical_ids": "⿰言午", + "expanded_ids": "⿰言⿱⿻丿一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "十", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訲", + "codepoint": "U+8A32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A32", + "status": "exact_ids", + "ids": "⿰言中", + "canonical_ids": "⿰言中", + "expanded_ids": "⿰言⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訳", + "codepoint": "U+8A33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A33", + "status": "exact_ids", + "ids": "⿰言尺", + "canonical_ids": "⿰言尺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "言" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訴", + "codepoint": "U+8A34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A34", + "status": "exact_ids", + "ids": "⿰言斥", + "canonical_ids": "⿰言斥", + "expanded_ids": "⿰言⿻斤丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "斤", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訵", + "codepoint": "U+8A35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A35", + "status": "exact_ids", + "ids": "⿰言四", + "canonical_ids": "⿰言四", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "四" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訶", + "codepoint": "U+8A36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A36", + "status": "exact_ids", + "ids": "⿰言可", + "canonical_ids": "⿰言可", + "expanded_ids": "⿰言⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訷", + "codepoint": "U+8A37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A37", + "status": "exact_ids", + "ids": "⿰言申", + "canonical_ids": "⿰言申", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訸", + "codepoint": "U+8A38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A38", + "status": "exact_ids", + "ids": "⿰言禾", + "canonical_ids": "⿰言禾", + "expanded_ids": "⿰言⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訹", + "codepoint": "U+8A39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A39", + "status": "exact_ids", + "ids": "⿰言朮", + "canonical_ids": "⿰言朮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "朮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "診", + "codepoint": "U+8A3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A3A", + "status": "exact_ids", + "ids": "⿰言㐱", + "canonical_ids": "⿰言㐱", + "expanded_ids": "⿰言⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "彡", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "註", + "codepoint": "U+8A3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A3B", + "status": "exact_ids", + "ids": "⿰言主", + "canonical_ids": "⿰言主", + "expanded_ids": "⿰言⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "証", + "codepoint": "U+8A3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A3C", + "status": "exact_ids", + "ids": "⿰言正", + "canonical_ids": "⿰言正", + "expanded_ids": "⿰言⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "止", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訽", + "codepoint": "U+8A3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A3D", + "status": "exact_ids", + "ids": "⿰言句", + "canonical_ids": "⿰言句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訾", + "codepoint": "U+8A3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A3E", + "status": "exact_ids", + "ids": "⿱此言", + "canonical_ids": "⿱此言", + "expanded_ids": "⿱⿰止匕言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "止", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "訿", + "codepoint": "U+8A3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A3F", + "status": "exact_ids", + "ids": "⿰言此", + "canonical_ids": "⿰言此", + "expanded_ids": "⿰言⿰止匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "止", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詀", + "codepoint": "U+8A40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A40", + "status": "exact_ids", + "ids": "⿰言占", + "canonical_ids": "⿰言占", + "expanded_ids": "⿰言⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詁", + "codepoint": "U+8A41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A41", + "status": "exact_ids", + "ids": "⿰言古", + "canonical_ids": "⿰言古", + "expanded_ids": "⿰言⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詂", + "codepoint": "U+8A42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A42", + "status": "exact_ids", + "ids": "⿰言付", + "canonical_ids": "⿰言付", + "expanded_ids": "⿰言⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詃", + "codepoint": "U+8A43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A43", + "status": "exact_ids", + "ids": "⿰言玄", + "canonical_ids": "⿰言玄", + "expanded_ids": "⿰言⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詄", + "codepoint": "U+8A44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A44", + "status": "exact_ids", + "ids": "⿰言失", + "canonical_ids": "⿰言失", + "expanded_ids": "⿰言⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詅", + "codepoint": "U+8A45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A45", + "status": "exact_ids", + "ids": "⿰言令", + "canonical_ids": "⿰言令", + "expanded_ids": "⿰言⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "言", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詆", + "codepoint": "U+8A46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A46", + "status": "exact_ids", + "ids": "⿰言氐", + "canonical_ids": "⿰言氐", + "expanded_ids": "⿰言⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氏", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詇", + "codepoint": "U+8A47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A47", + "status": "exact_ids", + "ids": "⿰言央", + "canonical_ids": "⿰言央", + "expanded_ids": "⿰言⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詈", + "codepoint": "U+8A48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A48", + "status": "exact_ids", + "ids": "⿱罒言", + "canonical_ids": "⿱罒言", + "expanded_ids": "⿱罒言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詉", + "codepoint": "U+8A49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A49", + "status": "exact_ids", + "ids": "⿰言奴", + "canonical_ids": "⿰言奴", + "expanded_ids": "⿰言⿰女又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "女", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詊", + "codepoint": "U+8A4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A4A", + "status": "exact_ids", + "ids": "⿰言半", + "canonical_ids": "⿰言半", + "expanded_ids": "⿰言半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詋", + "codepoint": "U+8A4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A4B", + "status": "exact_ids", + "ids": "⿰言兄", + "canonical_ids": "⿰言兄", + "expanded_ids": "⿰言⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詌", + "codepoint": "U+8A4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A4C", + "status": "exact_ids", + "ids": "⿰言甘", + "canonical_ids": "⿰言甘", + "expanded_ids": "⿰言甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甘", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詍", + "codepoint": "U+8A4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A4D", + "status": "exact_ids", + "ids": "⿰言世", + "canonical_ids": "⿰言世", + "expanded_ids": "⿰言世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詎", + "codepoint": "U+8A4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A4E", + "status": "exact_ids", + "ids": "⿰言巨", + "canonical_ids": "⿰言巨", + "expanded_ids": "⿰言巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詏", + "codepoint": "U+8A4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A4F", + "status": "exact_ids", + "ids": "⿰言幼", + "canonical_ids": "⿰言幼", + "expanded_ids": "⿰言⿰幺力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "幺", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詐", + "codepoint": "U+8A50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A50", + "status": "exact_ids", + "ids": "⿰言乍", + "canonical_ids": "⿰言乍", + "expanded_ids": "⿰言乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詑", + "codepoint": "U+8A51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A51", + "status": "exact_ids", + "ids": "⿰言它", + "canonical_ids": "⿰言它", + "expanded_ids": "⿰言⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詒", + "codepoint": "U+8A52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A52", + "status": "exact_ids", + "ids": "⿰言台", + "canonical_ids": "⿰言台", + "expanded_ids": "⿰言⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詓", + "codepoint": "U+8A53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A53", + "status": "exact_ids", + "ids": "⿰言去", + "canonical_ids": "⿰言去", + "expanded_ids": "⿰言⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詔", + "codepoint": "U+8A54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A54", + "status": "exact_ids", + "ids": "⿰言召", + "canonical_ids": "⿰言召", + "expanded_ids": "⿰言⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "評", + "codepoint": "U+8A55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A55", + "status": "exact_ids", + "ids": "⿰言平", + "canonical_ids": "⿰言平", + "expanded_ids": "⿰言⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "十", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詖", + "codepoint": "U+8A56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A56", + "status": "exact_ids", + "ids": "⿰言皮", + "canonical_ids": "⿰言皮", + "expanded_ids": "⿰言皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皮", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詗", + "codepoint": "U+8A57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A57", + "status": "exact_ids", + "ids": "⿰言冋", + "canonical_ids": "⿰言冋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詘", + "codepoint": "U+8A58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A58", + "status": "exact_ids", + "ids": "⿰言出", + "canonical_ids": "⿰言出", + "expanded_ids": "⿰言⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詙", + "codepoint": "U+8A59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A59", + "status": "exact_ids", + "ids": "⿰言犮", + "canonical_ids": "⿰言犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詚", + "codepoint": "U+8A5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A5A", + "status": "exact_ids", + "ids": "⿰言旦", + "canonical_ids": "⿰言旦", + "expanded_ids": "⿰言⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詛", + "codepoint": "U+8A5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A5B", + "status": "exact_ids", + "ids": "⿰言且", + "canonical_ids": "⿰言且", + "expanded_ids": "⿰言且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詜", + "codepoint": "U+8A5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A5C", + "status": "exact_ids", + "ids": "⿰言𠬢", + "canonical_ids": "⿰言𠬢", + "expanded_ids": "⿰言⿻屮又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "屮", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詝", + "codepoint": "U+8A5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A5D", + "status": "exact_ids", + "ids": "⿰言宁", + "canonical_ids": "⿰言宁", + "expanded_ids": "⿰言⿱宀⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "宀", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詞", + "codepoint": "U+8A5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A5E", + "status": "exact_ids", + "ids": "⿰言司", + "canonical_ids": "⿰言司", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "司" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詟", + "codepoint": "U+8A5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A5F", + "status": "exact_ids", + "ids": "⿱龙言", + "canonical_ids": "⿱龙言", + "expanded_ids": "⿱龙言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詠", + "codepoint": "U+8A60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A60", + "status": "exact_ids", + "ids": "⿰言永", + "canonical_ids": "⿰言永", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "永" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詡", + "codepoint": "U+8A61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A61", + "status": "exact_ids", + "ids": "⿰言羽", + "canonical_ids": "⿰言羽", + "expanded_ids": "⿰言⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詢", + "codepoint": "U+8A62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A62", + "status": "exact_ids", + "ids": "⿰言旬", + "canonical_ids": "⿰言旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詣", + "codepoint": "U+8A63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A63", + "status": "exact_ids", + "ids": "⿰言旨", + "canonical_ids": "⿰言旨", + "expanded_ids": "⿰言⿱匕日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詤", + "codepoint": "U+8A64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A64", + "status": "exact_ids", + "ids": "⿰言㠩", + "canonical_ids": "⿰言㠩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "川", + "言" + ], + "unresolved_leaves": [ + "亾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詥", + "codepoint": "U+8A65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A65", + "status": "exact_ids", + "ids": "⿰言合", + "canonical_ids": "⿰言合", + "expanded_ids": "⿰言⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "試", + "codepoint": "U+8A66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A66", + "status": "exact_ids", + "ids": "⿰言式", + "canonical_ids": "⿰言式", + "expanded_ids": "⿰言⿱弋工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "弋", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詧", + "codepoint": "U+8A67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A67", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詨", + "codepoint": "U+8A68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A68", + "status": "exact_ids", + "ids": "⿰言交", + "canonical_ids": "⿰言交", + "expanded_ids": "⿰言⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "父", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詩", + "codepoint": "U+8A69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A69", + "status": "exact_ids", + "ids": "⿰言寺", + "canonical_ids": "⿰言寺", + "expanded_ids": "⿰言⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詪", + "codepoint": "U+8A6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A6A", + "status": "exact_ids", + "ids": "⿰言艮", + "canonical_ids": "⿰言艮", + "expanded_ids": "⿰言艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艮", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詫", + "codepoint": "U+8A6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A6B", + "status": "exact_ids", + "ids": "⿰言宅", + "canonical_ids": "⿰言宅", + "expanded_ids": "⿰言⿱宀⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "宀", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詬", + "codepoint": "U+8A6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A6C", + "status": "exact_ids", + "ids": "⿰言后", + "canonical_ids": "⿰言后", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "后" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詭", + "codepoint": "U+8A6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A6D", + "status": "exact_ids", + "ids": "⿰言危", + "canonical_ids": "⿰言危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "言" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詮", + "codepoint": "U+8A6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A6E", + "status": "exact_ids", + "ids": "⿰言全", + "canonical_ids": "⿰言全", + "expanded_ids": "⿰言⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "王", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詯", + "codepoint": "U+8A6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A6F", + "status": "exact_ids", + "ids": "⿰言自", + "canonical_ids": "⿰言自", + "expanded_ids": "⿰言⿻目丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "目", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詰", + "codepoint": "U+8A70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A70", + "status": "exact_ids", + "ids": "⿰言吉", + "canonical_ids": "⿰言吉", + "expanded_ids": "⿰言⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "話", + "codepoint": "U+8A71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A71", + "status": "exact_ids", + "ids": "⿰言舌", + "canonical_ids": "⿰言舌", + "expanded_ids": "⿰言⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "該", + "codepoint": "U+8A72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A72", + "status": "exact_ids", + "ids": "⿰言亥", + "canonical_ids": "⿰言亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詳", + "codepoint": "U+8A73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A73", + "status": "exact_ids", + "ids": "⿰言羊", + "canonical_ids": "⿰言羊", + "expanded_ids": "⿰言羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "羊", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詴", + "codepoint": "U+8A74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A74", + "status": "exact_ids", + "ids": "⿰言有", + "canonical_ids": "⿰言有", + "expanded_ids": "⿰言⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "月", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詵", + "codepoint": "U+8A75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A75", + "status": "exact_ids", + "ids": "⿰言先", + "canonical_ids": "⿰言先", + "expanded_ids": "⿰言⿱牛儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "牛", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詶", + "codepoint": "U+8A76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A76", + "status": "exact_ids", + "ids": "⿰言州", + "canonical_ids": "⿰言州", + "expanded_ids": "⿰言州", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "州", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詷", + "codepoint": "U+8A77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A77", + "status": "exact_ids", + "ids": "⿰言同", + "canonical_ids": "⿰言同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詸", + "codepoint": "U+8A78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A78", + "status": "exact_ids", + "ids": "⿰言米", + "canonical_ids": "⿰言米", + "expanded_ids": "⿰言⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詹", + "codepoint": "U+8A79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A79", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詺", + "codepoint": "U+8A7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A7A", + "status": "exact_ids", + "ids": "⿰言名", + "canonical_ids": "⿰言名", + "expanded_ids": "⿰言⿱夕口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夕", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詻", + "codepoint": "U+8A7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A7B", + "status": "exact_ids", + "ids": "⿰言各", + "canonical_ids": "⿰言各", + "expanded_ids": "⿰言⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詼", + "codepoint": "U+8A7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A7C", + "status": "exact_ids", + "ids": "⿰言灰", + "canonical_ids": "⿰言灰", + "expanded_ids": "⿰言⿱厂火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "火", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詽", + "codepoint": "U+8A7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A7D", + "status": "exact_ids", + "ids": "⿰言幵", + "canonical_ids": "⿰言幵", + "expanded_ids": "⿰言⿰⿱一十⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詾", + "codepoint": "U+8A7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A7E", + "status": "exact_ids", + "ids": "⿰言匈", + "canonical_ids": "⿰言匈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "匈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "詿", + "codepoint": "U+8A7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A7F", + "status": "exact_ids", + "ids": "⿰言圭", + "canonical_ids": "⿰言圭", + "expanded_ids": "⿰言⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誀", + "codepoint": "U+8A80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A80", + "status": "exact_ids", + "ids": "⿰言耳", + "canonical_ids": "⿰言耳", + "expanded_ids": "⿰言耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誁", + "codepoint": "U+8A81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A81", + "status": "exact_ids", + "ids": "⿰言并", + "canonical_ids": "⿰言并", + "expanded_ids": "⿰言⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誂", + "codepoint": "U+8A82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A82", + "status": "exact_ids", + "ids": "⿰言兆", + "canonical_ids": "⿰言兆", + "expanded_ids": "⿰言兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誃", + "codepoint": "U+8A83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A83", + "status": "exact_ids", + "ids": "⿰言多", + "canonical_ids": "⿰言多", + "expanded_ids": "⿰言⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誄", + "codepoint": "U+8A84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A84", + "status": "exact_ids", + "ids": "⿰言耒", + "canonical_ids": "⿰言耒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誅", + "codepoint": "U+8A85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A85", + "status": "exact_ids", + "ids": "⿰言朱", + "canonical_ids": "⿰言朱", + "expanded_ids": "⿰言⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誆", + "codepoint": "U+8A86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A86", + "status": "exact_ids", + "ids": "⿰言匡", + "canonical_ids": "⿰言匡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "匡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誇", + "codepoint": "U+8A87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A87", + "status": "exact_ids", + "ids": "⿰言夸", + "canonical_ids": "⿰言夸", + "expanded_ids": "⿰言⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誈", + "codepoint": "U+8A88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A88", + "status": "exact_ids", + "ids": "⿰言至", + "canonical_ids": "⿰言至", + "expanded_ids": "⿰言⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誉", + "codepoint": "U+8A89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A89", + "status": "exact_ids", + "ids": "⿱兴言", + "canonical_ids": "⿱兴言", + "expanded_ids": "⿱兴言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兴", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誊", + "codepoint": "U+8A8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A8A", + "status": "exact_ids", + "ids": "⿱龹言", + "canonical_ids": "⿱龹言", + "expanded_ids": "⿱龹言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誋", + "codepoint": "U+8A8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A8B", + "status": "exact_ids", + "ids": "⿰言忌", + "canonical_ids": "⿰言忌", + "expanded_ids": "⿰言⿱己心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "心", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誌", + "codepoint": "U+8A8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A8C", + "status": "exact_ids", + "ids": "⿰言志", + "canonical_ids": "⿰言志", + "expanded_ids": "⿰言⿱士心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "士", + "心", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "認", + "codepoint": "U+8A8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A8D", + "status": "exact_ids", + "ids": "⿰言忍", + "canonical_ids": "⿰言忍", + "expanded_ids": "⿰言⿱⿻刀丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "心", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誎", + "codepoint": "U+8A8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A8E", + "status": "exact_ids", + "ids": "⿰言束", + "canonical_ids": "⿰言束", + "expanded_ids": "⿰言⿻木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誏", + "codepoint": "U+8A8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A8F", + "status": "exact_ids", + "ids": "⿰言良", + "canonical_ids": "⿰言良", + "expanded_ids": "⿰言⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "艮", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誐", + "codepoint": "U+8A90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A90", + "status": "exact_ids", + "ids": "⿰言我", + "canonical_ids": "⿰言我", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "言" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誑", + "codepoint": "U+8A91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A91", + "status": "exact_ids", + "ids": "⿰言狂", + "canonical_ids": "⿰言狂", + "expanded_ids": "⿰言⿰犭王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "王", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誒", + "codepoint": "U+8A92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A92", + "status": "exact_ids", + "ids": "⿰言矣", + "canonical_ids": "⿰言矣", + "expanded_ids": "⿰言⿱厶⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "厶", + "大", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誓", + "codepoint": "U+8A93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A93", + "status": "exact_ids", + "ids": "⿱折言", + "canonical_ids": "⿱折言", + "expanded_ids": "⿱⿰扌斤言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "斤", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誔", + "codepoint": "U+8A94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A94", + "status": "exact_ids", + "ids": "⿰言廷", + "canonical_ids": "⿰言廷", + "expanded_ids": "⿰言⿰廴⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "廴", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誕", + "codepoint": "U+8A95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A95", + "status": "exact_ids", + "ids": "⿰言延", + "canonical_ids": "⿰言延", + "expanded_ids": "⿰言⿰廴⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廴", + "止", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誖", + "codepoint": "U+8A96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A96", + "status": "exact_ids", + "ids": "⿰言孛", + "canonical_ids": "⿰言孛", + "expanded_ids": "⿰言⿳十冖子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "子", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誗", + "codepoint": "U+8A97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A97", + "status": "exact_ids", + "ids": "⿰言利", + "canonical_ids": "⿰言利", + "expanded_ids": "⿰言⿰⿻丿木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "木", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誘", + "codepoint": "U+8A98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A98", + "status": "exact_ids", + "ids": "⿰言秀", + "canonical_ids": "⿰言秀", + "expanded_ids": "⿰言⿱⿻丿木乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乃", + "木", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誙", + "codepoint": "U+8A99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A99", + "status": "exact_ids", + "ids": "⿰言巠", + "canonical_ids": "⿰言巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誚", + "codepoint": "U+8A9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A9A", + "status": "exact_ids", + "ids": "⿰言肖", + "canonical_ids": "⿰言肖", + "expanded_ids": "⿰言⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誛", + "codepoint": "U+8A9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A9B", + "status": "exact_ids", + "ids": "⿰言𠬶", + "canonical_ids": "⿰言𠬶", + "expanded_ids": "⿰言⿳彐冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "又", + "彐", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誜", + "codepoint": "U+8A9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A9C", + "status": "exact_ids", + "ids": "⿰言夋", + "canonical_ids": "⿰言夋", + "expanded_ids": "⿰言⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誝", + "codepoint": "U+8A9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A9D", + "status": "exact_ids", + "ids": "⿰言含", + "canonical_ids": "⿰言含", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "言" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "語", + "codepoint": "U+8A9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A9E", + "status": "exact_ids", + "ids": "⿰言吾", + "canonical_ids": "⿰言吾", + "expanded_ids": "⿰言⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誟", + "codepoint": "U+8A9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8A9F", + "status": "exact_ids", + "ids": "⿰言孝", + "canonical_ids": "⿰言孝", + "expanded_ids": "⿰言⿱⿻土丿子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "子", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誠", + "codepoint": "U+8AA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AA0", + "status": "exact_ids", + "ids": "⿰言成", + "canonical_ids": "⿰言成", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "成" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誡", + "codepoint": "U+8AA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AA1", + "status": "exact_ids", + "ids": "⿰言戒", + "canonical_ids": "⿰言戒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "言" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誢", + "codepoint": "U+8AA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AA2", + "status": "exact_ids", + "ids": "⿰言見", + "canonical_ids": "⿰言見", + "expanded_ids": "⿰言⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誣", + "codepoint": "U+8AA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AA3", + "status": "exact_ids", + "ids": "⿰言巫", + "canonical_ids": "⿰言巫", + "expanded_ids": "⿰言⿻工⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "工", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誤", + "codepoint": "U+8AA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AA4", + "status": "exact_ids", + "ids": "⿰言呉", + "canonical_ids": "⿰言呉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "呉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誥", + "codepoint": "U+8AA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AA5", + "status": "exact_ids", + "ids": "⿰言告", + "canonical_ids": "⿰言告", + "expanded_ids": "⿰言⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誦", + "codepoint": "U+8AA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AA6", + "status": "exact_ids", + "ids": "⿰言甬", + "canonical_ids": "⿰言甬", + "expanded_ids": "⿰言⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "言", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誧", + "codepoint": "U+8AA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AA7", + "status": "exact_ids", + "ids": "⿰言甫", + "canonical_ids": "⿰言甫", + "expanded_ids": "⿰言甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甫", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誨", + "codepoint": "U+8AA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AA8", + "status": "exact_ids", + "ids": "⿰言每", + "canonical_ids": "⿰言每", + "expanded_ids": "⿰言⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "母", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誩", + "codepoint": "U+8AA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AA9", + "status": "exact_ids", + "ids": "⿰言言", + "canonical_ids": "⿰言言", + "expanded_ids": "⿰言言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "說", + "codepoint": "U+8AAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AAA", + "status": "exact_ids", + "ids": "⿰言兌", + "canonical_ids": "⿰言兌", + "expanded_ids": "⿰言⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [ + "説" + ] + }, + { + "character": "誫", + "codepoint": "U+8AAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AAB", + "status": "exact_ids", + "ids": "⿰言辰", + "canonical_ids": "⿰言辰", + "expanded_ids": "⿰言辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "説", + "codepoint": "U+8AAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AAC", + "status": "exact_ids", + "ids": "⿰言兌", + "canonical_ids": "⿰言兌", + "expanded_ids": "⿰言⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [ + "說" + ] + }, + { + "character": "読", + "codepoint": "U+8AAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AAD", + "status": "exact_ids", + "ids": "⿰言売", + "canonical_ids": "⿰言売", + "expanded_ids": "⿰言⿳士冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "士", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誮", + "codepoint": "U+8AAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AAE", + "status": "exact_ids", + "ids": "⿰言花", + "canonical_ids": "⿰言花", + "expanded_ids": "⿰言⿱艹⿰亻匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "艹", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誯", + "codepoint": "U+8AAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AAF", + "status": "exact_ids", + "ids": "⿰言昌", + "canonical_ids": "⿰言昌", + "expanded_ids": "⿰言⿱日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誰", + "codepoint": "U+8AB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AB0", + "status": "exact_ids", + "ids": "⿰言隹", + "canonical_ids": "⿰言隹", + "expanded_ids": "⿰言隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誱", + "codepoint": "U+8AB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AB1", + "status": "exact_ids", + "ids": "⿰言疌", + "canonical_ids": "⿰言疌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "疌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "課", + "codepoint": "U+8AB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AB2", + "status": "exact_ids", + "ids": "⿰言果", + "canonical_ids": "⿰言果", + "expanded_ids": "⿰言⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誳", + "codepoint": "U+8AB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AB3", + "status": "exact_ids", + "ids": "⿰言屈", + "canonical_ids": "⿰言屈", + "expanded_ids": "⿰言⿱尸⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "尸", + "屮", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誴", + "codepoint": "U+8AB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AB4", + "status": "exact_ids", + "ids": "⿰言宗", + "canonical_ids": "⿰言宗", + "expanded_ids": "⿰言⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誵", + "codepoint": "U+8AB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AB5", + "status": "exact_ids", + "ids": "⿰言肴", + "canonical_ids": "⿰言肴", + "expanded_ids": "⿰言⿱乂⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "乂", + "月", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誶", + "codepoint": "U+8AB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AB6", + "status": "exact_ids", + "ids": "⿰言卒", + "canonical_ids": "⿰言卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誷", + "codepoint": "U+8AB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AB7", + "status": "exact_ids", + "ids": "⿰言罔", + "canonical_ids": "⿰言罔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "罔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誸", + "codepoint": "U+8AB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AB8", + "status": "exact_ids", + "ids": "⿰言弦", + "canonical_ids": "⿰言弦", + "expanded_ids": "⿰言⿰弓⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "弓", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誹", + "codepoint": "U+8AB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AB9", + "status": "exact_ids", + "ids": "⿰言非", + "canonical_ids": "⿰言非", + "expanded_ids": "⿰言非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誺", + "codepoint": "U+8ABA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ABA", + "status": "exact_ids", + "ids": "⿰言來", + "canonical_ids": "⿰言來", + "expanded_ids": "⿰言⿻木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "木", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誻", + "codepoint": "U+8ABB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ABB", + "status": "exact_ids", + "ids": "⿰言沓", + "canonical_ids": "⿰言沓", + "expanded_ids": "⿰言⿱水日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "水", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誼", + "codepoint": "U+8ABC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ABC", + "status": "exact_ids", + "ids": "⿰言宜", + "canonical_ids": "⿰言宜", + "expanded_ids": "⿰言⿱宀且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "宀", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誽", + "codepoint": "U+8ABD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ABD", + "status": "exact_ids", + "ids": "⿰言兒", + "canonical_ids": "⿰言兒", + "expanded_ids": "⿰言⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "臼", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "誾", + "codepoint": "U+8ABE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ABE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "調", + "codepoint": "U+8ABF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ABF", + "status": "exact_ids", + "ids": "⿰言周", + "canonical_ids": "⿰言周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諀", + "codepoint": "U+8AC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AC0", + "status": "exact_ids", + "ids": "⿰言卑", + "canonical_ids": "⿰言卑", + "expanded_ids": "⿰言卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諁", + "codepoint": "U+8AC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AC1", + "status": "exact_ids", + "ids": "⿰言叕", + "canonical_ids": "⿰言叕", + "expanded_ids": "⿰言⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諂", + "codepoint": "U+8AC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AC2", + "status": "exact_ids", + "ids": "⿰言臽", + "canonical_ids": "⿰言臽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "臼", + "言" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諃", + "codepoint": "U+8AC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AC3", + "status": "exact_ids", + "ids": "⿰言林", + "canonical_ids": "⿰言林", + "expanded_ids": "⿰言⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諄", + "codepoint": "U+8AC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AC4", + "status": "exact_ids", + "ids": "⿰言享", + "canonical_ids": "⿰言享", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諅", + "codepoint": "U+8AC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AC5", + "status": "exact_ids", + "ids": "⿱其言", + "canonical_ids": "⿱其言", + "expanded_ids": "⿱其言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諆", + "codepoint": "U+8AC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AC6", + "status": "exact_ids", + "ids": "⿰言其", + "canonical_ids": "⿰言其", + "expanded_ids": "⿰言其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "談", + "codepoint": "U+8AC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AC7", + "status": "exact_ids", + "ids": "⿰言炎", + "canonical_ids": "⿰言炎", + "expanded_ids": "⿰言⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諈", + "codepoint": "U+8AC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AC8", + "status": "exact_ids", + "ids": "⿰言垂", + "canonical_ids": "⿰言垂", + "expanded_ids": "⿰言垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "垂", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諉", + "codepoint": "U+8AC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AC9", + "status": "exact_ids", + "ids": "⿰言委", + "canonical_ids": "⿰言委", + "expanded_ids": "⿰言⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "木", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諊", + "codepoint": "U+8ACA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ACA", + "status": "exact_ids", + "ids": "⿰言匊", + "canonical_ids": "⿰言匊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "匊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "請", + "codepoint": "U+8ACB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ACB", + "status": "exact_ids", + "ids": "⿰言青", + "canonical_ids": "⿰言青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "言" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諌", + "codepoint": "U+8ACC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ACC", + "status": "exact_ids", + "ids": "⿰言東", + "canonical_ids": "⿰言東", + "expanded_ids": "⿰言⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諍", + "codepoint": "U+8ACD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ACD", + "status": "exact_ids", + "ids": "⿰言爭", + "canonical_ids": "⿰言爭", + "expanded_ids": "⿰言⿱爫肀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爫", + "肀", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諎", + "codepoint": "U+8ACE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ACE", + "status": "exact_ids", + "ids": "⿰言昔", + "canonical_ids": "⿰言昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "言" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諏", + "codepoint": "U+8ACF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ACF", + "status": "exact_ids", + "ids": "⿰言取", + "canonical_ids": "⿰言取", + "expanded_ids": "⿰言⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "耳", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諐", + "codepoint": "U+8AD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AD0", + "status": "exact_ids", + "ids": "⿱侃言", + "canonical_ids": "⿱侃言", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "侃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諑", + "codepoint": "U+8AD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AD1", + "status": "exact_ids", + "ids": "⿰言豖", + "canonical_ids": "⿰言豖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "豖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諒", + "codepoint": "U+8AD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AD2", + "status": "exact_ids", + "ids": "⿰言京", + "canonical_ids": "⿰言京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諓", + "codepoint": "U+8AD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AD3", + "status": "exact_ids", + "ids": "⿰言戔", + "canonical_ids": "⿰言戔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諔", + "codepoint": "U+8AD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AD4", + "status": "exact_ids", + "ids": "⿰言叔", + "canonical_ids": "⿰言叔", + "expanded_ids": "⿰言⿰⿱上小又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "又", + "小", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諕", + "codepoint": "U+8AD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AD5", + "status": "exact_ids", + "ids": "⿰言虎", + "canonical_ids": "⿰言虎", + "expanded_ids": "⿰言⿱虍儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "虍", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "論", + "codepoint": "U+8AD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AD6", + "status": "exact_ids", + "ids": "⿰言侖", + "canonical_ids": "⿰言侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "言" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諗", + "codepoint": "U+8AD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AD7", + "status": "exact_ids", + "ids": "⿰言念", + "canonical_ids": "⿰言念", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "心", + "言" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諘", + "codepoint": "U+8AD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AD8", + "status": "exact_ids", + "ids": "⿰言表", + "canonical_ids": "⿰言表", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "表" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諙", + "codepoint": "U+8AD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AD9", + "status": "exact_ids", + "ids": "⿰言昏", + "canonical_ids": "⿰言昏", + "expanded_ids": "⿰言⿱氏日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "氏", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諚", + "codepoint": "U+8ADA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ADA", + "status": "exact_ids", + "ids": "⿰言定", + "canonical_ids": "⿰言定", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "言" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諛", + "codepoint": "U+8ADB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ADB", + "status": "exact_ids", + "ids": "⿰言臾", + "canonical_ids": "⿰言臾", + "expanded_ids": "⿰言⿻人臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "臼", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諜", + "codepoint": "U+8ADC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ADC", + "status": "exact_ids", + "ids": "⿰言枼", + "canonical_ids": "⿰言枼", + "expanded_ids": "⿰言⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諝", + "codepoint": "U+8ADD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ADD", + "status": "exact_ids", + "ids": "⿰言胥", + "canonical_ids": "⿰言胥", + "expanded_ids": "⿰言⿱疋月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "疋", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諞", + "codepoint": "U+8ADE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ADE", + "status": "exact_ids", + "ids": "⿰言扁", + "canonical_ids": "⿰言扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "言" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諟", + "codepoint": "U+8ADF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ADF", + "status": "exact_ids", + "ids": "⿰言是", + "canonical_ids": "⿰言是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "言" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諠", + "codepoint": "U+8AE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AE0", + "status": "exact_ids", + "ids": "⿰言宣", + "canonical_ids": "⿰言宣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "言" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諡", + "codepoint": "U+8AE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AE1", + "status": "exact_ids", + "ids": "⿰言㿽", + "canonical_ids": "⿰言㿽", + "expanded_ids": "⿰言⿱⿱八丂皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "八", + "皿", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諢", + "codepoint": "U+8AE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AE2", + "status": "exact_ids", + "ids": "⿰言軍", + "canonical_ids": "⿰言軍", + "expanded_ids": "⿰言⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "言", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諣", + "codepoint": "U+8AE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AE3", + "status": "exact_ids", + "ids": "⿰言咼", + "canonical_ids": "⿰言咼", + "expanded_ids": "⿰言⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諤", + "codepoint": "U+8AE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AE4", + "status": "exact_ids", + "ids": "⿰言咢", + "canonical_ids": "⿰言咢", + "expanded_ids": "⿰言⿱⿰口口⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "口", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諥", + "codepoint": "U+8AE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AE5", + "status": "exact_ids", + "ids": "⿰言重", + "canonical_ids": "⿰言重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "言" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諦", + "codepoint": "U+8AE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AE6", + "status": "exact_ids", + "ids": "⿰言帝", + "canonical_ids": "⿰言帝", + "expanded_ids": "⿰言⿳⿱亠八冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諧", + "codepoint": "U+8AE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AE7", + "status": "exact_ids", + "ids": "⿰言皆", + "canonical_ids": "⿰言皆", + "expanded_ids": "⿰言⿱⿰匕匕⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "日", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諨", + "codepoint": "U+8AE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AE8", + "status": "exact_ids", + "ids": "⿰言畐", + "canonical_ids": "⿰言畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諩", + "codepoint": "U+8AE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AE9", + "status": "exact_ids", + "ids": "⿰言並", + "canonical_ids": "⿰言並", + "expanded_ids": "⿰言⿱丷亚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亚", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諪", + "codepoint": "U+8AEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AEA", + "status": "exact_ids", + "ids": "⿰言亭", + "canonical_ids": "⿰言亭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "亭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諫", + "codepoint": "U+8AEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AEB", + "status": "exact_ids", + "ids": "⿰言柬", + "canonical_ids": "⿰言柬", + "expanded_ids": "⿰言柬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "柬", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諬", + "codepoint": "U+8AEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AEC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諭", + "codepoint": "U+8AED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AED", + "status": "exact_ids", + "ids": "⿰言俞", + "canonical_ids": "⿰言俞", + "expanded_ids": "⿰言⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "月", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諮", + "codepoint": "U+8AEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AEE", + "status": "exact_ids", + "ids": "⿰言咨", + "canonical_ids": "⿰言咨", + "expanded_ids": "⿰言⿱⿰冫欠口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "口", + "欠", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諯", + "codepoint": "U+8AEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AEF", + "status": "exact_ids", + "ids": "⿰言耑", + "canonical_ids": "⿰言耑", + "expanded_ids": "⿰言⿱山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "而", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諰", + "codepoint": "U+8AF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AF0", + "status": "exact_ids", + "ids": "⿰言思", + "canonical_ids": "⿰言思", + "expanded_ids": "⿰言⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "田", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諱", + "codepoint": "U+8AF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AF1", + "status": "exact_ids", + "ids": "⿰言韋", + "canonical_ids": "⿰言韋", + "expanded_ids": "⿰言韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諲", + "codepoint": "U+8AF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AF2", + "status": "exact_ids", + "ids": "⿰言垔", + "canonical_ids": "⿰言垔", + "expanded_ids": "⿰言⿱覀土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "覀", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諳", + "codepoint": "U+8AF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AF3", + "status": "exact_ids", + "ids": "⿰言音", + "canonical_ids": "⿰言音", + "expanded_ids": "⿰言⿱立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "立", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諴", + "codepoint": "U+8AF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AF4", + "status": "exact_ids", + "ids": "⿰言咸", + "canonical_ids": "⿰言咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諵", + "codepoint": "U+8AF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AF5", + "status": "exact_ids", + "ids": "⿰言南", + "canonical_ids": "⿰言南", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "南" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諶", + "codepoint": "U+8AF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AF6", + "status": "exact_ids", + "ids": "⿰言甚", + "canonical_ids": "⿰言甚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甘", + "言" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諷", + "codepoint": "U+8AF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AF7", + "status": "exact_ids", + "ids": "⿰言風", + "canonical_ids": "⿰言風", + "expanded_ids": "⿰言風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諸", + "codepoint": "U+8AF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AF8", + "status": "exact_ids", + "ids": "⿰言者", + "canonical_ids": "⿰言者", + "expanded_ids": "⿰言⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諹", + "codepoint": "U+8AF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AF9", + "status": "exact_ids", + "ids": "⿰言昜", + "canonical_ids": "⿰言昜", + "expanded_ids": "⿰言⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諺", + "codepoint": "U+8AFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AFA", + "status": "exact_ids", + "ids": "⿰言彦", + "canonical_ids": "⿰言彦", + "expanded_ids": "⿰言⿱⿱⿱亠八厂彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "厂", + "彡", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諻", + "codepoint": "U+8AFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AFB", + "status": "exact_ids", + "ids": "⿰言皇", + "canonical_ids": "⿰言皇", + "expanded_ids": "⿰言⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "王", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諼", + "codepoint": "U+8AFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AFC", + "status": "exact_ids", + "ids": "⿰言爰", + "canonical_ids": "⿰言爰", + "expanded_ids": "⿰言⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "爫", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諽", + "codepoint": "U+8AFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AFD", + "status": "exact_ids", + "ids": "⿰言革", + "canonical_ids": "⿰言革", + "expanded_ids": "⿰言革", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諾", + "codepoint": "U+8AFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AFE", + "status": "exact_ids", + "ids": "⿰言若", + "canonical_ids": "⿰言若", + "expanded_ids": "⿰言⿱艹⿱⿻丿一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "艹", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "諿", + "codepoint": "U+8AFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8AFF", + "status": "exact_ids", + "ids": "⿰言咠", + "canonical_ids": "⿰言咠", + "expanded_ids": "⿰言⿱口耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "耳", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謀", + "codepoint": "U+8B00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B00", + "status": "exact_ids", + "ids": "⿰言某", + "canonical_ids": "⿰言某", + "expanded_ids": "⿰言⿱甘木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "甘", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謁", + "codepoint": "U+8B01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B01", + "status": "exact_ids", + "ids": "⿰言曷", + "canonical_ids": "⿰言曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "言" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謂", + "codepoint": "U+8B02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B02", + "status": "exact_ids", + "ids": "⿰言胃", + "canonical_ids": "⿰言胃", + "expanded_ids": "⿰言⿱田月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "田", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謃", + "codepoint": "U+8B03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B03", + "status": "exact_ids", + "ids": "⿰言星", + "canonical_ids": "⿰言星", + "expanded_ids": "⿰言⿱日⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "牛", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謄", + "codepoint": "U+8B04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B04", + "status": "exact_ids", + "ids": "⿰月誊", + "canonical_ids": "⿰月誊", + "expanded_ids": "⿰月⿱龹言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "言", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謅", + "codepoint": "U+8B05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B05", + "status": "exact_ids", + "ids": "⿰言芻", + "canonical_ids": "⿰言芻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "芻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謆", + "codepoint": "U+8B06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B06", + "status": "exact_ids", + "ids": "⿰言扇", + "canonical_ids": "⿰言扇", + "expanded_ids": "⿰言⿱⿻一尸⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "尸", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謇", + "codepoint": "U+8B07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B07", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謈", + "codepoint": "U+8B08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B08", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謉", + "codepoint": "U+8B09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B09", + "status": "exact_ids", + "ids": "⿰言鬼", + "canonical_ids": "⿰言鬼", + "expanded_ids": "⿰言鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謊", + "codepoint": "U+8B0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B0A", + "status": "exact_ids", + "ids": "⿰言荒", + "canonical_ids": "⿰言荒", + "expanded_ids": "⿰言⿱艹⿱⿻亠乚川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "川", + "艹", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謋", + "codepoint": "U+8B0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B0B", + "status": "exact_ids", + "ids": "⿰言桀", + "canonical_ids": "⿰言桀", + "expanded_ids": "⿰言⿱⿰夕⿻丨二木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夕", + "木", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謌", + "codepoint": "U+8B0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B0C", + "status": "exact_ids", + "ids": "⿰言哥", + "canonical_ids": "⿰言哥", + "expanded_ids": "⿰言⿱⿰口⿱一亅⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謍", + "codepoint": "U+8B0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B0D", + "status": "exact_ids", + "ids": "⿳炏冖言", + "canonical_ids": "⿳炏冖言", + "expanded_ids": "⿳⿰火火冖言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "火", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謎", + "codepoint": "U+8B0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B0E", + "status": "exact_ids", + "ids": "⿰言迷", + "canonical_ids": "⿰言迷", + "expanded_ids": "⿰言⿰辶⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "言", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謏", + "codepoint": "U+8B0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B0F", + "status": "exact_ids", + "ids": "⿰言叟", + "canonical_ids": "⿰言叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "言" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謐", + "codepoint": "U+8B10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B10", + "status": "exact_ids", + "ids": "⿰言𥁑", + "canonical_ids": "⿰言𥁑", + "expanded_ids": "⿰言⿱⿻心丿皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "皿", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謑", + "codepoint": "U+8B11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B11", + "status": "exact_ids", + "ids": "⿰言奚", + "canonical_ids": "⿰言奚", + "expanded_ids": "⿰言⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "幺", + "爪", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謒", + "codepoint": "U+8B12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B12", + "status": "exact_ids", + "ids": "⿰言倉", + "canonical_ids": "⿰言倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謓", + "codepoint": "U+8B13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B13", + "status": "exact_ids", + "ids": "⿰言真", + "canonical_ids": "⿰言真", + "expanded_ids": "⿰言⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "目", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謔", + "codepoint": "U+8B14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B14", + "status": "exact_ids", + "ids": "⿰言虐", + "canonical_ids": "⿰言虐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "虐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謕", + "codepoint": "U+8B15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B15", + "status": "exact_ids", + "ids": "⿰言虒", + "canonical_ids": "⿰言虒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "虒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謖", + "codepoint": "U+8B16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B16", + "status": "exact_ids", + "ids": "⿰言畟", + "canonical_ids": "⿰言畟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "畟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謗", + "codepoint": "U+8B17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B17", + "status": "exact_ids", + "ids": "⿰言旁", + "canonical_ids": "⿰言旁", + "expanded_ids": "⿰言⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "方", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謘", + "codepoint": "U+8B18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B18", + "status": "exact_ids", + "ids": "⿰言屖", + "canonical_ids": "⿰言屖", + "expanded_ids": "⿰言⿱尸⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "尸", + "立", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謙", + "codepoint": "U+8B19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B19", + "status": "exact_ids", + "ids": "⿰言兼", + "canonical_ids": "⿰言兼", + "expanded_ids": "⿰言兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謚", + "codepoint": "U+8B1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B1A", + "status": "exact_ids", + "ids": "⿰言益", + "canonical_ids": "⿰言益", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "講", + "codepoint": "U+8B1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B1B", + "status": "exact_ids", + "ids": "⿰言冓", + "canonical_ids": "⿰言冓", + "expanded_ids": "⿰言⿱井⿱一⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "井", + "冂", + "土", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謜", + "codepoint": "U+8B1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B1C", + "status": "exact_ids", + "ids": "⿰言原", + "canonical_ids": "⿰言原", + "expanded_ids": "⿰言⿱厂⿱⿻日丶小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "小", + "日", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謝", + "codepoint": "U+8B1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B1D", + "status": "exact_ids", + "ids": "⿰言射", + "canonical_ids": "⿰言射", + "expanded_ids": "⿰言⿰身寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "言", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謞", + "codepoint": "U+8B1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B1E", + "status": "exact_ids", + "ids": "⿰言高", + "canonical_ids": "⿰言高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謟", + "codepoint": "U+8B1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B1F", + "status": "exact_ids", + "ids": "⿰言舀", + "canonical_ids": "⿰言舀", + "expanded_ids": "⿰言⿱爫臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爫", + "臼", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謠", + "codepoint": "U+8B20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B20", + "status": "exact_ids", + "ids": "⿰言䍃", + "canonical_ids": "⿰言䍃", + "expanded_ids": "⿰言⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爪", + "缶", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "謡" + ] + }, + { + "character": "謡", + "codepoint": "U+8B21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B21", + "status": "exact_ids", + "ids": "⿰言䍃", + "canonical_ids": "⿰言䍃", + "expanded_ids": "⿰言⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爪", + "缶", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "謠" + ] + }, + { + "character": "謢", + "codepoint": "U+8B22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B22", + "status": "exact_ids", + "ids": "⿰言隻", + "canonical_ids": "⿰言隻", + "expanded_ids": "⿰言⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "言", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謣", + "codepoint": "U+8B23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B23", + "status": "exact_ids", + "ids": "⿰言雩", + "canonical_ids": "⿰言雩", + "expanded_ids": "⿰言⿱雨⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "言", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謤", + "codepoint": "U+8B24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B24", + "status": "exact_ids", + "ids": "⿰言票", + "canonical_ids": "⿰言票", + "expanded_ids": "⿰言⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "覀", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謥", + "codepoint": "U+8B25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B25", + "status": "exact_ids", + "ids": "⿰言悤", + "canonical_ids": "⿰言悤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "言" + ], + "unresolved_leaves": [ + "囱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謦", + "codepoint": "U+8B26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B26", + "status": "exact_ids", + "ids": "⿱殸言", + "canonical_ids": "⿱殸言", + "expanded_ids": "⿱⿰⿱士⿻尸丨⿱几又言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "几", + "又", + "士", + "尸", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謧", + "codepoint": "U+8B27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B27", + "status": "exact_ids", + "ids": "⿰言离", + "canonical_ids": "⿰言离", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "禸", + "言" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謨", + "codepoint": "U+8B28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B28", + "status": "exact_ids", + "ids": "⿰言莫", + "canonical_ids": "⿰言莫", + "expanded_ids": "⿰言⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "艹", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謩", + "codepoint": "U+8B29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B29", + "status": "exact_ids", + "ids": "⿱莫言", + "canonical_ids": "⿱莫言", + "expanded_ids": "⿱⿱艹⿱日大言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "艹", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謪", + "codepoint": "U+8B2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B2A", + "status": "exact_ids", + "ids": "⿰言商", + "canonical_ids": "⿰言商", + "expanded_ids": "⿰言⿱⿱亠八⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冂", + "口", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謫", + "codepoint": "U+8B2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B2B", + "status": "exact_ids", + "ids": "⿰言啇", + "canonical_ids": "⿰言啇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謬", + "codepoint": "U+8B2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B2C", + "status": "exact_ids", + "ids": "⿰言翏", + "canonical_ids": "⿰言翏", + "expanded_ids": "⿰言⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謭", + "codepoint": "U+8B2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B2D", + "status": "exact_ids", + "ids": "⿰言剪", + "canonical_ids": "⿰言剪", + "expanded_ids": "⿰言⿱⿱止⿰月刂刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "刂", + "月", + "止", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謮", + "codepoint": "U+8B2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B2E", + "status": "exact_ids", + "ids": "⿰言責", + "canonical_ids": "⿰言責", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "言" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謯", + "codepoint": "U+8B2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B2F", + "status": "exact_ids", + "ids": "⿰言虘", + "canonical_ids": "⿰言虘", + "expanded_ids": "⿰言⿱虍且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "虍", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謰", + "codepoint": "U+8B30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B30", + "status": "exact_ids", + "ids": "⿰言連", + "canonical_ids": "⿰言連", + "expanded_ids": "⿰言⿰辶車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言", + "車", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謱", + "codepoint": "U+8B31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B31", + "status": "exact_ids", + "ids": "⿰言婁", + "canonical_ids": "⿰言婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謲", + "codepoint": "U+8B32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B32", + "status": "exact_ids", + "ids": "⿰言參", + "canonical_ids": "⿰言參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謳", + "codepoint": "U+8B33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B33", + "status": "exact_ids", + "ids": "⿰言區", + "canonical_ids": "⿰言區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謴", + "codepoint": "U+8B34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B34", + "status": "exact_ids", + "ids": "⿰言貫", + "canonical_ids": "⿰言貫", + "expanded_ids": "⿰言⿱毌⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "毌", + "目", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謵", + "codepoint": "U+8B35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B35", + "status": "exact_ids", + "ids": "⿰言習", + "canonical_ids": "⿰言習", + "expanded_ids": "⿰言⿱⿰习习⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "习", + "日", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謶", + "codepoint": "U+8B36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B36", + "status": "exact_ids", + "ids": "⿰言庶", + "canonical_ids": "⿰言庶", + "expanded_ids": "⿰言⿱广⿱廿火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "廿", + "火", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謷", + "codepoint": "U+8B37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B37", + "status": "exact_ids", + "ids": "⿱敖言", + "canonical_ids": "⿱敖言", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謸", + "codepoint": "U+8B38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B38", + "status": "exact_ids", + "ids": "⿰言敖", + "canonical_ids": "⿰言敖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謹", + "codepoint": "U+8B39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B39", + "status": "exact_ids", + "ids": "⿰言堇", + "canonical_ids": "⿰言堇", + "expanded_ids": "⿰言堇", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謺", + "codepoint": "U+8B3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B3A", + "status": "exact_ids", + "ids": "⿱執言", + "canonical_ids": "⿱執言", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "土", + "言" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謻", + "codepoint": "U+8B3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B3B", + "status": "exact_ids", + "ids": "⿰言移", + "canonical_ids": "⿰言移", + "expanded_ids": "⿰言⿰⿻丿木⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "夕", + "木", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謼", + "codepoint": "U+8B3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B3C", + "status": "exact_ids", + "ids": "⿰言虖", + "canonical_ids": "⿰言虖", + "expanded_ids": "⿰言⿱虍乎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乎", + "虍", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謽", + "codepoint": "U+8B3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B3D", + "status": "exact_ids", + "ids": "⿱強言", + "canonical_ids": "⿱強言", + "expanded_ids": "⿱⿰弓⿱厶虫言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "弓", + "虫", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謾", + "codepoint": "U+8B3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B3E", + "status": "exact_ids", + "ids": "⿰言曼", + "canonical_ids": "⿰言曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "謿", + "codepoint": "U+8B3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B3F", + "status": "exact_ids", + "ids": "⿰言朝", + "canonical_ids": "⿰言朝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "朝" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譀", + "codepoint": "U+8B40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B40", + "status": "exact_ids", + "ids": "⿰言敢", + "canonical_ids": "⿰言敢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "敢" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譁", + "codepoint": "U+8B41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B41", + "status": "exact_ids", + "ids": "⿰言華", + "canonical_ids": "⿰言華", + "expanded_ids": "⿰言⿱艹𠦒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "言", + "𠦒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 118, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譂", + "codepoint": "U+8B42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B42", + "status": "exact_ids", + "ids": "⿰言單", + "canonical_ids": "⿰言單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譃", + "codepoint": "U+8B43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B43", + "status": "exact_ids", + "ids": "⿰言虚", + "canonical_ids": "⿰言虚", + "expanded_ids": "⿰言⿱虍业", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "虍", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譄", + "codepoint": "U+8B44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B44", + "status": "exact_ids", + "ids": "⿰言曾", + "canonical_ids": "⿰言曾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譅", + "codepoint": "U+8B45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B45", + "status": "exact_ids", + "ids": "⿰言歰", + "canonical_ids": "⿰言歰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "歰" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譆", + "codepoint": "U+8B46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B46", + "status": "exact_ids", + "ids": "⿰言喜", + "canonical_ids": "⿰言喜", + "expanded_ids": "⿰言⿱⿱十豆口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "言", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譇", + "codepoint": "U+8B47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B47", + "status": "exact_ids", + "ids": "⿰言奢", + "canonical_ids": "⿰言奢", + "expanded_ids": "⿰言⿱大⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "大", + "日", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譈", + "codepoint": "U+8B48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B48", + "status": "exact_ids", + "ids": "⿰言敦", + "canonical_ids": "⿰言敦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "言" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "證", + "codepoint": "U+8B49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B49", + "status": "exact_ids", + "ids": "⿰言登", + "canonical_ids": "⿰言登", + "expanded_ids": "⿰言⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "癶", + "言", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譊", + "codepoint": "U+8B4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B4A", + "status": "exact_ids", + "ids": "⿰言堯", + "canonical_ids": "⿰言堯", + "expanded_ids": "⿰言⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譋", + "codepoint": "U+8B4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B4B", + "status": "exact_ids", + "ids": "⿰言閒", + "canonical_ids": "⿰言閒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "閒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譌", + "codepoint": "U+8B4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B4C", + "status": "exact_ids", + "ids": "⿰言爲", + "canonical_ids": "⿰言爲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "爲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譍", + "codepoint": "U+8B4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B4D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譎", + "codepoint": "U+8B4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B4E", + "status": "exact_ids", + "ids": "⿰言矞", + "canonical_ids": "⿰言矞", + "expanded_ids": "⿰言⿱矛⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "矛", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譏", + "codepoint": "U+8B4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B4F", + "status": "exact_ids", + "ids": "⿰言幾", + "canonical_ids": "⿰言幾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "言" + ], + "unresolved_leaves": [ + "戍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譐", + "codepoint": "U+8B50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B50", + "status": "exact_ids", + "ids": "⿰言尊", + "canonical_ids": "⿰言尊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "寸", + "言" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譑", + "codepoint": "U+8B51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B51", + "status": "exact_ids", + "ids": "⿰言喬", + "canonical_ids": "⿰言喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "言" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譒", + "codepoint": "U+8B52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B52", + "status": "exact_ids", + "ids": "⿰言番", + "canonical_ids": "⿰言番", + "expanded_ids": "⿰言⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "木", + "田", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譓", + "codepoint": "U+8B53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B53", + "status": "exact_ids", + "ids": "⿰言惠", + "canonical_ids": "⿰言惠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "心", + "言" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譔", + "codepoint": "U+8B54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B54", + "status": "exact_ids", + "ids": "⿰言巽", + "canonical_ids": "⿰言巽", + "expanded_ids": "⿰言⿱⿰己己⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "廾", + "廿", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譕", + "codepoint": "U+8B55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B55", + "status": "exact_ids", + "ids": "⿰言無", + "canonical_ids": "⿰言無", + "expanded_ids": "⿰言無", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "無", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譖", + "codepoint": "U+8B56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B56", + "status": "exact_ids", + "ids": "⿰言朁", + "canonical_ids": "⿰言朁", + "expanded_ids": "⿰言⿱⿰旡旡曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "旡", + "曰", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譗", + "codepoint": "U+8B57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B57", + "status": "exact_ids", + "ids": "⿰言答", + "canonical_ids": "⿰言答", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "言" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "識", + "codepoint": "U+8B58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B58", + "status": "exact_ids", + "ids": "⿰言戠", + "canonical_ids": "⿰言戠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "立", + "言" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譙", + "codepoint": "U+8B59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B59", + "status": "exact_ids", + "ids": "⿰言焦", + "canonical_ids": "⿰言焦", + "expanded_ids": "⿰言⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬", + "言", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譚", + "codepoint": "U+8B5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B5A", + "status": "exact_ids", + "ids": "⿰言覃", + "canonical_ids": "⿰言覃", + "expanded_ids": "⿰言⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "襾", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譛", + "codepoint": "U+8B5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B5B", + "status": "exact_ids", + "ids": "⿰言替", + "canonical_ids": "⿰言替", + "expanded_ids": "⿰言⿱⿰⿻一大⿻一大曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "曰", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譜", + "codepoint": "U+8B5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B5C", + "status": "exact_ids", + "ids": "⿰言普", + "canonical_ids": "⿰言普", + "expanded_ids": "⿰言⿱⿱丷亚日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亚", + "日", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譝", + "codepoint": "U+8B5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B5D", + "status": "exact_ids", + "ids": "⿰言黽", + "canonical_ids": "⿰言黽", + "expanded_ids": "⿰言黽", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言", + "黽" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譞", + "codepoint": "U+8B5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B5E", + "status": "exact_ids", + "ids": "⿰言睘", + "canonical_ids": "⿰言睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譟", + "codepoint": "U+8B5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B5F", + "status": "exact_ids", + "ids": "⿰言喿", + "canonical_ids": "⿰言喿", + "expanded_ids": "⿰言⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譠", + "codepoint": "U+8B60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B60", + "status": "exact_ids", + "ids": "⿰言亶", + "canonical_ids": "⿰言亶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "日", + "言" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譡", + "codepoint": "U+8B61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B61", + "status": "exact_ids", + "ids": "⿰言當", + "canonical_ids": "⿰言當", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "田", + "言" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譢", + "codepoint": "U+8B62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B62", + "status": "exact_ids", + "ids": "⿰言遂", + "canonical_ids": "⿰言遂", + "expanded_ids": "⿰言⿰辶⿱八豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "言", + "豕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譣", + "codepoint": "U+8B63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B63", + "status": "exact_ids", + "ids": "⿰言僉", + "canonical_ids": "⿰言僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譤", + "codepoint": "U+8B64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B64", + "status": "exact_ids", + "ids": "⿰言敫", + "canonical_ids": "⿰言敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譥", + "codepoint": "U+8B65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B65", + "status": "exact_ids", + "ids": "⿱敫言", + "canonical_ids": "⿱敫言", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "警", + "codepoint": "U+8B66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B66", + "status": "exact_ids", + "ids": "⿱敬言", + "canonical_ids": "⿱敬言", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "艹", + "言" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譧", + "codepoint": "U+8B67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B67", + "status": "exact_ids", + "ids": "⿰言廉", + "canonical_ids": "⿰言廉", + "expanded_ids": "⿰言⿱广兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "广", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譨", + "codepoint": "U+8B68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B68", + "status": "exact_ids", + "ids": "⿰言農", + "canonical_ids": "⿰言農", + "expanded_ids": "⿰言⿱曲辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "言", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譩", + "codepoint": "U+8B69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B69", + "status": "exact_ids", + "ids": "⿰言意", + "canonical_ids": "⿰言意", + "expanded_ids": "⿰言⿱⿱立日心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "日", + "立", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譪", + "codepoint": "U+8B6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B6A", + "status": "exact_ids", + "ids": "⿰言葛", + "canonical_ids": "⿰言葛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "艹", + "言" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譫", + "codepoint": "U+8B6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B6B", + "status": "exact_ids", + "ids": "⿰言詹", + "canonical_ids": "⿰言詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譬", + "codepoint": "U+8B6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B6C", + "status": "exact_ids", + "ids": "⿱辟言", + "canonical_ids": "⿱辟言", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立", + "言" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譭", + "codepoint": "U+8B6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B6D", + "status": "exact_ids", + "ids": "⿰言毀", + "canonical_ids": "⿰言毀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "毀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譮", + "codepoint": "U+8B6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B6E", + "status": "exact_ids", + "ids": "⿰言會", + "canonical_ids": "⿰言會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "言" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譯", + "codepoint": "U+8B6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B6F", + "status": "exact_ids", + "ids": "⿰言睪", + "canonical_ids": "⿰言睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "罒", + "言" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "議", + "codepoint": "U+8B70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B70", + "status": "exact_ids", + "ids": "⿰言義", + "canonical_ids": "⿰言義", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "義" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譱", + "codepoint": "U+8B71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B71", + "status": "exact_ids", + "ids": "⿲言羊言", + "canonical_ids": "⿲言羊言", + "expanded_ids": "⿲言羊言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "羊", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 103, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譲", + "codepoint": "U+8B72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B72", + "status": "exact_ids", + "ids": "⿰言㐮", + "canonical_ids": "⿰言㐮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "㐮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譳", + "codepoint": "U+8B73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B73", + "status": "exact_ids", + "ids": "⿰言需", + "canonical_ids": "⿰言需", + "expanded_ids": "⿰言⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "而", + "言", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譴", + "codepoint": "U+8B74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B74", + "status": "exact_ids", + "ids": "⿰言遣", + "canonical_ids": "⿰言遣", + "expanded_ids": "⿰言⿰辶⿱⿱⿻口丨一㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "一", + "丨", + "口", + "言", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譵", + "codepoint": "U+8B75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B75", + "status": "exact_ids", + "ids": "⿰言對", + "canonical_ids": "⿰言對", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "寸", + "言" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譶", + "codepoint": "U+8B76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B76", + "status": "exact_ids", + "ids": "⿱言⿰言言", + "canonical_ids": "⿱言⿰言言", + "expanded_ids": "⿱言⿰言言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "護", + "codepoint": "U+8B77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B77", + "status": "exact_ids", + "ids": "⿰言蒦", + "canonical_ids": "⿰言蒦", + "expanded_ids": "⿰言⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "艹", + "言", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譸", + "codepoint": "U+8B78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B78", + "status": "exact_ids", + "ids": "⿰言壽", + "canonical_ids": "⿰言壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譹", + "codepoint": "U+8B79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B79", + "status": "exact_ids", + "ids": "⿰言豪", + "canonical_ids": "⿰言豪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "豪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譺", + "codepoint": "U+8B7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B7A", + "status": "exact_ids", + "ids": "⿰言疑", + "canonical_ids": "⿰言疑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "疑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譻", + "codepoint": "U+8B7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B7B", + "status": "exact_ids", + "ids": "⿱⿰貝貝言", + "canonical_ids": "⿱⿰貝貝言", + "expanded_ids": "⿱⿰⿱目八⿱目八言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譼", + "codepoint": "U+8B7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B7C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譽", + "codepoint": "U+8B7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B7D", + "status": "exact_ids", + "ids": "⿱與言", + "canonical_ids": "⿱與言", + "expanded_ids": "⿱與言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "與", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譾", + "codepoint": "U+8B7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B7E", + "status": "exact_ids", + "ids": "⿰言翦", + "canonical_ids": "⿰言翦", + "expanded_ids": "⿰言⿱⿱止⿰月刂⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "刂", + "月", + "止", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "譿", + "codepoint": "U+8B7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B7F", + "status": "exact_ids", + "ids": "⿰言慧", + "canonical_ids": "⿰言慧", + "expanded_ids": "⿰言⿱⿱⿰丰丰彐心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "彐", + "心", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讀", + "codepoint": "U+8B80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B80", + "status": "exact_ids", + "ids": "⿰言賣", + "canonical_ids": "⿰言賣", + "expanded_ids": "⿰言⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "士", + "目", + "罒", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讁", + "codepoint": "U+8B81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B81", + "status": "exact_ids", + "ids": "⿰言適", + "canonical_ids": "⿰言適", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言", + "辶" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讂", + "codepoint": "U+8B82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B82", + "status": "exact_ids", + "ids": "⿰言敻", + "canonical_ids": "⿰言敻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "敻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讃", + "codepoint": "U+8B83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B83", + "status": "exact_ids", + "ids": "⿰言賛", + "canonical_ids": "⿰言賛", + "expanded_ids": "⿰言⿱⿰⿻一大⿻一大⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "大", + "目", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讄", + "codepoint": "U+8B84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B84", + "status": "exact_ids", + "ids": "⿰言畾", + "canonical_ids": "⿰言畾", + "expanded_ids": "⿰言⿱田⿰田田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讅", + "codepoint": "U+8B85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B85", + "status": "exact_ids", + "ids": "⿰言審", + "canonical_ids": "⿰言審", + "expanded_ids": "⿰言⿱宀⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "宀", + "木", + "田", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讆", + "codepoint": "U+8B86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B86", + "status": "exact_ids", + "ids": "⿱衛言", + "canonical_ids": "⿱衛言", + "expanded_ids": "⿱⿲彳韋彳言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "言", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 141, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讇", + "codepoint": "U+8B87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B87", + "status": "exact_ids", + "ids": "⿰言閻", + "canonical_ids": "⿰言閻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "閻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讈", + "codepoint": "U+8B88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B88", + "status": "exact_ids", + "ids": "⿰言歷", + "canonical_ids": "⿰言歷", + "expanded_ids": "⿰言⿱⿱厂⿰⿻丿木⿻丿木止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厂", + "木", + "止", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讉", + "codepoint": "U+8B89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B89", + "status": "exact_ids", + "ids": "⿰言遺", + "canonical_ids": "⿰言遺", + "expanded_ids": "⿰言⿰辶⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "目", + "言", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 264, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "變", + "codepoint": "U+8B8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B8A", + "status": "exact_ids", + "ids": "⿱䜌攵", + "canonical_ids": "⿱䜌攵", + "expanded_ids": "⿱⿲⿱幺小言⿱幺小攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "攵", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讋", + "codepoint": "U+8B8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B8B", + "status": "exact_ids", + "ids": "⿱龍言", + "canonical_ids": "⿱龍言", + "expanded_ids": "⿱龍言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讌", + "codepoint": "U+8B8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B8C", + "status": "exact_ids", + "ids": "⿰言燕", + "canonical_ids": "⿰言燕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "燕" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讍", + "codepoint": "U+8B8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B8D", + "status": "exact_ids", + "ids": "⿰言噩", + "canonical_ids": "⿰言噩", + "expanded_ids": "⿰言⿻王⿰⿱口口⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "王", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讎", + "codepoint": "U+8B8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B8E", + "status": "exact_ids", + "ids": "⿲隹言隹", + "canonical_ids": "⿲隹言隹", + "expanded_ids": "⿲隹言隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 105, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讏", + "codepoint": "U+8B8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B8F", + "status": "exact_ids", + "ids": "⿱衞言", + "canonical_ids": "⿱衞言", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "衞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讐", + "codepoint": "U+8B90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B90", + "status": "exact_ids", + "ids": "⿱雔言", + "canonical_ids": "⿱雔言", + "expanded_ids": "⿱⿰隹隹言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讑", + "codepoint": "U+8B91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B91", + "status": "exact_ids", + "ids": "⿰言龠", + "canonical_ids": "⿰言龠", + "expanded_ids": "⿰言龠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言", + "龠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讒", + "codepoint": "U+8B92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B92", + "status": "exact_ids", + "ids": "⿰言毚", + "canonical_ids": "⿰言毚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "毚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讓", + "codepoint": "U+8B93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B93", + "status": "exact_ids", + "ids": "⿰言襄", + "canonical_ids": "⿰言襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讔", + "codepoint": "U+8B94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B94", + "status": "exact_ids", + "ids": "⿰言隱", + "canonical_ids": "⿰言隱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "隱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讕", + "codepoint": "U+8B95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B95", + "status": "exact_ids", + "ids": "⿰言闌", + "canonical_ids": "⿰言闌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讖", + "codepoint": "U+8B96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B96", + "status": "exact_ids", + "ids": "⿰言韱", + "canonical_ids": "⿰言韱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言" + ], + "unresolved_leaves": [ + "韱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讗", + "codepoint": "U+8B97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B97", + "status": "exact_ids", + "ids": "⿰言巂", + "canonical_ids": "⿰言巂", + "expanded_ids": "⿰言⿱⿱山隹⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "山", + "言", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讘", + "codepoint": "U+8B98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B98", + "status": "exact_ids", + "ids": "⿰言聶", + "canonical_ids": "⿰言聶", + "expanded_ids": "⿰言⿱耳⿰耳耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 154, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讙", + "codepoint": "U+8B99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B99", + "status": "exact_ids", + "ids": "⿰言雚", + "canonical_ids": "⿰言雚", + "expanded_ids": "⿰言⿱艹⿱⿰口口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艹", + "言", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讚", + "codepoint": "U+8B9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B9A", + "status": "exact_ids", + "ids": "⿰言贊", + "canonical_ids": "⿰言贊", + "expanded_ids": "⿰言⿱⿰⿱牛儿⿱牛儿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "牛", + "目", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讛", + "codepoint": "U+8B9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B9B", + "status": "exact_ids", + "ids": "⿰言藝", + "canonical_ids": "⿰言藝", + "expanded_ids": "⿰言⿱⿱艹⿰⿱⿱土儿土⿻九丶⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "二", + "儿", + "厶", + "土", + "艹", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 340, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讜", + "codepoint": "U+8B9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B9C", + "status": "exact_ids", + "ids": "⿰言黨", + "canonical_ids": "⿰言黨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "言", + "黑" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讝", + "codepoint": "U+8B9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B9D", + "status": "exact_ids", + "ids": "⿰言嚴", + "canonical_ids": "⿰言嚴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "言" + ], + "unresolved_leaves": [ + "𠪚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讞", + "codepoint": "U+8B9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B9E", + "status": "exact_ids", + "ids": "⿰言獻", + "canonical_ids": "⿰言獻", + "expanded_ids": "⿰言⿰⿱虍鬲⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "虍", + "言", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讟", + "codepoint": "U+8B9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8B9F", + "status": "exact_ids", + "ids": "⿲言賣言", + "canonical_ids": "⿲言賣言", + "expanded_ids": "⿲言⿱士⿱罒⿱目八言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "士", + "目", + "罒", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 217, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讠", + "codepoint": "U+8BA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BA0", + "status": "leaf_self_fallback", + "ids": "讠", + "canonical_ids": "讠", + "expanded_ids": "讠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "计", + "codepoint": "U+8BA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BA1", + "status": "exact_ids", + "ids": "⿰讠十", + "canonical_ids": "⿰讠十", + "expanded_ids": "⿰讠十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "订", + "codepoint": "U+8BA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BA2", + "status": "exact_ids", + "ids": "⿰讠丁", + "canonical_ids": "⿰讠丁", + "expanded_ids": "⿰讠⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讣", + "codepoint": "U+8BA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BA3", + "status": "exact_ids", + "ids": "⿰讠卜", + "canonical_ids": "⿰讠卜", + "expanded_ids": "⿰讠卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "认", + "codepoint": "U+8BA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BA4", + "status": "exact_ids", + "ids": "⿰讠人", + "canonical_ids": "⿰讠人", + "expanded_ids": "⿰讠人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讥", + "codepoint": "U+8BA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BA5", + "status": "exact_ids", + "ids": "⿰讠几", + "canonical_ids": "⿰讠几", + "expanded_ids": "⿰讠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讦", + "codepoint": "U+8BA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BA6", + "status": "exact_ids", + "ids": "⿰讠干", + "canonical_ids": "⿰讠干", + "expanded_ids": "⿰讠⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讧", + "codepoint": "U+8BA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BA7", + "status": "exact_ids", + "ids": "⿰讠工", + "canonical_ids": "⿰讠工", + "expanded_ids": "⿰讠工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讨", + "codepoint": "U+8BA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BA8", + "status": "exact_ids", + "ids": "⿰讠寸", + "canonical_ids": "⿰讠寸", + "expanded_ids": "⿰讠寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "让", + "codepoint": "U+8BA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BA9", + "status": "exact_ids", + "ids": "⿰讠上", + "canonical_ids": "⿰讠上", + "expanded_ids": "⿰讠上", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讪", + "codepoint": "U+8BAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BAA", + "status": "exact_ids", + "ids": "⿰讠山", + "canonical_ids": "⿰讠山", + "expanded_ids": "⿰讠山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讫", + "codepoint": "U+8BAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BAB", + "status": "exact_ids", + "ids": "⿰讠乞", + "canonical_ids": "⿰讠乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讬", + "codepoint": "U+8BAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BAC", + "status": "exact_ids", + "ids": "⿰讠乇", + "canonical_ids": "⿰讠乇", + "expanded_ids": "⿰讠⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "训", + "codepoint": "U+8BAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BAD", + "status": "exact_ids", + "ids": "⿰讠川", + "canonical_ids": "⿰讠川", + "expanded_ids": "⿰讠川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "川", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "议", + "codepoint": "U+8BAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BAE", + "status": "exact_ids", + "ids": "⿰讠义", + "canonical_ids": "⿰讠义", + "expanded_ids": "⿰讠⿻乂丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乂", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讯", + "codepoint": "U+8BAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BAF", + "status": "exact_ids", + "ids": "⿰讠卂", + "canonical_ids": "⿰讠卂", + "expanded_ids": "⿰讠⿱乁十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乁", + "十", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "记", + "codepoint": "U+8BB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BB0", + "status": "exact_ids", + "ids": "⿰讠己", + "canonical_ids": "⿰讠己", + "expanded_ids": "⿰讠己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讱", + "codepoint": "U+8BB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BB1", + "status": "exact_ids", + "ids": "⿰讠刃", + "canonical_ids": "⿰讠刃", + "expanded_ids": "⿰讠⿻刀丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讲", + "codepoint": "U+8BB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BB2", + "status": "exact_ids", + "ids": "⿰讠井", + "canonical_ids": "⿰讠井", + "expanded_ids": "⿰讠井", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "井", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讳", + "codepoint": "U+8BB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BB3", + "status": "exact_ids", + "ids": "⿰讠韦", + "canonical_ids": "⿰讠韦", + "expanded_ids": "⿰讠韦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠", + "韦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讴", + "codepoint": "U+8BB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BB4", + "status": "exact_ids", + "ids": "⿰讠区", + "canonical_ids": "⿰讠区", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "区" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讵", + "codepoint": "U+8BB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BB5", + "status": "exact_ids", + "ids": "⿰讠巨", + "canonical_ids": "⿰讠巨", + "expanded_ids": "⿰讠巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讶", + "codepoint": "U+8BB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BB6", + "status": "exact_ids", + "ids": "⿰讠牙", + "canonical_ids": "⿰讠牙", + "expanded_ids": "⿰讠牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讷", + "codepoint": "U+8BB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BB7", + "status": "exact_ids", + "ids": "⿰讠内", + "canonical_ids": "⿰讠内", + "expanded_ids": "⿰讠⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "许", + "codepoint": "U+8BB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BB8", + "status": "exact_ids", + "ids": "⿰讠午", + "canonical_ids": "⿰讠午", + "expanded_ids": "⿰讠⿱⿻丿一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "十", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讹", + "codepoint": "U+8BB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BB9", + "status": "exact_ids", + "ids": "⿰讠化", + "canonical_ids": "⿰讠化", + "expanded_ids": "⿰讠⿰亻匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "论", + "codepoint": "U+8BBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BBA", + "status": "exact_ids", + "ids": "⿰讠仑", + "canonical_ids": "⿰讠仑", + "expanded_ids": "⿰讠⿱人匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "匕", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讻", + "codepoint": "U+8BBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BBB", + "status": "exact_ids", + "ids": "⿰讠凶", + "canonical_ids": "⿰讠凶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讼", + "codepoint": "U+8BBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BBC", + "status": "exact_ids", + "ids": "⿰讠公", + "canonical_ids": "⿰讠公", + "expanded_ids": "⿰讠⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "讽", + "codepoint": "U+8BBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BBD", + "status": "exact_ids", + "ids": "⿰讠风", + "canonical_ids": "⿰讠风", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "风" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "设", + "codepoint": "U+8BBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BBE", + "status": "exact_ids", + "ids": "⿰讠殳", + "canonical_ids": "⿰讠殳", + "expanded_ids": "⿰讠⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "访", + "codepoint": "U+8BBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BBF", + "status": "exact_ids", + "ids": "⿰讠方", + "canonical_ids": "⿰讠方", + "expanded_ids": "⿰讠方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诀", + "codepoint": "U+8BC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BC0", + "status": "exact_ids", + "ids": "⿰讠夬", + "canonical_ids": "⿰讠夬", + "expanded_ids": "⿰讠⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "大", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "证", + "codepoint": "U+8BC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BC1", + "status": "exact_ids", + "ids": "⿰讠正", + "canonical_ids": "⿰讠正", + "expanded_ids": "⿰讠⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "止", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诂", + "codepoint": "U+8BC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BC2", + "status": "exact_ids", + "ids": "⿰讠古", + "canonical_ids": "⿰讠古", + "expanded_ids": "⿰讠⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诃", + "codepoint": "U+8BC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BC3", + "status": "exact_ids", + "ids": "⿰讠可", + "canonical_ids": "⿰讠可", + "expanded_ids": "⿰讠⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "评", + "codepoint": "U+8BC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BC4", + "status": "exact_ids", + "ids": "⿰讠平", + "canonical_ids": "⿰讠平", + "expanded_ids": "⿰讠⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "十", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诅", + "codepoint": "U+8BC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BC5", + "status": "exact_ids", + "ids": "⿰讠且", + "canonical_ids": "⿰讠且", + "expanded_ids": "⿰讠且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "识", + "codepoint": "U+8BC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BC6", + "status": "exact_ids", + "ids": "⿰讠只", + "canonical_ids": "⿰讠只", + "expanded_ids": "⿰讠⿱口八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诇", + "codepoint": "U+8BC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BC7", + "status": "exact_ids", + "ids": "⿰讠冋", + "canonical_ids": "⿰讠冋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诈", + "codepoint": "U+8BC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BC8", + "status": "exact_ids", + "ids": "⿰讠乍", + "canonical_ids": "⿰讠乍", + "expanded_ids": "⿰讠乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诉", + "codepoint": "U+8BC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BC9", + "status": "exact_ids", + "ids": "⿰讠斥", + "canonical_ids": "⿰讠斥", + "expanded_ids": "⿰讠⿻斤丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "斤", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诊", + "codepoint": "U+8BCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BCA", + "status": "exact_ids", + "ids": "⿰讠㐱", + "canonical_ids": "⿰讠㐱", + "expanded_ids": "⿰讠⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "彡", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诋", + "codepoint": "U+8BCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BCB", + "status": "exact_ids", + "ids": "⿰讠氐", + "canonical_ids": "⿰讠氐", + "expanded_ids": "⿰讠⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氏", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诌", + "codepoint": "U+8BCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BCC", + "status": "exact_ids", + "ids": "⿰讠刍", + "canonical_ids": "⿰讠刍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "讠" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "词", + "codepoint": "U+8BCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BCD", + "status": "exact_ids", + "ids": "⿰讠司", + "canonical_ids": "⿰讠司", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "司" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诎", + "codepoint": "U+8BCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BCE", + "status": "exact_ids", + "ids": "⿰讠出", + "canonical_ids": "⿰讠出", + "expanded_ids": "⿰讠⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诏", + "codepoint": "U+8BCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BCF", + "status": "exact_ids", + "ids": "⿰讠召", + "canonical_ids": "⿰讠召", + "expanded_ids": "⿰讠⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诐", + "codepoint": "U+8BD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BD0", + "status": "exact_ids", + "ids": "⿰讠皮", + "canonical_ids": "⿰讠皮", + "expanded_ids": "⿰讠皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皮", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "译", + "codepoint": "U+8BD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BD1", + "status": "exact_ids", + "ids": "⿰讠夅", + "canonical_ids": "⿰讠夅", + "expanded_ids": "⿰讠⿱夂⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夂", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诒", + "codepoint": "U+8BD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BD2", + "status": "exact_ids", + "ids": "⿰讠台", + "canonical_ids": "⿰讠台", + "expanded_ids": "⿰讠⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诓", + "codepoint": "U+8BD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BD3", + "status": "exact_ids", + "ids": "⿰讠匡", + "canonical_ids": "⿰讠匡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "匡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诔", + "codepoint": "U+8BD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BD4", + "status": "exact_ids", + "ids": "⿰讠耒", + "canonical_ids": "⿰讠耒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "试", + "codepoint": "U+8BD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BD5", + "status": "exact_ids", + "ids": "⿰讠式", + "canonical_ids": "⿰讠式", + "expanded_ids": "⿰讠⿱弋工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "弋", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诖", + "codepoint": "U+8BD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BD6", + "status": "exact_ids", + "ids": "⿰讠圭", + "canonical_ids": "⿰讠圭", + "expanded_ids": "⿰讠⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诗", + "codepoint": "U+8BD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BD7", + "status": "exact_ids", + "ids": "⿰讠寺", + "canonical_ids": "⿰讠寺", + "expanded_ids": "⿰讠⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诘", + "codepoint": "U+8BD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BD8", + "status": "exact_ids", + "ids": "⿰讠吉", + "canonical_ids": "⿰讠吉", + "expanded_ids": "⿰讠⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诙", + "codepoint": "U+8BD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BD9", + "status": "exact_ids", + "ids": "⿰讠灰", + "canonical_ids": "⿰讠灰", + "expanded_ids": "⿰讠⿱厂火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "火", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诚", + "codepoint": "U+8BDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BDA", + "status": "exact_ids", + "ids": "⿰讠成", + "canonical_ids": "⿰讠成", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "成" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诛", + "codepoint": "U+8BDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BDB", + "status": "exact_ids", + "ids": "⿰讠朱", + "canonical_ids": "⿰讠朱", + "expanded_ids": "⿰讠⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诜", + "codepoint": "U+8BDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BDC", + "status": "exact_ids", + "ids": "⿰讠先", + "canonical_ids": "⿰讠先", + "expanded_ids": "⿰讠⿱牛儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "牛", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "话", + "codepoint": "U+8BDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BDD", + "status": "exact_ids", + "ids": "⿰讠舌", + "canonical_ids": "⿰讠舌", + "expanded_ids": "⿰讠⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诞", + "codepoint": "U+8BDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BDE", + "status": "exact_ids", + "ids": "⿰讠延", + "canonical_ids": "⿰讠延", + "expanded_ids": "⿰讠⿰廴⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廴", + "止", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诟", + "codepoint": "U+8BDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BDF", + "status": "exact_ids", + "ids": "⿰讠后", + "canonical_ids": "⿰讠后", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "后" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诠", + "codepoint": "U+8BE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BE0", + "status": "exact_ids", + "ids": "⿰讠全", + "canonical_ids": "⿰讠全", + "expanded_ids": "⿰讠⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "王", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诡", + "codepoint": "U+8BE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BE1", + "status": "exact_ids", + "ids": "⿰讠危", + "canonical_ids": "⿰讠危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "讠" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "询", + "codepoint": "U+8BE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BE2", + "status": "exact_ids", + "ids": "⿰讠旬", + "canonical_ids": "⿰讠旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诣", + "codepoint": "U+8BE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BE3", + "status": "exact_ids", + "ids": "⿰讠旨", + "canonical_ids": "⿰讠旨", + "expanded_ids": "⿰讠⿱匕日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诤", + "codepoint": "U+8BE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BE4", + "status": "exact_ids", + "ids": "⿰讠争", + "canonical_ids": "⿰讠争", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "争" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "该", + "codepoint": "U+8BE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BE5", + "status": "exact_ids", + "ids": "⿰讠亥", + "canonical_ids": "⿰讠亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "详", + "codepoint": "U+8BE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BE6", + "status": "exact_ids", + "ids": "⿰讠羊", + "canonical_ids": "⿰讠羊", + "expanded_ids": "⿰讠羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "羊", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诧", + "codepoint": "U+8BE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BE7", + "status": "exact_ids", + "ids": "⿰讠宅", + "canonical_ids": "⿰讠宅", + "expanded_ids": "⿰讠⿱宀⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "宀", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诨", + "codepoint": "U+8BE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BE8", + "status": "exact_ids", + "ids": "⿰讠军", + "canonical_ids": "⿰讠军", + "expanded_ids": "⿰讠⿱冖车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "讠", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诩", + "codepoint": "U+8BE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BE9", + "status": "exact_ids", + "ids": "⿰讠羽", + "canonical_ids": "⿰讠羽", + "expanded_ids": "⿰讠⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诪", + "codepoint": "U+8BEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BEA", + "status": "exact_ids", + "ids": "⿰讠寿", + "canonical_ids": "⿰讠寿", + "expanded_ids": "⿰讠⿻丰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "寸", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诫", + "codepoint": "U+8BEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BEB", + "status": "exact_ids", + "ids": "⿰讠戒", + "canonical_ids": "⿰讠戒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "讠" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诬", + "codepoint": "U+8BEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BEC", + "status": "exact_ids", + "ids": "⿰讠巫", + "canonical_ids": "⿰讠巫", + "expanded_ids": "⿰讠⿻工⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "工", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "语", + "codepoint": "U+8BED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BED", + "status": "exact_ids", + "ids": "⿰讠吾", + "canonical_ids": "⿰讠吾", + "expanded_ids": "⿰讠⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诮", + "codepoint": "U+8BEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BEE", + "status": "exact_ids", + "ids": "⿰讠肖", + "canonical_ids": "⿰讠肖", + "expanded_ids": "⿰讠⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "误", + "codepoint": "U+8BEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BEF", + "status": "exact_ids", + "ids": "⿰讠吴", + "canonical_ids": "⿰讠吴", + "expanded_ids": "⿰讠⿱口⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "大", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诰", + "codepoint": "U+8BF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BF0", + "status": "exact_ids", + "ids": "⿰讠告", + "canonical_ids": "⿰讠告", + "expanded_ids": "⿰讠⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诱", + "codepoint": "U+8BF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BF1", + "status": "exact_ids", + "ids": "⿰讠秀", + "canonical_ids": "⿰讠秀", + "expanded_ids": "⿰讠⿱⿻丿木乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乃", + "木", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诲", + "codepoint": "U+8BF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BF2", + "status": "exact_ids", + "ids": "⿰讠每", + "canonical_ids": "⿰讠每", + "expanded_ids": "⿰讠⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "母", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诳", + "codepoint": "U+8BF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BF3", + "status": "exact_ids", + "ids": "⿰讠狂", + "canonical_ids": "⿰讠狂", + "expanded_ids": "⿰讠⿰犭王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "王", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "说", + "codepoint": "U+8BF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BF4", + "status": "exact_ids", + "ids": "⿰讠兌", + "canonical_ids": "⿰讠兌", + "expanded_ids": "⿰讠⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诵", + "codepoint": "U+8BF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BF5", + "status": "exact_ids", + "ids": "⿰讠甬", + "canonical_ids": "⿰讠甬", + "expanded_ids": "⿰讠⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "讠", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诶", + "codepoint": "U+8BF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BF6", + "status": "exact_ids", + "ids": "⿰讠矣", + "canonical_ids": "⿰讠矣", + "expanded_ids": "⿰讠⿱厶⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "厶", + "大", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "请", + "codepoint": "U+8BF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BF7", + "status": "exact_ids", + "ids": "⿰讠青", + "canonical_ids": "⿰讠青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "讠" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诸", + "codepoint": "U+8BF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BF8", + "status": "exact_ids", + "ids": "⿰讠者", + "canonical_ids": "⿰讠者", + "expanded_ids": "⿰讠⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诹", + "codepoint": "U+8BF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BF9", + "status": "exact_ids", + "ids": "⿰讠取", + "canonical_ids": "⿰讠取", + "expanded_ids": "⿰讠⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "耳", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诺", + "codepoint": "U+8BFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BFA", + "status": "exact_ids", + "ids": "⿰讠若", + "canonical_ids": "⿰讠若", + "expanded_ids": "⿰讠⿱艹⿱⿻丿一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "艹", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "读", + "codepoint": "U+8BFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BFB", + "status": "exact_ids", + "ids": "⿰讠卖", + "canonical_ids": "⿰讠卖", + "expanded_ids": "⿰讠⿱十⿱乛⿻大冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "冫", + "十", + "大", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诼", + "codepoint": "U+8BFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BFC", + "status": "exact_ids", + "ids": "⿰讠豖", + "canonical_ids": "⿰讠豖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "豖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诽", + "codepoint": "U+8BFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BFD", + "status": "exact_ids", + "ids": "⿰讠非", + "canonical_ids": "⿰讠非", + "expanded_ids": "⿰讠非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "课", + "codepoint": "U+8BFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BFE", + "status": "exact_ids", + "ids": "⿰讠果", + "canonical_ids": "⿰讠果", + "expanded_ids": "⿰讠⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "诿", + "codepoint": "U+8BFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8BFF", + "status": "exact_ids", + "ids": "⿰讠委", + "canonical_ids": "⿰讠委", + "expanded_ids": "⿰讠⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "木", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谀", + "codepoint": "U+8C00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C00", + "status": "exact_ids", + "ids": "⿰讠臾", + "canonical_ids": "⿰讠臾", + "expanded_ids": "⿰讠⿻人臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "臼", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谁", + "codepoint": "U+8C01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C01", + "status": "exact_ids", + "ids": "⿰讠隹", + "canonical_ids": "⿰讠隹", + "expanded_ids": "⿰讠隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谂", + "codepoint": "U+8C02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C02", + "status": "exact_ids", + "ids": "⿰讠念", + "canonical_ids": "⿰讠念", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "心", + "讠" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "调", + "codepoint": "U+8C03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C03", + "status": "exact_ids", + "ids": "⿰讠周", + "canonical_ids": "⿰讠周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谄", + "codepoint": "U+8C04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C04", + "status": "exact_ids", + "ids": "⿰讠臽", + "canonical_ids": "⿰讠臽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "臼", + "讠" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谅", + "codepoint": "U+8C05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C05", + "status": "exact_ids", + "ids": "⿰讠京", + "canonical_ids": "⿰讠京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谆", + "codepoint": "U+8C06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C06", + "status": "exact_ids", + "ids": "⿰讠享", + "canonical_ids": "⿰讠享", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谇", + "codepoint": "U+8C07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C07", + "status": "exact_ids", + "ids": "⿰讠卒", + "canonical_ids": "⿰讠卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谈", + "codepoint": "U+8C08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C08", + "status": "exact_ids", + "ids": "⿰讠炎", + "canonical_ids": "⿰讠炎", + "expanded_ids": "⿰讠⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谉", + "codepoint": "U+8C09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C09", + "status": "exact_ids", + "ids": "⿰讠审", + "canonical_ids": "⿰讠审", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "讠" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谊", + "codepoint": "U+8C0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C0A", + "status": "exact_ids", + "ids": "⿰讠宜", + "canonical_ids": "⿰讠宜", + "expanded_ids": "⿰讠⿱宀且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "宀", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谋", + "codepoint": "U+8C0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C0B", + "status": "exact_ids", + "ids": "⿰讠某", + "canonical_ids": "⿰讠某", + "expanded_ids": "⿰讠⿱甘木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "甘", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谌", + "codepoint": "U+8C0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C0C", + "status": "exact_ids", + "ids": "⿰讠甚", + "canonical_ids": "⿰讠甚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甘", + "讠" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谍", + "codepoint": "U+8C0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C0D", + "status": "exact_ids", + "ids": "⿰讠枼", + "canonical_ids": "⿰讠枼", + "expanded_ids": "⿰讠⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谎", + "codepoint": "U+8C0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C0E", + "status": "exact_ids", + "ids": "⿰讠荒", + "canonical_ids": "⿰讠荒", + "expanded_ids": "⿰讠⿱艹⿱⿻亠乚川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "川", + "艹", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谏", + "codepoint": "U+8C0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C0F", + "status": "exact_ids", + "ids": "⿰讠柬", + "canonical_ids": "⿰讠柬", + "expanded_ids": "⿰讠柬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "柬", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谐", + "codepoint": "U+8C10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C10", + "status": "exact_ids", + "ids": "⿰讠皆", + "canonical_ids": "⿰讠皆", + "expanded_ids": "⿰讠⿱⿰匕匕⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "日", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谑", + "codepoint": "U+8C11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C11", + "status": "exact_ids", + "ids": "⿰讠虐", + "canonical_ids": "⿰讠虐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "虐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谒", + "codepoint": "U+8C12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C12", + "status": "exact_ids", + "ids": "⿰讠曷", + "canonical_ids": "⿰讠曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "讠" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谓", + "codepoint": "U+8C13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C13", + "status": "exact_ids", + "ids": "⿰讠胃", + "canonical_ids": "⿰讠胃", + "expanded_ids": "⿰讠⿱田月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "田", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谔", + "codepoint": "U+8C14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C14", + "status": "exact_ids", + "ids": "⿰讠咢", + "canonical_ids": "⿰讠咢", + "expanded_ids": "⿰讠⿱⿰口口⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "口", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谕", + "codepoint": "U+8C15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C15", + "status": "exact_ids", + "ids": "⿰讠俞", + "canonical_ids": "⿰讠俞", + "expanded_ids": "⿰讠⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "月", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谖", + "codepoint": "U+8C16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C16", + "status": "exact_ids", + "ids": "⿰讠爰", + "canonical_ids": "⿰讠爰", + "expanded_ids": "⿰讠⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "爫", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谗", + "codepoint": "U+8C17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C17", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谘", + "codepoint": "U+8C18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C18", + "status": "exact_ids", + "ids": "⿰讠咨", + "canonical_ids": "⿰讠咨", + "expanded_ids": "⿰讠⿱⿰冫欠口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "口", + "欠", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谙", + "codepoint": "U+8C19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C19", + "status": "exact_ids", + "ids": "⿰讠音", + "canonical_ids": "⿰讠音", + "expanded_ids": "⿰讠⿱立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "立", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谚", + "codepoint": "U+8C1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C1A", + "status": "exact_ids", + "ids": "⿰讠彦", + "canonical_ids": "⿰讠彦", + "expanded_ids": "⿰讠⿱⿱⿱亠八厂彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "厂", + "彡", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谛", + "codepoint": "U+8C1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C1B", + "status": "exact_ids", + "ids": "⿰讠帝", + "canonical_ids": "⿰讠帝", + "expanded_ids": "⿰讠⿳⿱亠八冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谜", + "codepoint": "U+8C1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C1C", + "status": "exact_ids", + "ids": "⿰讠迷", + "canonical_ids": "⿰讠迷", + "expanded_ids": "⿰讠⿰辶⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "讠", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谝", + "codepoint": "U+8C1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C1D", + "status": "exact_ids", + "ids": "⿰讠扁", + "canonical_ids": "⿰讠扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "讠" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谞", + "codepoint": "U+8C1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C1E", + "status": "exact_ids", + "ids": "⿰讠胥", + "canonical_ids": "⿰讠胥", + "expanded_ids": "⿰讠⿱疋月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "疋", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谟", + "codepoint": "U+8C1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C1F", + "status": "exact_ids", + "ids": "⿰讠莫", + "canonical_ids": "⿰讠莫", + "expanded_ids": "⿰讠⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "艹", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谠", + "codepoint": "U+8C20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C20", + "status": "exact_ids", + "ids": "⿰讠党", + "canonical_ids": "⿰讠党", + "expanded_ids": "⿰讠⿳小冖⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "口", + "小", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谡", + "codepoint": "U+8C21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C21", + "status": "exact_ids", + "ids": "⿰讠畟", + "canonical_ids": "⿰讠畟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "畟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谢", + "codepoint": "U+8C22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C22", + "status": "exact_ids", + "ids": "⿰讠射", + "canonical_ids": "⿰讠射", + "expanded_ids": "⿰讠⿰身寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "讠", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谣", + "codepoint": "U+8C23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C23", + "status": "exact_ids", + "ids": "⿰讠䍃", + "canonical_ids": "⿰讠䍃", + "expanded_ids": "⿰讠⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爪", + "缶", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谤", + "codepoint": "U+8C24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C24", + "status": "exact_ids", + "ids": "⿰讠旁", + "canonical_ids": "⿰讠旁", + "expanded_ids": "⿰讠⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "方", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谥", + "codepoint": "U+8C25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C25", + "status": "exact_ids", + "ids": "⿰讠益", + "canonical_ids": "⿰讠益", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谦", + "codepoint": "U+8C26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C26", + "status": "exact_ids", + "ids": "⿰讠兼", + "canonical_ids": "⿰讠兼", + "expanded_ids": "⿰讠兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谧", + "codepoint": "U+8C27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C27", + "status": "exact_ids", + "ids": "⿰讠𥁑", + "canonical_ids": "⿰讠𥁑", + "expanded_ids": "⿰讠⿱⿻心丿皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "皿", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谨", + "codepoint": "U+8C28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C28", + "status": "exact_ids", + "ids": "⿰讠堇", + "canonical_ids": "⿰讠堇", + "expanded_ids": "⿰讠堇", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谩", + "codepoint": "U+8C29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C29", + "status": "exact_ids", + "ids": "⿰讠曼", + "canonical_ids": "⿰讠曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谪", + "codepoint": "U+8C2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C2A", + "status": "exact_ids", + "ids": "⿰讠啇", + "canonical_ids": "⿰讠啇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谫", + "codepoint": "U+8C2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C2B", + "status": "exact_ids", + "ids": "⿰讠剪", + "canonical_ids": "⿰讠剪", + "expanded_ids": "⿰讠⿱⿱止⿰月刂刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "刂", + "月", + "止", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谬", + "codepoint": "U+8C2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C2C", + "status": "exact_ids", + "ids": "⿰讠翏", + "canonical_ids": "⿰讠翏", + "expanded_ids": "⿰讠⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谭", + "codepoint": "U+8C2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C2D", + "status": "exact_ids", + "ids": "⿰讠覃", + "canonical_ids": "⿰讠覃", + "expanded_ids": "⿰讠⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "襾", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谮", + "codepoint": "U+8C2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C2E", + "status": "exact_ids", + "ids": "⿰讠朁", + "canonical_ids": "⿰讠朁", + "expanded_ids": "⿰讠⿱⿰旡旡曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "旡", + "曰", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谯", + "codepoint": "U+8C2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C2F", + "status": "exact_ids", + "ids": "⿰讠焦", + "canonical_ids": "⿰讠焦", + "expanded_ids": "⿰讠⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬", + "讠", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谰", + "codepoint": "U+8C30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C30", + "status": "exact_ids", + "ids": "⿰讠阑", + "canonical_ids": "⿰讠阑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "阑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谱", + "codepoint": "U+8C31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C31", + "status": "exact_ids", + "ids": "⿰讠普", + "canonical_ids": "⿰讠普", + "expanded_ids": "⿰讠⿱⿱丷亚日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亚", + "日", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谲", + "codepoint": "U+8C32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C32", + "status": "exact_ids", + "ids": "⿰讠矞", + "canonical_ids": "⿰讠矞", + "expanded_ids": "⿰讠⿱矛⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "矛", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谳", + "codepoint": "U+8C33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C33", + "status": "exact_ids", + "ids": "⿰讠献", + "canonical_ids": "⿰讠献", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "讠" + ], + "unresolved_leaves": [ + "南" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谴", + "codepoint": "U+8C34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C34", + "status": "exact_ids", + "ids": "⿰讠遣", + "canonical_ids": "⿰讠遣", + "expanded_ids": "⿰讠⿰辶⿱⿱⿻口丨一㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "一", + "丨", + "口", + "讠", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谵", + "codepoint": "U+8C35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C35", + "status": "exact_ids", + "ids": "⿰讠詹", + "canonical_ids": "⿰讠詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谶", + "codepoint": "U+8C36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C36", + "status": "exact_ids", + "ids": "⿰讠韱", + "canonical_ids": "⿰讠韱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠" + ], + "unresolved_leaves": [ + "韱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谷", + "codepoint": "U+8C37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C37", + "status": "exact_ids", + "ids": "⿱八㕣", + "canonical_ids": "⿱八㕣", + "expanded_ids": "⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谸", + "codepoint": "U+8C38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C38", + "status": "exact_ids", + "ids": "⿰千谷", + "canonical_ids": "⿰千谷", + "expanded_ids": "⿰⿱丿十⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "八", + "十", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谹", + "codepoint": "U+8C39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C39", + "status": "exact_ids", + "ids": "⿰谷厷", + "canonical_ids": "⿰谷厷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口" + ], + "unresolved_leaves": [ + "厷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谺", + "codepoint": "U+8C3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C3A", + "status": "exact_ids", + "ids": "⿰谷牙", + "canonical_ids": "⿰谷牙", + "expanded_ids": "⿰⿱八⿱八口牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "牙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谻", + "codepoint": "U+8C3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C3B", + "status": "exact_ids", + "ids": "⿰谷丮", + "canonical_ids": "⿰谷丮", + "expanded_ids": "⿰⿱八⿱八口⿱乁⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乁", + "二", + "八", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谼", + "codepoint": "U+8C3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C3C", + "status": "exact_ids", + "ids": "⿰谷共", + "canonical_ids": "⿰谷共", + "expanded_ids": "⿰⿱八⿱八口⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "廾", + "廿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谽", + "codepoint": "U+8C3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C3D", + "status": "exact_ids", + "ids": "⿰谷含", + "canonical_ids": "⿰谷含", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "八", + "口" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谾", + "codepoint": "U+8C3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C3E", + "status": "exact_ids", + "ids": "⿰谷空", + "canonical_ids": "⿰谷空", + "expanded_ids": "⿰⿱八⿱八口⿱⿱宀八工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "谿", + "codepoint": "U+8C3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C3F", + "status": "exact_ids", + "ids": "⿰奚谷", + "canonical_ids": "⿰奚谷", + "expanded_ids": "⿰⿱爪⿱幺大⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "大", + "幺", + "爪" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豀", + "codepoint": "U+8C40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C40", + "status": "exact_ids", + "ids": "⿰谷奚", + "canonical_ids": "⿰谷奚", + "expanded_ids": "⿰⿱八⿱八口⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "大", + "幺", + "爪" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豁", + "codepoint": "U+8C41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C41", + "status": "exact_ids", + "ids": "⿰害谷", + "canonical_ids": "⿰害谷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口" + ], + "unresolved_leaves": [ + "害" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豂", + "codepoint": "U+8C42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C42", + "status": "exact_ids", + "ids": "⿰谷翏", + "canonical_ids": "⿰谷翏", + "expanded_ids": "⿰⿱八⿱八口⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "八", + "口", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豃", + "codepoint": "U+8C43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C43", + "status": "exact_ids", + "ids": "⿰谷敢", + "canonical_ids": "⿰谷敢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口" + ], + "unresolved_leaves": [ + "敢" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豄", + "codepoint": "U+8C44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C44", + "status": "exact_ids", + "ids": "⿰谷賣", + "canonical_ids": "⿰谷賣", + "expanded_ids": "⿰⿱八⿱八口⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "士", + "目", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豅", + "codepoint": "U+8C45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C45", + "status": "exact_ids", + "ids": "⿰谷龍", + "canonical_ids": "⿰谷龍", + "expanded_ids": "⿰⿱八⿱八口龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豆", + "codepoint": "U+8C46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C46", + "status": "leaf_self_fallback", + "ids": "豆", + "canonical_ids": "豆", + "expanded_ids": "豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豇", + "codepoint": "U+8C47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C47", + "status": "exact_ids", + "ids": "⿰豆工", + "canonical_ids": "⿰豆工", + "expanded_ids": "⿰豆工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豈", + "codepoint": "U+8C48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C48", + "status": "exact_ids", + "ids": "⿱山豆", + "canonical_ids": "⿱山豆", + "expanded_ids": "⿱山豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豉", + "codepoint": "U+8C49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C49", + "status": "exact_ids", + "ids": "⿰豆支", + "canonical_ids": "⿰豆支", + "expanded_ids": "⿰豆⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豊", + "codepoint": "U+8C4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C4A", + "status": "exact_ids", + "ids": "⿱曲豆", + "canonical_ids": "⿱曲豆", + "expanded_ids": "⿱曲豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豋", + "codepoint": "U+8C4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C4B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豌", + "codepoint": "U+8C4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C4C", + "status": "exact_ids", + "ids": "⿰豆宛", + "canonical_ids": "⿰豆宛", + "expanded_ids": "⿰豆⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豍", + "codepoint": "U+8C4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C4D", + "status": "exact_ids", + "ids": "⿰豆卑", + "canonical_ids": "⿰豆卑", + "expanded_ids": "⿰豆卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豎", + "codepoint": "U+8C4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C4E", + "status": "exact_ids", + "ids": "⿱臤豆", + "canonical_ids": "⿱臤豆", + "expanded_ids": "⿱⿰臣又豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "臣", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豏", + "codepoint": "U+8C4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C4F", + "status": "exact_ids", + "ids": "⿰豆兼", + "canonical_ids": "⿰豆兼", + "expanded_ids": "⿰豆兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豐", + "codepoint": "U+8C50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C50", + "status": "exact_ids", + "ids": "⿱𠁳豆", + "canonical_ids": "⿱𠁳豆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豆" + ], + "unresolved_leaves": [ + "𠁳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豑", + "codepoint": "U+8C51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C51", + "status": "exact_ids", + "ids": "⿰豊弟", + "canonical_ids": "⿰豊弟", + "expanded_ids": "⿰⿱曲豆⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "曲", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豒", + "codepoint": "U+8C52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C52", + "status": "exact_ids", + "ids": "⿰豐弟", + "canonical_ids": "⿰豐弟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "豆" + ], + "unresolved_leaves": [ + "𠁳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豓", + "codepoint": "U+8C53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C53", + "status": "exact_ids", + "ids": "⿰豐盇", + "canonical_ids": "⿰豐盇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "皿", + "豆" + ], + "unresolved_leaves": [ + "𠁳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豔", + "codepoint": "U+8C54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C54", + "status": "exact_ids", + "ids": "⿰豐盍", + "canonical_ids": "⿰豐盍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "皿", + "豆" + ], + "unresolved_leaves": [ + "𠁳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豕", + "codepoint": "U+8C55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C55", + "status": "leaf_self_fallback", + "ids": "豕", + "canonical_ids": "豕", + "expanded_ids": "豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豖", + "codepoint": "U+8C56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C56", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豗", + "codepoint": "U+8C57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C57", + "status": "exact_ids", + "ids": "⿰兀豕", + "canonical_ids": "⿰兀豕", + "expanded_ids": "⿰⿱一儿豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豘", + "codepoint": "U+8C58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C58", + "status": "exact_ids", + "ids": "⿰豕屯", + "canonical_ids": "⿰豕屯", + "expanded_ids": "⿰豕屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豙", + "codepoint": "U+8C59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C59", + "status": "exact_ids", + "ids": "⿱立𧰨", + "canonical_ids": "⿱立𧰨", + "expanded_ids": "⿱立𧰨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 76, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豚", + "codepoint": "U+8C5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C5A", + "status": "exact_ids", + "ids": "⿰月豕", + "canonical_ids": "⿰月豕", + "expanded_ids": "⿰月豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豛", + "codepoint": "U+8C5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C5B", + "status": "exact_ids", + "ids": "⿰豕殳", + "canonical_ids": "⿰豕殳", + "expanded_ids": "⿰豕⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豜", + "codepoint": "U+8C5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C5C", + "status": "exact_ids", + "ids": "⿰豕开", + "canonical_ids": "⿰豕开", + "expanded_ids": "⿰豕⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廾", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豝", + "codepoint": "U+8C5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C5D", + "status": "exact_ids", + "ids": "⿰豕巴", + "canonical_ids": "⿰豕巴", + "expanded_ids": "⿰豕巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豞", + "codepoint": "U+8C5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C5E", + "status": "exact_ids", + "ids": "⿰豕句", + "canonical_ids": "⿰豕句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豕" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豟", + "codepoint": "U+8C5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C5F", + "status": "exact_ids", + "ids": "⿰豕戹", + "canonical_ids": "⿰豕戹", + "expanded_ids": "⿰豕⿱⿻丶尸乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乙", + "尸", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豠", + "codepoint": "U+8C60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C60", + "status": "exact_ids", + "ids": "⿰豕且", + "canonical_ids": "⿰豕且", + "expanded_ids": "⿰豕且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "象", + "codepoint": "U+8C61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C61", + "status": "leaf_self_fallback", + "ids": "象", + "canonical_ids": "象", + "expanded_ids": "象", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "象" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豢", + "codepoint": "U+8C62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C62", + "status": "exact_ids", + "ids": "⿱龹豕", + "canonical_ids": "⿱龹豕", + "expanded_ids": "⿱龹豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豕", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豣", + "codepoint": "U+8C63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C63", + "status": "exact_ids", + "ids": "⿰豕幵", + "canonical_ids": "⿰豕幵", + "expanded_ids": "⿰豕⿰⿱一十⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豤", + "codepoint": "U+8C64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C64", + "status": "exact_ids", + "ids": "⿰豕艮", + "canonical_ids": "⿰豕艮", + "expanded_ids": "⿰豕艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艮", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豥", + "codepoint": "U+8C65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C65", + "status": "exact_ids", + "ids": "⿰豕亥", + "canonical_ids": "⿰豕亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豕" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豦", + "codepoint": "U+8C66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C66", + "status": "exact_ids", + "ids": "⿱虍豕", + "canonical_ids": "⿱虍豕", + "expanded_ids": "⿱虍豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虍", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豧", + "codepoint": "U+8C67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C67", + "status": "exact_ids", + "ids": "⿰豕甫", + "canonical_ids": "⿰豕甫", + "expanded_ids": "⿰豕甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甫", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豨", + "codepoint": "U+8C68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C68", + "status": "exact_ids", + "ids": "⿰豕希", + "canonical_ids": "⿰豕希", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "豕" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豩", + "codepoint": "U+8C69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C69", + "status": "exact_ids", + "ids": "⿰豕豕", + "canonical_ids": "⿰豕豕", + "expanded_ids": "⿰豕豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豪", + "codepoint": "U+8C6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C6A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豫", + "codepoint": "U+8C6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C6B", + "status": "exact_ids", + "ids": "⿰予象", + "canonical_ids": "⿰予象", + "expanded_ids": "⿰⿱龴⿱一亅象", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "象", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豬", + "codepoint": "U+8C6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C6C", + "status": "exact_ids", + "ids": "⿰豕者", + "canonical_ids": "⿰豕者", + "expanded_ids": "⿰豕⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豭", + "codepoint": "U+8C6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C6D", + "status": "exact_ids", + "ids": "⿰豕叚", + "canonical_ids": "⿰豕叚", + "expanded_ids": "⿰豕叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豮", + "codepoint": "U+8C6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C6E", + "status": "exact_ids", + "ids": "⿰豕贲", + "canonical_ids": "⿰豕贲", + "expanded_ids": "⿰豕⿱⿱十廾⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "十", + "廾", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豯", + "codepoint": "U+8C6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C6F", + "status": "exact_ids", + "ids": "⿰豕奚", + "canonical_ids": "⿰豕奚", + "expanded_ids": "⿰豕⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "幺", + "爪", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豰", + "codepoint": "U+8C70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C70", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豱", + "codepoint": "U+8C71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C71", + "status": "exact_ids", + "ids": "⿰豕𥁕", + "canonical_ids": "⿰豕𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "豕" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豲", + "codepoint": "U+8C72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C72", + "status": "exact_ids", + "ids": "⿰豕原", + "canonical_ids": "⿰豕原", + "expanded_ids": "⿰豕⿱厂⿱⿻日丶小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "小", + "日", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豳", + "codepoint": "U+8C73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C73", + "status": "exact_ids", + "ids": "⿻山豩", + "canonical_ids": "⿻山豩", + "expanded_ids": "⿻山⿰豕豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豴", + "codepoint": "U+8C74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C74", + "status": "exact_ids", + "ids": "⿰豕啇", + "canonical_ids": "⿰豕啇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豕" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豵", + "codepoint": "U+8C75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C75", + "status": "exact_ids", + "ids": "⿰豕從", + "canonical_ids": "⿰豕從", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豕" + ], + "unresolved_leaves": [ + "從" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豶", + "codepoint": "U+8C76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C76", + "status": "exact_ids", + "ids": "⿰豕賁", + "canonical_ids": "⿰豕賁", + "expanded_ids": "⿰豕⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "廾", + "目", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豷", + "codepoint": "U+8C77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C77", + "status": "exact_ids", + "ids": "⿰豕壹", + "canonical_ids": "⿰豕壹", + "expanded_ids": "⿰豕⿳土冖豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "土", + "豆", + "豕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 141, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豸", + "codepoint": "U+8C78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C78", + "status": "leaf_self_fallback", + "ids": "豸", + "canonical_ids": "豸", + "expanded_ids": "豸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豹", + "codepoint": "U+8C79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C79", + "status": "exact_ids", + "ids": "⿰豸勺", + "canonical_ids": "⿰豸勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豸" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豺", + "codepoint": "U+8C7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C7A", + "status": "exact_ids", + "ids": "⿰豸才", + "canonical_ids": "⿰豸才", + "expanded_ids": "⿰豸才", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "才", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豻", + "codepoint": "U+8C7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C7B", + "status": "exact_ids", + "ids": "⿰豸干", + "canonical_ids": "⿰豸干", + "expanded_ids": "⿰豸⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豼", + "codepoint": "U+8C7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C7C", + "status": "exact_ids", + "ids": "⿰豸比", + "canonical_ids": "⿰豸比", + "expanded_ids": "⿰豸⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豽", + "codepoint": "U+8C7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C7D", + "status": "exact_ids", + "ids": "⿰豸內", + "canonical_ids": "⿰豸內", + "expanded_ids": "⿰豸⿻冂入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "冂", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豾", + "codepoint": "U+8C7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C7E", + "status": "exact_ids", + "ids": "⿰豸丕", + "canonical_ids": "⿰豸丕", + "expanded_ids": "⿰豸⿱不一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "豿", + "codepoint": "U+8C7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C7F", + "status": "exact_ids", + "ids": "⿰豸句", + "canonical_ids": "⿰豸句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豸" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貀", + "codepoint": "U+8C80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C80", + "status": "exact_ids", + "ids": "⿰豸出", + "canonical_ids": "⿰豸出", + "expanded_ids": "⿰豸⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貁", + "codepoint": "U+8C81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C81", + "status": "exact_ids", + "ids": "⿰豸穴", + "canonical_ids": "⿰豸穴", + "expanded_ids": "⿰豸⿱宀八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貂", + "codepoint": "U+8C82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C82", + "status": "exact_ids", + "ids": "⿰豸召", + "canonical_ids": "⿰豸召", + "expanded_ids": "⿰豸⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貃", + "codepoint": "U+8C83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C83", + "status": "exact_ids", + "ids": "⿰豸白", + "canonical_ids": "⿰豸白", + "expanded_ids": "⿰豸⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貄", + "codepoint": "U+8C84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C84", + "status": "exact_ids", + "ids": "⿰豸聿", + "canonical_ids": "⿰豸聿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豸" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貅", + "codepoint": "U+8C85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C85", + "status": "exact_ids", + "ids": "⿰豸休", + "canonical_ids": "⿰豸休", + "expanded_ids": "⿰豸⿰亻木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "木", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貆", + "codepoint": "U+8C86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C86", + "status": "exact_ids", + "ids": "⿰豸亘", + "canonical_ids": "⿰豸亘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豸" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貇", + "codepoint": "U+8C87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C87", + "status": "exact_ids", + "ids": "⿰豸艮", + "canonical_ids": "⿰豸艮", + "expanded_ids": "⿰豸艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艮", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貈", + "codepoint": "U+8C88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C88", + "status": "exact_ids", + "ids": "⿰豸舟", + "canonical_ids": "⿰豸舟", + "expanded_ids": "⿰豸舟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貉", + "codepoint": "U+8C89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C89", + "status": "exact_ids", + "ids": "⿰豸各", + "canonical_ids": "⿰豸各", + "expanded_ids": "⿰豸⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貊", + "codepoint": "U+8C8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C8A", + "status": "exact_ids", + "ids": "⿰豸百", + "canonical_ids": "⿰豸百", + "expanded_ids": "⿰豸⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "日", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貋", + "codepoint": "U+8C8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C8B", + "status": "exact_ids", + "ids": "⿰豸旱", + "canonical_ids": "⿰豸旱", + "expanded_ids": "⿰豸⿱日⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "日", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貌", + "codepoint": "U+8C8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C8C", + "status": "exact_ids", + "ids": "⿰豸皃", + "canonical_ids": "⿰豸皃", + "expanded_ids": "⿰豸⿱⿻日丶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "儿", + "日", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貍", + "codepoint": "U+8C8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C8D", + "status": "exact_ids", + "ids": "⿰豸里", + "canonical_ids": "⿰豸里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豸" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貎", + "codepoint": "U+8C8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C8E", + "status": "exact_ids", + "ids": "⿰豸兒", + "canonical_ids": "⿰豸兒", + "expanded_ids": "⿰豸⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "臼", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貏", + "codepoint": "U+8C8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C8F", + "status": "exact_ids", + "ids": "⿰豸卑", + "canonical_ids": "⿰豸卑", + "expanded_ids": "⿰豸卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貐", + "codepoint": "U+8C90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C90", + "status": "exact_ids", + "ids": "⿰豸俞", + "canonical_ids": "⿰豸俞", + "expanded_ids": "⿰豸⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "月", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貑", + "codepoint": "U+8C91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C91", + "status": "exact_ids", + "ids": "⿰豸叚", + "canonical_ids": "⿰豸叚", + "expanded_ids": "⿰豸叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貒", + "codepoint": "U+8C92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C92", + "status": "exact_ids", + "ids": "⿰豸耑", + "canonical_ids": "⿰豸耑", + "expanded_ids": "⿰豸⿱山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "而", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貓", + "codepoint": "U+8C93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C93", + "status": "exact_ids", + "ids": "⿰豸苗", + "canonical_ids": "⿰豸苗", + "expanded_ids": "⿰豸⿱艹田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "艹", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貔", + "codepoint": "U+8C94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C94", + "status": "exact_ids", + "ids": "⿰豸𣬉", + "canonical_ids": "⿰豸𣬉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "豸" + ], + "unresolved_leaves": [ + "囟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貕", + "codepoint": "U+8C95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C95", + "status": "exact_ids", + "ids": "⿰豸奚", + "canonical_ids": "⿰豸奚", + "expanded_ids": "⿰豸⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "幺", + "爪", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貖", + "codepoint": "U+8C96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C96", + "status": "exact_ids", + "ids": "⿰豸益", + "canonical_ids": "⿰豸益", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豸" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貗", + "codepoint": "U+8C97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C97", + "status": "exact_ids", + "ids": "⿰豸婁", + "canonical_ids": "⿰豸婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豸" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貘", + "codepoint": "U+8C98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C98", + "status": "exact_ids", + "ids": "⿰豸莫", + "canonical_ids": "⿰豸莫", + "expanded_ids": "⿰豸⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "艹", + "豸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貙", + "codepoint": "U+8C99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C99", + "status": "exact_ids", + "ids": "⿰豸區", + "canonical_ids": "⿰豸區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豸" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貚", + "codepoint": "U+8C9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C9A", + "status": "exact_ids", + "ids": "⿰豸單", + "canonical_ids": "⿰豸單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豸" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貛", + "codepoint": "U+8C9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C9B", + "status": "exact_ids", + "ids": "⿰豸雚", + "canonical_ids": "⿰豸雚", + "expanded_ids": "⿰豸⿱艹⿱⿰口口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艹", + "豸", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貜", + "codepoint": "U+8C9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C9C", + "status": "exact_ids", + "ids": "⿰豸矍", + "canonical_ids": "⿰豸矍", + "expanded_ids": "⿰豸⿱⿰目目⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "目", + "豸", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貝", + "codepoint": "U+8C9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C9D", + "status": "exact_ids", + "ids": "⿱目八", + "canonical_ids": "⿱目八", + "expanded_ids": "⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貞", + "codepoint": "U+8C9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C9E", + "status": "exact_ids", + "ids": "⿱卜貝", + "canonical_ids": "⿱卜貝", + "expanded_ids": "⿱卜⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "卜", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貟", + "codepoint": "U+8C9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8C9F", + "status": "exact_ids", + "ids": "⿱厶貝", + "canonical_ids": "⿱厶貝", + "expanded_ids": "⿱厶⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "負", + "codepoint": "U+8CA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CA0", + "status": "exact_ids", + "ids": "⿱⺈貝", + "canonical_ids": "⿱⺈貝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "財", + "codepoint": "U+8CA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CA1", + "status": "exact_ids", + "ids": "⿰貝才", + "canonical_ids": "⿰貝才", + "expanded_ids": "⿰⿱目八才", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "才", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貢", + "codepoint": "U+8CA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CA2", + "status": "exact_ids", + "ids": "⿱工貝", + "canonical_ids": "⿱工貝", + "expanded_ids": "⿱工⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "工", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貣", + "codepoint": "U+8CA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CA3", + "status": "exact_ids", + "ids": "⿱弋貝", + "canonical_ids": "⿱弋貝", + "expanded_ids": "⿱弋⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "弋", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貤", + "codepoint": "U+8CA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CA4", + "status": "exact_ids", + "ids": "⿰貝也", + "canonical_ids": "⿰貝也", + "expanded_ids": "⿰⿱目八⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "八", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貥", + "codepoint": "U+8CA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CA5", + "status": "exact_ids", + "ids": "⿰貝亢", + "canonical_ids": "⿰貝亢", + "expanded_ids": "⿰⿱目八⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "几", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貦", + "codepoint": "U+8CA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CA6", + "status": "exact_ids", + "ids": "⿰貝元", + "canonical_ids": "⿰貝元", + "expanded_ids": "⿰⿱目八⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "八", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貧", + "codepoint": "U+8CA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CA7", + "status": "exact_ids", + "ids": "⿱分貝", + "canonical_ids": "⿱分貝", + "expanded_ids": "⿱⿱八刀⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貨", + "codepoint": "U+8CA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CA8", + "status": "exact_ids", + "ids": "⿱化貝", + "canonical_ids": "⿱化貝", + "expanded_ids": "⿱⿰亻匕⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "匕", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "販", + "codepoint": "U+8CA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CA9", + "status": "exact_ids", + "ids": "⿰貝反", + "canonical_ids": "⿰貝反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貪", + "codepoint": "U+8CAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CAA", + "status": "exact_ids", + "ids": "⿱今貝", + "canonical_ids": "⿱今貝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "八", + "目" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貫", + "codepoint": "U+8CAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CAB", + "status": "exact_ids", + "ids": "⿱毌貝", + "canonical_ids": "⿱毌貝", + "expanded_ids": "⿱毌⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "毌", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "責", + "codepoint": "U+8CAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CAC", + "status": "exact_ids", + "ids": "⿱龶貝", + "canonical_ids": "⿱龶貝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貭", + "codepoint": "U+8CAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CAD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貮", + "codepoint": "U+8CAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CAE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貯", + "codepoint": "U+8CAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CAF", + "status": "exact_ids", + "ids": "⿰貝宁", + "canonical_ids": "⿰貝宁", + "expanded_ids": "⿰⿱目八⿱宀⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "八", + "宀", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貰", + "codepoint": "U+8CB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CB0", + "status": "exact_ids", + "ids": "⿱世貝", + "canonical_ids": "⿱世貝", + "expanded_ids": "⿱世⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "八", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貱", + "codepoint": "U+8CB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CB1", + "status": "exact_ids", + "ids": "⿰貝皮", + "canonical_ids": "⿰貝皮", + "expanded_ids": "⿰⿱目八皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "皮", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貲", + "codepoint": "U+8CB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CB2", + "status": "exact_ids", + "ids": "⿱此貝", + "canonical_ids": "⿱此貝", + "expanded_ids": "⿱⿰止匕⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "匕", + "止", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貳", + "codepoint": "U+8CB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CB3", + "status": "exact_ids", + "ids": "⿱弍貝", + "canonical_ids": "⿱弍貝", + "expanded_ids": "⿱⿱弋二⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "八", + "弋", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貴", + "codepoint": "U+8CB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CB4", + "status": "exact_ids", + "ids": "⿱𠀐貝", + "canonical_ids": "⿱𠀐貝", + "expanded_ids": "⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貵", + "codepoint": "U+8CB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CB5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貶", + "codepoint": "U+8CB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CB6", + "status": "exact_ids", + "ids": "⿰貝乏", + "canonical_ids": "⿰貝乏", + "expanded_ids": "⿰⿱目八⿱丿之", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "之", + "八", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "買", + "codepoint": "U+8CB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CB7", + "status": "exact_ids", + "ids": "⿱罒貝", + "canonical_ids": "⿱罒貝", + "expanded_ids": "⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貸", + "codepoint": "U+8CB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CB8", + "status": "exact_ids", + "ids": "⿱代貝", + "canonical_ids": "⿱代貝", + "expanded_ids": "⿱⿰亻弋⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "弋", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貹", + "codepoint": "U+8CB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CB9", + "status": "exact_ids", + "ids": "⿰貝生", + "canonical_ids": "⿰貝生", + "expanded_ids": "⿰⿱目八⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "牛", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貺", + "codepoint": "U+8CBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CBA", + "status": "exact_ids", + "ids": "⿰貝兄", + "canonical_ids": "⿰貝兄", + "expanded_ids": "⿰⿱目八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "費", + "codepoint": "U+8CBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CBB", + "status": "exact_ids", + "ids": "⿱弗貝", + "canonical_ids": "⿱弗貝", + "expanded_ids": "⿱⿻弓刂⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刂", + "弓", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貼", + "codepoint": "U+8CBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CBC", + "status": "exact_ids", + "ids": "⿰貝占", + "canonical_ids": "⿰貝占", + "expanded_ids": "⿰⿱目八⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "卜", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貽", + "codepoint": "U+8CBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CBD", + "status": "exact_ids", + "ids": "⿰貝台", + "canonical_ids": "⿰貝台", + "expanded_ids": "⿰⿱目八⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貾", + "codepoint": "U+8CBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CBE", + "status": "exact_ids", + "ids": "⿰貝氐", + "canonical_ids": "⿰貝氐", + "expanded_ids": "⿰⿱目八⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "八", + "氏", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "貿", + "codepoint": "U+8CBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CBF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賀", + "codepoint": "U+8CC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CC0", + "status": "exact_ids", + "ids": "⿱加貝", + "canonical_ids": "⿱加貝", + "expanded_ids": "⿱⿰力口⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "力", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賁", + "codepoint": "U+8CC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CC1", + "status": "exact_ids", + "ids": "⿱卉貝", + "canonical_ids": "⿱卉貝", + "expanded_ids": "⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "廾", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賂", + "codepoint": "U+8CC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CC2", + "status": "exact_ids", + "ids": "⿰貝各", + "canonical_ids": "⿰貝各", + "expanded_ids": "⿰⿱目八⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "夂", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賃", + "codepoint": "U+8CC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CC3", + "status": "exact_ids", + "ids": "⿱任貝", + "canonical_ids": "⿱任貝", + "expanded_ids": "⿱⿰亻⿱丿士⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "八", + "士", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賄", + "codepoint": "U+8CC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CC4", + "status": "exact_ids", + "ids": "⿰貝有", + "canonical_ids": "⿰貝有", + "expanded_ids": "⿰⿱目八⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "月", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賅", + "codepoint": "U+8CC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CC5", + "status": "exact_ids", + "ids": "⿰貝亥", + "canonical_ids": "⿰貝亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賆", + "codepoint": "U+8CC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CC6", + "status": "exact_ids", + "ids": "⿰貝并", + "canonical_ids": "⿰貝并", + "expanded_ids": "⿰⿱目八⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "八", + "廾", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "資", + "codepoint": "U+8CC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CC7", + "status": "exact_ids", + "ids": "⿱次貝", + "canonical_ids": "⿱次貝", + "expanded_ids": "⿱⿰冫欠⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冫", + "欠", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賈", + "codepoint": "U+8CC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CC8", + "status": "exact_ids", + "ids": "⿱覀貝", + "canonical_ids": "⿱覀貝", + "expanded_ids": "⿱覀⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賉", + "codepoint": "U+8CC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CC9", + "status": "exact_ids", + "ids": "⿰貝血", + "canonical_ids": "⿰貝血", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "血" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賊", + "codepoint": "U+8CCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CCA", + "status": "exact_ids", + "ids": "⿰貝戎", + "canonical_ids": "⿰貝戎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賋", + "codepoint": "U+8CCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CCB", + "status": "exact_ids", + "ids": "⿰貝交", + "canonical_ids": "⿰貝交", + "expanded_ids": "⿰⿱目八⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "父", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賌", + "codepoint": "U+8CCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CCC", + "status": "exact_ids", + "ids": "⿱亥貝", + "canonical_ids": "⿱亥貝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賍", + "codepoint": "U+8CCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CCD", + "status": "exact_ids", + "ids": "⿰貝庄", + "canonical_ids": "⿰貝庄", + "expanded_ids": "⿰⿱目八⿱广土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "土", + "广", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賎", + "codepoint": "U+8CCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CCE", + "status": "exact_ids", + "ids": "⿰貝𢦑", + "canonical_ids": "⿰貝𢦑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "𢦑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賏", + "codepoint": "U+8CCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CCF", + "status": "exact_ids", + "ids": "⿰貝貝", + "canonical_ids": "⿰貝貝", + "expanded_ids": "⿰⿱目八⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賐", + "codepoint": "U+8CD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CD0", + "status": "exact_ids", + "ids": "⿰貝夋", + "canonical_ids": "⿰貝夋", + "expanded_ids": "⿰⿱目八⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "厶", + "夂", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賑", + "codepoint": "U+8CD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CD1", + "status": "exact_ids", + "ids": "⿰貝辰", + "canonical_ids": "⿰貝辰", + "expanded_ids": "⿰⿱目八辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賒", + "codepoint": "U+8CD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CD2", + "status": "exact_ids", + "ids": "⿰貝佘", + "canonical_ids": "⿰貝佘", + "expanded_ids": "⿰⿱目八⿱人⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "人", + "八", + "小", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賓", + "codepoint": "U+8CD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CD3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賔", + "codepoint": "U+8CD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CD4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賕", + "codepoint": "U+8CD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CD5", + "status": "exact_ids", + "ids": "⿰貝求", + "canonical_ids": "⿰貝求", + "expanded_ids": "⿰⿱目八求", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "求", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賖", + "codepoint": "U+8CD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CD6", + "status": "exact_ids", + "ids": "⿰貝余", + "canonical_ids": "⿰貝余", + "expanded_ids": "⿰⿱目八⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "八", + "朩", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賗", + "codepoint": "U+8CD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CD7", + "status": "exact_ids", + "ids": "⿰貝串", + "canonical_ids": "⿰貝串", + "expanded_ids": "⿰⿱目八⿻⿱口口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "八", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賘", + "codepoint": "U+8CD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CD8", + "status": "exact_ids", + "ids": "⿰貝庒", + "canonical_ids": "⿰貝庒", + "expanded_ids": "⿰⿱目八⿱广⿻土丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "八", + "土", + "广", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賙", + "codepoint": "U+8CD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CD9", + "status": "exact_ids", + "ids": "⿰貝周", + "canonical_ids": "⿰貝周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賚", + "codepoint": "U+8CDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CDA", + "status": "exact_ids", + "ids": "⿱來貝", + "canonical_ids": "⿱來貝", + "expanded_ids": "⿱⿻木⿰人人⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "八", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賛", + "codepoint": "U+8CDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CDB", + "status": "exact_ids", + "ids": "⿱⿰夫夫貝", + "canonical_ids": "⿱⿰夫夫貝", + "expanded_ids": "⿱⿰⿻一大⿻一大⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "大", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賜", + "codepoint": "U+8CDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CDC", + "status": "exact_ids", + "ids": "⿰貝易", + "canonical_ids": "⿰貝易", + "expanded_ids": "⿰⿱目八⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "勿", + "日", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賝", + "codepoint": "U+8CDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CDD", + "status": "exact_ids", + "ids": "⿰貝罙", + "canonical_ids": "⿰貝罙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "木", + "目" + ], + "unresolved_leaves": [ + "⺳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賞", + "codepoint": "U+8CDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CDE", + "status": "exact_ids", + "ids": "⿱尚貝", + "canonical_ids": "⿱尚貝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "小", + "目" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賟", + "codepoint": "U+8CDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CDF", + "status": "exact_ids", + "ids": "⿰貝典", + "canonical_ids": "⿰貝典", + "expanded_ids": "⿰⿱目八典", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "典", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賠", + "codepoint": "U+8CE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CE0", + "status": "exact_ids", + "ids": "⿰貝咅", + "canonical_ids": "⿰貝咅", + "expanded_ids": "⿰⿱目八⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賡", + "codepoint": "U+8CE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CE1", + "status": "exact_ids", + "ids": "⿱庚貝", + "canonical_ids": "⿱庚貝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "庚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賢", + "codepoint": "U+8CE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CE2", + "status": "exact_ids", + "ids": "⿱臤貝", + "canonical_ids": "⿱臤貝", + "expanded_ids": "⿱⿰臣又⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "又", + "目", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賣", + "codepoint": "U+8CE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CE3", + "status": "exact_ids", + "ids": "⿱士買", + "canonical_ids": "⿱士買", + "expanded_ids": "⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "士", + "目", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賤", + "codepoint": "U+8CE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CE4", + "status": "exact_ids", + "ids": "⿰貝戔", + "canonical_ids": "⿰貝戔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賥", + "codepoint": "U+8CE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CE5", + "status": "exact_ids", + "ids": "⿰貝卒", + "canonical_ids": "⿰貝卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賦", + "codepoint": "U+8CE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CE6", + "status": "exact_ids", + "ids": "⿰貝武", + "canonical_ids": "⿰貝武", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "武" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賧", + "codepoint": "U+8CE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CE7", + "status": "exact_ids", + "ids": "⿰貝炎", + "canonical_ids": "⿰貝炎", + "expanded_ids": "⿰⿱目八⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "火", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賨", + "codepoint": "U+8CE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CE8", + "status": "exact_ids", + "ids": "⿱宗貝", + "canonical_ids": "⿱宗貝", + "expanded_ids": "⿱⿱宀⿱二小⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "八", + "宀", + "小", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賩", + "codepoint": "U+8CE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CE9", + "status": "exact_ids", + "ids": "⿰貝宗", + "canonical_ids": "⿰貝宗", + "expanded_ids": "⿰⿱目八⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "八", + "宀", + "小", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "質", + "codepoint": "U+8CEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CEA", + "status": "exact_ids", + "ids": "⿱⿰斤斤貝", + "canonical_ids": "⿱⿰斤斤貝", + "expanded_ids": "⿱⿰斤斤⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "斤", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賫", + "codepoint": "U+8CEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CEB", + "status": "exact_ids", + "ids": "⿳夾冖貝", + "canonical_ids": "⿳夾冖貝", + "expanded_ids": "⿳⿻大⿰人人冖⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "八", + "冖", + "大", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賬", + "codepoint": "U+8CEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CEC", + "status": "exact_ids", + "ids": "⿰貝長", + "canonical_ids": "⿰貝長", + "expanded_ids": "⿰⿱目八長", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "長" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賭", + "codepoint": "U+8CED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CED", + "status": "exact_ids", + "ids": "⿰貝者", + "canonical_ids": "⿰貝者", + "expanded_ids": "⿰⿱目八⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "八", + "土", + "日", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賮", + "codepoint": "U+8CEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CEE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賯", + "codepoint": "U+8CEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CEF", + "status": "exact_ids", + "ids": "⿰貝㝁", + "canonical_ids": "⿰貝㝁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "子", + "目" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賰", + "codepoint": "U+8CF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CF0", + "status": "exact_ids", + "ids": "⿰貝春", + "canonical_ids": "⿰貝春", + "expanded_ids": "⿰⿱目八⿱𡗗日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "日", + "目", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賱", + "codepoint": "U+8CF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CF1", + "status": "exact_ids", + "ids": "⿰貝軍", + "canonical_ids": "⿰貝軍", + "expanded_ids": "⿰⿱目八⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冖", + "目", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賲", + "codepoint": "U+8CF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CF2", + "status": "exact_ids", + "ids": "⿱保貝", + "canonical_ids": "⿱保貝", + "expanded_ids": "⿱⿰亻⿱口木⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "口", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賳", + "codepoint": "U+8CF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CF3", + "status": "exact_ids", + "ids": "⿰貝哉", + "canonical_ids": "⿰貝哉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "哉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賴", + "codepoint": "U+8CF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CF4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賵", + "codepoint": "U+8CF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CF5", + "status": "exact_ids", + "ids": "⿰貝冒", + "canonical_ids": "⿰貝冒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賶", + "codepoint": "U+8CF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CF6", + "status": "exact_ids", + "ids": "⿰貝倉", + "canonical_ids": "⿰貝倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賷", + "codepoint": "U+8CF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CF7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賸", + "codepoint": "U+8CF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CF8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賹", + "codepoint": "U+8CF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CF9", + "status": "exact_ids", + "ids": "⿰貝益", + "canonical_ids": "⿰貝益", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賺", + "codepoint": "U+8CFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CFA", + "status": "exact_ids", + "ids": "⿰貝兼", + "canonical_ids": "⿰貝兼", + "expanded_ids": "⿰⿱目八兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "兼", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賻", + "codepoint": "U+8CFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CFB", + "status": "exact_ids", + "ids": "⿰貝尃", + "canonical_ids": "⿰貝尃", + "expanded_ids": "⿰⿱目八⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "寸", + "甫", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "購", + "codepoint": "U+8CFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CFC", + "status": "exact_ids", + "ids": "⿰貝冓", + "canonical_ids": "⿰貝冓", + "expanded_ids": "⿰⿱目八⿱井⿱一⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "井", + "八", + "冂", + "土", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賽", + "codepoint": "U+8CFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CFD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賾", + "codepoint": "U+8CFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CFE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "賿", + "codepoint": "U+8CFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8CFF", + "status": "exact_ids", + "ids": "⿰貝翏", + "canonical_ids": "⿰貝翏", + "expanded_ids": "⿰⿱目八⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "八", + "彡", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贀", + "codepoint": "U+8D00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D00", + "status": "exact_ids", + "ids": "⿱殹貝", + "canonical_ids": "⿱殹貝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "几", + "又", + "目" + ], + "unresolved_leaves": [ + "医" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贁", + "codepoint": "U+8D01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D01", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贂", + "codepoint": "U+8D02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D02", + "status": "exact_ids", + "ids": "⿰貝參", + "canonical_ids": "⿰貝參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贃", + "codepoint": "U+8D03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D03", + "status": "exact_ids", + "ids": "⿰貝患", + "canonical_ids": "⿰貝患", + "expanded_ids": "⿰⿱目八⿱⿻⿱口口丨心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "八", + "口", + "心", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贄", + "codepoint": "U+8D04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D04", + "status": "exact_ids", + "ids": "⿱執貝", + "canonical_ids": "⿱執貝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "八", + "土", + "目" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贅", + "codepoint": "U+8D05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D05", + "status": "exact_ids", + "ids": "⿱敖貝", + "canonical_ids": "⿱敖貝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贆", + "codepoint": "U+8D06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D06", + "status": "exact_ids", + "ids": "⿰貝猋", + "canonical_ids": "⿰貝猋", + "expanded_ids": "⿰⿱目八⿱⿻大丶⿰⿻大丶⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "八", + "大", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贇", + "codepoint": "U+8D07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D07", + "status": "exact_ids", + "ids": "⿱斌貝", + "canonical_ids": "⿱斌貝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "文", + "目" + ], + "unresolved_leaves": [ + "武" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贈", + "codepoint": "U+8D08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D08", + "status": "exact_ids", + "ids": "⿰貝曽", + "canonical_ids": "⿰貝曽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "曽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贉", + "codepoint": "U+8D09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D09", + "status": "exact_ids", + "ids": "⿰貝覃", + "canonical_ids": "⿰貝覃", + "expanded_ids": "⿰⿱目八⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "日", + "目", + "襾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贊", + "codepoint": "U+8D0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D0A", + "status": "exact_ids", + "ids": "⿱⿰先先貝", + "canonical_ids": "⿱⿰先先貝", + "expanded_ids": "⿱⿰⿱牛儿⿱牛儿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "牛", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贋", + "codepoint": "U+8D0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D0B", + "status": "exact_ids", + "ids": "⿱雁貝", + "canonical_ids": "⿱雁貝", + "expanded_ids": "⿱⿱厂⿰亻隹⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "厂", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贌", + "codepoint": "U+8D0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D0C", + "status": "exact_ids", + "ids": "⿰貝菐", + "canonical_ids": "⿰貝菐", + "expanded_ids": "⿰⿱目八⿱业⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "儿", + "八", + "目", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贍", + "codepoint": "U+8D0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D0D", + "status": "exact_ids", + "ids": "⿰貝詹", + "canonical_ids": "⿰貝詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贎", + "codepoint": "U+8D0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D0E", + "status": "exact_ids", + "ids": "⿰貝萬", + "canonical_ids": "⿰貝萬", + "expanded_ids": "⿰⿱目八⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "田", + "目", + "禸", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贏", + "codepoint": "U+8D0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D0F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贐", + "codepoint": "U+8D10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D10", + "status": "exact_ids", + "ids": "⿰貝盡", + "canonical_ids": "⿰貝盡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "盡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贑", + "codepoint": "U+8D11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D11", + "status": "exact_ids", + "ids": "⿰章貢", + "canonical_ids": "⿰章貢", + "expanded_ids": "⿰⿱立⿱日十⿱工⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "工", + "日", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贒", + "codepoint": "U+8D12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D12", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贓", + "codepoint": "U+8D13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D13", + "status": "exact_ids", + "ids": "⿰貝臧", + "canonical_ids": "⿰貝臧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [ + "臧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贔", + "codepoint": "U+8D14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D14", + "status": "exact_ids", + "ids": "⿱貝⿰貝貝", + "canonical_ids": "⿱貝⿰貝貝", + "expanded_ids": "⿱⿱目八⿰⿱目八⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贕", + "codepoint": "U+8D15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D15", + "status": "exact_ids", + "ids": "⿰卵賣", + "canonical_ids": "⿰卵賣", + "expanded_ids": "⿰⿰⿻𠂎丶⿻卩丶⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "八", + "卩", + "士", + "目", + "罒", + "𠂎" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 304, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贖", + "codepoint": "U+8D16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D16", + "status": "exact_ids", + "ids": "⿰貝賣", + "canonical_ids": "⿰貝賣", + "expanded_ids": "⿰⿱目八⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "士", + "目", + "罒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贗", + "codepoint": "U+8D17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D17", + "status": "exact_ids", + "ids": "⿱鴈貝", + "canonical_ids": "⿱鴈貝", + "expanded_ids": "⿱⿱厂⿰亻鳥⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "八", + "厂", + "目", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贘", + "codepoint": "U+8D18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D18", + "status": "exact_ids", + "ids": "⿰貝賞", + "canonical_ids": "⿰貝賞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "小", + "目" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贙", + "codepoint": "U+8D19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D19", + "status": "exact_ids", + "ids": "⿱⿰虎虎貝", + "canonical_ids": "⿱⿰虎虎貝", + "expanded_ids": "⿱⿰⿱虍儿⿱虍儿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "目", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贚", + "codepoint": "U+8D1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D1A", + "status": "exact_ids", + "ids": "⿰貝龍", + "canonical_ids": "⿰貝龍", + "expanded_ids": "⿰⿱目八龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贛", + "codepoint": "U+8D1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D1B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贜", + "codepoint": "U+8D1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D1C", + "status": "exact_ids", + "ids": "⿰貝藏", + "canonical_ids": "⿰貝藏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "艹" + ], + "unresolved_leaves": [ + "臧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贝", + "codepoint": "U+8D1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D1D", + "status": "exact_ids", + "ids": "⿻冂人", + "canonical_ids": "⿻冂人", + "expanded_ids": "⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [ + "内" + ] + }, + { + "character": "贞", + "codepoint": "U+8D1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D1E", + "status": "exact_ids", + "ids": "⿱卜贝", + "canonical_ids": "⿱卜贝", + "expanded_ids": "⿱卜⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "卜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "负", + "codepoint": "U+8D1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D1F", + "status": "exact_ids", + "ids": "⿱⺈贝", + "canonical_ids": "⿱⺈贝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贠", + "codepoint": "U+8D20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D20", + "status": "exact_ids", + "ids": "⿱厶贝", + "canonical_ids": "⿱厶贝", + "expanded_ids": "⿱厶⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贡", + "codepoint": "U+8D21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D21", + "status": "exact_ids", + "ids": "⿱工贝", + "canonical_ids": "⿱工贝", + "expanded_ids": "⿱工⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "财", + "codepoint": "U+8D22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D22", + "status": "exact_ids", + "ids": "⿰贝才", + "canonical_ids": "⿰贝才", + "expanded_ids": "⿰⿻冂人才", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "才" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "责", + "codepoint": "U+8D23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D23", + "status": "exact_ids", + "ids": "⿱龶贝", + "canonical_ids": "⿱龶贝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贤", + "codepoint": "U+8D24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D24", + "status": "exact_ids", + "ids": "⿱収贝", + "canonical_ids": "⿱収贝", + "expanded_ids": "⿱⿰⿰丨丨又⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "人", + "冂", + "又" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "败", + "codepoint": "U+8D25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D25", + "status": "exact_ids", + "ids": "⿰贝攵", + "canonical_ids": "⿰贝攵", + "expanded_ids": "⿰⿻冂人攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "攵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "账", + "codepoint": "U+8D26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D26", + "status": "exact_ids", + "ids": "⿰贝长", + "canonical_ids": "⿰贝长", + "expanded_ids": "⿰⿻冂人长", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "长" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "货", + "codepoint": "U+8D27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D27", + "status": "exact_ids", + "ids": "⿱化贝", + "canonical_ids": "⿱化贝", + "expanded_ids": "⿱⿰亻匕⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "亻", + "冂", + "匕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "质", + "codepoint": "U+8D28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D28", + "status": "exact_ids", + "ids": "⿱𣂑贝", + "canonical_ids": "⿱𣂑贝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [ + "𣂑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贩", + "codepoint": "U+8D29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D29", + "status": "exact_ids", + "ids": "⿰贝反", + "canonical_ids": "⿰贝反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贪", + "codepoint": "U+8D2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D2A", + "status": "exact_ids", + "ids": "⿱今贝", + "canonical_ids": "⿱今贝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贫", + "codepoint": "U+8D2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D2B", + "status": "exact_ids", + "ids": "⿱分贝", + "canonical_ids": "⿱分贝", + "expanded_ids": "⿱⿱八刀⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "八", + "冂", + "刀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贬", + "codepoint": "U+8D2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D2C", + "status": "exact_ids", + "ids": "⿰贝乏", + "canonical_ids": "⿰贝乏", + "expanded_ids": "⿰⿻冂人⿱丿之", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "之", + "人", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "购", + "codepoint": "U+8D2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D2D", + "status": "exact_ids", + "ids": "⿰贝勾", + "canonical_ids": "⿰贝勾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [ + "勾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贮", + "codepoint": "U+8D2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D2E", + "status": "exact_ids", + "ids": "⿰贝㝉", + "canonical_ids": "⿰贝㝉", + "expanded_ids": "⿰⿻冂人⿱宀一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贯", + "codepoint": "U+8D2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D2F", + "status": "exact_ids", + "ids": "⿱毌贝", + "canonical_ids": "⿱毌贝", + "expanded_ids": "⿱毌⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "毌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贰", + "codepoint": "U+8D30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D30", + "status": "exact_ids", + "ids": "⿱弍贝", + "canonical_ids": "⿱弍贝", + "expanded_ids": "⿱⿱弋二⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "人", + "冂", + "弋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贱", + "codepoint": "U+8D31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D31", + "status": "exact_ids", + "ids": "⿰贝戋", + "canonical_ids": "⿰贝戋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贲", + "codepoint": "U+8D32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D32", + "status": "exact_ids", + "ids": "⿱卉贝", + "canonical_ids": "⿱卉贝", + "expanded_ids": "⿱⿱十廾⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "十", + "廾" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贳", + "codepoint": "U+8D33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D33", + "status": "exact_ids", + "ids": "⿱世贝", + "canonical_ids": "⿱世贝", + "expanded_ids": "⿱世⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "人", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贴", + "codepoint": "U+8D34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D34", + "status": "exact_ids", + "ids": "⿰贝占", + "canonical_ids": "⿰贝占", + "expanded_ids": "⿰⿻冂人⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "卜", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贵", + "codepoint": "U+8D35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D35", + "status": "exact_ids", + "ids": "⿱𠀐贝", + "canonical_ids": "⿱𠀐贝", + "expanded_ids": "⿱⿱⿻口丨一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "人", + "冂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贶", + "codepoint": "U+8D36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D36", + "status": "exact_ids", + "ids": "⿰贝兄", + "canonical_ids": "⿰贝兄", + "expanded_ids": "⿰⿻冂人⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "儿", + "冂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贷", + "codepoint": "U+8D37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D37", + "status": "exact_ids", + "ids": "⿱代贝", + "canonical_ids": "⿱代贝", + "expanded_ids": "⿱⿰亻弋⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "亻", + "冂", + "弋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贸", + "codepoint": "U+8D38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D38", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "费", + "codepoint": "U+8D39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D39", + "status": "exact_ids", + "ids": "⿱弗贝", + "canonical_ids": "⿱弗贝", + "expanded_ids": "⿱⿻弓刂⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "刂", + "弓" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贺", + "codepoint": "U+8D3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D3A", + "status": "exact_ids", + "ids": "⿱加贝", + "canonical_ids": "⿱加贝", + "expanded_ids": "⿱⿰力口⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "力", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贻", + "codepoint": "U+8D3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D3B", + "status": "exact_ids", + "ids": "⿰贝台", + "canonical_ids": "⿰贝台", + "expanded_ids": "⿰⿻冂人⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "厶", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贼", + "codepoint": "U+8D3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D3C", + "status": "exact_ids", + "ids": "⿰贝戎", + "canonical_ids": "⿰贝戎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贽", + "codepoint": "U+8D3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D3D", + "status": "exact_ids", + "ids": "⿱执贝", + "canonical_ids": "⿱执贝", + "expanded_ids": "⿱⿰扌⿻九丶⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "人", + "冂", + "扌" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贾", + "codepoint": "U+8D3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D3E", + "status": "exact_ids", + "ids": "⿱覀贝", + "canonical_ids": "⿱覀贝", + "expanded_ids": "⿱覀⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "贿", + "codepoint": "U+8D3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D3F", + "status": "exact_ids", + "ids": "⿰贝有", + "canonical_ids": "⿰贝有", + "expanded_ids": "⿰⿻冂人⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赀", + "codepoint": "U+8D40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D40", + "status": "exact_ids", + "ids": "⿱此贝", + "canonical_ids": "⿱此贝", + "expanded_ids": "⿱⿰止匕⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "匕", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赁", + "codepoint": "U+8D41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D41", + "status": "exact_ids", + "ids": "⿱任贝", + "canonical_ids": "⿱任贝", + "expanded_ids": "⿱⿰亻⿱丿士⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "人", + "亻", + "冂", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赂", + "codepoint": "U+8D42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D42", + "status": "exact_ids", + "ids": "⿰贝各", + "canonical_ids": "⿰贝各", + "expanded_ids": "⿰⿻冂人⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "夂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赃", + "codepoint": "U+8D43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D43", + "status": "exact_ids", + "ids": "⿰贝庄", + "canonical_ids": "⿰贝庄", + "expanded_ids": "⿰⿻冂人⿱广土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "土", + "广" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "资", + "codepoint": "U+8D44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D44", + "status": "exact_ids", + "ids": "⿱次贝", + "canonical_ids": "⿱次贝", + "expanded_ids": "⿱⿰冫欠⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "冫", + "欠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赅", + "codepoint": "U+8D45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D45", + "status": "exact_ids", + "ids": "⿰贝亥", + "canonical_ids": "⿰贝亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赆", + "codepoint": "U+8D46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D46", + "status": "exact_ids", + "ids": "⿰贝尽", + "canonical_ids": "⿰贝尽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "冫", + "尸" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赇", + "codepoint": "U+8D47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D47", + "status": "exact_ids", + "ids": "⿰贝求", + "canonical_ids": "⿰贝求", + "expanded_ids": "⿰⿻冂人求", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "求" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赈", + "codepoint": "U+8D48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D48", + "status": "exact_ids", + "ids": "⿰贝辰", + "canonical_ids": "⿰贝辰", + "expanded_ids": "⿰⿻冂人辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赉", + "codepoint": "U+8D49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D49", + "status": "exact_ids", + "ids": "⿱来贝", + "canonical_ids": "⿱来贝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [ + "来" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赊", + "codepoint": "U+8D4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D4A", + "status": "exact_ids", + "ids": "⿰贝佘", + "canonical_ids": "⿰贝佘", + "expanded_ids": "⿰⿻冂人⿱人⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "人", + "冂", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赋", + "codepoint": "U+8D4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D4B", + "status": "exact_ids", + "ids": "⿰贝武", + "canonical_ids": "⿰贝武", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [ + "武" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赌", + "codepoint": "U+8D4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D4C", + "status": "exact_ids", + "ids": "⿰贝者", + "canonical_ids": "⿰贝者", + "expanded_ids": "⿰⿻冂人⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "人", + "冂", + "土", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赍", + "codepoint": "U+8D4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D4D", + "status": "exact_ids", + "ids": "⿳夾冖贝", + "canonical_ids": "⿳夾冖贝", + "expanded_ids": "⿳⿻大⿰人人冖⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "冖", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赎", + "codepoint": "U+8D4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D4E", + "status": "exact_ids", + "ids": "⿰贝卖", + "canonical_ids": "⿰贝卖", + "expanded_ids": "⿰⿻冂人⿱十⿱乛⿻大冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "人", + "冂", + "冫", + "十", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赏", + "codepoint": "U+8D4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D4F", + "status": "exact_ids", + "ids": "⿱尚贝", + "canonical_ids": "⿱尚贝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "小" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赐", + "codepoint": "U+8D50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D50", + "status": "exact_ids", + "ids": "⿰贝易", + "canonical_ids": "⿰贝易", + "expanded_ids": "⿰⿻冂人⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "勿", + "日" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赑", + "codepoint": "U+8D51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D51", + "status": "exact_ids", + "ids": "⿱贝⿰贝贝", + "canonical_ids": "⿱贝⿰贝贝", + "expanded_ids": "⿱⿻冂人⿰⿻冂人⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赒", + "codepoint": "U+8D52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D52", + "status": "exact_ids", + "ids": "⿰贝周", + "canonical_ids": "⿰贝周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赓", + "codepoint": "U+8D53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D53", + "status": "exact_ids", + "ids": "⿱庚贝", + "canonical_ids": "⿱庚贝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [ + "庚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赔", + "codepoint": "U+8D54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D54", + "status": "exact_ids", + "ids": "⿰贝咅", + "canonical_ids": "⿰贝咅", + "expanded_ids": "⿰⿻冂人⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赕", + "codepoint": "U+8D55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D55", + "status": "exact_ids", + "ids": "⿰贝炎", + "canonical_ids": "⿰贝炎", + "expanded_ids": "⿰⿻冂人⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "火" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赖", + "codepoint": "U+8D56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D56", + "status": "exact_ids", + "ids": "⿰束负", + "canonical_ids": "⿰束负", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "木" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赗", + "codepoint": "U+8D57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D57", + "status": "exact_ids", + "ids": "⿰贝冒", + "canonical_ids": "⿰贝冒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "目" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赘", + "codepoint": "U+8D58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D58", + "status": "exact_ids", + "ids": "⿱敖贝", + "canonical_ids": "⿱敖贝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赙", + "codepoint": "U+8D59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D59", + "status": "exact_ids", + "ids": "⿰贝尃", + "canonical_ids": "⿰贝尃", + "expanded_ids": "⿰⿻冂人⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "寸", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赚", + "codepoint": "U+8D5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D5A", + "status": "exact_ids", + "ids": "⿰贝兼", + "canonical_ids": "⿰贝兼", + "expanded_ids": "⿰⿻冂人兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "兼", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赛", + "codepoint": "U+8D5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D5B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赜", + "codepoint": "U+8D5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D5C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赝", + "codepoint": "U+8D5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D5D", + "status": "exact_ids", + "ids": "⿱雁贝", + "canonical_ids": "⿱雁贝", + "expanded_ids": "⿱⿱厂⿰亻隹⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "亻", + "冂", + "厂", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赞", + "codepoint": "U+8D5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D5E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赟", + "codepoint": "U+8D5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D5F", + "status": "exact_ids", + "ids": "⿱斌贝", + "canonical_ids": "⿱斌贝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "文" + ], + "unresolved_leaves": [ + "武" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赠", + "codepoint": "U+8D60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D60", + "status": "exact_ids", + "ids": "⿰贝曾", + "canonical_ids": "⿰贝曾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赡", + "codepoint": "U+8D61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D61", + "status": "exact_ids", + "ids": "⿰贝詹", + "canonical_ids": "⿰贝詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赢", + "codepoint": "U+8D62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D62", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赣", + "codepoint": "U+8D63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D63", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赤", + "codepoint": "U+8D64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D64", + "status": "leaf_self_fallback", + "ids": "赤", + "canonical_ids": "赤", + "expanded_ids": "赤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "赤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赥", + "codepoint": "U+8D65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D65", + "status": "exact_ids", + "ids": "⿰赤欠", + "canonical_ids": "⿰赤欠", + "expanded_ids": "⿰赤欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "赤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赦", + "codepoint": "U+8D66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D66", + "status": "exact_ids", + "ids": "⿰赤攵", + "canonical_ids": "⿰赤攵", + "expanded_ids": "⿰赤攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "赤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赧", + "codepoint": "U+8D67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D67", + "status": "exact_ids", + "ids": "⿰赤𠬝", + "canonical_ids": "⿰赤𠬝", + "expanded_ids": "⿰赤⿻卩又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "又", + "赤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赨", + "codepoint": "U+8D68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D68", + "status": "exact_ids", + "ids": "⿰赤虫", + "canonical_ids": "⿰赤虫", + "expanded_ids": "⿰赤虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "赤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赩", + "codepoint": "U+8D69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D69", + "status": "exact_ids", + "ids": "⿰赤色", + "canonical_ids": "⿰赤色", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "赤" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赪", + "codepoint": "U+8D6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D6A", + "status": "exact_ids", + "ids": "⿰赤贞", + "canonical_ids": "⿰赤贞", + "expanded_ids": "⿰赤⿱卜⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "卜", + "赤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赫", + "codepoint": "U+8D6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D6B", + "status": "exact_ids", + "ids": "⿰赤赤", + "canonical_ids": "⿰赤赤", + "expanded_ids": "⿰赤赤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "赤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赬", + "codepoint": "U+8D6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D6C", + "status": "exact_ids", + "ids": "⿰赤貞", + "canonical_ids": "⿰赤貞", + "expanded_ids": "⿰赤⿱卜⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "卜", + "目", + "赤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赭", + "codepoint": "U+8D6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D6D", + "status": "exact_ids", + "ids": "⿰赤者", + "canonical_ids": "⿰赤者", + "expanded_ids": "⿰赤⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "赤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赮", + "codepoint": "U+8D6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D6E", + "status": "exact_ids", + "ids": "⿰赤叚", + "canonical_ids": "⿰赤叚", + "expanded_ids": "⿰赤叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "赤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赯", + "codepoint": "U+8D6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D6F", + "status": "exact_ids", + "ids": "⿰赤唐", + "canonical_ids": "⿰赤唐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "赤" + ], + "unresolved_leaves": [ + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "走", + "codepoint": "U+8D70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D70", + "status": "exact_ids", + "ids": "⿱土龰", + "canonical_ids": "⿱土龰", + "expanded_ids": "⿱土龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赱", + "codepoint": "U+8D71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D71", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赲", + "codepoint": "U+8D72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D72", + "status": "exact_ids", + "ids": "⿰走力", + "canonical_ids": "⿰走力", + "expanded_ids": "⿰⿱土龰力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赳", + "codepoint": "U+8D73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D73", + "status": "exact_ids", + "ids": "⿰走丩", + "canonical_ids": "⿰走丩", + "expanded_ids": "⿰⿱土龰⿰丨丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赴", + "codepoint": "U+8D74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D74", + "status": "exact_ids", + "ids": "⿰走卜", + "canonical_ids": "⿰走卜", + "expanded_ids": "⿰⿱土龰卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赵", + "codepoint": "U+8D75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D75", + "status": "exact_ids", + "ids": "⿰走乂", + "canonical_ids": "⿰走乂", + "expanded_ids": "⿰⿱土龰乂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赶", + "codepoint": "U+8D76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D76", + "status": "exact_ids", + "ids": "⿰走干", + "canonical_ids": "⿰走干", + "expanded_ids": "⿰⿱土龰⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "起", + "codepoint": "U+8D77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D77", + "status": "exact_ids", + "ids": "⿰走巳", + "canonical_ids": "⿰走巳", + "expanded_ids": "⿰⿱土龰巳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "巳", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赸", + "codepoint": "U+8D78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D78", + "status": "exact_ids", + "ids": "⿰走山", + "canonical_ids": "⿰走山", + "expanded_ids": "⿰⿱土龰山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "山", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赹", + "codepoint": "U+8D79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D79", + "status": "exact_ids", + "ids": "⿰走匀", + "canonical_ids": "⿰走匀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "龰" + ], + "unresolved_leaves": [ + "匀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赺", + "codepoint": "U+8D7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D7A", + "status": "exact_ids", + "ids": "⿰走今", + "canonical_ids": "⿰走今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "土", + "龰" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赻", + "codepoint": "U+8D7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D7B", + "status": "exact_ids", + "ids": "⿰走少", + "canonical_ids": "⿰走少", + "expanded_ids": "⿰⿱土龰⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "小", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赼", + "codepoint": "U+8D7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D7C", + "status": "exact_ids", + "ids": "⿰走欠", + "canonical_ids": "⿰走欠", + "expanded_ids": "⿰⿱土龰欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "欠", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赽", + "codepoint": "U+8D7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D7D", + "status": "exact_ids", + "ids": "⿰走夬", + "canonical_ids": "⿰走夬", + "expanded_ids": "⿰⿱土龰⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "土", + "大", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赾", + "codepoint": "U+8D7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D7E", + "status": "exact_ids", + "ids": "⿰走斤", + "canonical_ids": "⿰走斤", + "expanded_ids": "⿰⿱土龰斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "斤", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "赿", + "codepoint": "U+8D7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D7F", + "status": "exact_ids", + "ids": "⿰走氏", + "canonical_ids": "⿰走氏", + "expanded_ids": "⿰⿱土龰氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "氏", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趀", + "codepoint": "U+8D80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D80", + "status": "exact_ids", + "ids": "⿰走𠂔", + "canonical_ids": "⿰走𠂔", + "expanded_ids": "⿰⿱土龰𠂔", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "龰", + "𠂔" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趁", + "codepoint": "U+8D81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D81", + "status": "exact_ids", + "ids": "⿰走㐱", + "canonical_ids": "⿰走㐱", + "expanded_ids": "⿰⿱土龰⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "土", + "彡", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趂", + "codepoint": "U+8D82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D82", + "status": "exact_ids", + "ids": "⿰走尔", + "canonical_ids": "⿰走尔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "龰" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趃", + "codepoint": "U+8D83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D83", + "status": "exact_ids", + "ids": "⿰走失", + "canonical_ids": "⿰走失", + "expanded_ids": "⿰⿱土龰⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "土", + "大", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趄", + "codepoint": "U+8D84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D84", + "status": "exact_ids", + "ids": "⿰走且", + "canonical_ids": "⿰走且", + "expanded_ids": "⿰⿱土龰且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "超", + "codepoint": "U+8D85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D85", + "status": "exact_ids", + "ids": "⿰走召", + "canonical_ids": "⿰走召", + "expanded_ids": "⿰⿱土龰⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趆", + "codepoint": "U+8D86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D86", + "status": "exact_ids", + "ids": "⿰走氐", + "canonical_ids": "⿰走氐", + "expanded_ids": "⿰⿱土龰⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "土", + "氏", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趇", + "codepoint": "U+8D87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D87", + "status": "exact_ids", + "ids": "⿰走立", + "canonical_ids": "⿰走立", + "expanded_ids": "⿰⿱土龰立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "立", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趈", + "codepoint": "U+8D88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D88", + "status": "exact_ids", + "ids": "⿰走占", + "canonical_ids": "⿰走占", + "expanded_ids": "⿰⿱土龰⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趉", + "codepoint": "U+8D89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D89", + "status": "exact_ids", + "ids": "⿰走出", + "canonical_ids": "⿰走出", + "expanded_ids": "⿰⿱土龰⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "土", + "屮", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "越", + "codepoint": "U+8D8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D8A", + "status": "exact_ids", + "ids": "⿰走戉", + "canonical_ids": "⿰走戉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "土", + "龰" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趋", + "codepoint": "U+8D8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D8B", + "status": "exact_ids", + "ids": "⿰走刍", + "canonical_ids": "⿰走刍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "彐", + "龰" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趌", + "codepoint": "U+8D8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D8C", + "status": "exact_ids", + "ids": "⿰走吉", + "canonical_ids": "⿰走吉", + "expanded_ids": "⿰⿱土龰⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "士", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趍", + "codepoint": "U+8D8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D8D", + "status": "exact_ids", + "ids": "⿰走多", + "canonical_ids": "⿰走多", + "expanded_ids": "⿰⿱土龰⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "夕", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趎", + "codepoint": "U+8D8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D8E", + "status": "exact_ids", + "ids": "⿰走朱", + "canonical_ids": "⿰走朱", + "expanded_ids": "⿰⿱土龰⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "土", + "木", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趏", + "codepoint": "U+8D8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D8F", + "status": "exact_ids", + "ids": "⿰走舌", + "canonical_ids": "⿰走舌", + "expanded_ids": "⿰⿱土龰⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趐", + "codepoint": "U+8D90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D90", + "status": "exact_ids", + "ids": "⿰走羽", + "canonical_ids": "⿰走羽", + "expanded_ids": "⿰⿱土龰⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趑", + "codepoint": "U+8D91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D91", + "status": "exact_ids", + "ids": "⿰走次", + "canonical_ids": "⿰走次", + "expanded_ids": "⿰⿱土龰⿰冫欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "土", + "欠", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趒", + "codepoint": "U+8D92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D92", + "status": "exact_ids", + "ids": "⿰走兆", + "canonical_ids": "⿰走兆", + "expanded_ids": "⿰⿱土龰兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趓", + "codepoint": "U+8D93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D93", + "status": "exact_ids", + "ids": "⿰走朵", + "canonical_ids": "⿰走朵", + "expanded_ids": "⿰⿱土龰⿱几木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "土", + "木", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趔", + "codepoint": "U+8D94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D94", + "status": "exact_ids", + "ids": "⿰走列", + "canonical_ids": "⿰走列", + "expanded_ids": "⿰⿱土龰⿰⿻夕一刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "土", + "夕", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趕", + "codepoint": "U+8D95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D95", + "status": "exact_ids", + "ids": "⿰走旱", + "canonical_ids": "⿰走旱", + "expanded_ids": "⿰⿱土龰⿱日⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "土", + "日", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趖", + "codepoint": "U+8D96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D96", + "status": "exact_ids", + "ids": "⿰走坐", + "canonical_ids": "⿰走坐", + "expanded_ids": "⿰⿱土龰⿱⿰人人土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趗", + "codepoint": "U+8D97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D97", + "status": "exact_ids", + "ids": "⿰走足", + "canonical_ids": "⿰走足", + "expanded_ids": "⿰⿱土龰⿱口龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趘", + "codepoint": "U+8D98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D98", + "status": "exact_ids", + "ids": "⿰走尾", + "canonical_ids": "⿰走尾", + "expanded_ids": "⿰⿱土龰⿱尸毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "尸", + "毛", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趙", + "codepoint": "U+8D99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D99", + "status": "exact_ids", + "ids": "⿰走肖", + "canonical_ids": "⿰走肖", + "expanded_ids": "⿰⿱土龰⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "月", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趚", + "codepoint": "U+8D9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D9A", + "status": "exact_ids", + "ids": "⿰走束", + "canonical_ids": "⿰走束", + "expanded_ids": "⿰⿱土龰⿻木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "木", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趛", + "codepoint": "U+8D9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D9B", + "status": "exact_ids", + "ids": "⿰走金", + "canonical_ids": "⿰走金", + "expanded_ids": "⿰⿱土龰金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "金", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趜", + "codepoint": "U+8D9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D9C", + "status": "exact_ids", + "ids": "⿰走匊", + "canonical_ids": "⿰走匊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "龰" + ], + "unresolved_leaves": [ + "匊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趝", + "codepoint": "U+8D9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D9D", + "status": "exact_ids", + "ids": "⿰走念", + "canonical_ids": "⿰走念", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "土", + "心", + "龰" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趞", + "codepoint": "U+8D9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D9E", + "status": "exact_ids", + "ids": "⿰走昔", + "canonical_ids": "⿰走昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "日", + "龰" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趟", + "codepoint": "U+8D9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8D9F", + "status": "exact_ids", + "ids": "⿰走尚", + "canonical_ids": "⿰走尚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "龰" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趠", + "codepoint": "U+8DA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DA0", + "status": "exact_ids", + "ids": "⿰走卓", + "canonical_ids": "⿰走卓", + "expanded_ids": "⿰⿱土龰⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "土", + "日", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趡", + "codepoint": "U+8DA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DA1", + "status": "exact_ids", + "ids": "⿰走隹", + "canonical_ids": "⿰走隹", + "expanded_ids": "⿰⿱土龰隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "隹", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趢", + "codepoint": "U+8DA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DA2", + "status": "exact_ids", + "ids": "⿰走录", + "canonical_ids": "⿰走录", + "expanded_ids": "⿰⿱土龰⿱彐氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "彐", + "氺", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趣", + "codepoint": "U+8DA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DA3", + "status": "exact_ids", + "ids": "⿰走取", + "canonical_ids": "⿰走取", + "expanded_ids": "⿰⿱土龰⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "土", + "耳", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趤", + "codepoint": "U+8DA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DA4", + "status": "exact_ids", + "ids": "⿰走宕", + "canonical_ids": "⿰走宕", + "expanded_ids": "⿰⿱土龰⿱宀石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "宀", + "石", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趥", + "codepoint": "U+8DA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DA5", + "status": "exact_ids", + "ids": "⿰走酋", + "canonical_ids": "⿰走酋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "土", + "龰" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趦", + "codepoint": "U+8DA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DA6", + "status": "exact_ids", + "ids": "⿰走咨", + "canonical_ids": "⿰走咨", + "expanded_ids": "⿰⿱土龰⿱⿰冫欠口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "口", + "土", + "欠", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趧", + "codepoint": "U+8DA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DA7", + "status": "exact_ids", + "ids": "⿰走是", + "canonical_ids": "⿰走是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "日", + "龰" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趨", + "codepoint": "U+8DA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DA8", + "status": "exact_ids", + "ids": "⿰走芻", + "canonical_ids": "⿰走芻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "龰" + ], + "unresolved_leaves": [ + "芻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趩", + "codepoint": "U+8DA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DA9", + "status": "exact_ids", + "ids": "⿰走異", + "canonical_ids": "⿰走異", + "expanded_ids": "⿰⿱土龰⿱田⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "廾", + "廿", + "田", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趪", + "codepoint": "U+8DAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DAA", + "status": "exact_ids", + "ids": "⿰走黄", + "canonical_ids": "⿰走黄", + "expanded_ids": "⿰⿱土龰黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "黄", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趫", + "codepoint": "U+8DAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DAB", + "status": "exact_ids", + "ids": "⿰走喬", + "canonical_ids": "⿰走喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "土", + "大", + "龰" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趬", + "codepoint": "U+8DAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DAC", + "status": "exact_ids", + "ids": "⿰走堯", + "canonical_ids": "⿰走堯", + "expanded_ids": "⿰⿱土龰⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趭", + "codepoint": "U+8DAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DAD", + "status": "exact_ids", + "ids": "⿰走焦", + "canonical_ids": "⿰走焦", + "expanded_ids": "⿰⿱土龰⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "灬", + "隹", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趮", + "codepoint": "U+8DAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DAE", + "status": "exact_ids", + "ids": "⿰走喿", + "canonical_ids": "⿰走喿", + "expanded_ids": "⿰⿱土龰⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "木", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趯", + "codepoint": "U+8DAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DAF", + "status": "exact_ids", + "ids": "⿰走翟", + "canonical_ids": "⿰走翟", + "expanded_ids": "⿰⿱土龰⿱⿰习习隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "土", + "隹", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趰", + "codepoint": "U+8DB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DB0", + "status": "exact_ids", + "ids": "⿰走爾", + "canonical_ids": "⿰走爾", + "expanded_ids": "⿰⿱土龰爾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "爾", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趱", + "codepoint": "U+8DB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DB1", + "status": "exact_ids", + "ids": "⿰走赞", + "canonical_ids": "⿰走赞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "龰" + ], + "unresolved_leaves": [ + "赞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趲", + "codepoint": "U+8DB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DB2", + "status": "exact_ids", + "ids": "⿰走贊", + "canonical_ids": "⿰走贊", + "expanded_ids": "⿰⿱土龰⿱⿰⿱牛儿⿱牛儿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "土", + "牛", + "目", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 300, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "足", + "codepoint": "U+8DB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DB3", + "status": "exact_ids", + "ids": "⿱口龰", + "canonical_ids": "⿱口龰", + "expanded_ids": "⿱口龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趴", + "codepoint": "U+8DB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DB4", + "status": "exact_ids", + "ids": "⿰足八", + "canonical_ids": "⿰足八", + "expanded_ids": "⿰⿱口龰八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趵", + "codepoint": "U+8DB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DB5", + "status": "exact_ids", + "ids": "⿰足勺", + "canonical_ids": "⿰足勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趶", + "codepoint": "U+8DB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DB6", + "status": "exact_ids", + "ids": "⿰足于", + "canonical_ids": "⿰足于", + "expanded_ids": "⿰⿱口龰⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趷", + "codepoint": "U+8DB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DB7", + "status": "exact_ids", + "ids": "⿰足乞", + "canonical_ids": "⿰足乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趸", + "codepoint": "U+8DB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DB8", + "status": "exact_ids", + "ids": "⿱万足", + "canonical_ids": "⿱万足", + "expanded_ids": "⿱万⿱口龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "万", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趹", + "codepoint": "U+8DB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DB9", + "status": "exact_ids", + "ids": "⿰足夬", + "canonical_ids": "⿰足夬", + "expanded_ids": "⿰⿱口龰⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "口", + "大", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趺", + "codepoint": "U+8DBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DBA", + "status": "exact_ids", + "ids": "⿰足夫", + "canonical_ids": "⿰足夫", + "expanded_ids": "⿰⿱口龰⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "大", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趻", + "codepoint": "U+8DBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DBB", + "status": "exact_ids", + "ids": "⿰足今", + "canonical_ids": "⿰足今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "龰" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趼", + "codepoint": "U+8DBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DBC", + "status": "exact_ids", + "ids": "⿰足开", + "canonical_ids": "⿰足开", + "expanded_ids": "⿰⿱口龰⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "廾", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趽", + "codepoint": "U+8DBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DBD", + "status": "exact_ids", + "ids": "⿰足方", + "canonical_ids": "⿰足方", + "expanded_ids": "⿰⿱口龰方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "方", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趾", + "codepoint": "U+8DBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DBE", + "status": "exact_ids", + "ids": "⿰足止", + "canonical_ids": "⿰足止", + "expanded_ids": "⿰⿱口龰止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "止", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "趿", + "codepoint": "U+8DBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DBF", + "status": "exact_ids", + "ids": "⿰足及", + "canonical_ids": "⿰足及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "口", + "龰" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跀", + "codepoint": "U+8DC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DC0", + "status": "exact_ids", + "ids": "⿰足月", + "canonical_ids": "⿰足月", + "expanded_ids": "⿰⿱口龰月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跁", + "codepoint": "U+8DC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DC1", + "status": "exact_ids", + "ids": "⿰足巴", + "canonical_ids": "⿰足巴", + "expanded_ids": "⿰⿱口龰巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "巴", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跂", + "codepoint": "U+8DC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DC2", + "status": "exact_ids", + "ids": "⿰足支", + "canonical_ids": "⿰足支", + "expanded_ids": "⿰⿱口龰⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跃", + "codepoint": "U+8DC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DC3", + "status": "exact_ids", + "ids": "⿰足夭", + "canonical_ids": "⿰足夭", + "expanded_ids": "⿰⿱口龰⿱丿大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跄", + "codepoint": "U+8DC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DC4", + "status": "exact_ids", + "ids": "⿰足仓", + "canonical_ids": "⿰足仓", + "expanded_ids": "⿰⿱口龰⿱人㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "人", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跅", + "codepoint": "U+8DC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DC5", + "status": "exact_ids", + "ids": "⿰足斥", + "canonical_ids": "⿰足斥", + "expanded_ids": "⿰⿱口龰⿻斤丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "斤", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跆", + "codepoint": "U+8DC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DC6", + "status": "exact_ids", + "ids": "⿰足台", + "canonical_ids": "⿰足台", + "expanded_ids": "⿰⿱口龰⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跇", + "codepoint": "U+8DC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DC7", + "status": "exact_ids", + "ids": "⿰足世", + "canonical_ids": "⿰足世", + "expanded_ids": "⿰⿱口龰世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跈", + "codepoint": "U+8DC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DC8", + "status": "exact_ids", + "ids": "⿰足㐱", + "canonical_ids": "⿰足㐱", + "expanded_ids": "⿰⿱口龰⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "口", + "彡", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跉", + "codepoint": "U+8DC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DC9", + "status": "exact_ids", + "ids": "⿰足令", + "canonical_ids": "⿰足令", + "expanded_ids": "⿰⿱口龰⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "龰", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跊", + "codepoint": "U+8DCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DCA", + "status": "exact_ids", + "ids": "⿰足未", + "canonical_ids": "⿰足未", + "expanded_ids": "⿰⿱口龰⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "木", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跋", + "codepoint": "U+8DCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DCB", + "status": "exact_ids", + "ids": "⿰足犮", + "canonical_ids": "⿰足犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跌", + "codepoint": "U+8DCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DCC", + "status": "exact_ids", + "ids": "⿰足失", + "canonical_ids": "⿰足失", + "expanded_ids": "⿰⿱口龰⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "大", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跍", + "codepoint": "U+8DCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DCD", + "status": "exact_ids", + "ids": "⿰足古", + "canonical_ids": "⿰足古", + "expanded_ids": "⿰⿱口龰⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跎", + "codepoint": "U+8DCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DCE", + "status": "exact_ids", + "ids": "⿰足它", + "canonical_ids": "⿰足它", + "expanded_ids": "⿰⿱口龰⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "口", + "宀", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跏", + "codepoint": "U+8DCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DCF", + "status": "exact_ids", + "ids": "⿰足加", + "canonical_ids": "⿰足加", + "expanded_ids": "⿰⿱口龰⿰力口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跐", + "codepoint": "U+8DD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DD0", + "status": "exact_ids", + "ids": "⿰足此", + "canonical_ids": "⿰足此", + "expanded_ids": "⿰⿱口龰⿰止匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "口", + "止", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跑", + "codepoint": "U+8DD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DD1", + "status": "exact_ids", + "ids": "⿰足包", + "canonical_ids": "⿰足包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跒", + "codepoint": "U+8DD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DD2", + "status": "exact_ids", + "ids": "⿰足可", + "canonical_ids": "⿰足可", + "expanded_ids": "⿰⿱口龰⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跓", + "codepoint": "U+8DD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DD3", + "status": "exact_ids", + "ids": "⿰足主", + "canonical_ids": "⿰足主", + "expanded_ids": "⿰⿱口龰⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "王", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跔", + "codepoint": "U+8DD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DD4", + "status": "exact_ids", + "ids": "⿰足句", + "canonical_ids": "⿰足句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跕", + "codepoint": "U+8DD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DD5", + "status": "exact_ids", + "ids": "⿰足占", + "canonical_ids": "⿰足占", + "expanded_ids": "⿰⿱口龰⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跖", + "codepoint": "U+8DD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DD6", + "status": "exact_ids", + "ids": "⿰足石", + "canonical_ids": "⿰足石", + "expanded_ids": "⿰⿱口龰石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "石", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跗", + "codepoint": "U+8DD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DD7", + "status": "exact_ids", + "ids": "⿰足付", + "canonical_ids": "⿰足付", + "expanded_ids": "⿰⿱口龰⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "口", + "寸", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跘", + "codepoint": "U+8DD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DD8", + "status": "exact_ids", + "ids": "⿰足半", + "canonical_ids": "⿰足半", + "expanded_ids": "⿰⿱口龰半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跙", + "codepoint": "U+8DD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DD9", + "status": "exact_ids", + "ids": "⿰足且", + "canonical_ids": "⿰足且", + "expanded_ids": "⿰⿱口龰且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跚", + "codepoint": "U+8DDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DDA", + "status": "exact_ids", + "ids": "⿰足冊", + "canonical_ids": "⿰足冊", + "expanded_ids": "⿰⿱口龰⿻冂廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "口", + "廾", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跛", + "codepoint": "U+8DDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DDB", + "status": "exact_ids", + "ids": "⿰足皮", + "canonical_ids": "⿰足皮", + "expanded_ids": "⿰⿱口龰皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "皮", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跜", + "codepoint": "U+8DDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DDC", + "status": "exact_ids", + "ids": "⿰足尼", + "canonical_ids": "⿰足尼", + "expanded_ids": "⿰⿱口龰⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "口", + "尸", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "距", + "codepoint": "U+8DDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DDD", + "status": "exact_ids", + "ids": "⿰足巨", + "canonical_ids": "⿰足巨", + "expanded_ids": "⿰⿱口龰巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "巨", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跞", + "codepoint": "U+8DDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DDE", + "status": "exact_ids", + "ids": "⿰足乐", + "canonical_ids": "⿰足乐", + "expanded_ids": "⿰⿱口龰乐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乐", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跟", + "codepoint": "U+8DDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DDF", + "status": "exact_ids", + "ids": "⿰足艮", + "canonical_ids": "⿰足艮", + "expanded_ids": "⿰⿱口龰艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艮", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跠", + "codepoint": "U+8DE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DE0", + "status": "exact_ids", + "ids": "⿰足夷", + "canonical_ids": "⿰足夷", + "expanded_ids": "⿰⿱口龰⿻大弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "大", + "弓", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跡", + "codepoint": "U+8DE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DE1", + "status": "exact_ids", + "ids": "⿰足亦", + "canonical_ids": "⿰足亦", + "expanded_ids": "⿰⿱口龰亦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跢", + "codepoint": "U+8DE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DE2", + "status": "exact_ids", + "ids": "⿰足多", + "canonical_ids": "⿰足多", + "expanded_ids": "⿰⿱口龰⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夕", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跣", + "codepoint": "U+8DE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DE3", + "status": "exact_ids", + "ids": "⿰足先", + "canonical_ids": "⿰足先", + "expanded_ids": "⿰⿱口龰⿱牛儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "牛", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跤", + "codepoint": "U+8DE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DE4", + "status": "exact_ids", + "ids": "⿰足交", + "canonical_ids": "⿰足交", + "expanded_ids": "⿰⿱口龰⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "口", + "父", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跥", + "codepoint": "U+8DE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DE5", + "status": "exact_ids", + "ids": "⿰足朶", + "canonical_ids": "⿰足朶", + "expanded_ids": "⿰⿱口龰⿱乃木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "口", + "木", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跦", + "codepoint": "U+8DE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DE6", + "status": "exact_ids", + "ids": "⿰足朱", + "canonical_ids": "⿰足朱", + "expanded_ids": "⿰⿱口龰⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "木", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跧", + "codepoint": "U+8DE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DE7", + "status": "exact_ids", + "ids": "⿰足全", + "canonical_ids": "⿰足全", + "expanded_ids": "⿰⿱口龰⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "口", + "王", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跨", + "codepoint": "U+8DE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DE8", + "status": "exact_ids", + "ids": "⿰足夸", + "canonical_ids": "⿰足夸", + "expanded_ids": "⿰⿱口龰⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "口", + "大", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跩", + "codepoint": "U+8DE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DE9", + "status": "exact_ids", + "ids": "⿰足曳", + "canonical_ids": "⿰足曳", + "expanded_ids": "⿰⿱口龰曳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "曳", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跪", + "codepoint": "U+8DEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DEA", + "status": "exact_ids", + "ids": "⿰足危", + "canonical_ids": "⿰足危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "口", + "龰" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跫", + "codepoint": "U+8DEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DEB", + "status": "exact_ids", + "ids": "⿱巩足", + "canonical_ids": "⿱巩足", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "工", + "龰" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跬", + "codepoint": "U+8DEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DEC", + "status": "exact_ids", + "ids": "⿰足圭", + "canonical_ids": "⿰足圭", + "expanded_ids": "⿰⿱口龰⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跭", + "codepoint": "U+8DED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DED", + "status": "exact_ids", + "ids": "⿰足夅", + "canonical_ids": "⿰足夅", + "expanded_ids": "⿰⿱口龰⿱夂⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "口", + "夂", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跮", + "codepoint": "U+8DEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DEE", + "status": "exact_ids", + "ids": "⿰足至", + "canonical_ids": "⿰足至", + "expanded_ids": "⿰⿱口龰⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "口", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "路", + "codepoint": "U+8DEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DEF", + "status": "exact_ids", + "ids": "⿰足各", + "canonical_ids": "⿰足各", + "expanded_ids": "⿰⿱口龰⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跰", + "codepoint": "U+8DF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DF0", + "status": "exact_ids", + "ids": "⿰足并", + "canonical_ids": "⿰足并", + "expanded_ids": "⿰⿱口龰⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "口", + "廾", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跱", + "codepoint": "U+8DF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DF1", + "status": "exact_ids", + "ids": "⿰足寺", + "canonical_ids": "⿰足寺", + "expanded_ids": "⿰⿱口龰⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "寸", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跲", + "codepoint": "U+8DF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DF2", + "status": "exact_ids", + "ids": "⿰足合", + "canonical_ids": "⿰足合", + "expanded_ids": "⿰⿱口龰⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跳", + "codepoint": "U+8DF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DF3", + "status": "exact_ids", + "ids": "⿰足兆", + "canonical_ids": "⿰足兆", + "expanded_ids": "⿰⿱口龰兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跴", + "codepoint": "U+8DF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DF4", + "status": "exact_ids", + "ids": "⿰足西", + "canonical_ids": "⿰足西", + "expanded_ids": "⿰⿱口龰⿻⿱一儿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "践", + "codepoint": "U+8DF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DF5", + "status": "exact_ids", + "ids": "⿰足𢦑", + "canonical_ids": "⿰足𢦑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "𢦑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跶", + "codepoint": "U+8DF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DF6", + "status": "exact_ids", + "ids": "⿰足达", + "canonical_ids": "⿰足达", + "expanded_ids": "⿰⿱口龰⿰辶大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "大", + "辶", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跷", + "codepoint": "U+8DF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DF7", + "status": "exact_ids", + "ids": "⿰足尧", + "canonical_ids": "⿰足尧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "尧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跸", + "codepoint": "U+8DF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DF8", + "status": "exact_ids", + "ids": "⿰足毕", + "canonical_ids": "⿰足毕", + "expanded_ids": "⿰⿱口龰⿱⿰匕匕十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "十", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跹", + "codepoint": "U+8DF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DF9", + "status": "exact_ids", + "ids": "⿰足迁", + "canonical_ids": "⿰足迁", + "expanded_ids": "⿰⿱口龰⿰辶⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "辶", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跺", + "codepoint": "U+8DFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DFA", + "status": "exact_ids", + "ids": "⿰足朵", + "canonical_ids": "⿰足朵", + "expanded_ids": "⿰⿱口龰⿱几木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "口", + "木", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跻", + "codepoint": "U+8DFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DFB", + "status": "exact_ids", + "ids": "⿰足齐", + "canonical_ids": "⿰足齐", + "expanded_ids": "⿰⿱口龰齐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "齐", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跼", + "codepoint": "U+8DFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DFC", + "status": "exact_ids", + "ids": "⿰足局", + "canonical_ids": "⿰足局", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "局" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跽", + "codepoint": "U+8DFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DFD", + "status": "exact_ids", + "ids": "⿰足忌", + "canonical_ids": "⿰足忌", + "expanded_ids": "⿰⿱口龰⿱己心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "己", + "心", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跾", + "codepoint": "U+8DFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DFE", + "status": "exact_ids", + "ids": "⿱攸足", + "canonical_ids": "⿱攸足", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "攸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "跿", + "codepoint": "U+8DFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8DFF", + "status": "exact_ids", + "ids": "⿰足走", + "canonical_ids": "⿰足走", + "expanded_ids": "⿰⿱口龰⿱土龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踀", + "codepoint": "U+8E00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E00", + "status": "exact_ids", + "ids": "⿰足足", + "canonical_ids": "⿰足足", + "expanded_ids": "⿰⿱口龰⿱口龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踁", + "codepoint": "U+8E01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E01", + "status": "exact_ids", + "ids": "⿰足巠", + "canonical_ids": "⿰足巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踂", + "codepoint": "U+8E02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E02", + "status": "exact_ids", + "ids": "⿰足耴", + "canonical_ids": "⿰足耴", + "expanded_ids": "⿰⿱口龰⿰耳乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "口", + "耳", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踃", + "codepoint": "U+8E03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E03", + "status": "exact_ids", + "ids": "⿰足肖", + "canonical_ids": "⿰足肖", + "expanded_ids": "⿰⿱口龰⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "小", + "月", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踄", + "codepoint": "U+8E04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E04", + "status": "exact_ids", + "ids": "⿰足步", + "canonical_ids": "⿰足步", + "expanded_ids": "⿰⿱口龰⿱止𣥂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "止", + "龰", + "𣥂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 154, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踅", + "codepoint": "U+8E05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E05", + "status": "exact_ids", + "ids": "⿱折足", + "canonical_ids": "⿱折足", + "expanded_ids": "⿱⿰扌斤⿱口龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "扌", + "斤", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踆", + "codepoint": "U+8E06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E06", + "status": "exact_ids", + "ids": "⿰足夋", + "canonical_ids": "⿰足夋", + "expanded_ids": "⿰⿱口龰⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "口", + "夂", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踇", + "codepoint": "U+8E07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E07", + "status": "exact_ids", + "ids": "⿰足每", + "canonical_ids": "⿰足每", + "expanded_ids": "⿰⿱口龰⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "母", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踈", + "codepoint": "U+8E08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E08", + "status": "exact_ids", + "ids": "⿰足束", + "canonical_ids": "⿰足束", + "expanded_ids": "⿰⿱口龰⿻木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踉", + "codepoint": "U+8E09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E09", + "status": "exact_ids", + "ids": "⿰足良", + "canonical_ids": "⿰足良", + "expanded_ids": "⿰⿱口龰⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "艮", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踊", + "codepoint": "U+8E0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E0A", + "status": "exact_ids", + "ids": "⿰足甬", + "canonical_ids": "⿰足甬", + "expanded_ids": "⿰⿱口龰⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "月", + "龰", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踋", + "codepoint": "U+8E0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E0B", + "status": "exact_ids", + "ids": "⿰足却", + "canonical_ids": "⿰足却", + "expanded_ids": "⿰⿱口龰⿰⿱土厶卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "厶", + "口", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踌", + "codepoint": "U+8E0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E0C", + "status": "exact_ids", + "ids": "⿰足寿", + "canonical_ids": "⿰足寿", + "expanded_ids": "⿰⿱口龰⿻丰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "口", + "寸", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踍", + "codepoint": "U+8E0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E0D", + "status": "exact_ids", + "ids": "⿰足孝", + "canonical_ids": "⿰足孝", + "expanded_ids": "⿰⿱口龰⿱⿻土丿子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "土", + "子", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踎", + "codepoint": "U+8E0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E0E", + "status": "exact_ids", + "ids": "⿰足否", + "canonical_ids": "⿰足否", + "expanded_ids": "⿰⿱口龰⿱不口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踏", + "codepoint": "U+8E0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E0F", + "status": "exact_ids", + "ids": "⿰足沓", + "canonical_ids": "⿰足沓", + "expanded_ids": "⿰⿱口龰⿱水日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "日", + "水", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踐", + "codepoint": "U+8E10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E10", + "status": "exact_ids", + "ids": "⿰足戔", + "canonical_ids": "⿰足戔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踑", + "codepoint": "U+8E11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E11", + "status": "exact_ids", + "ids": "⿰足其", + "canonical_ids": "⿰足其", + "expanded_ids": "⿰⿱口龰其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踒", + "codepoint": "U+8E12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E12", + "status": "exact_ids", + "ids": "⿰足委", + "canonical_ids": "⿰足委", + "expanded_ids": "⿰⿱口龰⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "女", + "木", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踓", + "codepoint": "U+8E13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E13", + "status": "exact_ids", + "ids": "⿰足隹", + "canonical_ids": "⿰足隹", + "expanded_ids": "⿰⿱口龰隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "隹", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踔", + "codepoint": "U+8E14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E14", + "status": "exact_ids", + "ids": "⿰足卓", + "canonical_ids": "⿰足卓", + "expanded_ids": "⿰⿱口龰⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "口", + "日", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踕", + "codepoint": "U+8E15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E15", + "status": "exact_ids", + "ids": "⿰足疌", + "canonical_ids": "⿰足疌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "疌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踖", + "codepoint": "U+8E16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E16", + "status": "exact_ids", + "ids": "⿰足昔", + "canonical_ids": "⿰足昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "日", + "龰" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踗", + "codepoint": "U+8E17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E17", + "status": "exact_ids", + "ids": "⿰足念", + "canonical_ids": "⿰足念", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "心", + "龰" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踘", + "codepoint": "U+8E18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E18", + "status": "exact_ids", + "ids": "⿰足匊", + "canonical_ids": "⿰足匊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "匊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踙", + "codepoint": "U+8E19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E19", + "status": "exact_ids", + "ids": "⿰足取", + "canonical_ids": "⿰足取", + "expanded_ids": "⿰⿱口龰⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "口", + "耳", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踚", + "codepoint": "U+8E1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E1A", + "status": "exact_ids", + "ids": "⿰足侖", + "canonical_ids": "⿰足侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "龰" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踛", + "codepoint": "U+8E1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E1B", + "status": "exact_ids", + "ids": "⿰足坴", + "canonical_ids": "⿰足坴", + "expanded_ids": "⿰⿱口龰⿱⿱土儿土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踜", + "codepoint": "U+8E1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E1C", + "status": "exact_ids", + "ids": "⿰足夌", + "canonical_ids": "⿰足夌", + "expanded_ids": "⿰⿱口龰⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "土", + "夂", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踝", + "codepoint": "U+8E1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E1D", + "status": "exact_ids", + "ids": "⿰足果", + "canonical_ids": "⿰足果", + "expanded_ids": "⿰⿱口龰⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "田", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踞", + "codepoint": "U+8E1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E1E", + "status": "exact_ids", + "ids": "⿰足居", + "canonical_ids": "⿰足居", + "expanded_ids": "⿰⿱口龰⿱尸⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "尸", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踟", + "codepoint": "U+8E1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E1F", + "status": "exact_ids", + "ids": "⿰足知", + "canonical_ids": "⿰足知", + "expanded_ids": "⿰⿱口龰⿰⿱⿻丿一大口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "大", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踠", + "codepoint": "U+8E20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E20", + "status": "exact_ids", + "ids": "⿰足宛", + "canonical_ids": "⿰足宛", + "expanded_ids": "⿰⿱口龰⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "口", + "夕", + "宀", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踡", + "codepoint": "U+8E21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E21", + "status": "exact_ids", + "ids": "⿰足卷", + "canonical_ids": "⿰足卷", + "expanded_ids": "⿰⿱口龰⿱龹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "口", + "龰", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踢", + "codepoint": "U+8E22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E22", + "status": "exact_ids", + "ids": "⿰足易", + "canonical_ids": "⿰足易", + "expanded_ids": "⿰⿱口龰⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "口", + "日", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踣", + "codepoint": "U+8E23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E23", + "status": "exact_ids", + "ids": "⿰足咅", + "canonical_ids": "⿰足咅", + "expanded_ids": "⿰⿱口龰⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "立", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踤", + "codepoint": "U+8E24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E24", + "status": "exact_ids", + "ids": "⿰足卒", + "canonical_ids": "⿰足卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踥", + "codepoint": "U+8E25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E25", + "status": "exact_ids", + "ids": "⿰足妾", + "canonical_ids": "⿰足妾", + "expanded_ids": "⿰⿱口龰⿱立女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "立", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踦", + "codepoint": "U+8E26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E26", + "status": "exact_ids", + "ids": "⿰足奇", + "canonical_ids": "⿰足奇", + "expanded_ids": "⿰⿱口龰⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踧", + "codepoint": "U+8E27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E27", + "status": "exact_ids", + "ids": "⿰足叔", + "canonical_ids": "⿰足叔", + "expanded_ids": "⿰⿱口龰⿰⿱上小又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "又", + "口", + "小", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踨", + "codepoint": "U+8E28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E28", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踩", + "codepoint": "U+8E29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E29", + "status": "exact_ids", + "ids": "⿰足采", + "canonical_ids": "⿰足采", + "expanded_ids": "⿰⿱口龰⿱爫木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "爫", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踪", + "codepoint": "U+8E2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E2A", + "status": "exact_ids", + "ids": "⿰足宗", + "canonical_ids": "⿰足宗", + "expanded_ids": "⿰⿱口龰⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "口", + "宀", + "小", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踫", + "codepoint": "U+8E2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E2B", + "status": "exact_ids", + "ids": "⿰足並", + "canonical_ids": "⿰足並", + "expanded_ids": "⿰⿱口龰⿱丷亚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亚", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踬", + "codepoint": "U+8E2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E2C", + "status": "exact_ids", + "ids": "⿰足质", + "canonical_ids": "⿰足质", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "龰" + ], + "unresolved_leaves": [ + "𣂑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踭", + "codepoint": "U+8E2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E2D", + "status": "exact_ids", + "ids": "⿰足争", + "canonical_ids": "⿰足争", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "争" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踮", + "codepoint": "U+8E2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E2E", + "status": "exact_ids", + "ids": "⿰足店", + "canonical_ids": "⿰足店", + "expanded_ids": "⿰⿱口龰⿱广⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "广", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踯", + "codepoint": "U+8E2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E2F", + "status": "exact_ids", + "ids": "⿰足郑", + "canonical_ids": "⿰足郑", + "expanded_ids": "⿰⿱口龰⿰⿱丷⿻一大阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "口", + "大", + "阝", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踰", + "codepoint": "U+8E30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E30", + "status": "exact_ids", + "ids": "⿰足兪", + "canonical_ids": "⿰足兪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "兪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踱", + "codepoint": "U+8E31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E31", + "status": "exact_ids", + "ids": "⿰足度", + "canonical_ids": "⿰足度", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "度" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踲", + "codepoint": "U+8E32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E32", + "status": "exact_ids", + "ids": "⿰足盾", + "canonical_ids": "⿰足盾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "目", + "龰" + ], + "unresolved_leaves": [ + "⺁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踳", + "codepoint": "U+8E33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E33", + "status": "exact_ids", + "ids": "⿰足春", + "canonical_ids": "⿰足春", + "expanded_ids": "⿰⿱口龰⿱𡗗日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "日", + "龰", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 154, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踴", + "codepoint": "U+8E34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E34", + "status": "exact_ids", + "ids": "⿰足勇", + "canonical_ids": "⿰足勇", + "expanded_ids": "⿰⿱口龰⿱⿱龴⿻月丨力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "力", + "口", + "月", + "龰", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踵", + "codepoint": "U+8E35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E35", + "status": "exact_ids", + "ids": "⿰足重", + "canonical_ids": "⿰足重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "龰" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踶", + "codepoint": "U+8E36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E36", + "status": "exact_ids", + "ids": "⿰足是", + "canonical_ids": "⿰足是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "日", + "龰" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踷", + "codepoint": "U+8E37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E37", + "status": "exact_ids", + "ids": "⿰足者", + "canonical_ids": "⿰足者", + "expanded_ids": "⿰⿱口龰⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "土", + "日", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踸", + "codepoint": "U+8E38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E38", + "status": "exact_ids", + "ids": "⿰足甚", + "canonical_ids": "⿰足甚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "甘", + "龰" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踹", + "codepoint": "U+8E39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E39", + "status": "exact_ids", + "ids": "⿰足耑", + "canonical_ids": "⿰足耑", + "expanded_ids": "⿰⿱口龰⿱山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "山", + "而", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踺", + "codepoint": "U+8E3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E3A", + "status": "exact_ids", + "ids": "⿰足建", + "canonical_ids": "⿰足建", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "廴", + "龰" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踻", + "codepoint": "U+8E3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E3B", + "status": "exact_ids", + "ids": "⿰足咼", + "canonical_ids": "⿰足咼", + "expanded_ids": "⿰⿱口龰⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踼", + "codepoint": "U+8E3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E3C", + "status": "exact_ids", + "ids": "⿰足昜", + "canonical_ids": "⿰足昜", + "expanded_ids": "⿰⿱口龰⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "口", + "日", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踽", + "codepoint": "U+8E3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E3D", + "status": "exact_ids", + "ids": "⿰足禹", + "canonical_ids": "⿰足禹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "禹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踾", + "codepoint": "U+8E3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E3E", + "status": "exact_ids", + "ids": "⿰足畐", + "canonical_ids": "⿰足畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "踿", + "codepoint": "U+8E3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E3F", + "status": "exact_ids", + "ids": "⿰足秋", + "canonical_ids": "⿰足秋", + "expanded_ids": "⿰⿱口龰⿰⿻丿木火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "木", + "火", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹀", + "codepoint": "U+8E40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E40", + "status": "exact_ids", + "ids": "⿰足枼", + "canonical_ids": "⿰足枼", + "expanded_ids": "⿰⿱口龰⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "口", + "木", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹁", + "codepoint": "U+8E41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E41", + "status": "exact_ids", + "ids": "⿰足扁", + "canonical_ids": "⿰足扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "尸", + "龰" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹂", + "codepoint": "U+8E42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E42", + "status": "exact_ids", + "ids": "⿰足柔", + "canonical_ids": "⿰足柔", + "expanded_ids": "⿰⿱口龰⿱矛木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "矛", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹃", + "codepoint": "U+8E43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E43", + "status": "exact_ids", + "ids": "⿰足若", + "canonical_ids": "⿰足若", + "expanded_ids": "⿰⿱口龰⿱艹⿱⿻丿一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "艹", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹄", + "codepoint": "U+8E44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E44", + "status": "exact_ids", + "ids": "⿰足帝", + "canonical_ids": "⿰足帝", + "expanded_ids": "⿰⿱口龰⿳⿱亠八冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 253, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹅", + "codepoint": "U+8E45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E45", + "status": "exact_ids", + "ids": "⿰足查", + "canonical_ids": "⿰足查", + "expanded_ids": "⿰⿱口龰⿱木⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "日", + "木", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹆", + "codepoint": "U+8E46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E46", + "status": "exact_ids", + "ids": "⿰足退", + "canonical_ids": "⿰足退", + "expanded_ids": "⿰⿱口龰⿰辶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艮", + "辶", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹇", + "codepoint": "U+8E47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E47", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹈", + "codepoint": "U+8E48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E48", + "status": "exact_ids", + "ids": "⿰足舀", + "canonical_ids": "⿰足舀", + "expanded_ids": "⿰⿱口龰⿱爫臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "爫", + "臼", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹉", + "codepoint": "U+8E49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E49", + "status": "exact_ids", + "ids": "⿰足差", + "canonical_ids": "⿰足差", + "expanded_ids": "⿰⿱口龰⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "工", + "羊", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹊", + "codepoint": "U+8E4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E4A", + "status": "exact_ids", + "ids": "⿰足奚", + "canonical_ids": "⿰足奚", + "expanded_ids": "⿰⿱口龰⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "大", + "幺", + "爪", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹋", + "codepoint": "U+8E4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E4B", + "status": "exact_ids", + "ids": "⿰足𦐇", + "canonical_ids": "⿰足𦐇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "口", + "龰" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹌", + "codepoint": "U+8E4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E4C", + "status": "exact_ids", + "ids": "⿰足倉", + "canonical_ids": "⿰足倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹍", + "codepoint": "U+8E4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E4D", + "status": "exact_ids", + "ids": "⿰足展", + "canonical_ids": "⿰足展", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "展" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹎", + "codepoint": "U+8E4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E4E", + "status": "exact_ids", + "ids": "⿰足真", + "canonical_ids": "⿰足真", + "expanded_ids": "⿰⿱口龰⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "口", + "目", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹏", + "codepoint": "U+8E4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E4F", + "status": "exact_ids", + "ids": "⿰足虒", + "canonical_ids": "⿰足虒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "虒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹐", + "codepoint": "U+8E50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E50", + "status": "exact_ids", + "ids": "⿰足脊", + "canonical_ids": "⿰足脊", + "expanded_ids": "⿰⿱口龰⿱兆月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "口", + "月", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹑", + "codepoint": "U+8E51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E51", + "status": "exact_ids", + "ids": "⿰足聂", + "canonical_ids": "⿰足聂", + "expanded_ids": "⿰⿱口龰⿱耳⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "口", + "耳", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹒", + "codepoint": "U+8E52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E52", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹓", + "codepoint": "U+8E53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E53", + "status": "exact_ids", + "ids": "⿰足留", + "canonical_ids": "⿰足留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹔", + "codepoint": "U+8E54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E54", + "status": "exact_ids", + "ids": "⿱斬足", + "canonical_ids": "⿱斬足", + "expanded_ids": "⿱⿰車斤⿱口龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "斤", + "車", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹕", + "codepoint": "U+8E55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E55", + "status": "exact_ids", + "ids": "⿰足畢", + "canonical_ids": "⿰足畢", + "expanded_ids": "⿰⿱口龰畢", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "畢", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹖", + "codepoint": "U+8E56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E56", + "status": "exact_ids", + "ids": "⿰足舂", + "canonical_ids": "⿰足舂", + "expanded_ids": "⿰⿱口龰⿱𡗗臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "臼", + "龰", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 156, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹗", + "codepoint": "U+8E57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E57", + "status": "exact_ids", + "ids": "⿰足鹿", + "canonical_ids": "⿰足鹿", + "expanded_ids": "⿰⿱口龰鹿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "鹿", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹘", + "codepoint": "U+8E58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E58", + "status": "exact_ids", + "ids": "⿰足翏", + "canonical_ids": "⿰足翏", + "expanded_ids": "⿰⿱口龰⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "口", + "彡", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹙", + "codepoint": "U+8E59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E59", + "status": "exact_ids", + "ids": "⿱戚足", + "canonical_ids": "⿱戚足", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "戚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹚", + "codepoint": "U+8E5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E5A", + "status": "exact_ids", + "ids": "⿰足堂", + "canonical_ids": "⿰足堂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "小", + "龰" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹛", + "codepoint": "U+8E5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E5B", + "status": "exact_ids", + "ids": "⿰足帶", + "canonical_ids": "⿰足帶", + "expanded_ids": "⿰⿱口龰⿳卌冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "卌", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹜", + "codepoint": "U+8E5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E5C", + "status": "exact_ids", + "ids": "⿰足宿", + "canonical_ids": "⿰足宿", + "expanded_ids": "⿰⿱口龰⿱宀⿰亻⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "亻", + "口", + "宀", + "日", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹝", + "codepoint": "U+8E5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E5D", + "status": "exact_ids", + "ids": "⿰足徙", + "canonical_ids": "⿰足徙", + "expanded_ids": "⿰⿱口龰⿰彳⿱止止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "彳", + "止", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹞", + "codepoint": "U+8E5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E5E", + "status": "exact_ids", + "ids": "⿰足頃", + "canonical_ids": "⿰足頃", + "expanded_ids": "⿰⿱口龰⿰匕⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "匕", + "口", + "目", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹟", + "codepoint": "U+8E5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E5F", + "status": "exact_ids", + "ids": "⿰足責", + "canonical_ids": "⿰足責", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "目", + "龰" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹠", + "codepoint": "U+8E60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E60", + "status": "exact_ids", + "ids": "⿰足庶", + "canonical_ids": "⿰足庶", + "expanded_ids": "⿰⿱口龰⿱广⿱廿火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "广", + "廿", + "火", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹡", + "codepoint": "U+8E61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E61", + "status": "exact_ids", + "ids": "⿰足將", + "canonical_ids": "⿰足將", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "將" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹢", + "codepoint": "U+8E62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E62", + "status": "exact_ids", + "ids": "⿰足啇", + "canonical_ids": "⿰足啇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹣", + "codepoint": "U+8E63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E63", + "status": "exact_ids", + "ids": "⿰足㒼", + "canonical_ids": "⿰足㒼", + "expanded_ids": "⿰⿱口龰⿱艹⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "口", + "艹", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 302, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹤", + "codepoint": "U+8E64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E64", + "status": "exact_ids", + "ids": "⿰足從", + "canonical_ids": "⿰足從", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "從" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹥", + "codepoint": "U+8E65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E65", + "status": "exact_ids", + "ids": "⿰足連", + "canonical_ids": "⿰足連", + "expanded_ids": "⿰⿱口龰⿰辶車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "車", + "辶", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹦", + "codepoint": "U+8E66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E66", + "status": "exact_ids", + "ids": "⿰足崩", + "canonical_ids": "⿰足崩", + "expanded_ids": "⿰⿱口龰⿱山⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "山", + "月", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹧", + "codepoint": "U+8E67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E67", + "status": "exact_ids", + "ids": "⿰足曹", + "canonical_ids": "⿰足曹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "曹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹨", + "codepoint": "U+8E68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E68", + "status": "exact_ids", + "ids": "⿰足然", + "canonical_ids": "⿰足然", + "expanded_ids": "⿰⿱口龰⿱⿰月⿻大丶灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "大", + "月", + "灬", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹩", + "codepoint": "U+8E69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E69", + "status": "exact_ids", + "ids": "⿱敝足", + "canonical_ids": "⿱敝足", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "攵", + "龰" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹪", + "codepoint": "U+8E6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E6A", + "status": "exact_ids", + "ids": "⿰足貴", + "canonical_ids": "⿰足貴", + "expanded_ids": "⿰⿱口龰⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "目", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹫", + "codepoint": "U+8E6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E6B", + "status": "exact_ids", + "ids": "⿰足矞", + "canonical_ids": "⿰足矞", + "expanded_ids": "⿰⿱口龰⿱矛⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "矛", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹬", + "codepoint": "U+8E6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E6C", + "status": "exact_ids", + "ids": "⿰足登", + "canonical_ids": "⿰足登", + "expanded_ids": "⿰⿱口龰⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "癶", + "豆", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹭", + "codepoint": "U+8E6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E6D", + "status": "exact_ids", + "ids": "⿰足曾", + "canonical_ids": "⿰足曾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹮", + "codepoint": "U+8E6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E6E", + "status": "exact_ids", + "ids": "⿰足䙴", + "canonical_ids": "⿰足䙴", + "expanded_ids": "⿰⿱口龰⿱⿱覀大巳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "大", + "巳", + "覀", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹯", + "codepoint": "U+8E6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E6F", + "status": "exact_ids", + "ids": "⿰足番", + "canonical_ids": "⿰足番", + "expanded_ids": "⿰⿱口龰⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "口", + "木", + "田", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹰", + "codepoint": "U+8E70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E70", + "status": "exact_ids", + "ids": "⿰足厨", + "canonical_ids": "⿰足厨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "厨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹱", + "codepoint": "U+8E71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E71", + "status": "exact_ids", + "ids": "⿰足童", + "canonical_ids": "⿰足童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "立", + "龰" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹲", + "codepoint": "U+8E72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E72", + "status": "exact_ids", + "ids": "⿰足尊", + "canonical_ids": "⿰足尊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "口", + "寸", + "龰" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹳", + "codepoint": "U+8E73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E73", + "status": "exact_ids", + "ids": "⿰足發", + "canonical_ids": "⿰足發", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "發" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹴", + "codepoint": "U+8E74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E74", + "status": "exact_ids", + "ids": "⿰足就", + "canonical_ids": "⿰足就", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "尤", + "龰" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹵", + "codepoint": "U+8E75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E75", + "status": "exact_ids", + "ids": "⿱就足", + "canonical_ids": "⿱就足", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "尤", + "龰" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹶", + "codepoint": "U+8E76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E76", + "status": "exact_ids", + "ids": "⿰足厥", + "canonical_ids": "⿰足厥", + "expanded_ids": "⿰⿱口龰⿱厂⿰⿱䒑屮欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "厂", + "口", + "屮", + "欠", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹷", + "codepoint": "U+8E77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E77", + "status": "exact_ids", + "ids": "⿱厥足", + "canonical_ids": "⿱厥足", + "expanded_ids": "⿱⿱厂⿰⿱䒑屮欠⿱口龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "厂", + "口", + "屮", + "欠", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹸", + "codepoint": "U+8E78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E78", + "status": "exact_ids", + "ids": "⿰足粦", + "canonical_ids": "⿰足粦", + "expanded_ids": "⿰⿱口龰⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "口", + "夕", + "木", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹹", + "codepoint": "U+8E79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E79", + "status": "exact_ids", + "ids": "⿰足翕", + "canonical_ids": "⿰足翕", + "expanded_ids": "⿰⿱口龰⿱⿱⿱人一口⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "人", + "口", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹺", + "codepoint": "U+8E7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E7A", + "status": "exact_ids", + "ids": "⿰足堯", + "canonical_ids": "⿰足堯", + "expanded_ids": "⿰⿱口龰⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口", + "土", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹻", + "codepoint": "U+8E7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E7B", + "status": "exact_ids", + "ids": "⿰足喬", + "canonical_ids": "⿰足喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "龰" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹼", + "codepoint": "U+8E7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E7C", + "status": "exact_ids", + "ids": "⿰足菐", + "canonical_ids": "⿰足菐", + "expanded_ids": "⿰⿱口龰⿱业⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "儿", + "口", + "羊", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹽", + "codepoint": "U+8E7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E7D", + "status": "exact_ids", + "ids": "⿰足尞", + "canonical_ids": "⿰足尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "小", + "龰" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹾", + "codepoint": "U+8E7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E7E", + "status": "exact_ids", + "ids": "⿰足敦", + "canonical_ids": "⿰足敦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "攵", + "龰" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "蹿", + "codepoint": "U+8E7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E7F", + "status": "exact_ids", + "ids": "⿰足窜", + "canonical_ids": "⿰足窜", + "expanded_ids": "⿰⿱口龰⿱⿱宀八⿻⿱口口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "八", + "口", + "宀", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躀", + "codepoint": "U+8E80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E80", + "status": "exact_ids", + "ids": "⿰足貫", + "canonical_ids": "⿰足貫", + "expanded_ids": "⿰⿱口龰⿱毌⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "毌", + "目", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躁", + "codepoint": "U+8E81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E81", + "status": "exact_ids", + "ids": "⿰足喿", + "canonical_ids": "⿰足喿", + "expanded_ids": "⿰⿱口龰⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躂", + "codepoint": "U+8E82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E82", + "status": "exact_ids", + "ids": "⿰足達", + "canonical_ids": "⿰足達", + "expanded_ids": "⿰⿱口龰⿰辶⿱土羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "羊", + "辶", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躃", + "codepoint": "U+8E83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E83", + "status": "exact_ids", + "ids": "⿰足辟", + "canonical_ids": "⿰足辟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "立", + "龰" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躄", + "codepoint": "U+8E84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E84", + "status": "exact_ids", + "ids": "⿱辟足", + "canonical_ids": "⿱辟足", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "立", + "龰" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躅", + "codepoint": "U+8E85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E85", + "status": "exact_ids", + "ids": "⿰足蜀", + "canonical_ids": "⿰足蜀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "罒", + "龰" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躆", + "codepoint": "U+8E86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E86", + "status": "exact_ids", + "ids": "⿰足豦", + "canonical_ids": "⿰足豦", + "expanded_ids": "⿰⿱口龰⿱虍豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "虍", + "豕", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躇", + "codepoint": "U+8E87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E87", + "status": "exact_ids", + "ids": "⿰足著", + "canonical_ids": "⿰足著", + "expanded_ids": "⿰⿱口龰⿱艹⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "土", + "日", + "艹", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躈", + "codepoint": "U+8E88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E88", + "status": "exact_ids", + "ids": "⿰足敫", + "canonical_ids": "⿰足敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躉", + "codepoint": "U+8E89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E89", + "status": "exact_ids", + "ids": "⿱萬足", + "canonical_ids": "⿱萬足", + "expanded_ids": "⿱⿱艹⿻田禸⿱口龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "田", + "禸", + "艹", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躊", + "codepoint": "U+8E8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E8A", + "status": "exact_ids", + "ids": "⿰足壽", + "canonical_ids": "⿰足壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躋", + "codepoint": "U+8E8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E8B", + "status": "exact_ids", + "ids": "⿰足齊", + "canonical_ids": "⿰足齊", + "expanded_ids": "⿰⿱口龰齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "齊", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躌", + "codepoint": "U+8E8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E8C", + "status": "exact_ids", + "ids": "⿰足舞", + "canonical_ids": "⿰足舞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "舞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躍", + "codepoint": "U+8E8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E8D", + "status": "exact_ids", + "ids": "⿰足翟", + "canonical_ids": "⿰足翟", + "expanded_ids": "⿰⿱口龰⿱⿰习习隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "口", + "隹", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躎", + "codepoint": "U+8E8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E8E", + "status": "exact_ids", + "ids": "⿰足爾", + "canonical_ids": "⿰足爾", + "expanded_ids": "⿰⿱口龰爾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "爾", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躏", + "codepoint": "U+8E8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E8F", + "status": "exact_ids", + "ids": "⿰足蔺", + "canonical_ids": "⿰足蔺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艹", + "龰" + ], + "unresolved_leaves": [ + "閵" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躐", + "codepoint": "U+8E90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E90", + "status": "exact_ids", + "ids": "⿰足巤", + "canonical_ids": "⿰足巤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "巤" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躑", + "codepoint": "U+8E91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E91", + "status": "exact_ids", + "ids": "⿰足鄭", + "canonical_ids": "⿰足鄭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "口", + "大", + "阝", + "龰" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躒", + "codepoint": "U+8E92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E92", + "status": "exact_ids", + "ids": "⿰足樂", + "canonical_ids": "⿰足樂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "樂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躓", + "codepoint": "U+8E93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E93", + "status": "exact_ids", + "ids": "⿰足質", + "canonical_ids": "⿰足質", + "expanded_ids": "⿰⿱口龰⿱⿰斤斤⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "斤", + "目", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躔", + "codepoint": "U+8E94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E94", + "status": "exact_ids", + "ids": "⿰足廛", + "canonical_ids": "⿰足廛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "广", + "龰" + ], + "unresolved_leaves": [ + "里", + "𡉀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躕", + "codepoint": "U+8E95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E95", + "status": "exact_ids", + "ids": "⿰足廚", + "canonical_ids": "⿰足廚", + "expanded_ids": "⿰⿱口龰⿱广⿰⿱十豆寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "寸", + "广", + "豆", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躖", + "codepoint": "U+8E96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E96", + "status": "exact_ids", + "ids": "⿰足𢇍", + "canonical_ids": "⿰足𢇍", + "expanded_ids": "⿰⿱口龰𢇍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰", + "𢇍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躗", + "codepoint": "U+8E97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E97", + "status": "exact_ids", + "ids": "⿱衞足", + "canonical_ids": "⿱衞足", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "衞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躘", + "codepoint": "U+8E98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E98", + "status": "exact_ids", + "ids": "⿰足龍", + "canonical_ids": "⿰足龍", + "expanded_ids": "⿰⿱口龰龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龍", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躙", + "codepoint": "U+8E99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E99", + "status": "exact_ids", + "ids": "⿰足閵", + "canonical_ids": "⿰足閵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "閵" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躚", + "codepoint": "U+8E9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E9A", + "status": "exact_ids", + "ids": "⿰足遷", + "canonical_ids": "⿰足遷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "遷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躛", + "codepoint": "U+8E9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E9B", + "status": "exact_ids", + "ids": "⿱衞足", + "canonical_ids": "⿱衞足", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "衞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躜", + "codepoint": "U+8E9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E9C", + "status": "exact_ids", + "ids": "⿰足赞", + "canonical_ids": "⿰足赞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "赞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躝", + "codepoint": "U+8E9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E9D", + "status": "exact_ids", + "ids": "⿰足闌", + "canonical_ids": "⿰足闌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躞", + "codepoint": "U+8E9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E9E", + "status": "exact_ids", + "ids": "⿰足燮", + "canonical_ids": "⿰足燮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "燮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躟", + "codepoint": "U+8E9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8E9F", + "status": "exact_ids", + "ids": "⿰足襄", + "canonical_ids": "⿰足襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躠", + "codepoint": "U+8EA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EA0", + "status": "exact_ids", + "ids": "⿱薛足", + "canonical_ids": "⿱薛足", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "薛" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躡", + "codepoint": "U+8EA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EA1", + "status": "exact_ids", + "ids": "⿰足聶", + "canonical_ids": "⿰足聶", + "expanded_ids": "⿰⿱口龰⿱耳⿰耳耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "耳", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 192, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躢", + "codepoint": "U+8EA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EA2", + "status": "exact_ids", + "ids": "⿰足闒", + "canonical_ids": "⿰足闒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "龰" + ], + "unresolved_leaves": [ + "闒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躣", + "codepoint": "U+8EA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EA3", + "status": "exact_ids", + "ids": "⿰足瞿", + "canonical_ids": "⿰足瞿", + "expanded_ids": "⿰⿱口龰⿱⿰目目隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "目", + "隹", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躤", + "codepoint": "U+8EA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EA4", + "status": "exact_ids", + "ids": "⿰足藉", + "canonical_ids": "⿰足藉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "日", + "艹", + "龰" + ], + "unresolved_leaves": [ + "耒", + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躥", + "codepoint": "U+8EA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EA5", + "status": "exact_ids", + "ids": "⿰足竄", + "canonical_ids": "⿰足竄", + "expanded_ids": "⿰⿱口龰⿱⿱宀八鼠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀", + "鼠", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躦", + "codepoint": "U+8EA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EA6", + "status": "exact_ids", + "ids": "⿰足贊", + "canonical_ids": "⿰足贊", + "expanded_ids": "⿰⿱口龰⿱⿰⿱牛儿⿱牛儿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "牛", + "目", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 300, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躧", + "codepoint": "U+8EA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EA7", + "status": "exact_ids", + "ids": "⿰足麗", + "canonical_ids": "⿰足麗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "鹿", + "龰" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躨", + "codepoint": "U+8EA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EA8", + "status": "exact_ids", + "ids": "⿰足夔", + "canonical_ids": "⿰足夔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "口", + "龰" + ], + "unresolved_leaves": [ + "夒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躩", + "codepoint": "U+8EA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EA9", + "status": "exact_ids", + "ids": "⿰足矍", + "canonical_ids": "⿰足矍", + "expanded_ids": "⿰⿱口龰⿱⿰目目⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "口", + "目", + "隹", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躪", + "codepoint": "U+8EAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EAA", + "status": "exact_ids", + "ids": "⿰足藺", + "canonical_ids": "⿰足藺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艹", + "龰" + ], + "unresolved_leaves": [ + "閵" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "身", + "codepoint": "U+8EAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EAB", + "status": "leaf_self_fallback", + "ids": "身", + "canonical_ids": "身", + "expanded_ids": "身", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躬", + "codepoint": "U+8EAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EAC", + "status": "exact_ids", + "ids": "⿰身弓", + "canonical_ids": "⿰身弓", + "expanded_ids": "⿰身弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躭", + "codepoint": "U+8EAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EAD", + "status": "exact_ids", + "ids": "⿰身冘", + "canonical_ids": "⿰身冘", + "expanded_ids": "⿰身⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躮", + "codepoint": "U+8EAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EAE", + "status": "exact_ids", + "ids": "⿰身分", + "canonical_ids": "⿰身分", + "expanded_ids": "⿰身⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躯", + "codepoint": "U+8EAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EAF", + "status": "exact_ids", + "ids": "⿰身区", + "canonical_ids": "⿰身区", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "身" + ], + "unresolved_leaves": [ + "区" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躰", + "codepoint": "U+8EB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EB0", + "status": "exact_ids", + "ids": "⿰身本", + "canonical_ids": "⿰身本", + "expanded_ids": "⿰身⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躱", + "codepoint": "U+8EB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EB1", + "status": "exact_ids", + "ids": "⿰身朶", + "canonical_ids": "⿰身朶", + "expanded_ids": "⿰身⿱乃木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "木", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躲", + "codepoint": "U+8EB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EB2", + "status": "exact_ids", + "ids": "⿰身朵", + "canonical_ids": "⿰身朵", + "expanded_ids": "⿰身⿱几木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "木", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躳", + "codepoint": "U+8EB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EB3", + "status": "exact_ids", + "ids": "⿰身吕", + "canonical_ids": "⿰身吕", + "expanded_ids": "⿰身⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躴", + "codepoint": "U+8EB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EB4", + "status": "exact_ids", + "ids": "⿰身良", + "canonical_ids": "⿰身良", + "expanded_ids": "⿰身⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "艮", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躵", + "codepoint": "U+8EB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EB5", + "status": "exact_ids", + "ids": "⿰身忍", + "canonical_ids": "⿰身忍", + "expanded_ids": "⿰身⿱⿻刀丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "心", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躶", + "codepoint": "U+8EB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EB6", + "status": "exact_ids", + "ids": "⿰身果", + "canonical_ids": "⿰身果", + "expanded_ids": "⿰身⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躷", + "codepoint": "U+8EB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EB7", + "status": "exact_ids", + "ids": "⿰身委", + "canonical_ids": "⿰身委", + "expanded_ids": "⿰身⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "木", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躸", + "codepoint": "U+8EB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EB8", + "status": "exact_ids", + "ids": "⿰身奇", + "canonical_ids": "⿰身奇", + "expanded_ids": "⿰身⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躹", + "codepoint": "U+8EB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EB9", + "status": "exact_ids", + "ids": "⿰身匊", + "canonical_ids": "⿰身匊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "身" + ], + "unresolved_leaves": [ + "匊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躺", + "codepoint": "U+8EBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EBA", + "status": "exact_ids", + "ids": "⿰身尚", + "canonical_ids": "⿰身尚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "身" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躻", + "codepoint": "U+8EBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EBB", + "status": "exact_ids", + "ids": "⿰身空", + "canonical_ids": "⿰身空", + "expanded_ids": "⿰身⿱⿱宀八工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "工", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躼", + "codepoint": "U+8EBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EBC", + "status": "exact_ids", + "ids": "⿰身長", + "canonical_ids": "⿰身長", + "expanded_ids": "⿰身長", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "身", + "長" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躽", + "codepoint": "U+8EBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EBD", + "status": "exact_ids", + "ids": "⿰身匽", + "canonical_ids": "⿰身匽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "身" + ], + "unresolved_leaves": [ + "匽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躾", + "codepoint": "U+8EBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EBE", + "status": "exact_ids", + "ids": "⿰身美", + "canonical_ids": "⿰身美", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "身" + ], + "unresolved_leaves": [ + "美" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "躿", + "codepoint": "U+8EBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EBF", + "status": "exact_ids", + "ids": "⿰身康", + "canonical_ids": "⿰身康", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "身" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軀", + "codepoint": "U+8EC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EC0", + "status": "exact_ids", + "ids": "⿰身區", + "canonical_ids": "⿰身區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "身" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軁", + "codepoint": "U+8EC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EC1", + "status": "exact_ids", + "ids": "⿰身婁", + "canonical_ids": "⿰身婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "身" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軂", + "codepoint": "U+8EC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EC2", + "status": "exact_ids", + "ids": "⿰身勞", + "canonical_ids": "⿰身勞", + "expanded_ids": "⿰身⿳⿰火火冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "火", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軃", + "codepoint": "U+8EC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EC3", + "status": "exact_ids", + "ids": "⿰身單", + "canonical_ids": "⿰身單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "身" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軄", + "codepoint": "U+8EC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EC4", + "status": "exact_ids", + "ids": "⿰身戠", + "canonical_ids": "⿰身戠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "立", + "身" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軅", + "codepoint": "U+8EC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EC5", + "status": "exact_ids", + "ids": "⿰身㕍", + "canonical_ids": "⿰身㕍", + "expanded_ids": "⿰身⿱厂隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "身", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軆", + "codepoint": "U+8EC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EC6", + "status": "exact_ids", + "ids": "⿰身豊", + "canonical_ids": "⿰身豊", + "expanded_ids": "⿰身⿱曲豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "豆", + "身" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軇", + "codepoint": "U+8EC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EC7", + "status": "exact_ids", + "ids": "⿰身壽", + "canonical_ids": "⿰身壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "身" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軈", + "codepoint": "U+8EC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EC8", + "status": "exact_ids", + "ids": "⿰身應", + "canonical_ids": "⿰身應", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "身" + ], + "unresolved_leaves": [ + "應" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軉", + "codepoint": "U+8EC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EC9", + "status": "exact_ids", + "ids": "⿰身寶", + "canonical_ids": "⿰身寶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "身" + ], + "unresolved_leaves": [ + "寶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "車", + "codepoint": "U+8ECA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ECA", + "status": "leaf_self_fallback", + "ids": "車", + "canonical_ids": "車", + "expanded_ids": "車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軋", + "codepoint": "U+8ECB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ECB", + "status": "exact_ids", + "ids": "⿰車乚", + "canonical_ids": "⿰車乚", + "expanded_ids": "⿰車乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軌", + "codepoint": "U+8ECC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ECC", + "status": "exact_ids", + "ids": "⿰車九", + "canonical_ids": "⿰車九", + "expanded_ids": "⿰車九", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軍", + "codepoint": "U+8ECD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ECD", + "status": "exact_ids", + "ids": "⿱冖車", + "canonical_ids": "⿱冖車", + "expanded_ids": "⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軎", + "codepoint": "U+8ECE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ECE", + "status": "exact_ids", + "ids": "⿱車口", + "canonical_ids": "⿱車口", + "expanded_ids": "⿱車口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軏", + "codepoint": "U+8ECF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ECF", + "status": "exact_ids", + "ids": "⿰車兀", + "canonical_ids": "⿰車兀", + "expanded_ids": "⿰車⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軐", + "codepoint": "U+8ED0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ED0", + "status": "exact_ids", + "ids": "⿰車卂", + "canonical_ids": "⿰車卂", + "expanded_ids": "⿰車⿱乁十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乁", + "十", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軑", + "codepoint": "U+8ED1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ED1", + "status": "exact_ids", + "ids": "⿰車大", + "canonical_ids": "⿰車大", + "expanded_ids": "⿰車大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軒", + "codepoint": "U+8ED2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ED2", + "status": "exact_ids", + "ids": "⿰車干", + "canonical_ids": "⿰車干", + "expanded_ids": "⿰車⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軓", + "codepoint": "U+8ED3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ED3", + "status": "exact_ids", + "ids": "⿰車凡", + "canonical_ids": "⿰車凡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軔", + "codepoint": "U+8ED4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ED4", + "status": "exact_ids", + "ids": "⿰車刃", + "canonical_ids": "⿰車刃", + "expanded_ids": "⿰車⿻刀丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軕", + "codepoint": "U+8ED5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ED5", + "status": "exact_ids", + "ids": "⿰車山", + "canonical_ids": "⿰車山", + "expanded_ids": "⿰車山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軖", + "codepoint": "U+8ED6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ED6", + "status": "exact_ids", + "ids": "⿰車王", + "canonical_ids": "⿰車王", + "expanded_ids": "⿰車王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [ + "軠" + ] + }, + { + "character": "軗", + "codepoint": "U+8ED7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ED7", + "status": "exact_ids", + "ids": "⿰車殳", + "canonical_ids": "⿰車殳", + "expanded_ids": "⿰車⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軘", + "codepoint": "U+8ED8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ED8", + "status": "exact_ids", + "ids": "⿰車屯", + "canonical_ids": "⿰車屯", + "expanded_ids": "⿰車屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軙", + "codepoint": "U+8ED9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8ED9", + "status": "exact_ids", + "ids": "⿰車攴", + "canonical_ids": "⿰車攴", + "expanded_ids": "⿰車⿱卜又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "又", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軚", + "codepoint": "U+8EDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EDA", + "status": "exact_ids", + "ids": "⿰車太", + "canonical_ids": "⿰車太", + "expanded_ids": "⿰車⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軛", + "codepoint": "U+8EDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EDB", + "status": "exact_ids", + "ids": "⿰車厄", + "canonical_ids": "⿰車厄", + "expanded_ids": "⿰車⿱厂㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軜", + "codepoint": "U+8EDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EDC", + "status": "exact_ids", + "ids": "⿰車內", + "canonical_ids": "⿰車內", + "expanded_ids": "⿰車⿻冂入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "冂", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軝", + "codepoint": "U+8EDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EDD", + "status": "exact_ids", + "ids": "⿰車氏", + "canonical_ids": "⿰車氏", + "expanded_ids": "⿰車氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氏", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軞", + "codepoint": "U+8EDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EDE", + "status": "exact_ids", + "ids": "⿰車毛", + "canonical_ids": "⿰車毛", + "expanded_ids": "⿰車毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軟", + "codepoint": "U+8EDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EDF", + "status": "exact_ids", + "ids": "⿰車欠", + "canonical_ids": "⿰車欠", + "expanded_ids": "⿰車欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軠", + "codepoint": "U+8EE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EE0", + "status": "exact_ids", + "ids": "⿰車王", + "canonical_ids": "⿰車王", + "expanded_ids": "⿰車王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [ + "軖" + ] + }, + { + "character": "軡", + "codepoint": "U+8EE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EE1", + "status": "exact_ids", + "ids": "⿰車今", + "canonical_ids": "⿰車今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "車" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "転", + "codepoint": "U+8EE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EE2", + "status": "exact_ids", + "ids": "⿰車云", + "canonical_ids": "⿰車云", + "expanded_ids": "⿰車⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軣", + "codepoint": "U+8EE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EE3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軤", + "codepoint": "U+8EE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EE4", + "status": "exact_ids", + "ids": "⿰車乎", + "canonical_ids": "⿰車乎", + "expanded_ids": "⿰車乎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乎", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軥", + "codepoint": "U+8EE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EE5", + "status": "exact_ids", + "ids": "⿰車句", + "canonical_ids": "⿰車句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軦", + "codepoint": "U+8EE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EE6", + "status": "exact_ids", + "ids": "⿰車兄", + "canonical_ids": "⿰車兄", + "expanded_ids": "⿰車⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "口", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軧", + "codepoint": "U+8EE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EE7", + "status": "exact_ids", + "ids": "⿰車氐", + "canonical_ids": "⿰車氐", + "expanded_ids": "⿰車⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氏", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軨", + "codepoint": "U+8EE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EE8", + "status": "exact_ids", + "ids": "⿰車令", + "canonical_ids": "⿰車令", + "expanded_ids": "⿰車⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "車", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軩", + "codepoint": "U+8EE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EE9", + "status": "exact_ids", + "ids": "⿰車台", + "canonical_ids": "⿰車台", + "expanded_ids": "⿰車⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軪", + "codepoint": "U+8EEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EEA", + "status": "exact_ids", + "ids": "⿰車幼", + "canonical_ids": "⿰車幼", + "expanded_ids": "⿰車⿰幺力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "幺", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軫", + "codepoint": "U+8EEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EEB", + "status": "exact_ids", + "ids": "⿰車㐱", + "canonical_ids": "⿰車㐱", + "expanded_ids": "⿰車⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "彡", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軬", + "codepoint": "U+8EEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EEC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軭", + "codepoint": "U+8EED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EED", + "status": "exact_ids", + "ids": "⿰車匡", + "canonical_ids": "⿰車匡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "匡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軮", + "codepoint": "U+8EEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EEE", + "status": "exact_ids", + "ids": "⿰車央", + "canonical_ids": "⿰車央", + "expanded_ids": "⿰車⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軯", + "codepoint": "U+8EEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EEF", + "status": "exact_ids", + "ids": "⿰車平", + "canonical_ids": "⿰車平", + "expanded_ids": "⿰車⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "十", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軰", + "codepoint": "U+8EF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EF0", + "status": "exact_ids", + "ids": "⿱北車", + "canonical_ids": "⿱北車", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軱", + "codepoint": "U+8EF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EF1", + "status": "exact_ids", + "ids": "⿰車瓜", + "canonical_ids": "⿰車瓜", + "expanded_ids": "⿰車瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓜", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軲", + "codepoint": "U+8EF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EF2", + "status": "exact_ids", + "ids": "⿰車古", + "canonical_ids": "⿰車古", + "expanded_ids": "⿰車⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軳", + "codepoint": "U+8EF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EF3", + "status": "exact_ids", + "ids": "⿰車包", + "canonical_ids": "⿰車包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軴", + "codepoint": "U+8EF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EF4", + "status": "exact_ids", + "ids": "⿰車主", + "canonical_ids": "⿰車主", + "expanded_ids": "⿰車⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軵", + "codepoint": "U+8EF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EF5", + "status": "exact_ids", + "ids": "⿰車付", + "canonical_ids": "⿰車付", + "expanded_ids": "⿰車⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軶", + "codepoint": "U+8EF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EF6", + "status": "exact_ids", + "ids": "⿰車戹", + "canonical_ids": "⿰車戹", + "expanded_ids": "⿰車⿱⿻丶尸乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乙", + "尸", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軷", + "codepoint": "U+8EF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EF7", + "status": "exact_ids", + "ids": "⿰車犮", + "canonical_ids": "⿰車犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軸", + "codepoint": "U+8EF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EF8", + "status": "exact_ids", + "ids": "⿰車由", + "canonical_ids": "⿰車由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軹", + "codepoint": "U+8EF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EF9", + "status": "exact_ids", + "ids": "⿰車只", + "canonical_ids": "⿰車只", + "expanded_ids": "⿰車⿱口八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軺", + "codepoint": "U+8EFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EFA", + "status": "exact_ids", + "ids": "⿰車召", + "canonical_ids": "⿰車召", + "expanded_ids": "⿰車⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軻", + "codepoint": "U+8EFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EFB", + "status": "exact_ids", + "ids": "⿰車可", + "canonical_ids": "⿰車可", + "expanded_ids": "⿰車⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軼", + "codepoint": "U+8EFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EFC", + "status": "exact_ids", + "ids": "⿰車失", + "canonical_ids": "⿰車失", + "expanded_ids": "⿰車⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軽", + "codepoint": "U+8EFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EFD", + "status": "exact_ids", + "ids": "⿰車圣", + "canonical_ids": "⿰車圣", + "expanded_ids": "⿰車⿱又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "土", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軾", + "codepoint": "U+8EFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EFE", + "status": "exact_ids", + "ids": "⿰車式", + "canonical_ids": "⿰車式", + "expanded_ids": "⿰車⿱弋工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "弋", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "軿", + "codepoint": "U+8EFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8EFF", + "status": "exact_ids", + "ids": "⿰車并", + "canonical_ids": "⿰車并", + "expanded_ids": "⿰車⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輀", + "codepoint": "U+8F00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F00", + "status": "exact_ids", + "ids": "⿰車而", + "canonical_ids": "⿰車而", + "expanded_ids": "⿰車而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "而", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輁", + "codepoint": "U+8F01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F01", + "status": "exact_ids", + "ids": "⿰車共", + "canonical_ids": "⿰車共", + "expanded_ids": "⿰車⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輂", + "codepoint": "U+8F02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F02", + "status": "exact_ids", + "ids": "⿱共車", + "canonical_ids": "⿱共車", + "expanded_ids": "⿱⿱廿廾車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "較", + "codepoint": "U+8F03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F03", + "status": "exact_ids", + "ids": "⿰車交", + "canonical_ids": "⿰車交", + "expanded_ids": "⿰車⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "父", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輄", + "codepoint": "U+8F04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F04", + "status": "exact_ids", + "ids": "⿰車光", + "canonical_ids": "⿰車光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "車" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輅", + "codepoint": "U+8F05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F05", + "status": "exact_ids", + "ids": "⿰車各", + "canonical_ids": "⿰車各", + "expanded_ids": "⿰車⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輆", + "codepoint": "U+8F06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F06", + "status": "exact_ids", + "ids": "⿰車亥", + "canonical_ids": "⿰車亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輇", + "codepoint": "U+8F07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F07", + "status": "exact_ids", + "ids": "⿰車全", + "canonical_ids": "⿰車全", + "expanded_ids": "⿰車⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "王", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輈", + "codepoint": "U+8F08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F08", + "status": "exact_ids", + "ids": "⿰車舟", + "canonical_ids": "⿰車舟", + "expanded_ids": "⿰車舟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "載", + "codepoint": "U+8F09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F09", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輊", + "codepoint": "U+8F0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F0A", + "status": "exact_ids", + "ids": "⿰車至", + "canonical_ids": "⿰車至", + "expanded_ids": "⿰車⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輋", + "codepoint": "U+8F0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F0B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輌", + "codepoint": "U+8F0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F0C", + "status": "exact_ids", + "ids": "⿰車両", + "canonical_ids": "⿰車両", + "expanded_ids": "⿰車両", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "両", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輍", + "codepoint": "U+8F0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F0D", + "status": "exact_ids", + "ids": "⿰車谷", + "canonical_ids": "⿰車谷", + "expanded_ids": "⿰車⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輎", + "codepoint": "U+8F0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F0E", + "status": "exact_ids", + "ids": "⿰車肖", + "canonical_ids": "⿰車肖", + "expanded_ids": "⿰車⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輏", + "codepoint": "U+8F0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F0F", + "status": "exact_ids", + "ids": "⿰車酉", + "canonical_ids": "⿰車酉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輐", + "codepoint": "U+8F10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F10", + "status": "exact_ids", + "ids": "⿰車完", + "canonical_ids": "⿰車完", + "expanded_ids": "⿰車⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "宀", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輑", + "codepoint": "U+8F11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F11", + "status": "exact_ids", + "ids": "⿰車君", + "canonical_ids": "⿰車君", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "車" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輒", + "codepoint": "U+8F12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F12", + "status": "exact_ids", + "ids": "⿰車耴", + "canonical_ids": "⿰車耴", + "expanded_ids": "⿰車⿰耳乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "耳", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輓", + "codepoint": "U+8F13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F13", + "status": "exact_ids", + "ids": "⿰車免", + "canonical_ids": "⿰車免", + "expanded_ids": "⿰車免", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "免", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輔", + "codepoint": "U+8F14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F14", + "status": "exact_ids", + "ids": "⿰車甫", + "canonical_ids": "⿰車甫", + "expanded_ids": "⿰車甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甫", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輕", + "codepoint": "U+8F15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F15", + "status": "exact_ids", + "ids": "⿰車巠", + "canonical_ids": "⿰車巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輖", + "codepoint": "U+8F16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F16", + "status": "exact_ids", + "ids": "⿰車周", + "canonical_ids": "⿰車周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輗", + "codepoint": "U+8F17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F17", + "status": "exact_ids", + "ids": "⿰車兒", + "canonical_ids": "⿰車兒", + "expanded_ids": "⿰車⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "臼", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輘", + "codepoint": "U+8F18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F18", + "status": "exact_ids", + "ids": "⿰車夌", + "canonical_ids": "⿰車夌", + "expanded_ids": "⿰車⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輙", + "codepoint": "U+8F19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F19", + "status": "exact_ids", + "ids": "⿰車取", + "canonical_ids": "⿰車取", + "expanded_ids": "⿰車⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "耳", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輚", + "codepoint": "U+8F1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F1A", + "status": "exact_ids", + "ids": "⿰車戔", + "canonical_ids": "⿰車戔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輛", + "codepoint": "U+8F1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F1B", + "status": "exact_ids", + "ids": "⿰車兩", + "canonical_ids": "⿰車兩", + "expanded_ids": "⿰車⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輜", + "codepoint": "U+8F1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F1C", + "status": "exact_ids", + "ids": "⿰車甾", + "canonical_ids": "⿰車甾", + "expanded_ids": "⿰車⿱巛田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "田", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "輺" + ] + }, + { + "character": "輝", + "codepoint": "U+8F1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F1D", + "status": "exact_ids", + "ids": "⿰光軍", + "canonical_ids": "⿰光軍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "冖", + "車" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輞", + "codepoint": "U+8F1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F1E", + "status": "exact_ids", + "ids": "⿰車罔", + "canonical_ids": "⿰車罔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "罔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輟", + "codepoint": "U+8F1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F1F", + "status": "exact_ids", + "ids": "⿰車叕", + "canonical_ids": "⿰車叕", + "expanded_ids": "⿰車⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輠", + "codepoint": "U+8F20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F20", + "status": "exact_ids", + "ids": "⿰車果", + "canonical_ids": "⿰車果", + "expanded_ids": "⿰車⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輡", + "codepoint": "U+8F21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F21", + "status": "exact_ids", + "ids": "⿰車臽", + "canonical_ids": "⿰車臽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "臼", + "車" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輢", + "codepoint": "U+8F22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F22", + "status": "exact_ids", + "ids": "⿰車奇", + "canonical_ids": "⿰車奇", + "expanded_ids": "⿰車⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輣", + "codepoint": "U+8F23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F23", + "status": "exact_ids", + "ids": "⿰車朋", + "canonical_ids": "⿰車朋", + "expanded_ids": "⿰車⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輤", + "codepoint": "U+8F24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F24", + "status": "exact_ids", + "ids": "⿰車青", + "canonical_ids": "⿰車青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "車" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輥", + "codepoint": "U+8F25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F25", + "status": "exact_ids", + "ids": "⿰車昆", + "canonical_ids": "⿰車昆", + "expanded_ids": "⿰車⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輦", + "codepoint": "U+8F26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F26", + "status": "exact_ids", + "ids": "⿱⿰夫夫車", + "canonical_ids": "⿱⿰夫夫車", + "expanded_ids": "⿱⿰⿻一大⿻一大車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輧", + "codepoint": "U+8F27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F27", + "status": "exact_ids", + "ids": "⿰車幷", + "canonical_ids": "⿰車幷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "幷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輨", + "codepoint": "U+8F28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F28", + "status": "exact_ids", + "ids": "⿰車官", + "canonical_ids": "⿰車官", + "expanded_ids": "⿰車⿱宀㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "宀", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輩", + "codepoint": "U+8F29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F29", + "status": "exact_ids", + "ids": "⿱非車", + "canonical_ids": "⿱非車", + "expanded_ids": "⿱非車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輪", + "codepoint": "U+8F2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F2A", + "status": "exact_ids", + "ids": "⿰車侖", + "canonical_ids": "⿰車侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "車" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輫", + "codepoint": "U+8F2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F2B", + "status": "exact_ids", + "ids": "⿰車非", + "canonical_ids": "⿰車非", + "expanded_ids": "⿰車非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輬", + "codepoint": "U+8F2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F2C", + "status": "exact_ids", + "ids": "⿰車京", + "canonical_ids": "⿰車京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輭", + "codepoint": "U+8F2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F2D", + "status": "exact_ids", + "ids": "⿰車耎", + "canonical_ids": "⿰車耎", + "expanded_ids": "⿰車⿱而大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "而", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輮", + "codepoint": "U+8F2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F2E", + "status": "exact_ids", + "ids": "⿰車柔", + "canonical_ids": "⿰車柔", + "expanded_ids": "⿰車⿱矛木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "矛", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輯", + "codepoint": "U+8F2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F2F", + "status": "exact_ids", + "ids": "⿰車咠", + "canonical_ids": "⿰車咠", + "expanded_ids": "⿰車⿱口耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "耳", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輰", + "codepoint": "U+8F30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F30", + "status": "exact_ids", + "ids": "⿰車昜", + "canonical_ids": "⿰車昜", + "expanded_ids": "⿰車⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輱", + "codepoint": "U+8F31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F31", + "status": "exact_ids", + "ids": "⿰車咸", + "canonical_ids": "⿰車咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輲", + "codepoint": "U+8F32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F32", + "status": "exact_ids", + "ids": "⿰車耑", + "canonical_ids": "⿰車耑", + "expanded_ids": "⿰車⿱山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "而", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輳", + "codepoint": "U+8F33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F33", + "status": "exact_ids", + "ids": "⿰車奏", + "canonical_ids": "⿰車奏", + "expanded_ids": "⿰車⿱𡗗⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "車", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 154, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輴", + "codepoint": "U+8F34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F34", + "status": "exact_ids", + "ids": "⿰車盾", + "canonical_ids": "⿰車盾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "目", + "車" + ], + "unresolved_leaves": [ + "⺁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輵", + "codepoint": "U+8F35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F35", + "status": "exact_ids", + "ids": "⿰車曷", + "canonical_ids": "⿰車曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "車" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輶", + "codepoint": "U+8F36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F36", + "status": "exact_ids", + "ids": "⿰車酋", + "canonical_ids": "⿰車酋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "車" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輷", + "codepoint": "U+8F37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F37", + "status": "exact_ids", + "ids": "⿰車訇", + "canonical_ids": "⿰車訇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "訇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輸", + "codepoint": "U+8F38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F38", + "status": "exact_ids", + "ids": "⿰車俞", + "canonical_ids": "⿰車俞", + "expanded_ids": "⿰車⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "月", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輹", + "codepoint": "U+8F39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F39", + "status": "exact_ids", + "ids": "⿰車复", + "canonical_ids": "⿰車复", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "复" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輺", + "codepoint": "U+8F3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F3A", + "status": "exact_ids", + "ids": "⿰車甾", + "canonical_ids": "⿰車甾", + "expanded_ids": "⿰車⿱巛田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "田", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "輜" + ] + }, + { + "character": "輻", + "codepoint": "U+8F3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F3B", + "status": "exact_ids", + "ids": "⿰車畐", + "canonical_ids": "⿰車畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輼", + "codepoint": "U+8F3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F3C", + "status": "exact_ids", + "ids": "⿰車昷", + "canonical_ids": "⿰車昷", + "expanded_ids": "⿰車⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "皿", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輽", + "codepoint": "U+8F3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F3D", + "status": "exact_ids", + "ids": "⿰車畚", + "canonical_ids": "⿰車畚", + "expanded_ids": "⿰車⿱厶⿱大田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "大", + "田", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輾", + "codepoint": "U+8F3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F3E", + "status": "exact_ids", + "ids": "⿰車展", + "canonical_ids": "⿰車展", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "展" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "輿", + "codepoint": "U+8F3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F3F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轀", + "codepoint": "U+8F40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F40", + "status": "exact_ids", + "ids": "⿰車𥁕", + "canonical_ids": "⿰車𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "車" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轁", + "codepoint": "U+8F41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F41", + "status": "exact_ids", + "ids": "⿰車舀", + "canonical_ids": "⿰車舀", + "expanded_ids": "⿰車⿱爫臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爫", + "臼", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轂", + "codepoint": "U+8F42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F42", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轃", + "codepoint": "U+8F43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F43", + "status": "exact_ids", + "ids": "⿰車秦", + "canonical_ids": "⿰車秦", + "expanded_ids": "⿰車⿱𡗗⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "車", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 154, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轄", + "codepoint": "U+8F44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F44", + "status": "exact_ids", + "ids": "⿰車害", + "canonical_ids": "⿰車害", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "害" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轅", + "codepoint": "U+8F45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F45", + "status": "exact_ids", + "ids": "⿰車袁", + "canonical_ids": "⿰車袁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "袁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轆", + "codepoint": "U+8F46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F46", + "status": "exact_ids", + "ids": "⿰車鹿", + "canonical_ids": "⿰車鹿", + "expanded_ids": "⿰車鹿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轇", + "codepoint": "U+8F47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F47", + "status": "exact_ids", + "ids": "⿰車翏", + "canonical_ids": "⿰車翏", + "expanded_ids": "⿰車⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轈", + "codepoint": "U+8F48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F48", + "status": "exact_ids", + "ids": "⿰車巢", + "canonical_ids": "⿰車巢", + "expanded_ids": "⿰車⿱巛⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "木", + "田", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轉", + "codepoint": "U+8F49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F49", + "status": "exact_ids", + "ids": "⿰車專", + "canonical_ids": "⿰車專", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "寸", + "車" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轊", + "codepoint": "U+8F4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F4A", + "status": "exact_ids", + "ids": "⿰車彗", + "canonical_ids": "⿰車彗", + "expanded_ids": "⿰車⿱⿰丰丰彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "彐", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轋", + "codepoint": "U+8F4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F4B", + "status": "exact_ids", + "ids": "⿰車連", + "canonical_ids": "⿰車連", + "expanded_ids": "⿰車⿰辶車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轌", + "codepoint": "U+8F4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F4C", + "status": "exact_ids", + "ids": "⿰車雪", + "canonical_ids": "⿰車雪", + "expanded_ids": "⿰車⿱雨彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "車", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轍", + "codepoint": "U+8F4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F4D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轎", + "codepoint": "U+8F4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F4E", + "status": "exact_ids", + "ids": "⿰車喬", + "canonical_ids": "⿰車喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "車" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轏", + "codepoint": "U+8F4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F4F", + "status": "exact_ids", + "ids": "⿰車孱", + "canonical_ids": "⿰車孱", + "expanded_ids": "⿰車⿱尸⿱子⿰子子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "尸", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轐", + "codepoint": "U+8F50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F50", + "status": "exact_ids", + "ids": "⿰車菐", + "canonical_ids": "⿰車菐", + "expanded_ids": "⿰車⿱业⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "儿", + "羊", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轑", + "codepoint": "U+8F51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F51", + "status": "exact_ids", + "ids": "⿰車尞", + "canonical_ids": "⿰車尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "車" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轒", + "codepoint": "U+8F52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F52", + "status": "exact_ids", + "ids": "⿰車賁", + "canonical_ids": "⿰車賁", + "expanded_ids": "⿰車⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "廾", + "目", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轓", + "codepoint": "U+8F53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F53", + "status": "exact_ids", + "ids": "⿰車番", + "canonical_ids": "⿰車番", + "expanded_ids": "⿰車⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "木", + "田", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轔", + "codepoint": "U+8F54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F54", + "status": "exact_ids", + "ids": "⿰車粦", + "canonical_ids": "⿰車粦", + "expanded_ids": "⿰車⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "木", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轕", + "codepoint": "U+8F55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F55", + "status": "exact_ids", + "ids": "⿰車葛", + "canonical_ids": "⿰車葛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "艹", + "車" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轖", + "codepoint": "U+8F56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F56", + "status": "exact_ids", + "ids": "⿰車嗇", + "canonical_ids": "⿰車嗇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "車" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轗", + "codepoint": "U+8F57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F57", + "status": "exact_ids", + "ids": "⿰車感", + "canonical_ids": "⿰車感", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "車" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轘", + "codepoint": "U+8F58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F58", + "status": "exact_ids", + "ids": "⿰車睘", + "canonical_ids": "⿰車睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轙", + "codepoint": "U+8F59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F59", + "status": "exact_ids", + "ids": "⿰車義", + "canonical_ids": "⿰車義", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "義" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轚", + "codepoint": "U+8F5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F5A", + "status": "exact_ids", + "ids": "⿱𣪠車", + "canonical_ids": "⿱𣪠車", + "expanded_ids": "⿱⿰⿱車凵⿱几又車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "凵", + "又", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轛", + "codepoint": "U+8F5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F5B", + "status": "exact_ids", + "ids": "⿰車對", + "canonical_ids": "⿰車對", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "寸", + "車" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轜", + "codepoint": "U+8F5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F5C", + "status": "exact_ids", + "ids": "⿰車需", + "canonical_ids": "⿰車需", + "expanded_ids": "⿰車⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "而", + "車", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轝", + "codepoint": "U+8F5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F5D", + "status": "exact_ids", + "ids": "⿱與車", + "canonical_ids": "⿱與車", + "expanded_ids": "⿱與車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "與", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轞", + "codepoint": "U+8F5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F5E", + "status": "exact_ids", + "ids": "⿰車監", + "canonical_ids": "⿰車監", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轟", + "codepoint": "U+8F5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F5F", + "status": "exact_ids", + "ids": "⿱車⿰車車", + "canonical_ids": "⿱車⿰車車", + "expanded_ids": "⿱車⿰車車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轠", + "codepoint": "U+8F60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F60", + "status": "exact_ids", + "ids": "⿰車畾", + "canonical_ids": "⿰車畾", + "expanded_ids": "⿰車⿱田⿰田田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轡", + "codepoint": "U+8F61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F61", + "status": "exact_ids", + "ids": "⿱𦆕口", + "canonical_ids": "⿱𦆕口", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "𦆕" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轢", + "codepoint": "U+8F62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F62", + "status": "exact_ids", + "ids": "⿰車樂", + "canonical_ids": "⿰車樂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車" + ], + "unresolved_leaves": [ + "樂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轣", + "codepoint": "U+8F63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F63", + "status": "exact_ids", + "ids": "⿰車歷", + "canonical_ids": "⿰車歷", + "expanded_ids": "⿰車⿱⿱厂⿰⿻丿木⿻丿木止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厂", + "木", + "止", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轤", + "codepoint": "U+8F64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F64", + "status": "exact_ids", + "ids": "⿰車盧", + "canonical_ids": "⿰車盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "車" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轥", + "codepoint": "U+8F65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F65", + "status": "exact_ids", + "ids": "⿰車藺", + "canonical_ids": "⿰車藺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "車" + ], + "unresolved_leaves": [ + "閵" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "车", + "codepoint": "U+8F66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F66", + "status": "leaf_self_fallback", + "ids": "车", + "canonical_ids": "车", + "expanded_ids": "车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轧", + "codepoint": "U+8F67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F67", + "status": "exact_ids", + "ids": "⿰车乚", + "canonical_ids": "⿰车乚", + "expanded_ids": "⿰车乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轨", + "codepoint": "U+8F68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F68", + "status": "exact_ids", + "ids": "⿰车九", + "canonical_ids": "⿰车九", + "expanded_ids": "⿰车九", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轩", + "codepoint": "U+8F69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F69", + "status": "exact_ids", + "ids": "⿰车干", + "canonical_ids": "⿰车干", + "expanded_ids": "⿰车⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轪", + "codepoint": "U+8F6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F6A", + "status": "exact_ids", + "ids": "⿰车大", + "canonical_ids": "⿰车大", + "expanded_ids": "⿰车大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轫", + "codepoint": "U+8F6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F6B", + "status": "exact_ids", + "ids": "⿰车刃", + "canonical_ids": "⿰车刃", + "expanded_ids": "⿰车⿻刀丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "转", + "codepoint": "U+8F6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F6C", + "status": "exact_ids", + "ids": "⿰车专", + "canonical_ids": "⿰车专", + "expanded_ids": "⿰车专", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "专", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轭", + "codepoint": "U+8F6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F6D", + "status": "exact_ids", + "ids": "⿰车厄", + "canonical_ids": "⿰车厄", + "expanded_ids": "⿰车⿱厂㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轮", + "codepoint": "U+8F6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F6E", + "status": "exact_ids", + "ids": "⿰车仑", + "canonical_ids": "⿰车仑", + "expanded_ids": "⿰车⿱人匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "匕", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "软", + "codepoint": "U+8F6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F6F", + "status": "exact_ids", + "ids": "⿰车欠", + "canonical_ids": "⿰车欠", + "expanded_ids": "⿰车欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轰", + "codepoint": "U+8F70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F70", + "status": "exact_ids", + "ids": "⿱车双", + "canonical_ids": "⿱车双", + "expanded_ids": "⿱车⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轱", + "codepoint": "U+8F71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F71", + "status": "exact_ids", + "ids": "⿰车古", + "canonical_ids": "⿰车古", + "expanded_ids": "⿰车⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轲", + "codepoint": "U+8F72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F72", + "status": "exact_ids", + "ids": "⿰车可", + "canonical_ids": "⿰车可", + "expanded_ids": "⿰车⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轳", + "codepoint": "U+8F73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F73", + "status": "exact_ids", + "ids": "⿰车卢", + "canonical_ids": "⿰车卢", + "expanded_ids": "⿰车⿱卜尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "尸", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轴", + "codepoint": "U+8F74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F74", + "status": "exact_ids", + "ids": "⿰车由", + "canonical_ids": "⿰车由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "车" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轵", + "codepoint": "U+8F75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F75", + "status": "exact_ids", + "ids": "⿰车只", + "canonical_ids": "⿰车只", + "expanded_ids": "⿰车⿱口八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轶", + "codepoint": "U+8F76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F76", + "status": "exact_ids", + "ids": "⿰车失", + "canonical_ids": "⿰车失", + "expanded_ids": "⿰车⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轷", + "codepoint": "U+8F77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F77", + "status": "exact_ids", + "ids": "⿰车乎", + "canonical_ids": "⿰车乎", + "expanded_ids": "⿰车乎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乎", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轸", + "codepoint": "U+8F78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F78", + "status": "exact_ids", + "ids": "⿰车㐱", + "canonical_ids": "⿰车㐱", + "expanded_ids": "⿰车⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "彡", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轹", + "codepoint": "U+8F79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F79", + "status": "exact_ids", + "ids": "⿰车乐", + "canonical_ids": "⿰车乐", + "expanded_ids": "⿰车乐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乐", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轺", + "codepoint": "U+8F7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F7A", + "status": "exact_ids", + "ids": "⿰车召", + "canonical_ids": "⿰车召", + "expanded_ids": "⿰车⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轻", + "codepoint": "U+8F7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F7B", + "status": "exact_ids", + "ids": "⿰车𢀖", + "canonical_ids": "⿰车𢀖", + "expanded_ids": "⿰车⿱又工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "工", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轼", + "codepoint": "U+8F7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F7C", + "status": "exact_ids", + "ids": "⿰车式", + "canonical_ids": "⿰车式", + "expanded_ids": "⿰车⿱弋工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "弋", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "载", + "codepoint": "U+8F7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F7D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轾", + "codepoint": "U+8F7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F7E", + "status": "exact_ids", + "ids": "⿰车至", + "canonical_ids": "⿰车至", + "expanded_ids": "⿰车⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "轿", + "codepoint": "U+8F7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F7F", + "status": "exact_ids", + "ids": "⿰车乔", + "canonical_ids": "⿰车乔", + "expanded_ids": "⿰车⿱丿⿱大儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "大", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辀", + "codepoint": "U+8F80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F80", + "status": "exact_ids", + "ids": "⿰车舟", + "canonical_ids": "⿰车舟", + "expanded_ids": "⿰车舟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辁", + "codepoint": "U+8F81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F81", + "status": "exact_ids", + "ids": "⿰车全", + "canonical_ids": "⿰车全", + "expanded_ids": "⿰车⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "王", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辂", + "codepoint": "U+8F82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F82", + "status": "exact_ids", + "ids": "⿰车各", + "canonical_ids": "⿰车各", + "expanded_ids": "⿰车⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "较", + "codepoint": "U+8F83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F83", + "status": "exact_ids", + "ids": "⿰车交", + "canonical_ids": "⿰车交", + "expanded_ids": "⿰车⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "父", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辄", + "codepoint": "U+8F84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F84", + "status": "exact_ids", + "ids": "⿰车耴", + "canonical_ids": "⿰车耴", + "expanded_ids": "⿰车⿰耳乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "耳", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辅", + "codepoint": "U+8F85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F85", + "status": "exact_ids", + "ids": "⿰车甫", + "canonical_ids": "⿰车甫", + "expanded_ids": "⿰车甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甫", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辆", + "codepoint": "U+8F86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F86", + "status": "exact_ids", + "ids": "⿰车两", + "canonical_ids": "⿰车两", + "expanded_ids": "⿰车两", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "两", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辇", + "codepoint": "U+8F87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F87", + "status": "exact_ids", + "ids": "⿱⿰夫夫车", + "canonical_ids": "⿱⿰夫夫车", + "expanded_ids": "⿱⿰⿻一大⿻一大车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辈", + "codepoint": "U+8F88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F88", + "status": "exact_ids", + "ids": "⿱非车", + "canonical_ids": "⿱非车", + "expanded_ids": "⿱非车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "车", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辉", + "codepoint": "U+8F89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F89", + "status": "exact_ids", + "ids": "⿰光军", + "canonical_ids": "⿰光军", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "冖", + "车" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辊", + "codepoint": "U+8F8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F8A", + "status": "exact_ids", + "ids": "⿰车昆", + "canonical_ids": "⿰车昆", + "expanded_ids": "⿰车⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辋", + "codepoint": "U+8F8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F8B", + "status": "exact_ids", + "ids": "⿰车罔", + "canonical_ids": "⿰车罔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "车" + ], + "unresolved_leaves": [ + "罔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辌", + "codepoint": "U+8F8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F8C", + "status": "exact_ids", + "ids": "⿰车京", + "canonical_ids": "⿰车京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "车" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辍", + "codepoint": "U+8F8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F8D", + "status": "exact_ids", + "ids": "⿰车叕", + "canonical_ids": "⿰车叕", + "expanded_ids": "⿰车⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辎", + "codepoint": "U+8F8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F8E", + "status": "exact_ids", + "ids": "⿰车甾", + "canonical_ids": "⿰车甾", + "expanded_ids": "⿰车⿱巛田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "田", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辏", + "codepoint": "U+8F8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F8F", + "status": "exact_ids", + "ids": "⿰车奏", + "canonical_ids": "⿰车奏", + "expanded_ids": "⿰车⿱𡗗⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "车", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 154, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辐", + "codepoint": "U+8F90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F90", + "status": "exact_ids", + "ids": "⿰车畐", + "canonical_ids": "⿰车畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "车" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辑", + "codepoint": "U+8F91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F91", + "status": "exact_ids", + "ids": "⿰车咠", + "canonical_ids": "⿰车咠", + "expanded_ids": "⿰车⿱口耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "耳", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辒", + "codepoint": "U+8F92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F92", + "status": "exact_ids", + "ids": "⿰车昷", + "canonical_ids": "⿰车昷", + "expanded_ids": "⿰车⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "皿", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "输", + "codepoint": "U+8F93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F93", + "status": "exact_ids", + "ids": "⿰车俞", + "canonical_ids": "⿰车俞", + "expanded_ids": "⿰车⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "月", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辔", + "codepoint": "U+8F94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F94", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辕", + "codepoint": "U+8F95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F95", + "status": "exact_ids", + "ids": "⿰车袁", + "canonical_ids": "⿰车袁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "车" + ], + "unresolved_leaves": [ + "袁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辖", + "codepoint": "U+8F96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F96", + "status": "exact_ids", + "ids": "⿰车害", + "canonical_ids": "⿰车害", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "车" + ], + "unresolved_leaves": [ + "害" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辗", + "codepoint": "U+8F97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F97", + "status": "exact_ids", + "ids": "⿰车展", + "canonical_ids": "⿰车展", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "车" + ], + "unresolved_leaves": [ + "展" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辘", + "codepoint": "U+8F98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F98", + "status": "exact_ids", + "ids": "⿰车鹿", + "canonical_ids": "⿰车鹿", + "expanded_ids": "⿰车鹿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "车", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辙", + "codepoint": "U+8F99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F99", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辚", + "codepoint": "U+8F9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F9A", + "status": "exact_ids", + "ids": "⿰车粦", + "canonical_ids": "⿰车粦", + "expanded_ids": "⿰车⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "木", + "车" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辛", + "codepoint": "U+8F9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F9B", + "status": "exact_ids", + "ids": "⿱立十", + "canonical_ids": "⿱立十", + "expanded_ids": "⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辜", + "codepoint": "U+8F9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F9C", + "status": "exact_ids", + "ids": "⿱古辛", + "canonical_ids": "⿱古辛", + "expanded_ids": "⿱⿻十口⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辝", + "codepoint": "U+8F9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F9D", + "status": "exact_ids", + "ids": "⿰台辛", + "canonical_ids": "⿰台辛", + "expanded_ids": "⿰⿱厶口⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "厶", + "口", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辞", + "codepoint": "U+8F9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F9E", + "status": "exact_ids", + "ids": "⿰舌辛", + "canonical_ids": "⿰舌辛", + "expanded_ids": "⿰⿱⿱丿十口⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辟", + "codepoint": "U+8F9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8F9F", + "status": "exact_ids", + "ids": "⿰𡰪辛", + "canonical_ids": "⿰𡰪辛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辠", + "codepoint": "U+8FA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FA0", + "status": "exact_ids", + "ids": "⿱自辛", + "canonical_ids": "⿱自辛", + "expanded_ids": "⿱⿻目丶⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "十", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辡", + "codepoint": "U+8FA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FA1", + "status": "exact_ids", + "ids": "⿰辛辛", + "canonical_ids": "⿰辛辛", + "expanded_ids": "⿰⿱立十⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辢", + "codepoint": "U+8FA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FA2", + "status": "exact_ids", + "ids": "⿰束辛", + "canonical_ids": "⿰束辛", + "expanded_ids": "⿰⿻木口⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "木", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辣", + "codepoint": "U+8FA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FA3", + "status": "exact_ids", + "ids": "⿰辛束", + "canonical_ids": "⿰辛束", + "expanded_ids": "⿰⿱立十⿻木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "木", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辤", + "codepoint": "U+8FA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FA4", + "status": "exact_ids", + "ids": "⿰受辛", + "canonical_ids": "⿰受辛", + "expanded_ids": "⿰⿳爫冖又⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "又", + "爫", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辥", + "codepoint": "U+8FA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FA5", + "status": "exact_ids", + "ids": "⿰𡴎辛", + "canonical_ids": "⿰𡴎辛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立" + ], + "unresolved_leaves": [ + "𡴎" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辦", + "codepoint": "U+8FA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FA6", + "status": "exact_ids", + "ids": "⿲辡力辡", + "canonical_ids": "⿲辡力辡", + "expanded_ids": "⿲⿰⿱立十⿱立十力⿰⿱立十⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "十", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 327, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辧", + "codepoint": "U+8FA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FA7", + "status": "exact_ids", + "ids": "⿲辡刀辡", + "canonical_ids": "⿲辡刀辡", + "expanded_ids": "⿲⿰⿱立十⿱立十刀⿰⿱立十⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "十", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 327, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辨", + "codepoint": "U+8FA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FA8", + "status": "exact_ids", + "ids": "⿲辛刂辛", + "canonical_ids": "⿲辛刂辛", + "expanded_ids": "⿲⿱立十刂⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "十", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 175, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辩", + "codepoint": "U+8FA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FA9", + "status": "exact_ids", + "ids": "⿲辡讠辡", + "canonical_ids": "⿲辡讠辡", + "expanded_ids": "⿲⿰⿱立十⿱立十讠⿰⿱立十⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立", + "讠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 329, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辪", + "codepoint": "U+8FAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FAA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辫", + "codepoint": "U+8FAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FAB", + "status": "exact_ids", + "ids": "⿲辡纟辡", + "canonical_ids": "⿲辡纟辡", + "expanded_ids": "⿲⿰⿱立十⿱立十纟⿰⿱立十⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立", + "纟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 327, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辬", + "codepoint": "U+8FAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FAC", + "status": "exact_ids", + "ids": "⿲辡文辡", + "canonical_ids": "⿲辡文辡", + "expanded_ids": "⿲⿰⿱立十⿱立十文⿰⿱立十⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "文", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 327, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辭", + "codepoint": "U+8FAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FAD", + "status": "exact_ids", + "ids": "⿰𤔔辛", + "canonical_ids": "⿰𤔔辛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立" + ], + "unresolved_leaves": [ + "𤔔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辮", + "codepoint": "U+8FAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FAE", + "status": "exact_ids", + "ids": "⿲辡糸辡", + "canonical_ids": "⿲辡糸辡", + "expanded_ids": "⿲⿰⿱立十⿱立十⿱幺小⿰⿱立十⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "小", + "幺", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 365, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辯", + "codepoint": "U+8FAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FAF", + "status": "exact_ids", + "ids": "⿲辡言辡", + "canonical_ids": "⿲辡言辡", + "expanded_ids": "⿲⿰⿱立十⿱立十言⿰⿱立十⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立", + "言" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 329, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辰", + "codepoint": "U+8FB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FB0", + "status": "leaf_self_fallback", + "ids": "辰", + "canonical_ids": "辰", + "expanded_ids": "辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辱", + "codepoint": "U+8FB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FB1", + "status": "exact_ids", + "ids": "⿱辰寸", + "canonical_ids": "⿱辰寸", + "expanded_ids": "⿱辰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "農", + "codepoint": "U+8FB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FB2", + "status": "exact_ids", + "ids": "⿱曲辰", + "canonical_ids": "⿱曲辰", + "expanded_ids": "⿱曲辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辳", + "codepoint": "U+8FB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FB3", + "status": "exact_ids", + "ids": "⿱⿰木木辰", + "canonical_ids": "⿱⿰木木辰", + "expanded_ids": "⿱⿰木木辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辴", + "codepoint": "U+8FB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FB4", + "status": "exact_ids", + "ids": "⿰單辰", + "canonical_ids": "⿰單辰", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辰" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辵", + "codepoint": "U+8FB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FB5", + "status": "exact_ids", + "ids": "⿱彡止", + "canonical_ids": "⿱彡止", + "expanded_ids": "⿱彡止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辶", + "codepoint": "U+8FB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FB6", + "status": "leaf_self_fallback", + "ids": "辶", + "canonical_ids": "辶", + "expanded_ids": "辶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辷", + "codepoint": "U+8FB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FB7", + "status": "exact_ids", + "ids": "⿰辶一", + "canonical_ids": "⿰辶一", + "expanded_ids": "⿰辶一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辸", + "codepoint": "U+8FB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FB8", + "status": "exact_ids", + "ids": "⿰辶乃", + "canonical_ids": "⿰辶乃", + "expanded_ids": "⿰辶乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "边", + "codepoint": "U+8FB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FB9", + "status": "exact_ids", + "ids": "⿰辶力", + "canonical_ids": "⿰辶力", + "expanded_ids": "⿰辶力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辺", + "codepoint": "U+8FBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FBA", + "status": "exact_ids", + "ids": "⿰辶刀", + "canonical_ids": "⿰辶刀", + "expanded_ids": "⿰辶刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辻", + "codepoint": "U+8FBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FBB", + "status": "exact_ids", + "ids": "⿰辶十", + "canonical_ids": "⿰辶十", + "expanded_ids": "⿰辶十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "込", + "codepoint": "U+8FBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FBC", + "status": "exact_ids", + "ids": "⿰辶入", + "canonical_ids": "⿰辶入", + "expanded_ids": "⿰辶入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辽", + "codepoint": "U+8FBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FBD", + "status": "exact_ids", + "ids": "⿰辶了", + "canonical_ids": "⿰辶了", + "expanded_ids": "⿰辶了", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "了", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "达", + "codepoint": "U+8FBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FBE", + "status": "exact_ids", + "ids": "⿰辶大", + "canonical_ids": "⿰辶大", + "expanded_ids": "⿰辶大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "辿", + "codepoint": "U+8FBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FBF", + "status": "exact_ids", + "ids": "⿰辶山", + "canonical_ids": "⿰辶山", + "expanded_ids": "⿰辶山", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迀", + "codepoint": "U+8FC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FC0", + "status": "exact_ids", + "ids": "⿰辶干", + "canonical_ids": "⿰辶干", + "expanded_ids": "⿰辶⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迁", + "codepoint": "U+8FC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FC1", + "status": "exact_ids", + "ids": "⿰辶千", + "canonical_ids": "⿰辶千", + "expanded_ids": "⿰辶⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迂", + "codepoint": "U+8FC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FC2", + "status": "exact_ids", + "ids": "⿰辶于", + "canonical_ids": "⿰辶于", + "expanded_ids": "⿰辶⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迃", + "codepoint": "U+8FC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FC3", + "status": "exact_ids", + "ids": "⿰辶亏", + "canonical_ids": "⿰辶亏", + "expanded_ids": "⿰辶⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迄", + "codepoint": "U+8FC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FC4", + "status": "exact_ids", + "ids": "⿰辶乞", + "canonical_ids": "⿰辶乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迅", + "codepoint": "U+8FC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FC5", + "status": "exact_ids", + "ids": "⿰辶卂", + "canonical_ids": "⿰辶卂", + "expanded_ids": "⿰辶⿱乁十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乁", + "十", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迆", + "codepoint": "U+8FC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FC6", + "status": "exact_ids", + "ids": "⿰辶也", + "canonical_ids": "⿰辶也", + "expanded_ids": "⿰辶⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "过", + "codepoint": "U+8FC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FC7", + "status": "exact_ids", + "ids": "⿰辶寸", + "canonical_ids": "⿰辶寸", + "expanded_ids": "⿰辶寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迈", + "codepoint": "U+8FC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FC8", + "status": "exact_ids", + "ids": "⿰辶万", + "canonical_ids": "⿰辶万", + "expanded_ids": "⿰辶万", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "万", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迉", + "codepoint": "U+8FC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FC9", + "status": "exact_ids", + "ids": "⿰辶尸", + "canonical_ids": "⿰辶尸", + "expanded_ids": "⿰辶尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迊", + "codepoint": "U+8FCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FCA", + "status": "exact_ids", + "ids": "⿰辶帀", + "canonical_ids": "⿰辶帀", + "expanded_ids": "⿰辶⿱一⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迋", + "codepoint": "U+8FCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FCB", + "status": "exact_ids", + "ids": "⿰辶王", + "canonical_ids": "⿰辶王", + "expanded_ids": "⿰辶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迌", + "codepoint": "U+8FCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FCC", + "status": "exact_ids", + "ids": "⿰辶月", + "canonical_ids": "⿰辶月", + "expanded_ids": "⿰辶月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迍", + "codepoint": "U+8FCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FCD", + "status": "exact_ids", + "ids": "⿰辶屯", + "canonical_ids": "⿰辶屯", + "expanded_ids": "⿰辶屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迎", + "codepoint": "U+8FCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FCE", + "status": "exact_ids", + "ids": "⿰辶卬", + "canonical_ids": "⿰辶卬", + "expanded_ids": "⿰辶⿰匚卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匚", + "卩", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迏", + "codepoint": "U+8FCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FCF", + "status": "exact_ids", + "ids": "⿰辶太", + "canonical_ids": "⿰辶太", + "expanded_ids": "⿰辶⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "迖" + ] + }, + { + "character": "运", + "codepoint": "U+8FD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FD0", + "status": "exact_ids", + "ids": "⿰辶云", + "canonical_ids": "⿰辶云", + "expanded_ids": "⿰辶⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "近", + "codepoint": "U+8FD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FD1", + "status": "exact_ids", + "ids": "⿰辶斤", + "canonical_ids": "⿰辶斤", + "expanded_ids": "⿰辶斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迒", + "codepoint": "U+8FD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FD2", + "status": "exact_ids", + "ids": "⿰辶亢", + "canonical_ids": "⿰辶亢", + "expanded_ids": "⿰辶⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迓", + "codepoint": "U+8FD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FD3", + "status": "exact_ids", + "ids": "⿰辶牙", + "canonical_ids": "⿰辶牙", + "expanded_ids": "⿰辶牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "返", + "codepoint": "U+8FD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FD4", + "status": "exact_ids", + "ids": "⿰辶反", + "canonical_ids": "⿰辶反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迕", + "codepoint": "U+8FD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FD5", + "status": "exact_ids", + "ids": "⿰辶午", + "canonical_ids": "⿰辶午", + "expanded_ids": "⿰辶⿱⿻丿一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "十", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迖", + "codepoint": "U+8FD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FD6", + "status": "exact_ids", + "ids": "⿰辶犬", + "canonical_ids": "⿰辶犬", + "expanded_ids": "⿰辶⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "迏" + ] + }, + { + "character": "迗", + "codepoint": "U+8FD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FD7", + "status": "exact_ids", + "ids": "⿰辶天", + "canonical_ids": "⿰辶天", + "expanded_ids": "⿰辶⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "还", + "codepoint": "U+8FD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FD8", + "status": "exact_ids", + "ids": "⿰辶不", + "canonical_ids": "⿰辶不", + "expanded_ids": "⿰辶不", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "这", + "codepoint": "U+8FD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FD9", + "status": "exact_ids", + "ids": "⿰辶文", + "canonical_ids": "⿰辶文", + "expanded_ids": "⿰辶文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迚", + "codepoint": "U+8FDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FDA", + "status": "exact_ids", + "ids": "⿰辶中", + "canonical_ids": "⿰辶中", + "expanded_ids": "⿰辶⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "进", + "codepoint": "U+8FDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FDB", + "status": "exact_ids", + "ids": "⿰辶井", + "canonical_ids": "⿰辶井", + "expanded_ids": "⿰辶井", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "井", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "远", + "codepoint": "U+8FDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FDC", + "status": "exact_ids", + "ids": "⿰辶元", + "canonical_ids": "⿰辶元", + "expanded_ids": "⿰辶⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "违", + "codepoint": "U+8FDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FDD", + "status": "exact_ids", + "ids": "⿰辶韦", + "canonical_ids": "⿰辶韦", + "expanded_ids": "⿰辶韦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶", + "韦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "连", + "codepoint": "U+8FDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FDE", + "status": "exact_ids", + "ids": "⿰辶车", + "canonical_ids": "⿰辶车", + "expanded_ids": "⿰辶车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "车", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迟", + "codepoint": "U+8FDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FDF", + "status": "exact_ids", + "ids": "⿰辶尺", + "canonical_ids": "⿰辶尺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "辶" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迠", + "codepoint": "U+8FE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FE0", + "status": "exact_ids", + "ids": "⿰辶占", + "canonical_ids": "⿰辶占", + "expanded_ids": "⿰辶⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迡", + "codepoint": "U+8FE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FE1", + "status": "exact_ids", + "ids": "⿰辶尼", + "canonical_ids": "⿰辶尼", + "expanded_ids": "⿰辶⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "尸", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迢", + "codepoint": "U+8FE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FE2", + "status": "exact_ids", + "ids": "⿰辶召", + "canonical_ids": "⿰辶召", + "expanded_ids": "⿰辶⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迣", + "codepoint": "U+8FE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FE3", + "status": "exact_ids", + "ids": "⿰辶世", + "canonical_ids": "⿰辶世", + "expanded_ids": "⿰辶世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迤", + "codepoint": "U+8FE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FE4", + "status": "exact_ids", + "ids": "⿰辶㐌", + "canonical_ids": "⿰辶㐌", + "expanded_ids": "⿰辶⿱⿻丿一⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丿", + "乜", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迥", + "codepoint": "U+8FE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FE5", + "status": "exact_ids", + "ids": "⿰辶冋", + "canonical_ids": "⿰辶冋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迦", + "codepoint": "U+8FE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FE6", + "status": "exact_ids", + "ids": "⿰辶加", + "canonical_ids": "⿰辶加", + "expanded_ids": "⿰辶⿰力口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迧", + "codepoint": "U+8FE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FE7", + "status": "exact_ids", + "ids": "⿰辶申", + "canonical_ids": "⿰辶申", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迨", + "codepoint": "U+8FE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FE8", + "status": "exact_ids", + "ids": "⿰辶台", + "canonical_ids": "⿰辶台", + "expanded_ids": "⿰辶⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迩", + "codepoint": "U+8FE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FE9", + "status": "exact_ids", + "ids": "⿰辶尔", + "canonical_ids": "⿰辶尔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "辶" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迪", + "codepoint": "U+8FEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FEA", + "status": "exact_ids", + "ids": "⿰辶由", + "canonical_ids": "⿰辶由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迫", + "codepoint": "U+8FEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FEB", + "status": "exact_ids", + "ids": "⿰辶白", + "canonical_ids": "⿰辶白", + "expanded_ids": "⿰辶⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迬", + "codepoint": "U+8FEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FEC", + "status": "exact_ids", + "ids": "⿰辶主", + "canonical_ids": "⿰辶主", + "expanded_ids": "⿰辶⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迭", + "codepoint": "U+8FED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FED", + "status": "exact_ids", + "ids": "⿰辶失", + "canonical_ids": "⿰辶失", + "expanded_ids": "⿰辶⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迮", + "codepoint": "U+8FEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FEE", + "status": "exact_ids", + "ids": "⿰辶乍", + "canonical_ids": "⿰辶乍", + "expanded_ids": "⿰辶乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迯", + "codepoint": "U+8FEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FEF", + "status": "exact_ids", + "ids": "⿰辶外", + "canonical_ids": "⿰辶外", + "expanded_ids": "⿰辶⿰夕卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "夕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "述", + "codepoint": "U+8FF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FF0", + "status": "exact_ids", + "ids": "⿰辶术", + "canonical_ids": "⿰辶术", + "expanded_ids": "⿰辶⿻木丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "木", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迱", + "codepoint": "U+8FF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FF1", + "status": "exact_ids", + "ids": "⿰辶它", + "canonical_ids": "⿰辶它", + "expanded_ids": "⿰辶⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迲", + "codepoint": "U+8FF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FF2", + "status": "exact_ids", + "ids": "⿰辶去", + "canonical_ids": "⿰辶去", + "expanded_ids": "⿰辶⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迳", + "codepoint": "U+8FF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FF3", + "status": "exact_ids", + "ids": "⿰辶𢀖", + "canonical_ids": "⿰辶𢀖", + "expanded_ids": "⿰辶⿱又工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "工", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迴", + "codepoint": "U+8FF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FF4", + "status": "exact_ids", + "ids": "⿰辶回", + "canonical_ids": "⿰辶回", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迵", + "codepoint": "U+8FF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FF5", + "status": "exact_ids", + "ids": "⿰辶同", + "canonical_ids": "⿰辶同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迶", + "codepoint": "U+8FF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FF6", + "status": "exact_ids", + "ids": "⿰辶有", + "canonical_ids": "⿰辶有", + "expanded_ids": "⿰辶⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "月", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迷", + "codepoint": "U+8FF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FF7", + "status": "exact_ids", + "ids": "⿰辶米", + "canonical_ids": "⿰辶米", + "expanded_ids": "⿰辶⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迸", + "codepoint": "U+8FF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FF8", + "status": "exact_ids", + "ids": "⿰辶并", + "canonical_ids": "⿰辶并", + "expanded_ids": "⿰辶⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迹", + "codepoint": "U+8FF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FF9", + "status": "exact_ids", + "ids": "⿰辶亦", + "canonical_ids": "⿰辶亦", + "expanded_ids": "⿰辶亦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迺", + "codepoint": "U+8FFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FFA", + "status": "exact_ids", + "ids": "⿰辶西", + "canonical_ids": "⿰辶西", + "expanded_ids": "⿰辶⿻⿱一儿口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迻", + "codepoint": "U+8FFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FFB", + "status": "exact_ids", + "ids": "⿰辶多", + "canonical_ids": "⿰辶多", + "expanded_ids": "⿰辶⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迼", + "codepoint": "U+8FFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FFC", + "status": "exact_ids", + "ids": "⿰辶吉", + "canonical_ids": "⿰辶吉", + "expanded_ids": "⿰辶⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "追", + "codepoint": "U+8FFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FFD", + "status": "exact_ids", + "ids": "⿰辶𠂤", + "canonical_ids": "⿰辶𠂤", + "expanded_ids": "⿰辶⿱丿㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "丿", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迾", + "codepoint": "U+8FFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FFE", + "status": "exact_ids", + "ids": "⿰辶列", + "canonical_ids": "⿰辶列", + "expanded_ids": "⿰辶⿰⿻夕一刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "夕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "迿", + "codepoint": "U+8FFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-8FFF", + "status": "exact_ids", + "ids": "⿰辶旬", + "canonical_ids": "⿰辶旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "退", + "codepoint": "U+9000", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9000", + "status": "exact_ids", + "ids": "⿰辶艮", + "canonical_ids": "⿰辶艮", + "expanded_ids": "⿰辶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艮", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "送", + "codepoint": "U+9001", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9001", + "status": "exact_ids", + "ids": "⿰辶关", + "canonical_ids": "⿰辶关", + "expanded_ids": "⿰辶⿱丷⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "适", + "codepoint": "U+9002", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9002", + "status": "exact_ids", + "ids": "⿰辶舌", + "canonical_ids": "⿰辶舌", + "expanded_ids": "⿰辶⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逃", + "codepoint": "U+9003", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9003", + "status": "exact_ids", + "ids": "⿰辶兆", + "canonical_ids": "⿰辶兆", + "expanded_ids": "⿰辶兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逄", + "codepoint": "U+9004", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9004", + "status": "exact_ids", + "ids": "⿰辶夅", + "canonical_ids": "⿰辶夅", + "expanded_ids": "⿰辶⿱夂⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夂", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逅", + "codepoint": "U+9005", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9005", + "status": "exact_ids", + "ids": "⿰辶后", + "canonical_ids": "⿰辶后", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "后" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逆", + "codepoint": "U+9006", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9006", + "status": "exact_ids", + "ids": "⿰辶屰", + "canonical_ids": "⿰辶屰", + "expanded_ids": "⿰辶⿱䒑屮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "屮", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逇", + "codepoint": "U+9007", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9007", + "status": "exact_ids", + "ids": "⿰辶地", + "canonical_ids": "⿰辶地", + "expanded_ids": "⿰辶⿰土⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "土", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逈", + "codepoint": "U+9008", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9008", + "status": "exact_ids", + "ids": "⿰辶向", + "canonical_ids": "⿰辶向", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "辶" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "选", + "codepoint": "U+9009", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9009", + "status": "exact_ids", + "ids": "⿰辶先", + "canonical_ids": "⿰辶先", + "expanded_ids": "⿰辶⿱牛儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "牛", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逊", + "codepoint": "U+900A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-900A", + "status": "exact_ids", + "ids": "⿰辶孙", + "canonical_ids": "⿰辶孙", + "expanded_ids": "⿰辶⿰子小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "小", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逋", + "codepoint": "U+900B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-900B", + "status": "exact_ids", + "ids": "⿰辶甫", + "canonical_ids": "⿰辶甫", + "expanded_ids": "⿰辶甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甫", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逌", + "codepoint": "U+900C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-900C", + "status": "exact_ids", + "ids": "⿰辶卣", + "canonical_ids": "⿰辶卣", + "expanded_ids": "⿰辶⿱卜囙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "囙", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逍", + "codepoint": "U+900D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-900D", + "status": "exact_ids", + "ids": "⿰辶肖", + "canonical_ids": "⿰辶肖", + "expanded_ids": "⿰辶⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逎", + "codepoint": "U+900E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-900E", + "status": "exact_ids", + "ids": "⿰辶酉", + "canonical_ids": "⿰辶酉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "透", + "codepoint": "U+900F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-900F", + "status": "exact_ids", + "ids": "⿰辶秀", + "canonical_ids": "⿰辶秀", + "expanded_ids": "⿰辶⿱⿻丿木乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乃", + "木", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逐", + "codepoint": "U+9010", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9010", + "status": "exact_ids", + "ids": "⿰辶豕", + "canonical_ids": "⿰辶豕", + "expanded_ids": "⿰辶豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逑", + "codepoint": "U+9011", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9011", + "status": "exact_ids", + "ids": "⿰辶求", + "canonical_ids": "⿰辶求", + "expanded_ids": "⿰辶求", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "求", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "递", + "codepoint": "U+9012", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9012", + "status": "exact_ids", + "ids": "⿰辶弟", + "canonical_ids": "⿰辶弟", + "expanded_ids": "⿰辶⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逓", + "codepoint": "U+9013", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9013", + "status": "exact_ids", + "ids": "⿰辶乕", + "canonical_ids": "⿰辶乕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "乕" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "途", + "codepoint": "U+9014", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9014", + "status": "exact_ids", + "ids": "⿰辶余", + "canonical_ids": "⿰辶余", + "expanded_ids": "⿰辶⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逕", + "codepoint": "U+9015", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9015", + "status": "exact_ids", + "ids": "⿰辶巠", + "canonical_ids": "⿰辶巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逖", + "codepoint": "U+9016", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9016", + "status": "exact_ids", + "ids": "⿰辶狄", + "canonical_ids": "⿰辶狄", + "expanded_ids": "⿰辶⿰犭火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "犭", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逗", + "codepoint": "U+9017", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9017", + "status": "exact_ids", + "ids": "⿰辶豆", + "canonical_ids": "⿰辶豆", + "expanded_ids": "⿰辶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豆", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逘", + "codepoint": "U+9018", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9018", + "status": "exact_ids", + "ids": "⿰辶矣", + "canonical_ids": "⿰辶矣", + "expanded_ids": "⿰辶⿱厶⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "厶", + "大", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "這", + "codepoint": "U+9019", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9019", + "status": "exact_ids", + "ids": "⿰辶言", + "canonical_ids": "⿰辶言", + "expanded_ids": "⿰辶言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "通", + "codepoint": "U+901A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-901A", + "status": "exact_ids", + "ids": "⿰辶甬", + "canonical_ids": "⿰辶甬", + "expanded_ids": "⿰辶⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "辶", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逛", + "codepoint": "U+901B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-901B", + "status": "exact_ids", + "ids": "⿰辶狂", + "canonical_ids": "⿰辶狂", + "expanded_ids": "⿰辶⿰犭王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "王", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逜", + "codepoint": "U+901C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-901C", + "status": "exact_ids", + "ids": "⿰辶吾", + "canonical_ids": "⿰辶吾", + "expanded_ids": "⿰辶⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逝", + "codepoint": "U+901D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-901D", + "status": "exact_ids", + "ids": "⿰辶折", + "canonical_ids": "⿰辶折", + "expanded_ids": "⿰辶⿰扌斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "斤", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逞", + "codepoint": "U+901E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-901E", + "status": "exact_ids", + "ids": "⿰辶呈", + "canonical_ids": "⿰辶呈", + "expanded_ids": "⿰辶⿱口王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "王", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "速", + "codepoint": "U+901F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-901F", + "status": "exact_ids", + "ids": "⿰辶束", + "canonical_ids": "⿰辶束", + "expanded_ids": "⿰辶⿻木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "造", + "codepoint": "U+9020", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9020", + "status": "exact_ids", + "ids": "⿰辶告", + "canonical_ids": "⿰辶告", + "expanded_ids": "⿰辶⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逡", + "codepoint": "U+9021", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9021", + "status": "exact_ids", + "ids": "⿰辶夋", + "canonical_ids": "⿰辶夋", + "expanded_ids": "⿰辶⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逢", + "codepoint": "U+9022", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9022", + "status": "exact_ids", + "ids": "⿰辶夆", + "canonical_ids": "⿰辶夆", + "expanded_ids": "⿰辶⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "連", + "codepoint": "U+9023", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9023", + "status": "exact_ids", + "ids": "⿰辶車", + "canonical_ids": "⿰辶車", + "expanded_ids": "⿰辶車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逤", + "codepoint": "U+9024", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9024", + "status": "exact_ids", + "ids": "⿰辶沙", + "canonical_ids": "⿰辶沙", + "expanded_ids": "⿰辶⿰氵⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "氵", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逥", + "codepoint": "U+9025", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9025", + "status": "exact_ids", + "ids": "⿰辶囬", + "canonical_ids": "⿰辶囬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "囬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逦", + "codepoint": "U+9026", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9026", + "status": "exact_ids", + "ids": "⿰辶丽", + "canonical_ids": "⿰辶丽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逧", + "codepoint": "U+9027", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9027", + "status": "exact_ids", + "ids": "⿰辶谷", + "canonical_ids": "⿰辶谷", + "expanded_ids": "⿰辶⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逨", + "codepoint": "U+9028", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9028", + "status": "exact_ids", + "ids": "⿰辶來", + "canonical_ids": "⿰辶來", + "expanded_ids": "⿰辶⿻木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "木", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逩", + "codepoint": "U+9029", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9029", + "status": "exact_ids", + "ids": "⿰辶奔", + "canonical_ids": "⿰辶奔", + "expanded_ids": "⿰辶⿱大⿱十廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "大", + "廾", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逪", + "codepoint": "U+902A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-902A", + "status": "exact_ids", + "ids": "⿰辶昔", + "canonical_ids": "⿰辶昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "辶" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逫", + "codepoint": "U+902B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-902B", + "status": "exact_ids", + "ids": "⿰辶叕", + "canonical_ids": "⿰辶叕", + "expanded_ids": "⿰辶⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逬", + "codepoint": "U+902C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-902C", + "status": "exact_ids", + "ids": "⿰辶幷", + "canonical_ids": "⿰辶幷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "幷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逭", + "codepoint": "U+902D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-902D", + "status": "exact_ids", + "ids": "⿰辶官", + "canonical_ids": "⿰辶官", + "expanded_ids": "⿰辶⿱宀㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "宀", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逮", + "codepoint": "U+902E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-902E", + "status": "exact_ids", + "ids": "⿰辶隶", + "canonical_ids": "⿰辶隶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逯", + "codepoint": "U+902F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-902F", + "status": "exact_ids", + "ids": "⿰辶录", + "canonical_ids": "⿰辶录", + "expanded_ids": "⿰辶⿱彐氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "氺", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逰", + "codepoint": "U+9030", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9030", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "週", + "codepoint": "U+9031", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9031", + "status": "exact_ids", + "ids": "⿰辶周", + "canonical_ids": "⿰辶周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "進", + "codepoint": "U+9032", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9032", + "status": "exact_ids", + "ids": "⿰辶隹", + "canonical_ids": "⿰辶隹", + "expanded_ids": "⿰辶隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逳", + "codepoint": "U+9033", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9033", + "status": "exact_ids", + "ids": "⿰辶育", + "canonical_ids": "⿰辶育", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "育" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逴", + "codepoint": "U+9034", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9034", + "status": "exact_ids", + "ids": "⿰辶卓", + "canonical_ids": "⿰辶卓", + "expanded_ids": "⿰辶⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "日", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逵", + "codepoint": "U+9035", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9035", + "status": "exact_ids", + "ids": "⿰辶坴", + "canonical_ids": "⿰辶坴", + "expanded_ids": "⿰辶⿱⿱土儿土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逶", + "codepoint": "U+9036", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9036", + "status": "exact_ids", + "ids": "⿰辶委", + "canonical_ids": "⿰辶委", + "expanded_ids": "⿰辶⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "木", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逷", + "codepoint": "U+9037", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9037", + "status": "exact_ids", + "ids": "⿰辶易", + "canonical_ids": "⿰辶易", + "expanded_ids": "⿰辶⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "日", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逸", + "codepoint": "U+9038", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9038", + "status": "exact_ids", + "ids": "⿰辶兔", + "canonical_ids": "⿰辶兔", + "expanded_ids": "⿰辶⿻免丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "免", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逹", + "codepoint": "U+9039", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9039", + "status": "exact_ids", + "ids": "⿰辶幸", + "canonical_ids": "⿰辶幸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "辶" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逺", + "codepoint": "U+903A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-903A", + "status": "exact_ids", + "ids": "⿰辶𡊮", + "canonical_ids": "⿰辶𡊮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "𡊮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逻", + "codepoint": "U+903B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-903B", + "status": "exact_ids", + "ids": "⿰辶罗", + "canonical_ids": "⿰辶罗", + "expanded_ids": "⿰辶⿱罒夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "罒", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逼", + "codepoint": "U+903C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-903C", + "status": "exact_ids", + "ids": "⿰辶畐", + "canonical_ids": "⿰辶畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逽", + "codepoint": "U+903D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-903D", + "status": "exact_ids", + "ids": "⿰辶若", + "canonical_ids": "⿰辶若", + "expanded_ids": "⿰辶⿱艹⿱⿻丿一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "艹", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逾", + "codepoint": "U+903E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-903E", + "status": "exact_ids", + "ids": "⿰辶兪", + "canonical_ids": "⿰辶兪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "兪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "逿", + "codepoint": "U+903F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-903F", + "status": "exact_ids", + "ids": "⿰辶昜", + "canonical_ids": "⿰辶昜", + "expanded_ids": "⿰辶⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遀", + "codepoint": "U+9040", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9040", + "status": "exact_ids", + "ids": "⿰辶𤯝", + "canonical_ids": "⿰辶𤯝", + "expanded_ids": "⿰辶⿱⿱牛一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "月", + "牛", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遁", + "codepoint": "U+9041", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9041", + "status": "exact_ids", + "ids": "⿰辶盾", + "canonical_ids": "⿰辶盾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "目", + "辶" + ], + "unresolved_leaves": [ + "⺁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遂", + "codepoint": "U+9042", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9042", + "status": "exact_ids", + "ids": "⿰辶㒸", + "canonical_ids": "⿰辶㒸", + "expanded_ids": "⿰辶⿱八豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "豕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遃", + "codepoint": "U+9043", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9043", + "status": "exact_ids", + "ids": "⿰辶彦", + "canonical_ids": "⿰辶彦", + "expanded_ids": "⿰辶⿱⿱⿱亠八厂彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "厂", + "彡", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遄", + "codepoint": "U+9044", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9044", + "status": "exact_ids", + "ids": "⿰辶耑", + "canonical_ids": "⿰辶耑", + "expanded_ids": "⿰辶⿱山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "而", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遅", + "codepoint": "U+9045", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9045", + "status": "exact_ids", + "ids": "⿰辶𡱝", + "canonical_ids": "⿰辶𡱝", + "expanded_ids": "⿰辶⿱尸羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "羊", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遆", + "codepoint": "U+9046", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9046", + "status": "exact_ids", + "ids": "⿰辶帝", + "canonical_ids": "⿰辶帝", + "expanded_ids": "⿰辶⿳⿱亠八冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遇", + "codepoint": "U+9047", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9047", + "status": "exact_ids", + "ids": "⿰辶禺", + "canonical_ids": "⿰辶禺", + "expanded_ids": "⿰辶⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "禸", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遈", + "codepoint": "U+9048", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9048", + "status": "exact_ids", + "ids": "⿰辶是", + "canonical_ids": "⿰辶是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "辶" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遉", + "codepoint": "U+9049", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9049", + "status": "exact_ids", + "ids": "⿰辶貞", + "canonical_ids": "⿰辶貞", + "expanded_ids": "⿰辶⿱卜⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "卜", + "目", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遊", + "codepoint": "U+904A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-904A", + "status": "exact_ids", + "ids": "⿰辶斿", + "canonical_ids": "⿰辶斿", + "expanded_ids": "⿰辶⿰⿰方人子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "子", + "方", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "運", + "codepoint": "U+904B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-904B", + "status": "exact_ids", + "ids": "⿰辶軍", + "canonical_ids": "⿰辶軍", + "expanded_ids": "⿰辶⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "車", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遌", + "codepoint": "U+904C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-904C", + "status": "exact_ids", + "ids": "⿰辶咢", + "canonical_ids": "⿰辶咢", + "expanded_ids": "⿰辶⿱⿰口口⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "口", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遍", + "codepoint": "U+904D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-904D", + "status": "exact_ids", + "ids": "⿰辶扁", + "canonical_ids": "⿰辶扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "辶" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "過", + "codepoint": "U+904E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-904E", + "status": "exact_ids", + "ids": "⿰辶咼", + "canonical_ids": "⿰辶咼", + "expanded_ids": "⿰辶⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遏", + "codepoint": "U+904F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-904F", + "status": "exact_ids", + "ids": "⿰辶曷", + "canonical_ids": "⿰辶曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "辶" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遐", + "codepoint": "U+9050", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9050", + "status": "exact_ids", + "ids": "⿰辶叚", + "canonical_ids": "⿰辶叚", + "expanded_ids": "⿰辶叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遑", + "codepoint": "U+9051", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9051", + "status": "exact_ids", + "ids": "⿰辶皇", + "canonical_ids": "⿰辶皇", + "expanded_ids": "⿰辶⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "王", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遒", + "codepoint": "U+9052", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9052", + "status": "exact_ids", + "ids": "⿰辶酋", + "canonical_ids": "⿰辶酋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "辶" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "道", + "codepoint": "U+9053", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9053", + "status": "exact_ids", + "ids": "⿰辶首", + "canonical_ids": "⿰辶首", + "expanded_ids": "⿰辶⿱䒑⿻目丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "丶", + "目", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "達", + "codepoint": "U+9054", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9054", + "status": "exact_ids", + "ids": "⿰辶𦍒", + "canonical_ids": "⿰辶𦍒", + "expanded_ids": "⿰辶⿱土羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "羊", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "違", + "codepoint": "U+9055", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9055", + "status": "exact_ids", + "ids": "⿰辶韋", + "canonical_ids": "⿰辶韋", + "expanded_ids": "⿰辶韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遖", + "codepoint": "U+9056", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9056", + "status": "exact_ids", + "ids": "⿰辶南", + "canonical_ids": "⿰辶南", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "南" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遗", + "codepoint": "U+9057", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9057", + "status": "exact_ids", + "ids": "⿰辶贵", + "canonical_ids": "⿰辶贵", + "expanded_ids": "⿰辶⿱⿱⿻口丨一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "人", + "冂", + "口", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遘", + "codepoint": "U+9058", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9058", + "status": "exact_ids", + "ids": "⿰辶冓", + "canonical_ids": "⿰辶冓", + "expanded_ids": "⿰辶⿱井⿱一⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "井", + "冂", + "土", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遙", + "codepoint": "U+9059", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9059", + "status": "exact_ids", + "ids": "⿰辶䍃", + "canonical_ids": "⿰辶䍃", + "expanded_ids": "⿰辶⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爪", + "缶", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "遥" + ] + }, + { + "character": "遚", + "codepoint": "U+905A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-905A", + "status": "exact_ids", + "ids": "⿰辶叟", + "canonical_ids": "⿰辶叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "辶" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遛", + "codepoint": "U+905B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-905B", + "status": "exact_ids", + "ids": "⿰辶留", + "canonical_ids": "⿰辶留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遜", + "codepoint": "U+905C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-905C", + "status": "exact_ids", + "ids": "⿰辶孫", + "canonical_ids": "⿰辶孫", + "expanded_ids": "⿰辶⿰子⿱丿⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "子", + "小", + "幺", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遝", + "codepoint": "U+905D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-905D", + "status": "exact_ids", + "ids": "⿰辶眔", + "canonical_ids": "⿰辶眔", + "expanded_ids": "⿰辶⿱罒氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氺", + "罒", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遞", + "codepoint": "U+905E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-905E", + "status": "exact_ids", + "ids": "⿰辶虒", + "canonical_ids": "⿰辶虒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "虒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遟", + "codepoint": "U+905F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-905F", + "status": "exact_ids", + "ids": "⿰辶屖", + "canonical_ids": "⿰辶屖", + "expanded_ids": "⿰辶⿱尸⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "尸", + "立", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遠", + "codepoint": "U+9060", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9060", + "status": "exact_ids", + "ids": "⿰辶袁", + "canonical_ids": "⿰辶袁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "袁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遡", + "codepoint": "U+9061", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9061", + "status": "exact_ids", + "ids": "⿰辶朔", + "canonical_ids": "⿰辶朔", + "expanded_ids": "⿰辶⿰⿱䒑屮月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "屮", + "月", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遢", + "codepoint": "U+9062", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9062", + "status": "exact_ids", + "ids": "⿰辶𦐇", + "canonical_ids": "⿰辶𦐇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "辶" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遣", + "codepoint": "U+9063", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9063", + "status": "exact_ids", + "ids": "⿰辶𠳋", + "canonical_ids": "⿰辶𠳋", + "expanded_ids": "⿰辶⿱⿱⿻口丨一㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "一", + "丨", + "口", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遤", + "codepoint": "U+9064", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9064", + "status": "exact_ids", + "ids": "⿰辶馬", + "canonical_ids": "⿰辶馬", + "expanded_ids": "⿰辶馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遥", + "codepoint": "U+9065", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9065", + "status": "exact_ids", + "ids": "⿰辶䍃", + "canonical_ids": "⿰辶䍃", + "expanded_ids": "⿰辶⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爪", + "缶", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "遙" + ] + }, + { + "character": "遦", + "codepoint": "U+9066", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9066", + "status": "exact_ids", + "ids": "⿰辶貫", + "canonical_ids": "⿰辶貫", + "expanded_ids": "⿰辶⿱毌⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "毌", + "目", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遧", + "codepoint": "U+9067", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9067", + "status": "exact_ids", + "ids": "⿰辶章", + "canonical_ids": "⿰辶章", + "expanded_ids": "⿰辶⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "立", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遨", + "codepoint": "U+9068", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9068", + "status": "exact_ids", + "ids": "⿰辶敖", + "canonical_ids": "⿰辶敖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "適", + "codepoint": "U+9069", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9069", + "status": "exact_ids", + "ids": "⿰辶啇", + "canonical_ids": "⿰辶啇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遪", + "codepoint": "U+906A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-906A", + "status": "exact_ids", + "ids": "⿰辶參", + "canonical_ids": "⿰辶參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遫", + "codepoint": "U+906B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-906B", + "status": "exact_ids", + "ids": "⿰辶敕", + "canonical_ids": "⿰辶敕", + "expanded_ids": "⿰辶⿰⿻木口攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "攵", + "木", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遬", + "codepoint": "U+906C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-906C", + "status": "exact_ids", + "ids": "⿰辶欶", + "canonical_ids": "⿰辶欶", + "expanded_ids": "⿰辶⿰⿻木口欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "欠", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遭", + "codepoint": "U+906D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-906D", + "status": "exact_ids", + "ids": "⿰辶曹", + "canonical_ids": "⿰辶曹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "曹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遮", + "codepoint": "U+906E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-906E", + "status": "exact_ids", + "ids": "⿰辶庶", + "canonical_ids": "⿰辶庶", + "expanded_ids": "⿰辶⿱广⿱廿火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "廿", + "火", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遯", + "codepoint": "U+906F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-906F", + "status": "exact_ids", + "ids": "⿰辶豚", + "canonical_ids": "⿰辶豚", + "expanded_ids": "⿰辶⿰月豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "豕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遰", + "codepoint": "U+9070", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9070", + "status": "exact_ids", + "ids": "⿰辶帶", + "canonical_ids": "⿰辶帶", + "expanded_ids": "⿰辶⿳卌冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "卌", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遱", + "codepoint": "U+9071", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9071", + "status": "exact_ids", + "ids": "⿰辶婁", + "canonical_ids": "⿰辶婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遲", + "codepoint": "U+9072", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9072", + "status": "exact_ids", + "ids": "⿰辶犀", + "canonical_ids": "⿰辶犀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "犀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遳", + "codepoint": "U+9073", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9073", + "status": "exact_ids", + "ids": "⿰辶莝", + "canonical_ids": "⿰辶莝", + "expanded_ids": "⿰辶⿱艹⿱⿰人人土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "土", + "艹", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遴", + "codepoint": "U+9074", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9074", + "status": "exact_ids", + "ids": "⿰辶粦", + "canonical_ids": "⿰辶粦", + "expanded_ids": "⿰辶⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "木", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遵", + "codepoint": "U+9075", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9075", + "status": "exact_ids", + "ids": "⿰辶尊", + "canonical_ids": "⿰辶尊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "寸", + "辶" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遶", + "codepoint": "U+9076", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9076", + "status": "exact_ids", + "ids": "⿰辶堯", + "canonical_ids": "⿰辶堯", + "expanded_ids": "⿰辶⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遷", + "codepoint": "U+9077", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9077", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "選", + "codepoint": "U+9078", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9078", + "status": "exact_ids", + "ids": "⿰辶巽", + "canonical_ids": "⿰辶巽", + "expanded_ids": "⿰辶⿱⿰己己⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "廾", + "廿", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遹", + "codepoint": "U+9079", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9079", + "status": "exact_ids", + "ids": "⿰辶矞", + "canonical_ids": "⿰辶矞", + "expanded_ids": "⿰辶⿱矛⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "矛", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遺", + "codepoint": "U+907A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-907A", + "status": "exact_ids", + "ids": "⿰辶貴", + "canonical_ids": "⿰辶貴", + "expanded_ids": "⿰辶⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "目", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遻", + "codepoint": "U+907B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-907B", + "status": "exact_ids", + "ids": "⿰辶㖾", + "canonical_ids": "⿰辶㖾", + "expanded_ids": "⿰辶⿱⿰口口⿱䒑屮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "口", + "屮", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遼", + "codepoint": "U+907C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-907C", + "status": "exact_ids", + "ids": "⿰辶尞", + "canonical_ids": "⿰辶尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "辶" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遽", + "codepoint": "U+907D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-907D", + "status": "exact_ids", + "ids": "⿰辶豦", + "canonical_ids": "⿰辶豦", + "expanded_ids": "⿰辶⿱虍豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虍", + "豕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "遾", + "codepoint": "U+907E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-907E", + "status": "exact_ids", + "ids": "⿰辶筮", + "canonical_ids": "⿰辶筮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "工", + "辶" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "避", + "codepoint": "U+907F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-907F", + "status": "exact_ids", + "ids": "⿰辶辟", + "canonical_ids": "⿰辶辟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立", + "辶" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邀", + "codepoint": "U+9080", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9080", + "status": "exact_ids", + "ids": "⿰辶敫", + "canonical_ids": "⿰辶敫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邁", + "codepoint": "U+9081", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9081", + "status": "exact_ids", + "ids": "⿰辶萬", + "canonical_ids": "⿰辶萬", + "expanded_ids": "⿰辶⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "禸", + "艹", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邂", + "codepoint": "U+9082", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9082", + "status": "exact_ids", + "ids": "⿰辶解", + "canonical_ids": "⿰辶解", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "解" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邃", + "codepoint": "U+9083", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9083", + "status": "exact_ids", + "ids": "⿰遂穴", + "canonical_ids": "⿰遂穴", + "expanded_ids": "⿰⿰辶⿱八豕⿱宀八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "豕", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "還", + "codepoint": "U+9084", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9084", + "status": "exact_ids", + "ids": "⿰辶睘", + "canonical_ids": "⿰辶睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邅", + "codepoint": "U+9085", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9085", + "status": "exact_ids", + "ids": "⿰辶亶", + "canonical_ids": "⿰辶亶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "日", + "辶" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邆", + "codepoint": "U+9086", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9086", + "status": "exact_ids", + "ids": "⿰辶登", + "canonical_ids": "⿰辶登", + "expanded_ids": "⿰辶⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "癶", + "豆", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邇", + "codepoint": "U+9087", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9087", + "status": "exact_ids", + "ids": "⿰辶爾", + "canonical_ids": "⿰辶爾", + "expanded_ids": "⿰辶爾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爾", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邈", + "codepoint": "U+9088", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9088", + "status": "exact_ids", + "ids": "⿰辶貌", + "canonical_ids": "⿰辶貌", + "expanded_ids": "⿰辶⿰豸⿱⿻日丶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "儿", + "日", + "豸", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邉", + "codepoint": "U+9089", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9089", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邊", + "codepoint": "U+908A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-908A", + "status": "exact_ids", + "ids": "⿰辶臱", + "canonical_ids": "⿰辶臱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "臱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邋", + "codepoint": "U+908B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-908B", + "status": "exact_ids", + "ids": "⿰辶巤", + "canonical_ids": "⿰辶巤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "巤" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邌", + "codepoint": "U+908C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-908C", + "status": "exact_ids", + "ids": "⿰辶黎", + "canonical_ids": "⿰辶黎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶" + ], + "unresolved_leaves": [ + "黎" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邍", + "codepoint": "U+908D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-908D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邎", + "codepoint": "U+908E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-908E", + "status": "exact_ids", + "ids": "⿰辶䌛", + "canonical_ids": "⿰辶䌛", + "expanded_ids": "⿰辶⿰⿱月言⿱丿⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "幺", + "月", + "言", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邏", + "codepoint": "U+908F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-908F", + "status": "exact_ids", + "ids": "⿰辶羅", + "canonical_ids": "⿰辶羅", + "expanded_ids": "⿰辶⿱罒⿰⿻幺小隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "罒", + "辶", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邐", + "codepoint": "U+9090", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9090", + "status": "exact_ids", + "ids": "⿰辶麗", + "canonical_ids": "⿰辶麗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辶", + "鹿" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邑", + "codepoint": "U+9091", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9091", + "status": "exact_ids", + "ids": "⿱口巴", + "canonical_ids": "⿱口巴", + "expanded_ids": "⿱口巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "巴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邒", + "codepoint": "U+9092", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9092", + "status": "exact_ids", + "ids": "⿰丁阝", + "canonical_ids": "⿰丁阝", + "expanded_ids": "⿰⿱一亅阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邓", + "codepoint": "U+9093", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9093", + "status": "exact_ids", + "ids": "⿰又阝", + "canonical_ids": "⿰又阝", + "expanded_ids": "⿰又阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邔", + "codepoint": "U+9094", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9094", + "status": "exact_ids", + "ids": "⿰己阝", + "canonical_ids": "⿰己阝", + "expanded_ids": "⿰己阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邕", + "codepoint": "U+9095", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9095", + "status": "exact_ids", + "ids": "⿱巛邑", + "canonical_ids": "⿱巛邑", + "expanded_ids": "⿱巛⿱口巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "巛", + "巴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邖", + "codepoint": "U+9096", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9096", + "status": "exact_ids", + "ids": "⿰山阝", + "canonical_ids": "⿰山阝", + "expanded_ids": "⿰山阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邗", + "codepoint": "U+9097", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9097", + "status": "exact_ids", + "ids": "⿰干阝", + "canonical_ids": "⿰干阝", + "expanded_ids": "⿰⿱一十阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邘", + "codepoint": "U+9098", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9098", + "status": "exact_ids", + "ids": "⿰于阝", + "canonical_ids": "⿰于阝", + "expanded_ids": "⿰⿻二亅阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邙", + "codepoint": "U+9099", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9099", + "status": "exact_ids", + "ids": "⿰亡阝", + "canonical_ids": "⿰亡阝", + "expanded_ids": "⿰⿻亠乚阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邚", + "codepoint": "U+909A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-909A", + "status": "exact_ids", + "ids": "⿰女阝", + "canonical_ids": "⿰女阝", + "expanded_ids": "⿰女阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邛", + "codepoint": "U+909B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-909B", + "status": "exact_ids", + "ids": "⿰工阝", + "canonical_ids": "⿰工阝", + "expanded_ids": "⿰工阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邜", + "codepoint": "U+909C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-909C", + "status": "exact_ids", + "ids": "⿰夕阝", + "canonical_ids": "⿰夕阝", + "expanded_ids": "⿰夕阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邝", + "codepoint": "U+909D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-909D", + "status": "exact_ids", + "ids": "⿰广阝", + "canonical_ids": "⿰广阝", + "expanded_ids": "⿰广阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邞", + "codepoint": "U+909E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-909E", + "status": "exact_ids", + "ids": "⿰夫阝", + "canonical_ids": "⿰夫阝", + "expanded_ids": "⿰⿻一大阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邟", + "codepoint": "U+909F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-909F", + "status": "exact_ids", + "ids": "⿰亢阝", + "canonical_ids": "⿰亢阝", + "expanded_ids": "⿰⿱亠几阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邠", + "codepoint": "U+90A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90A0", + "status": "exact_ids", + "ids": "⿰分阝", + "canonical_ids": "⿰分阝", + "expanded_ids": "⿰⿱八刀阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邡", + "codepoint": "U+90A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90A1", + "status": "exact_ids", + "ids": "⿰方阝", + "canonical_ids": "⿰方阝", + "expanded_ids": "⿰方阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邢", + "codepoint": "U+90A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90A2", + "status": "exact_ids", + "ids": "⿰开阝", + "canonical_ids": "⿰开阝", + "expanded_ids": "⿰⿱一廾阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廾", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "那", + "codepoint": "U+90A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90A3", + "status": "exact_ids", + "ids": "⿰冄阝", + "canonical_ids": "⿰冄阝", + "expanded_ids": "⿰⿻冂二阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "冂", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邤", + "codepoint": "U+90A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90A4", + "status": "exact_ids", + "ids": "⿰斤阝", + "canonical_ids": "⿰斤阝", + "expanded_ids": "⿰斤阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邥", + "codepoint": "U+90A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90A5", + "status": "exact_ids", + "ids": "⿰冘阝", + "canonical_ids": "⿰冘阝", + "expanded_ids": "⿰⿻冖儿阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邦", + "codepoint": "U+90A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90A6", + "status": "exact_ids", + "ids": "⿰丰阝", + "canonical_ids": "⿰丰阝", + "expanded_ids": "⿰丰阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邧", + "codepoint": "U+90A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90A7", + "status": "exact_ids", + "ids": "⿰元阝", + "canonical_ids": "⿰元阝", + "expanded_ids": "⿰⿱一⿱一儿阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邨", + "codepoint": "U+90A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90A8", + "status": "exact_ids", + "ids": "⿰屯阝", + "canonical_ids": "⿰屯阝", + "expanded_ids": "⿰屯阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邩", + "codepoint": "U+90A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90A9", + "status": "exact_ids", + "ids": "⿰火阝", + "canonical_ids": "⿰火阝", + "expanded_ids": "⿰火阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邪", + "codepoint": "U+90AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90AA", + "status": "exact_ids", + "ids": "⿰牙阝", + "canonical_ids": "⿰牙阝", + "expanded_ids": "⿰牙阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邫", + "codepoint": "U+90AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90AB", + "status": "exact_ids", + "ids": "⿰丰邑", + "canonical_ids": "⿰丰邑", + "expanded_ids": "⿰丰⿱口巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "口", + "巴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邬", + "codepoint": "U+90AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90AC", + "status": "exact_ids", + "ids": "⿰乌阝", + "canonical_ids": "⿰乌阝", + "expanded_ids": "⿰乌阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乌", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邭", + "codepoint": "U+90AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90AD", + "status": "exact_ids", + "ids": "⿰句阝", + "canonical_ids": "⿰句阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邮", + "codepoint": "U+90AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90AE", + "status": "exact_ids", + "ids": "⿰由阝", + "canonical_ids": "⿰由阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邯", + "codepoint": "U+90AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90AF", + "status": "exact_ids", + "ids": "⿰甘阝", + "canonical_ids": "⿰甘阝", + "expanded_ids": "⿰甘阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甘", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邰", + "codepoint": "U+90B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90B0", + "status": "exact_ids", + "ids": "⿰台阝", + "canonical_ids": "⿰台阝", + "expanded_ids": "⿰⿱厶口阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邱", + "codepoint": "U+90B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90B1", + "status": "exact_ids", + "ids": "⿰丘阝", + "canonical_ids": "⿰丘阝", + "expanded_ids": "⿰丘阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邲", + "codepoint": "U+90B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90B2", + "status": "exact_ids", + "ids": "⿰必阝", + "canonical_ids": "⿰必阝", + "expanded_ids": "⿰⿻心丿阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邳", + "codepoint": "U+90B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90B3", + "status": "exact_ids", + "ids": "⿰丕阝", + "canonical_ids": "⿰丕阝", + "expanded_ids": "⿰⿱不一阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邴", + "codepoint": "U+90B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90B4", + "status": "exact_ids", + "ids": "⿰丙阝", + "canonical_ids": "⿰丙阝", + "expanded_ids": "⿰⿱一⿻冂人阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邵", + "codepoint": "U+90B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90B5", + "status": "exact_ids", + "ids": "⿰召阝", + "canonical_ids": "⿰召阝", + "expanded_ids": "⿰⿱刀口阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邶", + "codepoint": "U+90B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90B6", + "status": "exact_ids", + "ids": "⿰北阝", + "canonical_ids": "⿰北阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邷", + "codepoint": "U+90B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90B7", + "status": "exact_ids", + "ids": "⿰瓦阝", + "canonical_ids": "⿰瓦阝", + "expanded_ids": "⿰瓦阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓦", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邸", + "codepoint": "U+90B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90B8", + "status": "exact_ids", + "ids": "⿰氐阝", + "canonical_ids": "⿰氐阝", + "expanded_ids": "⿰⿻氏丶阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氏", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邹", + "codepoint": "U+90B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90B9", + "status": "exact_ids", + "ids": "⿰刍阝", + "canonical_ids": "⿰刍阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "阝" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邺", + "codepoint": "U+90BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90BA", + "status": "exact_ids", + "ids": "⿰业阝", + "canonical_ids": "⿰业阝", + "expanded_ids": "⿰业阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邻", + "codepoint": "U+90BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90BB", + "status": "exact_ids", + "ids": "⿰令阝", + "canonical_ids": "⿰令阝", + "expanded_ids": "⿰⿱⿱人一龴阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "阝", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邼", + "codepoint": "U+90BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90BC", + "status": "exact_ids", + "ids": "⿰匡阝", + "canonical_ids": "⿰匡阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "匡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邽", + "codepoint": "U+90BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90BD", + "status": "exact_ids", + "ids": "⿰圭阝", + "canonical_ids": "⿰圭阝", + "expanded_ids": "⿰⿱土土阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邾", + "codepoint": "U+90BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90BE", + "status": "exact_ids", + "ids": "⿰朱阝", + "canonical_ids": "⿰朱阝", + "expanded_ids": "⿰⿻丿⿻木一阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "邿", + "codepoint": "U+90BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90BF", + "status": "exact_ids", + "ids": "⿰寺阝", + "canonical_ids": "⿰寺阝", + "expanded_ids": "⿰⿱土寸阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郀", + "codepoint": "U+90C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90C0", + "status": "exact_ids", + "ids": "⿰夸阝", + "canonical_ids": "⿰夸阝", + "expanded_ids": "⿰⿱大⿱一丂阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郁", + "codepoint": "U+90C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90C1", + "status": "exact_ids", + "ids": "⿰有阝", + "canonical_ids": "⿰有阝", + "expanded_ids": "⿰⿱⿻丿一月阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "月", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郂", + "codepoint": "U+90C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90C2", + "status": "exact_ids", + "ids": "⿰亥阝", + "canonical_ids": "⿰亥阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郃", + "codepoint": "U+90C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90C3", + "status": "exact_ids", + "ids": "⿰合阝", + "canonical_ids": "⿰合阝", + "expanded_ids": "⿰⿱⿱人一口阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郄", + "codepoint": "U+90C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90C4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郅", + "codepoint": "U+90C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90C5", + "status": "exact_ids", + "ids": "⿰至阝", + "canonical_ids": "⿰至阝", + "expanded_ids": "⿰⿱⿱一厶土阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郆", + "codepoint": "U+90C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90C6", + "status": "exact_ids", + "ids": "⿰吉阝", + "canonical_ids": "⿰吉阝", + "expanded_ids": "⿰⿱士口阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郇", + "codepoint": "U+90C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90C7", + "status": "exact_ids", + "ids": "⿰旬阝", + "canonical_ids": "⿰旬阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郈", + "codepoint": "U+90C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90C8", + "status": "exact_ids", + "ids": "⿰后阝", + "canonical_ids": "⿰后阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "后" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郉", + "codepoint": "U+90C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90C9", + "status": "exact_ids", + "ids": "⿰幵阝", + "canonical_ids": "⿰幵阝", + "expanded_ids": "⿰⿰⿱一十⿱一十阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郊", + "codepoint": "U+90CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90CA", + "status": "exact_ids", + "ids": "⿰交阝", + "canonical_ids": "⿰交阝", + "expanded_ids": "⿰⿱亠父阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "父", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郋", + "codepoint": "U+90CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90CB", + "status": "exact_ids", + "ids": "⿰自阝", + "canonical_ids": "⿰自阝", + "expanded_ids": "⿰⿻目丶阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "目", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郌", + "codepoint": "U+90CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90CC", + "status": "exact_ids", + "ids": "⿰圭邑", + "canonical_ids": "⿰圭邑", + "expanded_ids": "⿰⿱土土⿱口巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "土", + "巴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郍", + "codepoint": "U+90CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90CD", + "status": "exact_ids", + "ids": "⿰舟阝", + "canonical_ids": "⿰舟阝", + "expanded_ids": "⿰舟阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郎", + "codepoint": "U+90CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90CE", + "status": "exact_ids", + "ids": "⿰良阝", + "canonical_ids": "⿰良阝", + "expanded_ids": "⿰⿻丶艮阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "艮", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [ + "郞" + ] + }, + { + "character": "郏", + "codepoint": "U+90CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90CF", + "status": "exact_ids", + "ids": "⿰夹阝", + "canonical_ids": "⿰夹阝", + "expanded_ids": "⿰⿻⿻一大丷阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郐", + "codepoint": "U+90D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90D0", + "status": "exact_ids", + "ids": "⿰会阝", + "canonical_ids": "⿰会阝", + "expanded_ids": "⿰⿱⿱人一⿱一厶阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "厶", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郑", + "codepoint": "U+90D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90D1", + "status": "exact_ids", + "ids": "⿰关阝", + "canonical_ids": "⿰关阝", + "expanded_ids": "⿰⿱丷⿻一大阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郒", + "codepoint": "U+90D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90D2", + "status": "exact_ids", + "ids": "⿰良邑", + "canonical_ids": "⿰良邑", + "expanded_ids": "⿰⿻丶艮⿱口巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "口", + "巴", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郓", + "codepoint": "U+90D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90D3", + "status": "exact_ids", + "ids": "⿰军阝", + "canonical_ids": "⿰军阝", + "expanded_ids": "⿰⿱冖车阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "车", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郔", + "codepoint": "U+90D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90D4", + "status": "exact_ids", + "ids": "⿰延阝", + "canonical_ids": "⿰延阝", + "expanded_ids": "⿰⿰廴⿱一止阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廴", + "止", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郕", + "codepoint": "U+90D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90D5", + "status": "exact_ids", + "ids": "⿰成阝", + "canonical_ids": "⿰成阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "成" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郖", + "codepoint": "U+90D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90D6", + "status": "exact_ids", + "ids": "⿰豆阝", + "canonical_ids": "⿰豆阝", + "expanded_ids": "⿰豆阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豆", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郗", + "codepoint": "U+90D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90D7", + "status": "exact_ids", + "ids": "⿰希阝", + "canonical_ids": "⿰希阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "阝" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郘", + "codepoint": "U+90D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90D8", + "status": "exact_ids", + "ids": "⿰呂阝", + "canonical_ids": "⿰呂阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "呂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郙", + "codepoint": "U+90D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90D9", + "status": "exact_ids", + "ids": "⿰甫阝", + "canonical_ids": "⿰甫阝", + "expanded_ids": "⿰甫阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甫", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郚", + "codepoint": "U+90DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90DA", + "status": "exact_ids", + "ids": "⿰吾阝", + "canonical_ids": "⿰吾阝", + "expanded_ids": "⿰⿱五口阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郛", + "codepoint": "U+90DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90DB", + "status": "exact_ids", + "ids": "⿰孚阝", + "canonical_ids": "⿰孚阝", + "expanded_ids": "⿰⿱爫子阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "爫", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郜", + "codepoint": "U+90DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90DC", + "status": "exact_ids", + "ids": "⿰告阝", + "canonical_ids": "⿰告阝", + "expanded_ids": "⿰⿱牛口阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郝", + "codepoint": "U+90DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90DD", + "status": "exact_ids", + "ids": "⿰赤阝", + "canonical_ids": "⿰赤阝", + "expanded_ids": "⿰赤阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "赤", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郞", + "codepoint": "U+90DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90DE", + "status": "exact_ids", + "ids": "⿰良阝", + "canonical_ids": "⿰良阝", + "expanded_ids": "⿰⿻丶艮阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "艮", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [ + "郎" + ] + }, + { + "character": "郟", + "codepoint": "U+90DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90DF", + "status": "exact_ids", + "ids": "⿰夾阝", + "canonical_ids": "⿰夾阝", + "expanded_ids": "⿰⿻大⿰人人阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郠", + "codepoint": "U+90E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90E0", + "status": "exact_ids", + "ids": "⿰更阝", + "canonical_ids": "⿰更阝", + "expanded_ids": "⿰更阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "更", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郡", + "codepoint": "U+90E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90E1", + "status": "exact_ids", + "ids": "⿰君阝", + "canonical_ids": "⿰君阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "阝" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郢", + "codepoint": "U+90E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90E2", + "status": "exact_ids", + "ids": "⿰呈阝", + "canonical_ids": "⿰呈阝", + "expanded_ids": "⿰⿱口王阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "王", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郣", + "codepoint": "U+90E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90E3", + "status": "exact_ids", + "ids": "⿰孛阝", + "canonical_ids": "⿰孛阝", + "expanded_ids": "⿰⿳十冖子阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "子", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郤", + "codepoint": "U+90E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90E4", + "status": "exact_ids", + "ids": "⿰谷阝", + "canonical_ids": "⿰谷阝", + "expanded_ids": "⿰⿱八⿱八口阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郥", + "codepoint": "U+90E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90E5", + "status": "exact_ids", + "ids": "⿰貝阝", + "canonical_ids": "⿰貝阝", + "expanded_ids": "⿰⿱目八阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郦", + "codepoint": "U+90E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90E6", + "status": "exact_ids", + "ids": "⿰丽阝", + "canonical_ids": "⿰丽阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郧", + "codepoint": "U+90E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90E7", + "status": "exact_ids", + "ids": "⿰员阝", + "canonical_ids": "⿰员阝", + "expanded_ids": "⿰⿱口⿻冂人阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "部", + "codepoint": "U+90E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90E8", + "status": "exact_ids", + "ids": "⿰咅阝", + "canonical_ids": "⿰咅阝", + "expanded_ids": "⿰⿱立口阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "立", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郩", + "codepoint": "U+90E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90E9", + "status": "exact_ids", + "ids": "⿰肴阝", + "canonical_ids": "⿰肴阝", + "expanded_ids": "⿰⿱乂⿱⿻丿一月阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "乂", + "月", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郪", + "codepoint": "U+90EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90EA", + "status": "exact_ids", + "ids": "⿰妻阝", + "canonical_ids": "⿰妻阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "妻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郫", + "codepoint": "U+90EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90EB", + "status": "exact_ids", + "ids": "⿰卑阝", + "canonical_ids": "⿰卑阝", + "expanded_ids": "⿰卑阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郬", + "codepoint": "U+90EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90EC", + "status": "exact_ids", + "ids": "⿰青阝", + "canonical_ids": "⿰青阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "阝" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郭", + "codepoint": "U+90ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90ED", + "status": "exact_ids", + "ids": "⿰享阝", + "canonical_ids": "⿰享阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郮", + "codepoint": "U+90EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90EE", + "status": "exact_ids", + "ids": "⿰周阝", + "canonical_ids": "⿰周阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郯", + "codepoint": "U+90EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90EF", + "status": "exact_ids", + "ids": "⿰炎阝", + "canonical_ids": "⿰炎阝", + "expanded_ids": "⿰⿱火火阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郰", + "codepoint": "U+90F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90F0", + "status": "exact_ids", + "ids": "⿰取邓", + "canonical_ids": "⿰取邓", + "expanded_ids": "⿰⿰耳又⿰又阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "耳", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郱", + "codepoint": "U+90F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90F1", + "status": "exact_ids", + "ids": "⿰并阝", + "canonical_ids": "⿰并阝", + "expanded_ids": "⿰⿱丷⿱一廾阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郲", + "codepoint": "U+90F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90F2", + "status": "exact_ids", + "ids": "⿰來阝", + "canonical_ids": "⿰來阝", + "expanded_ids": "⿰⿻木⿰人人阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "木", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郳", + "codepoint": "U+90F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90F3", + "status": "exact_ids", + "ids": "⿰兒阝", + "canonical_ids": "⿰兒阝", + "expanded_ids": "⿰⿱臼儿阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "臼", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郴", + "codepoint": "U+90F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90F4", + "status": "exact_ids", + "ids": "⿰林阝", + "canonical_ids": "⿰林阝", + "expanded_ids": "⿰⿰木木阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郵", + "codepoint": "U+90F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90F5", + "status": "exact_ids", + "ids": "⿰垂阝", + "canonical_ids": "⿰垂阝", + "expanded_ids": "⿰垂阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "垂", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郶", + "codepoint": "U+90F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90F6", + "status": "exact_ids", + "ids": "⿰咅邑", + "canonical_ids": "⿰咅邑", + "expanded_ids": "⿰⿱立口⿱口巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "巴", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郷", + "codepoint": "U+90F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90F7", + "status": "exact_ids", + "ids": "⿰乡郎", + "canonical_ids": "⿰乡郎", + "expanded_ids": "⿰乡⿰⿻丶艮阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乡", + "艮", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [ + "鄉" + ] + }, + { + "character": "郸", + "codepoint": "U+90F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90F8", + "status": "exact_ids", + "ids": "⿰单阝", + "canonical_ids": "⿰单阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "单" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郹", + "codepoint": "U+90F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90F9", + "status": "exact_ids", + "ids": "⿰狊阝", + "canonical_ids": "⿰狊阝", + "expanded_ids": "⿰⿱目⿻大丶阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "目", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郺", + "codepoint": "U+90FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90FA", + "status": "exact_ids", + "ids": "⿰多邕", + "canonical_ids": "⿰多邕", + "expanded_ids": "⿰⿱夕夕⿱巛⿱口巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夕", + "巛", + "巴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郻", + "codepoint": "U+90FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90FB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郼", + "codepoint": "U+90FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90FC", + "status": "exact_ids", + "ids": "⿰韋阝", + "canonical_ids": "⿰韋阝", + "expanded_ids": "⿰韋阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "都", + "codepoint": "U+90FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90FD", + "status": "exact_ids", + "ids": "⿰者阝", + "canonical_ids": "⿰者阝", + "expanded_ids": "⿰⿱⿻土丿日阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郾", + "codepoint": "U+90FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90FE", + "status": "exact_ids", + "ids": "⿰匽阝", + "canonical_ids": "⿰匽阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "匽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "郿", + "codepoint": "U+90FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-90FF", + "status": "exact_ids", + "ids": "⿰眉阝", + "canonical_ids": "⿰眉阝", + "expanded_ids": "⿰⿱⿻尸丨目阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "尸", + "目", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄀", + "codepoint": "U+9100", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9100", + "status": "exact_ids", + "ids": "⿰若阝", + "canonical_ids": "⿰若阝", + "expanded_ids": "⿰⿱艹⿱⿻丿一口阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "艹", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄁", + "codepoint": "U+9101", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9101", + "status": "exact_ids", + "ids": "⿰背阝", + "canonical_ids": "⿰背阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "阝" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄂", + "codepoint": "U+9102", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9102", + "status": "exact_ids", + "ids": "⿰咢阝", + "canonical_ids": "⿰咢阝", + "expanded_ids": "⿰⿱⿰口口⿱一丂阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "口", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄃", + "codepoint": "U+9103", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9103", + "status": "exact_ids", + "ids": "⿰俞阝", + "canonical_ids": "⿰俞阝", + "expanded_ids": "⿰⿱⿱人一⿰月刂阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "月", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄄", + "codepoint": "U+9104", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9104", + "status": "exact_ids", + "ids": "⿰垔阝", + "canonical_ids": "⿰垔阝", + "expanded_ids": "⿰⿱覀土阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "覀", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄅", + "codepoint": "U+9105", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9105", + "status": "exact_ids", + "ids": "⿰禹阝", + "canonical_ids": "⿰禹阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "禹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄆", + "codepoint": "U+9106", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9106", + "status": "exact_ids", + "ids": "⿰軍阝", + "canonical_ids": "⿰軍阝", + "expanded_ids": "⿰⿱冖車阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "車", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄇", + "codepoint": "U+9107", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9107", + "status": "exact_ids", + "ids": "⿰侯阝", + "canonical_ids": "⿰侯阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "侯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄈", + "codepoint": "U+9108", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9108", + "status": "exact_ids", + "ids": "⿰癸阝", + "canonical_ids": "⿰癸阝", + "expanded_ids": "⿰⿱癶⿻一大阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "癶", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄉", + "codepoint": "U+9109", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9109", + "status": "exact_ids", + "ids": "⿰乡郎", + "canonical_ids": "⿰乡郎", + "expanded_ids": "⿰乡⿰⿻丶艮阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乡", + "艮", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [ + "郷" + ] + }, + { + "character": "鄊", + "codepoint": "U+910A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-910A", + "status": "exact_ids", + "ids": "⿰乡耶", + "canonical_ids": "⿰乡耶", + "expanded_ids": "⿰乡⿰耳阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乡", + "耳", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄋", + "codepoint": "U+910B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-910B", + "status": "exact_ids", + "ids": "⿰叟阝", + "canonical_ids": "⿰叟阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "阝" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄌", + "codepoint": "U+910C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-910C", + "status": "exact_ids", + "ids": "⿰唐阝", + "canonical_ids": "⿰唐阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄍", + "codepoint": "U+910D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-910D", + "status": "exact_ids", + "ids": "⿰冥阝", + "canonical_ids": "⿰冥阝", + "expanded_ids": "⿰⿱冖⿱日⿱亠八阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "日", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄎", + "codepoint": "U+910E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-910E", + "status": "exact_ids", + "ids": "⿰息阝", + "canonical_ids": "⿰息阝", + "expanded_ids": "⿰⿱⿻目丶心阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "心", + "目", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄏", + "codepoint": "U+910F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-910F", + "status": "exact_ids", + "ids": "⿰辱阝", + "canonical_ids": "⿰辱阝", + "expanded_ids": "⿰⿱辰寸阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "辰", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄐", + "codepoint": "U+9110", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9110", + "status": "exact_ids", + "ids": "⿰畜阝", + "canonical_ids": "⿰畜阝", + "expanded_ids": "⿰⿱⿱亠幺田阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "田", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄑", + "codepoint": "U+9111", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9111", + "status": "exact_ids", + "ids": "⿰晉阝", + "canonical_ids": "⿰晉阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "晉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄒", + "codepoint": "U+9112", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9112", + "status": "exact_ids", + "ids": "⿰芻阝", + "canonical_ids": "⿰芻阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "芻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄓", + "codepoint": "U+9113", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9113", + "status": "exact_ids", + "ids": "⿰臭阝", + "canonical_ids": "⿰臭阝", + "expanded_ids": "⿰⿱⿻目丶⿻大丶阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "目", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄔", + "codepoint": "U+9114", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9114", + "status": "exact_ids", + "ids": "⿰烏阝", + "canonical_ids": "⿰烏阝", + "expanded_ids": "⿰烏阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "烏", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄕", + "codepoint": "U+9115", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9115", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄖", + "codepoint": "U+9116", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9116", + "status": "exact_ids", + "ids": "⿰員阝", + "canonical_ids": "⿰員阝", + "expanded_ids": "⿰⿱口⿱目八阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "目", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄗", + "codepoint": "U+9117", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9117", + "status": "exact_ids", + "ids": "⿰高阝", + "canonical_ids": "⿰高阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄘", + "codepoint": "U+9118", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9118", + "status": "exact_ids", + "ids": "⿰庸阝", + "canonical_ids": "⿰庸阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "庸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄙", + "codepoint": "U+9119", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9119", + "status": "exact_ids", + "ids": "⿰啚阝", + "canonical_ids": "⿰啚阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "啚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄚", + "codepoint": "U+911A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-911A", + "status": "exact_ids", + "ids": "⿰莫阝", + "canonical_ids": "⿰莫阝", + "expanded_ids": "⿰⿱艹⿱日大阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "艹", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄛", + "codepoint": "U+911B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-911B", + "status": "exact_ids", + "ids": "⿰巢阝", + "canonical_ids": "⿰巢阝", + "expanded_ids": "⿰⿱巛⿻田木阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "木", + "田", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄜", + "codepoint": "U+911C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-911C", + "status": "exact_ids", + "ids": "⿰鹿阝", + "canonical_ids": "⿰鹿阝", + "expanded_ids": "⿰鹿阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄝", + "codepoint": "U+911D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-911D", + "status": "exact_ids", + "ids": "⿰翏阝", + "canonical_ids": "⿰翏阝", + "expanded_ids": "⿰⿱⿰习习⿱人彡阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄞", + "codepoint": "U+911E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-911E", + "status": "exact_ids", + "ids": "⿰堇阝", + "canonical_ids": "⿰堇阝", + "expanded_ids": "⿰堇阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄟", + "codepoint": "U+911F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-911F", + "status": "exact_ids", + "ids": "⿰專阝", + "canonical_ids": "⿰專阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "寸", + "阝" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄠", + "codepoint": "U+9120", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9120", + "status": "exact_ids", + "ids": "⿰雩阝", + "canonical_ids": "⿰雩阝", + "expanded_ids": "⿰⿱雨⿱一丂阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "阝", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄡", + "codepoint": "U+9121", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9121", + "status": "exact_ids", + "ids": "⿰梟阝", + "canonical_ids": "⿰梟阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "梟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄢", + "codepoint": "U+9122", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9122", + "status": "exact_ids", + "ids": "⿰焉阝", + "canonical_ids": "⿰焉阝", + "expanded_ids": "⿰⿱⿱一止⿱⿱卜乙灬阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "乙", + "卜", + "止", + "灬", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄣", + "codepoint": "U+9123", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9123", + "status": "exact_ids", + "ids": "⿰章阝", + "canonical_ids": "⿰章阝", + "expanded_ids": "⿰⿱立⿱日十阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "立", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄤", + "codepoint": "U+9124", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9124", + "status": "exact_ids", + "ids": "⿰曼阝", + "canonical_ids": "⿰曼阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄥", + "codepoint": "U+9125", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9125", + "status": "exact_ids", + "ids": "⿰鳥阝", + "canonical_ids": "⿰鳥阝", + "expanded_ids": "⿰鳥阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄦", + "codepoint": "U+9126", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9126", + "status": "exact_ids", + "ids": "⿰無阝", + "canonical_ids": "⿰無阝", + "expanded_ids": "⿰無阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "無", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄧", + "codepoint": "U+9127", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9127", + "status": "exact_ids", + "ids": "⿰登阝", + "canonical_ids": "⿰登阝", + "expanded_ids": "⿰⿱癶豆阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "癶", + "豆", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄨", + "codepoint": "U+9128", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9128", + "status": "exact_ids", + "ids": "⿱敝邑", + "canonical_ids": "⿱敝邑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "巴", + "攵" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄩", + "codepoint": "U+9129", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9129", + "status": "exact_ids", + "ids": "⿰尋阝", + "canonical_ids": "⿰尋阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "尋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄪", + "codepoint": "U+912A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-912A", + "status": "exact_ids", + "ids": "⿰費阝", + "canonical_ids": "⿰費阝", + "expanded_ids": "⿰⿱⿻弓刂⿱目八阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刂", + "弓", + "目", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄫", + "codepoint": "U+912B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-912B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄬", + "codepoint": "U+912C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-912C", + "status": "exact_ids", + "ids": "⿰為阝", + "canonical_ids": "⿰為阝", + "expanded_ids": "⿰為阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "為", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄭", + "codepoint": "U+912D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-912D", + "status": "exact_ids", + "ids": "⿰奠阝", + "canonical_ids": "⿰奠阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "大", + "阝" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄮", + "codepoint": "U+912E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-912E", + "status": "exact_ids", + "ids": "⿰貿阝", + "canonical_ids": "⿰貿阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "貿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄯", + "codepoint": "U+912F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-912F", + "status": "exact_ids", + "ids": "⿰善阝", + "canonical_ids": "⿰善阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "善" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄰", + "codepoint": "U+9130", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9130", + "status": "exact_ids", + "ids": "⿰粦阝", + "canonical_ids": "⿰粦阝", + "expanded_ids": "⿰⿱⿻木丷⿰夕⿻丨二阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "木", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄱", + "codepoint": "U+9131", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9131", + "status": "exact_ids", + "ids": "⿰番阝", + "canonical_ids": "⿰番阝", + "expanded_ids": "⿰⿱⿱丿⿻木丷田阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "木", + "田", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄲", + "codepoint": "U+9132", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9132", + "status": "exact_ids", + "ids": "⿰單阝", + "canonical_ids": "⿰單阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄳", + "codepoint": "U+9133", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9133", + "status": "exact_ids", + "ids": "⿰黽阝", + "canonical_ids": "⿰黽阝", + "expanded_ids": "⿰黽阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝", + "黽" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄴", + "codepoint": "U+9134", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9134", + "status": "exact_ids", + "ids": "⿰業阝", + "canonical_ids": "⿰業阝", + "expanded_ids": "⿰⿱业⿻羊八阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "八", + "羊", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄵", + "codepoint": "U+9135", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9135", + "status": "exact_ids", + "ids": "⿰喿阝", + "canonical_ids": "⿰喿阝", + "expanded_ids": "⿰⿱⿱口⿰口口木阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄶", + "codepoint": "U+9136", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9136", + "status": "exact_ids", + "ids": "⿰會阝", + "canonical_ids": "⿰會阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "阝" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄷", + "codepoint": "U+9137", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9137", + "status": "exact_ids", + "ids": "⿰豊阝", + "canonical_ids": "⿰豊阝", + "expanded_ids": "⿰⿱曲豆阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "豆", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄸", + "codepoint": "U+9138", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9138", + "status": "exact_ids", + "ids": "⿰夢阝", + "canonical_ids": "⿰夢阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "夢" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄹", + "codepoint": "U+9139", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9139", + "status": "exact_ids", + "ids": "⿰聚阝", + "canonical_ids": "⿰聚阝", + "expanded_ids": "⿰⿱⿰耳又乑阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乑", + "又", + "耳", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄺", + "codepoint": "U+913A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-913A", + "status": "exact_ids", + "ids": "⿰廣阝", + "canonical_ids": "⿰廣阝", + "expanded_ids": "⿰⿱广黄阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "阝", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄻", + "codepoint": "U+913B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-913B", + "status": "exact_ids", + "ids": "⿰輦阝", + "canonical_ids": "⿰輦阝", + "expanded_ids": "⿰⿱⿰⿻一大⿻一大車阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "車", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄼", + "codepoint": "U+913C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-913C", + "status": "exact_ids", + "ids": "⿰賛阝", + "canonical_ids": "⿰賛阝", + "expanded_ids": "⿰⿱⿰⿻一大⿻一大⿱目八阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "大", + "目", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄽", + "codepoint": "U+913D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-913D", + "status": "exact_ids", + "ids": "⿰廛阝", + "canonical_ids": "⿰廛阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "阝" + ], + "unresolved_leaves": [ + "里", + "𡉀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄾", + "codepoint": "U+913E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-913E", + "status": "exact_ids", + "ids": "⿰憂阝", + "canonical_ids": "⿰憂阝", + "expanded_ids": "⿰⿳⿻一⿻日丶冖⿱心夊阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "冖", + "夊", + "心", + "日", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 253, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鄿", + "codepoint": "U+913F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-913F", + "status": "exact_ids", + "ids": "⿰蕇阝", + "canonical_ids": "⿰蕇阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "阝" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酀", + "codepoint": "U+9140", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9140", + "status": "exact_ids", + "ids": "⿰燕阝", + "canonical_ids": "⿰燕阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "燕" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酁", + "codepoint": "U+9141", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9141", + "status": "exact_ids", + "ids": "⿰毚阝", + "canonical_ids": "⿰毚阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "毚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酂", + "codepoint": "U+9142", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9142", + "status": "exact_ids", + "ids": "⿰赞阝", + "canonical_ids": "⿰赞阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "赞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酃", + "codepoint": "U+9143", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9143", + "status": "exact_ids", + "ids": "⿰霝阝", + "canonical_ids": "⿰霝阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝", + "雨" + ], + "unresolved_leaves": [ + "𠱠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酄", + "codepoint": "U+9144", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9144", + "status": "exact_ids", + "ids": "⿰雚阝", + "canonical_ids": "⿰雚阝", + "expanded_ids": "⿰⿱艹⿱⿰口口隹阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艹", + "阝", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酅", + "codepoint": "U+9145", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9145", + "status": "exact_ids", + "ids": "⿰巂阝", + "canonical_ids": "⿰巂阝", + "expanded_ids": "⿰⿱⿱山隹⿱冂⿱八口阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "山", + "阝", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酆", + "codepoint": "U+9146", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9146", + "status": "exact_ids", + "ids": "⿰豐阝", + "canonical_ids": "⿰豐阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豆", + "阝" + ], + "unresolved_leaves": [ + "𠁳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酇", + "codepoint": "U+9147", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9147", + "status": "exact_ids", + "ids": "⿰贊阝", + "canonical_ids": "⿰贊阝", + "expanded_ids": "⿰⿱⿰⿱牛儿⿱牛儿⿱目八阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "牛", + "目", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酈", + "codepoint": "U+9148", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9148", + "status": "exact_ids", + "ids": "⿰麗阝", + "canonical_ids": "⿰麗阝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝", + "鹿" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酉", + "codepoint": "U+9149", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9149", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酊", + "codepoint": "U+914A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-914A", + "status": "exact_ids", + "ids": "⿰酉丁", + "canonical_ids": "⿰酉丁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酋", + "codepoint": "U+914B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-914B", + "status": "exact_ids", + "ids": "⿱丷酉", + "canonical_ids": "⿱丷酉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酌", + "codepoint": "U+914C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-914C", + "status": "exact_ids", + "ids": "⿰酉勺", + "canonical_ids": "⿰酉勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "勺", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "配", + "codepoint": "U+914D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-914D", + "status": "exact_ids", + "ids": "⿰酉己", + "canonical_ids": "⿰酉己", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酎", + "codepoint": "U+914E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-914E", + "status": "exact_ids", + "ids": "⿰酉寸", + "canonical_ids": "⿰酉寸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酏", + "codepoint": "U+914F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-914F", + "status": "exact_ids", + "ids": "⿰酉也", + "canonical_ids": "⿰酉也", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酐", + "codepoint": "U+9150", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9150", + "status": "exact_ids", + "ids": "⿰酉干", + "canonical_ids": "⿰酉干", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酑", + "codepoint": "U+9151", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9151", + "status": "exact_ids", + "ids": "⿰酉于", + "canonical_ids": "⿰酉于", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酒", + "codepoint": "U+9152", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9152", + "status": "exact_ids", + "ids": "⿰氵酉", + "canonical_ids": "⿰氵酉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酓", + "codepoint": "U+9153", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9153", + "status": "exact_ids", + "ids": "⿱今酉", + "canonical_ids": "⿱今酉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人" + ], + "unresolved_leaves": [ + "㇇", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酔", + "codepoint": "U+9154", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9154", + "status": "exact_ids", + "ids": "⿰酉卆", + "canonical_ids": "⿰酉卆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "十" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酕", + "codepoint": "U+9155", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9155", + "status": "exact_ids", + "ids": "⿰酉毛", + "canonical_ids": "⿰酉毛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酖", + "codepoint": "U+9156", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9156", + "status": "exact_ids", + "ids": "⿰酉冘", + "canonical_ids": "⿰酉冘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酗", + "codepoint": "U+9157", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9157", + "status": "exact_ids", + "ids": "⿰酉凶", + "canonical_ids": "⿰酉凶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "凶", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酘", + "codepoint": "U+9158", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9158", + "status": "exact_ids", + "ids": "⿰酉殳", + "canonical_ids": "⿰酉殳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酙", + "codepoint": "U+9159", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9159", + "status": "exact_ids", + "ids": "⿰酉斗", + "canonical_ids": "⿰酉斗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斗" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酚", + "codepoint": "U+915A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-915A", + "status": "exact_ids", + "ids": "⿰酉分", + "canonical_ids": "⿰酉分", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酛", + "codepoint": "U+915B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-915B", + "status": "exact_ids", + "ids": "⿰酉元", + "canonical_ids": "⿰酉元", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酜", + "codepoint": "U+915C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-915C", + "status": "exact_ids", + "ids": "⿰酉夫", + "canonical_ids": "⿰酉夫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酝", + "codepoint": "U+915D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-915D", + "status": "exact_ids", + "ids": "⿰酉云", + "canonical_ids": "⿰酉云", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酞", + "codepoint": "U+915E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-915E", + "status": "exact_ids", + "ids": "⿰酉太", + "canonical_ids": "⿰酉太", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酟", + "codepoint": "U+915F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-915F", + "status": "exact_ids", + "ids": "⿰酉占", + "canonical_ids": "⿰酉占", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酠", + "codepoint": "U+9160", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9160", + "status": "exact_ids", + "ids": "⿰酉可", + "canonical_ids": "⿰酉可", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酡", + "codepoint": "U+9161", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9161", + "status": "exact_ids", + "ids": "⿰酉它", + "canonical_ids": "⿰酉它", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酢", + "codepoint": "U+9162", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9162", + "status": "exact_ids", + "ids": "⿰酉乍", + "canonical_ids": "⿰酉乍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酣", + "codepoint": "U+9163", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9163", + "status": "exact_ids", + "ids": "⿰酉甘", + "canonical_ids": "⿰酉甘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甘" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酤", + "codepoint": "U+9164", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9164", + "status": "exact_ids", + "ids": "⿰酉古", + "canonical_ids": "⿰酉古", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酥", + "codepoint": "U+9165", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9165", + "status": "exact_ids", + "ids": "⿰酉禾", + "canonical_ids": "⿰酉禾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酦", + "codepoint": "U+9166", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9166", + "status": "exact_ids", + "ids": "⿰酉发", + "canonical_ids": "⿰酉发", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "发" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酧", + "codepoint": "U+9167", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9167", + "status": "exact_ids", + "ids": "⿰酉守", + "canonical_ids": "⿰酉守", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "寸" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酨", + "codepoint": "U+9168", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9168", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酩", + "codepoint": "U+9169", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9169", + "status": "exact_ids", + "ids": "⿰酉名", + "canonical_ids": "⿰酉名", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夕" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酪", + "codepoint": "U+916A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-916A", + "status": "exact_ids", + "ids": "⿰酉各", + "canonical_ids": "⿰酉各", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酫", + "codepoint": "U+916B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-916B", + "status": "exact_ids", + "ids": "⿰酉全", + "canonical_ids": "⿰酉全", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "王" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酬", + "codepoint": "U+916C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-916C", + "status": "exact_ids", + "ids": "⿰酉州", + "canonical_ids": "⿰酉州", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "州" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酭", + "codepoint": "U+916D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-916D", + "status": "exact_ids", + "ids": "⿰酉有", + "canonical_ids": "⿰酉有", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "月" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酮", + "codepoint": "U+916E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-916E", + "status": "exact_ids", + "ids": "⿰酉同", + "canonical_ids": "⿰酉同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "同", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酯", + "codepoint": "U+916F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-916F", + "status": "exact_ids", + "ids": "⿰酉旨", + "canonical_ids": "⿰酉旨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酰", + "codepoint": "U+9170", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9170", + "status": "exact_ids", + "ids": "⿰酉先", + "canonical_ids": "⿰酉先", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "牛" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酱", + "codepoint": "U+9171", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9171", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酲", + "codepoint": "U+9172", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9172", + "status": "exact_ids", + "ids": "⿰酉呈", + "canonical_ids": "⿰酉呈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "王" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酳", + "codepoint": "U+9173", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9173", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酴", + "codepoint": "U+9174", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9174", + "status": "exact_ids", + "ids": "⿰酉余", + "canonical_ids": "⿰酉余", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酵", + "codepoint": "U+9175", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9175", + "status": "exact_ids", + "ids": "⿰酉孝", + "canonical_ids": "⿰酉孝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "子" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酶", + "codepoint": "U+9176", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9176", + "status": "exact_ids", + "ids": "⿰酉每", + "canonical_ids": "⿰酉每", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "母" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酷", + "codepoint": "U+9177", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9177", + "status": "exact_ids", + "ids": "⿰酉告", + "canonical_ids": "⿰酉告", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酸", + "codepoint": "U+9178", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9178", + "status": "exact_ids", + "ids": "⿰酉夋", + "canonical_ids": "⿰酉夋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酹", + "codepoint": "U+9179", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9179", + "status": "exact_ids", + "ids": "⿰酉寽", + "canonical_ids": "⿰酉寽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "爫" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酺", + "codepoint": "U+917A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-917A", + "status": "exact_ids", + "ids": "⿰酉甫", + "canonical_ids": "⿰酉甫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甫" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酻", + "codepoint": "U+917B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-917B", + "status": "exact_ids", + "ids": "⿰酉孚", + "canonical_ids": "⿰酉孚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "爫" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酼", + "codepoint": "U+917C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-917C", + "status": "exact_ids", + "ids": "⿰酉㐬", + "canonical_ids": "⿰酉㐬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "厶", + "川" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酽", + "codepoint": "U+917D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-917D", + "status": "exact_ids", + "ids": "⿰酉严", + "canonical_ids": "⿰酉严", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "严" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酾", + "codepoint": "U+917E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-917E", + "status": "exact_ids", + "ids": "⿰酉丽", + "canonical_ids": "⿰酉丽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "丽", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "酿", + "codepoint": "U+917F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-917F", + "status": "exact_ids", + "ids": "⿰酉良", + "canonical_ids": "⿰酉良", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "艮" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醀", + "codepoint": "U+9180", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9180", + "status": "exact_ids", + "ids": "⿰酉隹", + "canonical_ids": "⿰酉隹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "隹" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醁", + "codepoint": "U+9181", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9181", + "status": "exact_ids", + "ids": "⿰酉录", + "canonical_ids": "⿰酉录", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "氺" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醂", + "codepoint": "U+9182", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9182", + "status": "exact_ids", + "ids": "⿰酉林", + "canonical_ids": "⿰酉林", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醃", + "codepoint": "U+9183", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9183", + "status": "exact_ids", + "ids": "⿰酉奄", + "canonical_ids": "⿰酉奄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大" + ], + "unresolved_leaves": [ + "电", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醄", + "codepoint": "U+9184", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9184", + "status": "exact_ids", + "ids": "⿰酉匋", + "canonical_ids": "⿰酉匋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "匋", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醅", + "codepoint": "U+9185", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9185", + "status": "exact_ids", + "ids": "⿰酉咅", + "canonical_ids": "⿰酉咅", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "立" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醆", + "codepoint": "U+9186", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9186", + "status": "exact_ids", + "ids": "⿰酉戔", + "canonical_ids": "⿰酉戔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "戈", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醇", + "codepoint": "U+9187", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9187", + "status": "exact_ids", + "ids": "⿰酉享", + "canonical_ids": "⿰酉享", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "享", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醈", + "codepoint": "U+9188", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9188", + "status": "exact_ids", + "ids": "⿰酉炎", + "canonical_ids": "⿰酉炎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醉", + "codepoint": "U+9189", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9189", + "status": "exact_ids", + "ids": "⿰酉卒", + "canonical_ids": "⿰酉卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "卒", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醊", + "codepoint": "U+918A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-918A", + "status": "exact_ids", + "ids": "⿰酉叕", + "canonical_ids": "⿰酉叕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醋", + "codepoint": "U+918B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-918B", + "status": "exact_ids", + "ids": "⿰酉昔", + "canonical_ids": "⿰酉昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "酉", + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醌", + "codepoint": "U+918C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-918C", + "status": "exact_ids", + "ids": "⿰酉昆", + "canonical_ids": "⿰酉昆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醍", + "codepoint": "U+918D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-918D", + "status": "exact_ids", + "ids": "⿰酉是", + "canonical_ids": "⿰酉是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日" + ], + "unresolved_leaves": [ + "酉", + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醎", + "codepoint": "U+918E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-918E", + "status": "exact_ids", + "ids": "⿰酉咸", + "canonical_ids": "⿰酉咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "咸", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醏", + "codepoint": "U+918F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-918F", + "status": "exact_ids", + "ids": "⿰酉者", + "canonical_ids": "⿰酉者", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醐", + "codepoint": "U+9190", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9190", + "status": "exact_ids", + "ids": "⿰酉胡", + "canonical_ids": "⿰酉胡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "月" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醑", + "codepoint": "U+9191", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9191", + "status": "exact_ids", + "ids": "⿰酉胥", + "canonical_ids": "⿰酉胥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "疋" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醒", + "codepoint": "U+9192", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9192", + "status": "exact_ids", + "ids": "⿰酉星", + "canonical_ids": "⿰酉星", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "牛" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醓", + "codepoint": "U+9193", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9193", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醔", + "codepoint": "U+9194", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9194", + "status": "exact_ids", + "ids": "⿱秋酉", + "canonical_ids": "⿱秋酉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "火" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醕", + "codepoint": "U+9195", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9195", + "status": "exact_ids", + "ids": "⿰酉亯", + "canonical_ids": "⿰酉亯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "亯", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醖", + "codepoint": "U+9196", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9196", + "status": "exact_ids", + "ids": "⿰酉昷", + "canonical_ids": "⿰酉昷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "皿" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醗", + "codepoint": "U+9197", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9197", + "status": "exact_ids", + "ids": "⿰酉発", + "canonical_ids": "⿰酉発", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "発", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醘", + "codepoint": "U+9198", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9198", + "status": "exact_ids", + "ids": "⿰酉盍", + "canonical_ids": "⿰酉盍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "皿" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醙", + "codepoint": "U+9199", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9199", + "status": "exact_ids", + "ids": "⿰酉叟", + "canonical_ids": "⿰酉叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又" + ], + "unresolved_leaves": [ + "酉", + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醚", + "codepoint": "U+919A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-919A", + "status": "exact_ids", + "ids": "⿰酉迷", + "canonical_ids": "⿰酉迷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "辶" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醛", + "codepoint": "U+919B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-919B", + "status": "exact_ids", + "ids": "⿰酉荃", + "canonical_ids": "⿰酉荃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "王", + "艹" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醜", + "codepoint": "U+919C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-919C", + "status": "exact_ids", + "ids": "⿰酉鬼", + "canonical_ids": "⿰酉鬼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鬼" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醝", + "codepoint": "U+919D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-919D", + "status": "exact_ids", + "ids": "⿰酉差", + "canonical_ids": "⿰酉差", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "羊" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醞", + "codepoint": "U+919E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-919E", + "status": "exact_ids", + "ids": "⿰酉𥁕", + "canonical_ids": "⿰酉𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿" + ], + "unresolved_leaves": [ + "囚", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醟", + "codepoint": "U+919F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-919F", + "status": "exact_ids", + "ids": "⿳炏冖酉", + "canonical_ids": "⿳炏冖酉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "火" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醠", + "codepoint": "U+91A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91A0", + "status": "exact_ids", + "ids": "⿰酉盎", + "canonical_ids": "⿰酉盎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "皿" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醡", + "codepoint": "U+91A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91A1", + "status": "exact_ids", + "ids": "⿰酉窄", + "canonical_ids": "⿰酉窄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "八", + "宀" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醢", + "codepoint": "U+91A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91A2", + "status": "exact_ids", + "ids": "⿰酉𥁓", + "canonical_ids": "⿰酉𥁓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "石" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醣", + "codepoint": "U+91A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91A3", + "status": "exact_ids", + "ids": "⿰酉唐", + "canonical_ids": "⿰酉唐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "唐", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醤", + "codepoint": "U+91A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91A4", + "status": "exact_ids", + "ids": "⿱将酉", + "canonical_ids": "⿱将酉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "将", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醥", + "codepoint": "U+91A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91A5", + "status": "exact_ids", + "ids": "⿰酉票", + "canonical_ids": "⿰酉票", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "覀" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醦", + "codepoint": "U+91A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91A6", + "status": "exact_ids", + "ids": "⿰酉參", + "canonical_ids": "⿰酉參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "參", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醧", + "codepoint": "U+91A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91A7", + "status": "exact_ids", + "ids": "⿰酉區", + "canonical_ids": "⿰酉區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "區", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醨", + "codepoint": "U+91A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91A8", + "status": "exact_ids", + "ids": "⿰酉离", + "canonical_ids": "⿰酉离", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "禸" + ], + "unresolved_leaves": [ + "凶", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醩", + "codepoint": "U+91A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91A9", + "status": "exact_ids", + "ids": "⿰酉曹", + "canonical_ids": "⿰酉曹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "曹", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醪", + "codepoint": "U+91AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91AA", + "status": "exact_ids", + "ids": "⿰酉翏", + "canonical_ids": "⿰酉翏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醫", + "codepoint": "U+91AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91AB", + "status": "exact_ids", + "ids": "⿱殹酉", + "canonical_ids": "⿱殹酉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又" + ], + "unresolved_leaves": [ + "医", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醬", + "codepoint": "U+91AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91AC", + "status": "exact_ids", + "ids": "⿱將酉", + "canonical_ids": "⿱將酉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "將", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醭", + "codepoint": "U+91AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91AD", + "status": "exact_ids", + "ids": "⿰酉菐", + "canonical_ids": "⿰酉菐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "儿", + "羊" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醮", + "codepoint": "U+91AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91AE", + "status": "exact_ids", + "ids": "⿰酉焦", + "canonical_ids": "⿰酉焦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬", + "隹" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醯", + "codepoint": "U+91AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91AF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醰", + "codepoint": "U+91B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91B0", + "status": "exact_ids", + "ids": "⿰酉覃", + "canonical_ids": "⿰酉覃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "襾" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醱", + "codepoint": "U+91B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91B1", + "status": "exact_ids", + "ids": "⿰酉發", + "canonical_ids": "⿰酉發", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "發", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醲", + "codepoint": "U+91B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91B2", + "status": "exact_ids", + "ids": "⿰酉農", + "canonical_ids": "⿰酉農", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "辰" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醳", + "codepoint": "U+91B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91B3", + "status": "exact_ids", + "ids": "⿰酉睪", + "canonical_ids": "⿰酉睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "罒" + ], + "unresolved_leaves": [ + "酉", + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醴", + "codepoint": "U+91B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91B4", + "status": "exact_ids", + "ids": "⿰酉豊", + "canonical_ids": "⿰酉豊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "豆" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醵", + "codepoint": "U+91B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91B5", + "status": "exact_ids", + "ids": "⿰酉豦", + "canonical_ids": "⿰酉豦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虍", + "豕" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醶", + "codepoint": "U+91B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91B6", + "status": "exact_ids", + "ids": "⿰酉僉", + "canonical_ids": "⿰酉僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "僉", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醷", + "codepoint": "U+91B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91B7", + "status": "exact_ids", + "ids": "⿰酉意", + "canonical_ids": "⿰酉意", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "日", + "立" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醸", + "codepoint": "U+91B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91B8", + "status": "exact_ids", + "ids": "⿰酉㐮", + "canonical_ids": "⿰酉㐮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "㐮", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醹", + "codepoint": "U+91B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91B9", + "status": "exact_ids", + "ids": "⿰酉需", + "canonical_ids": "⿰酉需", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "而", + "雨" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醺", + "codepoint": "U+91BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91BA", + "status": "exact_ids", + "ids": "⿰酉熏", + "canonical_ids": "⿰酉熏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "熏", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醻", + "codepoint": "U+91BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91BB", + "status": "exact_ids", + "ids": "⿰酉壽", + "canonical_ids": "⿰酉壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "壽", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醼", + "codepoint": "U+91BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91BC", + "status": "exact_ids", + "ids": "⿰酉燕", + "canonical_ids": "⿰酉燕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "燕", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醽", + "codepoint": "U+91BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91BD", + "status": "exact_ids", + "ids": "⿰酉霝", + "canonical_ids": "⿰酉霝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨" + ], + "unresolved_leaves": [ + "酉", + "𠱠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醾", + "codepoint": "U+91BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91BE", + "status": "exact_ids", + "ids": "⿰酉糜", + "canonical_ids": "⿰酉糜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "广", + "木" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "醿", + "codepoint": "U+91BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91BF", + "status": "exact_ids", + "ids": "⿰酉縻", + "canonical_ids": "⿰酉縻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "广", + "木" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釀", + "codepoint": "U+91C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91C0", + "status": "exact_ids", + "ids": "⿰酉襄", + "canonical_ids": "⿰酉襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "襄", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釁", + "codepoint": "U+91C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91C1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釂", + "codepoint": "U+91C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91C2", + "status": "exact_ids", + "ids": "⿰酉爵", + "canonical_ids": "⿰酉爵", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "爵", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釃", + "codepoint": "U+91C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91C3", + "status": "exact_ids", + "ids": "⿰酉麗", + "canonical_ids": "⿰酉麗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鹿" + ], + "unresolved_leaves": [ + "丽", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釄", + "codepoint": "U+91C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91C4", + "status": "exact_ids", + "ids": "⿰酉靡", + "canonical_ids": "⿰酉靡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "木", + "非" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釅", + "codepoint": "U+91C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91C5", + "status": "exact_ids", + "ids": "⿰酉嚴", + "canonical_ids": "⿰酉嚴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "酉", + "𠪚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釆", + "codepoint": "U+91C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91C6", + "status": "exact_ids", + "ids": "⿱丿米", + "canonical_ids": "⿱丿米", + "expanded_ids": "⿱丿⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "采", + "codepoint": "U+91C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91C7", + "status": "exact_ids", + "ids": "⿱爫木", + "canonical_ids": "⿱爫木", + "expanded_ids": "⿱爫木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釈", + "codepoint": "U+91C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91C8", + "status": "exact_ids", + "ids": "⿰釆尺", + "canonical_ids": "⿰釆尺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "尸", + "木" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釉", + "codepoint": "U+91C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91C9", + "status": "exact_ids", + "ids": "⿰采由", + "canonical_ids": "⿰采由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "爫" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "释", + "codepoint": "U+91CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91CA", + "status": "exact_ids", + "ids": "⿰釆𠬤", + "canonical_ids": "⿰釆𠬤", + "expanded_ids": "⿰⿱丿⿻木丷⿱又⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "二", + "又", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釋", + "codepoint": "U+91CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91CB", + "status": "exact_ids", + "ids": "⿰釆睪", + "canonical_ids": "⿰釆睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "土", + "木", + "罒" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "里", + "codepoint": "U+91CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91CC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "重", + "codepoint": "U+91CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91CD", + "status": "exact_ids", + "ids": "⿻千里", + "canonical_ids": "⿻千里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "野", + "codepoint": "U+91CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91CE", + "status": "exact_ids", + "ids": "⿰里予", + "canonical_ids": "⿰里予", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "龴" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "量", + "codepoint": "U+91CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91CF", + "status": "exact_ids", + "ids": "⿱旦里", + "canonical_ids": "⿱旦里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釐", + "codepoint": "U+91D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91D0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "金", + "codepoint": "U+91D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91D1", + "status": "leaf_self_fallback", + "ids": "金", + "canonical_ids": "金", + "expanded_ids": "金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釒", + "codepoint": "U+91D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91D2", + "status": "leaf_self_fallback", + "ids": "釒", + "canonical_ids": "釒", + "expanded_ids": "釒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "釒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釓", + "codepoint": "U+91D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91D3", + "status": "exact_ids", + "ids": "⿰金乚", + "canonical_ids": "⿰金乚", + "expanded_ids": "⿰金乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釔", + "codepoint": "U+91D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91D4", + "status": "exact_ids", + "ids": "⿰金乙", + "canonical_ids": "⿰金乙", + "expanded_ids": "⿰金乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釕", + "codepoint": "U+91D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91D5", + "status": "exact_ids", + "ids": "⿰金了", + "canonical_ids": "⿰金了", + "expanded_ids": "⿰金了", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "了", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釖", + "codepoint": "U+91D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91D6", + "status": "exact_ids", + "ids": "⿰金刀", + "canonical_ids": "⿰金刀", + "expanded_ids": "⿰金刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釗", + "codepoint": "U+91D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91D7", + "status": "exact_ids", + "ids": "⿰金刂", + "canonical_ids": "⿰金刂", + "expanded_ids": "⿰金刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釘", + "codepoint": "U+91D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91D8", + "status": "exact_ids", + "ids": "⿰金丁", + "canonical_ids": "⿰金丁", + "expanded_ids": "⿰金⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釙", + "codepoint": "U+91D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91D9", + "status": "exact_ids", + "ids": "⿰金卜", + "canonical_ids": "⿰金卜", + "expanded_ids": "⿰金卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釚", + "codepoint": "U+91DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91DA", + "status": "exact_ids", + "ids": "⿰金九", + "canonical_ids": "⿰金九", + "expanded_ids": "⿰金九", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釛", + "codepoint": "U+91DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91DB", + "status": "exact_ids", + "ids": "⿰金力", + "canonical_ids": "⿰金力", + "expanded_ids": "⿰金力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釜", + "codepoint": "U+91DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91DC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "針", + "codepoint": "U+91DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91DD", + "status": "exact_ids", + "ids": "⿰金十", + "canonical_ids": "⿰金十", + "expanded_ids": "⿰金十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釞", + "codepoint": "U+91DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91DE", + "status": "exact_ids", + "ids": "⿰金入", + "canonical_ids": "⿰金入", + "expanded_ids": "⿰金入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釟", + "codepoint": "U+91DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91DF", + "status": "exact_ids", + "ids": "⿰金八", + "canonical_ids": "⿰金八", + "expanded_ids": "⿰金八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釠", + "codepoint": "U+91E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91E0", + "status": "exact_ids", + "ids": "⿰金几", + "canonical_ids": "⿰金几", + "expanded_ids": "⿰金几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釡", + "codepoint": "U+91E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91E1", + "status": "exact_ids", + "ids": "⿱八金", + "canonical_ids": "⿱八金", + "expanded_ids": "⿱八金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釢", + "codepoint": "U+91E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91E2", + "status": "exact_ids", + "ids": "⿰金乃", + "canonical_ids": "⿰金乃", + "expanded_ids": "⿰金乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釣", + "codepoint": "U+91E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91E3", + "status": "exact_ids", + "ids": "⿰金勺", + "canonical_ids": "⿰金勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釤", + "codepoint": "U+91E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91E4", + "status": "exact_ids", + "ids": "⿰金彡", + "canonical_ids": "⿰金彡", + "expanded_ids": "⿰金彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釥", + "codepoint": "U+91E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91E5", + "status": "exact_ids", + "ids": "⿰金小", + "canonical_ids": "⿰金小", + "expanded_ids": "⿰金小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釦", + "codepoint": "U+91E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91E6", + "status": "exact_ids", + "ids": "⿰金口", + "canonical_ids": "⿰金口", + "expanded_ids": "⿰金口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釧", + "codepoint": "U+91E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91E7", + "status": "exact_ids", + "ids": "⿰金川", + "canonical_ids": "⿰金川", + "expanded_ids": "⿰金川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "川", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釨", + "codepoint": "U+91E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91E8", + "status": "exact_ids", + "ids": "⿰金子", + "canonical_ids": "⿰金子", + "expanded_ids": "⿰金子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釩", + "codepoint": "U+91E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91E9", + "status": "exact_ids", + "ids": "⿰金凡", + "canonical_ids": "⿰金凡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釪", + "codepoint": "U+91EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91EA", + "status": "exact_ids", + "ids": "⿰金于", + "canonical_ids": "⿰金于", + "expanded_ids": "⿰金⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釫", + "codepoint": "U+91EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91EB", + "status": "exact_ids", + "ids": "⿰金亏", + "canonical_ids": "⿰金亏", + "expanded_ids": "⿰金⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釬", + "codepoint": "U+91EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91EC", + "status": "exact_ids", + "ids": "⿰金干", + "canonical_ids": "⿰金干", + "expanded_ids": "⿰金⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釭", + "codepoint": "U+91ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91ED", + "status": "exact_ids", + "ids": "⿰金工", + "canonical_ids": "⿰金工", + "expanded_ids": "⿰金工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釮", + "codepoint": "U+91EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91EE", + "status": "exact_ids", + "ids": "⿰金才", + "canonical_ids": "⿰金才", + "expanded_ids": "⿰金才", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "才", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釯", + "codepoint": "U+91EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91EF", + "status": "exact_ids", + "ids": "⿰金亡", + "canonical_ids": "⿰金亡", + "expanded_ids": "⿰金⿻亠乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釰", + "codepoint": "U+91F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91F0", + "status": "exact_ids", + "ids": "⿰金刃", + "canonical_ids": "⿰金刃", + "expanded_ids": "⿰金⿻刀丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釱", + "codepoint": "U+91F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91F1", + "status": "exact_ids", + "ids": "⿰金大", + "canonical_ids": "⿰金大", + "expanded_ids": "⿰金大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釲", + "codepoint": "U+91F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91F2", + "status": "exact_ids", + "ids": "⿰金巳", + "canonical_ids": "⿰金巳", + "expanded_ids": "⿰金巳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巳", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釳", + "codepoint": "U+91F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91F3", + "status": "exact_ids", + "ids": "⿰金乞", + "canonical_ids": "⿰金乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釴", + "codepoint": "U+91F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91F4", + "status": "exact_ids", + "ids": "⿰金弋", + "canonical_ids": "⿰金弋", + "expanded_ids": "⿰金弋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弋", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釵", + "codepoint": "U+91F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91F5", + "status": "exact_ids", + "ids": "⿰金叉", + "canonical_ids": "⿰金叉", + "expanded_ids": "⿰金⿻又丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "又", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釶", + "codepoint": "U+91F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91F6", + "status": "exact_ids", + "ids": "⿰金也", + "canonical_ids": "⿰金也", + "expanded_ids": "⿰金⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釷", + "codepoint": "U+91F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91F7", + "status": "exact_ids", + "ids": "⿰金土", + "canonical_ids": "⿰金土", + "expanded_ids": "⿰金土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釸", + "codepoint": "U+91F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91F8", + "status": "exact_ids", + "ids": "⿰金夕", + "canonical_ids": "⿰金夕", + "expanded_ids": "⿰金夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釹", + "codepoint": "U+91F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91F9", + "status": "exact_ids", + "ids": "⿰金女", + "canonical_ids": "⿰金女", + "expanded_ids": "⿰金女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釺", + "codepoint": "U+91FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91FA", + "status": "exact_ids", + "ids": "⿰金千", + "canonical_ids": "⿰金千", + "expanded_ids": "⿰金⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釻", + "codepoint": "U+91FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91FB", + "status": "exact_ids", + "ids": "⿰金丸", + "canonical_ids": "⿰金丸", + "expanded_ids": "⿰金⿻九丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釼", + "codepoint": "U+91FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91FC", + "status": "exact_ids", + "ids": "⿰金刄", + "canonical_ids": "⿰金刄", + "expanded_ids": "⿰金⿻刀乀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乀", + "刀", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釽", + "codepoint": "U+91FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91FD", + "status": "exact_ids", + "ids": "⿰金爪", + "canonical_ids": "⿰金爪", + "expanded_ids": "⿰金爪", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爪", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釾", + "codepoint": "U+91FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91FE", + "status": "exact_ids", + "ids": "⿰金牙", + "canonical_ids": "⿰金牙", + "expanded_ids": "⿰金牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "釿", + "codepoint": "U+91FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-91FF", + "status": "exact_ids", + "ids": "⿰金斤", + "canonical_ids": "⿰金斤", + "expanded_ids": "⿰金斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈀", + "codepoint": "U+9200", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9200", + "status": "exact_ids", + "ids": "⿰金巴", + "canonical_ids": "⿰金巴", + "expanded_ids": "⿰金巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈁", + "codepoint": "U+9201", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9201", + "status": "exact_ids", + "ids": "⿰金方", + "canonical_ids": "⿰金方", + "expanded_ids": "⿰金方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈂", + "codepoint": "U+9202", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9202", + "status": "exact_ids", + "ids": "⿰金冘", + "canonical_ids": "⿰金冘", + "expanded_ids": "⿰金⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈃", + "codepoint": "U+9203", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9203", + "status": "exact_ids", + "ids": "⿰金开", + "canonical_ids": "⿰金开", + "expanded_ids": "⿰金⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廾", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈄", + "codepoint": "U+9204", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9204", + "status": "exact_ids", + "ids": "⿰金斗", + "canonical_ids": "⿰金斗", + "expanded_ids": "⿰金斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斗", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈅", + "codepoint": "U+9205", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9205", + "status": "exact_ids", + "ids": "⿰金月", + "canonical_ids": "⿰金月", + "expanded_ids": "⿰金月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈆", + "codepoint": "U+9206", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9206", + "status": "exact_ids", + "ids": "⿰金公", + "canonical_ids": "⿰金公", + "expanded_ids": "⿰金⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈇", + "codepoint": "U+9207", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9207", + "status": "exact_ids", + "ids": "⿰金夫", + "canonical_ids": "⿰金夫", + "expanded_ids": "⿰金⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈈", + "codepoint": "U+9208", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9208", + "status": "exact_ids", + "ids": "⿰金不", + "canonical_ids": "⿰金不", + "expanded_ids": "⿰金不", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈉", + "codepoint": "U+9209", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9209", + "status": "exact_ids", + "ids": "⿰金內", + "canonical_ids": "⿰金內", + "expanded_ids": "⿰金⿻冂入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "冂", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈊", + "codepoint": "U+920A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-920A", + "status": "exact_ids", + "ids": "⿰金心", + "canonical_ids": "⿰金心", + "expanded_ids": "⿰金心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈋", + "codepoint": "U+920B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-920B", + "status": "exact_ids", + "ids": "⿰金化", + "canonical_ids": "⿰金化", + "expanded_ids": "⿰金⿰亻匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈌", + "codepoint": "U+920C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-920C", + "status": "exact_ids", + "ids": "⿰金夬", + "canonical_ids": "⿰金夬", + "expanded_ids": "⿰金⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "大", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈍", + "codepoint": "U+920D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-920D", + "status": "exact_ids", + "ids": "⿰金屯", + "canonical_ids": "⿰金屯", + "expanded_ids": "⿰金屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈎", + "codepoint": "U+920E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-920E", + "status": "exact_ids", + "ids": "⿰金勾", + "canonical_ids": "⿰金勾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "勾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈏", + "codepoint": "U+920F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-920F", + "status": "exact_ids", + "ids": "⿰金引", + "canonical_ids": "⿰金引", + "expanded_ids": "⿰金⿰弓丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "弓", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈐", + "codepoint": "U+9210", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9210", + "status": "exact_ids", + "ids": "⿰金今", + "canonical_ids": "⿰金今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "金" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈑", + "codepoint": "U+9211", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9211", + "status": "exact_ids", + "ids": "⿰金反", + "canonical_ids": "⿰金反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈒", + "codepoint": "U+9212", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9212", + "status": "exact_ids", + "ids": "⿰金及", + "canonical_ids": "⿰金及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "金" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈓", + "codepoint": "U+9213", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9213", + "status": "exact_ids", + "ids": "⿰金壬", + "canonical_ids": "⿰金壬", + "expanded_ids": "⿰金⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈔", + "codepoint": "U+9214", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9214", + "status": "exact_ids", + "ids": "⿰金少", + "canonical_ids": "⿰金少", + "expanded_ids": "⿰金⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈕", + "codepoint": "U+9215", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9215", + "status": "exact_ids", + "ids": "⿰金丑", + "canonical_ids": "⿰金丑", + "expanded_ids": "⿰金丑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈖", + "codepoint": "U+9216", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9216", + "status": "exact_ids", + "ids": "⿰金分", + "canonical_ids": "⿰金分", + "expanded_ids": "⿰金⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈗", + "codepoint": "U+9217", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9217", + "status": "exact_ids", + "ids": "⿰金允", + "canonical_ids": "⿰金允", + "expanded_ids": "⿰金⿱厶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈘", + "codepoint": "U+9218", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9218", + "status": "exact_ids", + "ids": "⿰金支", + "canonical_ids": "⿰金支", + "expanded_ids": "⿰金⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈙", + "codepoint": "U+9219", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9219", + "status": "exact_ids", + "ids": "⿰金攴", + "canonical_ids": "⿰金攴", + "expanded_ids": "⿰金⿱卜又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "又", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈚", + "codepoint": "U+921A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-921A", + "status": "exact_ids", + "ids": "⿰金比", + "canonical_ids": "⿰金比", + "expanded_ids": "⿰金⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈛", + "codepoint": "U+921B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-921B", + "status": "exact_ids", + "ids": "⿰金戈", + "canonical_ids": "⿰金戈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈜", + "codepoint": "U+921C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-921C", + "status": "exact_ids", + "ids": "⿰金厷", + "canonical_ids": "⿰金厷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "厷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈝", + "codepoint": "U+921D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-921D", + "status": "exact_ids", + "ids": "⿰金牛", + "canonical_ids": "⿰金牛", + "expanded_ids": "⿰金牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牛", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈞", + "codepoint": "U+921E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-921E", + "status": "exact_ids", + "ids": "⿰金匀", + "canonical_ids": "⿰金匀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "匀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈟", + "codepoint": "U+921F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-921F", + "status": "exact_ids", + "ids": "⿰金弔", + "canonical_ids": "⿰金弔", + "expanded_ids": "⿰金⿻弓丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "弓", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈠", + "codepoint": "U+9220", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9220", + "status": "exact_ids", + "ids": "⿰金殳", + "canonical_ids": "⿰金殳", + "expanded_ids": "⿰金⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈡", + "codepoint": "U+9221", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9221", + "status": "exact_ids", + "ids": "⿰金中", + "canonical_ids": "⿰金中", + "expanded_ids": "⿰金⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈢", + "codepoint": "U+9222", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9222", + "status": "exact_ids", + "ids": "⿰金木", + "canonical_ids": "⿰金木", + "expanded_ids": "⿰金木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈣", + "codepoint": "U+9223", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9223", + "status": "exact_ids", + "ids": "⿰金丐", + "canonical_ids": "⿰金丐", + "expanded_ids": "⿰金丐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丐", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈤", + "codepoint": "U+9224", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9224", + "status": "exact_ids", + "ids": "⿰金日", + "canonical_ids": "⿰金日", + "expanded_ids": "⿰金日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈥", + "codepoint": "U+9225", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9225", + "status": "exact_ids", + "ids": "⿰金火", + "canonical_ids": "⿰金火", + "expanded_ids": "⿰金火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈦", + "codepoint": "U+9226", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9226", + "status": "exact_ids", + "ids": "⿰金太", + "canonical_ids": "⿰金太", + "expanded_ids": "⿰金⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈧", + "codepoint": "U+9227", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9227", + "status": "exact_ids", + "ids": "⿰金亢", + "canonical_ids": "⿰金亢", + "expanded_ids": "⿰金⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈨", + "codepoint": "U+9228", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9228", + "status": "exact_ids", + "ids": "⿰金元", + "canonical_ids": "⿰金元", + "expanded_ids": "⿰金⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈩", + "codepoint": "U+9229", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9229", + "status": "exact_ids", + "ids": "⿰金戸", + "canonical_ids": "⿰金戸", + "expanded_ids": "⿰金⿻一尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈪", + "codepoint": "U+922A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-922A", + "status": "exact_ids", + "ids": "⿰金厄", + "canonical_ids": "⿰金厄", + "expanded_ids": "⿰金⿱厂㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈫", + "codepoint": "U+922B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-922B", + "status": "exact_ids", + "ids": "⿰金文", + "canonical_ids": "⿰金文", + "expanded_ids": "⿰金文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈬", + "codepoint": "U+922C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-922C", + "status": "exact_ids", + "ids": "⿰金尺", + "canonical_ids": "⿰金尺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "金" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈭", + "codepoint": "U+922D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-922D", + "status": "exact_ids", + "ids": "⿱此金", + "canonical_ids": "⿱此金", + "expanded_ids": "⿱⿰止匕金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "止", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈮", + "codepoint": "U+922E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-922E", + "status": "exact_ids", + "ids": "⿰金尼", + "canonical_ids": "⿰金尼", + "expanded_ids": "⿰金⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "尸", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈯", + "codepoint": "U+922F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-922F", + "status": "exact_ids", + "ids": "⿰金出", + "canonical_ids": "⿰金出", + "expanded_ids": "⿰金⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈰", + "codepoint": "U+9230", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9230", + "status": "exact_ids", + "ids": "⿰金市", + "canonical_ids": "⿰金市", + "expanded_ids": "⿰金⿱亠⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "冂", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈱", + "codepoint": "U+9231", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9231", + "status": "exact_ids", + "ids": "⿰金民", + "canonical_ids": "⿰金民", + "expanded_ids": "⿰金民", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "民", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈲", + "codepoint": "U+9232", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9232", + "status": "exact_ids", + "ids": "⿰金瓜", + "canonical_ids": "⿰金瓜", + "expanded_ids": "⿰金瓜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "瓜", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈳", + "codepoint": "U+9233", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9233", + "status": "exact_ids", + "ids": "⿰金可", + "canonical_ids": "⿰金可", + "expanded_ids": "⿰金⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈴", + "codepoint": "U+9234", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9234", + "status": "exact_ids", + "ids": "⿰金令", + "canonical_ids": "⿰金令", + "expanded_ids": "⿰金⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "金", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈵", + "codepoint": "U+9235", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9235", + "status": "exact_ids", + "ids": "⿰金丙", + "canonical_ids": "⿰金丙", + "expanded_ids": "⿰金⿱一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈶", + "codepoint": "U+9236", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9236", + "status": "exact_ids", + "ids": "⿰金台", + "canonical_ids": "⿰金台", + "expanded_ids": "⿰金⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈷", + "codepoint": "U+9237", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9237", + "status": "exact_ids", + "ids": "⿰金古", + "canonical_ids": "⿰金古", + "expanded_ids": "⿰金⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈸", + "codepoint": "U+9238", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9238", + "status": "exact_ids", + "ids": "⿰金犮", + "canonical_ids": "⿰金犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈹", + "codepoint": "U+9239", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9239", + "status": "exact_ids", + "ids": "⿰金皮", + "canonical_ids": "⿰金皮", + "expanded_ids": "⿰金皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皮", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈺", + "codepoint": "U+923A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-923A", + "status": "exact_ids", + "ids": "⿰金玉", + "canonical_ids": "⿰金玉", + "expanded_ids": "⿰金⿻王丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈻", + "codepoint": "U+923B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-923B", + "status": "exact_ids", + "ids": "⿰金㠯", + "canonical_ids": "⿰金㠯", + "expanded_ids": "⿰金㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈼", + "codepoint": "U+923C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-923C", + "status": "exact_ids", + "ids": "⿰金乍", + "canonical_ids": "⿰金乍", + "expanded_ids": "⿰金乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈽", + "codepoint": "U+923D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-923D", + "status": "exact_ids", + "ids": "⿰金布", + "canonical_ids": "⿰金布", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈾", + "codepoint": "U+923E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-923E", + "status": "exact_ids", + "ids": "⿰金由", + "canonical_ids": "⿰金由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鈿", + "codepoint": "U+923F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-923F", + "status": "exact_ids", + "ids": "⿰金田", + "canonical_ids": "⿰金田", + "expanded_ids": "⿰金田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉀", + "codepoint": "U+9240", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9240", + "status": "exact_ids", + "ids": "⿰金甲", + "canonical_ids": "⿰金甲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "甲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉁", + "codepoint": "U+9241", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9241", + "status": "exact_ids", + "ids": "⿰金㐱", + "canonical_ids": "⿰金㐱", + "expanded_ids": "⿰金⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "彡", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉂", + "codepoint": "U+9242", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9242", + "status": "exact_ids", + "ids": "⿰金史", + "canonical_ids": "⿰金史", + "expanded_ids": "⿰金⿻口乂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉃", + "codepoint": "U+9243", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9243", + "status": "exact_ids", + "ids": "⿰金矢", + "canonical_ids": "⿰金矢", + "expanded_ids": "⿰金⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉄", + "codepoint": "U+9244", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9244", + "status": "exact_ids", + "ids": "⿰金失", + "canonical_ids": "⿰金失", + "expanded_ids": "⿰金⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉅", + "codepoint": "U+9245", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9245", + "status": "exact_ids", + "ids": "⿰金巨", + "canonical_ids": "⿰金巨", + "expanded_ids": "⿰金巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉆", + "codepoint": "U+9246", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9246", + "status": "exact_ids", + "ids": "⿰金占", + "canonical_ids": "⿰金占", + "expanded_ids": "⿰金⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉇", + "codepoint": "U+9247", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9247", + "status": "exact_ids", + "ids": "⿰金㐌", + "canonical_ids": "⿰金㐌", + "expanded_ids": "⿰金⿱⿻丿一⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丿", + "乜", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉈", + "codepoint": "U+9248", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9248", + "status": "exact_ids", + "ids": "⿰金它", + "canonical_ids": "⿰金它", + "expanded_ids": "⿰金⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉉", + "codepoint": "U+9249", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9249", + "status": "exact_ids", + "ids": "⿰金玄", + "canonical_ids": "⿰金玄", + "expanded_ids": "⿰金⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉊", + "codepoint": "U+924A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-924A", + "status": "exact_ids", + "ids": "⿰金召", + "canonical_ids": "⿰金召", + "expanded_ids": "⿰金⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉋", + "codepoint": "U+924B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-924B", + "status": "exact_ids", + "ids": "⿰金包", + "canonical_ids": "⿰金包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉌", + "codepoint": "U+924C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-924C", + "status": "exact_ids", + "ids": "⿰金禾", + "canonical_ids": "⿰金禾", + "expanded_ids": "⿰金⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉍", + "codepoint": "U+924D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-924D", + "status": "exact_ids", + "ids": "⿰金必", + "canonical_ids": "⿰金必", + "expanded_ids": "⿰金⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉎", + "codepoint": "U+924E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-924E", + "status": "exact_ids", + "ids": "⿰金生", + "canonical_ids": "⿰金生", + "expanded_ids": "⿰金⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "牛", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉏", + "codepoint": "U+924F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-924F", + "status": "exact_ids", + "ids": "⿰金且", + "canonical_ids": "⿰金且", + "expanded_ids": "⿰金且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉐", + "codepoint": "U+9250", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9250", + "status": "exact_ids", + "ids": "⿰金石", + "canonical_ids": "⿰金石", + "expanded_ids": "⿰金石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉑", + "codepoint": "U+9251", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9251", + "status": "exact_ids", + "ids": "⿰金白", + "canonical_ids": "⿰金白", + "expanded_ids": "⿰金⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉒", + "codepoint": "U+9252", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9252", + "status": "exact_ids", + "ids": "⿰金主", + "canonical_ids": "⿰金主", + "expanded_ids": "⿰金⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉓", + "codepoint": "U+9253", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9253", + "status": "exact_ids", + "ids": "⿰金布", + "canonical_ids": "⿰金布", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉔", + "codepoint": "U+9254", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9254", + "status": "exact_ids", + "ids": "⿰金匝", + "canonical_ids": "⿰金匝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "匝" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉕", + "codepoint": "U+9255", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9255", + "status": "exact_ids", + "ids": "⿰金叵", + "canonical_ids": "⿰金叵", + "expanded_ids": "⿰金⿰匚口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匚", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉖", + "codepoint": "U+9256", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9256", + "status": "exact_ids", + "ids": "⿰金冬", + "canonical_ids": "⿰金冬", + "expanded_ids": "⿰金⿱夂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "夂", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉗", + "codepoint": "U+9257", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9257", + "status": "exact_ids", + "ids": "⿰金甘", + "canonical_ids": "⿰金甘", + "expanded_ids": "⿰金甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甘", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉘", + "codepoint": "U+9258", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9258", + "status": "exact_ids", + "ids": "⿰金弗", + "canonical_ids": "⿰金弗", + "expanded_ids": "⿰金⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "弓", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉙", + "codepoint": "U+9259", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9259", + "status": "exact_ids", + "ids": "⿰金只", + "canonical_ids": "⿰金只", + "expanded_ids": "⿰金⿱口八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉚", + "codepoint": "U+925A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-925A", + "status": "exact_ids", + "ids": "⿰金卯", + "canonical_ids": "⿰金卯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "卯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉛", + "codepoint": "U+925B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-925B", + "status": "exact_ids", + "ids": "⿰金㕣", + "canonical_ids": "⿰金㕣", + "expanded_ids": "⿰金⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉜", + "codepoint": "U+925C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-925C", + "status": "exact_ids", + "ids": "⿰金付", + "canonical_ids": "⿰金付", + "expanded_ids": "⿰金⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉝", + "codepoint": "U+925D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-925D", + "status": "exact_ids", + "ids": "⿰金立", + "canonical_ids": "⿰金立", + "expanded_ids": "⿰金立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉞", + "codepoint": "U+925E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-925E", + "status": "exact_ids", + "ids": "⿰金戉", + "canonical_ids": "⿰金戉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "金" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉟", + "codepoint": "U+925F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-925F", + "status": "exact_ids", + "ids": "⿰金丕", + "canonical_ids": "⿰金丕", + "expanded_ids": "⿰金⿱不一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉠", + "codepoint": "U+9260", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9260", + "status": "exact_ids", + "ids": "⿰金央", + "canonical_ids": "⿰金央", + "expanded_ids": "⿰金⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉡", + "codepoint": "U+9261", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9261", + "status": "exact_ids", + "ids": "⿰金半", + "canonical_ids": "⿰金半", + "expanded_ids": "⿰金半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉢", + "codepoint": "U+9262", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9262", + "status": "exact_ids", + "ids": "⿰金本", + "canonical_ids": "⿰金本", + "expanded_ids": "⿰金⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉣", + "codepoint": "U+9263", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9263", + "status": "exact_ids", + "ids": "⿰金去", + "canonical_ids": "⿰金去", + "expanded_ids": "⿰金⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉤", + "codepoint": "U+9264", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9264", + "status": "exact_ids", + "ids": "⿰金句", + "canonical_ids": "⿰金句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉥", + "codepoint": "U+9265", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9265", + "status": "exact_ids", + "ids": "⿰金朮", + "canonical_ids": "⿰金朮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "朮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉦", + "codepoint": "U+9266", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9266", + "status": "exact_ids", + "ids": "⿰金正", + "canonical_ids": "⿰金正", + "expanded_ids": "⿰金⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "止", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉧", + "codepoint": "U+9267", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9267", + "status": "exact_ids", + "ids": "⿰金母", + "canonical_ids": "⿰金母", + "expanded_ids": "⿰金母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "母", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉨", + "codepoint": "U+9268", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9268", + "status": "exact_ids", + "ids": "⿰金尔", + "canonical_ids": "⿰金尔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "金" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉩", + "codepoint": "U+9269", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9269", + "status": "exact_ids", + "ids": "⿰金尒", + "canonical_ids": "⿰金尒", + "expanded_ids": "⿰金⿱人小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "小", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉪", + "codepoint": "U+926A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-926A", + "status": "exact_ids", + "ids": "⿰金世", + "canonical_ids": "⿰金世", + "expanded_ids": "⿰金世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉫", + "codepoint": "U+926B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-926B", + "status": "exact_ids", + "ids": "⿰金加", + "canonical_ids": "⿰金加", + "expanded_ids": "⿰金⿰力口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉬", + "codepoint": "U+926C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-926C", + "status": "exact_ids", + "ids": "⿰金目", + "canonical_ids": "⿰金目", + "expanded_ids": "⿰金目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉭", + "codepoint": "U+926D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-926D", + "status": "exact_ids", + "ids": "⿰金旦", + "canonical_ids": "⿰金旦", + "expanded_ids": "⿰金⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉮", + "codepoint": "U+926E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-926E", + "status": "exact_ids", + "ids": "⿰金申", + "canonical_ids": "⿰金申", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉯", + "codepoint": "U+926F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-926F", + "status": "exact_ids", + "ids": "⿰金以", + "canonical_ids": "⿰金以", + "expanded_ids": "⿰金⿰厶人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "厶", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉰", + "codepoint": "U+9270", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9270", + "status": "exact_ids", + "ids": "⿰金司", + "canonical_ids": "⿰金司", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "司" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉱", + "codepoint": "U+9271", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9271", + "status": "exact_ids", + "ids": "⿰金広", + "canonical_ids": "⿰金広", + "expanded_ids": "⿰金⿱广厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "广", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉲", + "codepoint": "U+9272", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9272", + "status": "exact_ids", + "ids": "⿰金卡", + "canonical_ids": "⿰金卡", + "expanded_ids": "⿰金⿱上卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "卜", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉳", + "codepoint": "U+9273", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9273", + "status": "exact_ids", + "ids": "⿰金北", + "canonical_ids": "⿰金北", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉴", + "codepoint": "U+9274", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9274", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉵", + "codepoint": "U+9275", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9275", + "status": "exact_ids", + "ids": "⿰金虫", + "canonical_ids": "⿰金虫", + "expanded_ids": "⿰金虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虫", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉶", + "codepoint": "U+9276", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9276", + "status": "exact_ids", + "ids": "⿰金刑", + "canonical_ids": "⿰金刑", + "expanded_ids": "⿰金⿰⿱一廾刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "廾", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉷", + "codepoint": "U+9277", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9277", + "status": "exact_ids", + "ids": "⿰金共", + "canonical_ids": "⿰金共", + "expanded_ids": "⿰金⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉸", + "codepoint": "U+9278", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9278", + "status": "exact_ids", + "ids": "⿰金交", + "canonical_ids": "⿰金交", + "expanded_ids": "⿰金⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "父", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉹", + "codepoint": "U+9279", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9279", + "status": "exact_ids", + "ids": "⿰金多", + "canonical_ids": "⿰金多", + "expanded_ids": "⿰金⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉺", + "codepoint": "U+927A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-927A", + "status": "exact_ids", + "ids": "⿰金耳", + "canonical_ids": "⿰金耳", + "expanded_ids": "⿰金耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉻", + "codepoint": "U+927B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-927B", + "status": "exact_ids", + "ids": "⿰金各", + "canonical_ids": "⿰金各", + "expanded_ids": "⿰金⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉼", + "codepoint": "U+927C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-927C", + "status": "exact_ids", + "ids": "⿰金并", + "canonical_ids": "⿰金并", + "expanded_ids": "⿰金⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉽", + "codepoint": "U+927D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-927D", + "status": "exact_ids", + "ids": "⿰金式", + "canonical_ids": "⿰金式", + "expanded_ids": "⿰金⿱弋工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "弋", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉾", + "codepoint": "U+927E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-927E", + "status": "exact_ids", + "ids": "⿰金牟", + "canonical_ids": "⿰金牟", + "expanded_ids": "⿰金⿱厶牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "牛", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鉿", + "codepoint": "U+927F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-927F", + "status": "exact_ids", + "ids": "⿰金合", + "canonical_ids": "⿰金合", + "expanded_ids": "⿰金⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銀", + "codepoint": "U+9280", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9280", + "status": "exact_ids", + "ids": "⿰金艮", + "canonical_ids": "⿰金艮", + "expanded_ids": "⿰金艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艮", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銁", + "codepoint": "U+9281", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9281", + "status": "exact_ids", + "ids": "⿰金旬", + "canonical_ids": "⿰金旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銂", + "codepoint": "U+9282", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9282", + "status": "exact_ids", + "ids": "⿰金州", + "canonical_ids": "⿰金州", + "expanded_ids": "⿰金州", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "州", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銃", + "codepoint": "U+9283", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9283", + "status": "exact_ids", + "ids": "⿰金充", + "canonical_ids": "⿰金充", + "expanded_ids": "⿰金⿱亠⿱厶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "儿", + "厶", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銄", + "codepoint": "U+9284", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9284", + "status": "exact_ids", + "ids": "⿰金向", + "canonical_ids": "⿰金向", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "金" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銅", + "codepoint": "U+9285", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9285", + "status": "exact_ids", + "ids": "⿰金同", + "canonical_ids": "⿰金同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銆", + "codepoint": "U+9286", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9286", + "status": "exact_ids", + "ids": "⿰金百", + "canonical_ids": "⿰金百", + "expanded_ids": "⿰金⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "日", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銇", + "codepoint": "U+9287", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9287", + "status": "exact_ids", + "ids": "⿰金耒", + "canonical_ids": "⿰金耒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銈", + "codepoint": "U+9288", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9288", + "status": "exact_ids", + "ids": "⿰金圭", + "canonical_ids": "⿰金圭", + "expanded_ids": "⿰金⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銉", + "codepoint": "U+9289", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9289", + "status": "exact_ids", + "ids": "⿰金聿", + "canonical_ids": "⿰金聿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銊", + "codepoint": "U+928A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-928A", + "status": "exact_ids", + "ids": "⿰金戍", + "canonical_ids": "⿰金戍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "戍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銋", + "codepoint": "U+928B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-928B", + "status": "exact_ids", + "ids": "⿰金任", + "canonical_ids": "⿰金任", + "expanded_ids": "⿰金⿰亻⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "士", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銌", + "codepoint": "U+928C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-928C", + "status": "exact_ids", + "ids": "⿰金存", + "canonical_ids": "⿰金存", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "存" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銍", + "codepoint": "U+928D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-928D", + "status": "exact_ids", + "ids": "⿰金至", + "canonical_ids": "⿰金至", + "expanded_ids": "⿰金⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銎", + "codepoint": "U+928E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-928E", + "status": "exact_ids", + "ids": "⿱巩金", + "canonical_ids": "⿱巩金", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "金" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銏", + "codepoint": "U+928F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-928F", + "status": "exact_ids", + "ids": "⿰金册", + "canonical_ids": "⿰金册", + "expanded_ids": "⿰金册", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "册", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銐", + "codepoint": "U+9290", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9290", + "status": "exact_ids", + "ids": "⿱列金", + "canonical_ids": "⿱列金", + "expanded_ids": "⿱⿰⿻夕一刂金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "夕", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銑", + "codepoint": "U+9291", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9291", + "status": "exact_ids", + "ids": "⿰金先", + "canonical_ids": "⿰金先", + "expanded_ids": "⿰金⿱牛儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "牛", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銒", + "codepoint": "U+9292", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9292", + "status": "exact_ids", + "ids": "⿰金幵", + "canonical_ids": "⿰金幵", + "expanded_ids": "⿰金⿰⿱一十⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銓", + "codepoint": "U+9293", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9293", + "status": "exact_ids", + "ids": "⿰金全", + "canonical_ids": "⿰金全", + "expanded_ids": "⿰金⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "王", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銔", + "codepoint": "U+9294", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9294", + "status": "exact_ids", + "ids": "⿰金㔻", + "canonical_ids": "⿰金㔻", + "expanded_ids": "⿰金⿱不十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "十", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銕", + "codepoint": "U+9295", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9295", + "status": "exact_ids", + "ids": "⿰金夷", + "canonical_ids": "⿰金夷", + "expanded_ids": "⿰金⿻大弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "弓", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銖", + "codepoint": "U+9296", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9296", + "status": "exact_ids", + "ids": "⿰金朱", + "canonical_ids": "⿰金朱", + "expanded_ids": "⿰金⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銗", + "codepoint": "U+9297", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9297", + "status": "exact_ids", + "ids": "⿰金后", + "canonical_ids": "⿰金后", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "后" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銘", + "codepoint": "U+9298", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9298", + "status": "exact_ids", + "ids": "⿰金名", + "canonical_ids": "⿰金名", + "expanded_ids": "⿰金⿱夕口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夕", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銙", + "codepoint": "U+9299", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9299", + "status": "exact_ids", + "ids": "⿰金夸", + "canonical_ids": "⿰金夸", + "expanded_ids": "⿰金⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銚", + "codepoint": "U+929A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-929A", + "status": "exact_ids", + "ids": "⿰金兆", + "canonical_ids": "⿰金兆", + "expanded_ids": "⿰金兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銛", + "codepoint": "U+929B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-929B", + "status": "exact_ids", + "ids": "⿰金舌", + "canonical_ids": "⿰金舌", + "expanded_ids": "⿰金⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銜", + "codepoint": "U+929C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-929C", + "status": "exact_ids", + "ids": "⿲彳金彳", + "canonical_ids": "⿲彳金彳", + "expanded_ids": "⿲彳金彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 101, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銝", + "codepoint": "U+929D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-929D", + "status": "exact_ids", + "ids": "⿰金休", + "canonical_ids": "⿰金休", + "expanded_ids": "⿰金⿰亻木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銞", + "codepoint": "U+929E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-929E", + "status": "exact_ids", + "ids": "⿱旬金", + "canonical_ids": "⿱旬金", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銟", + "codepoint": "U+929F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-929F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銠", + "codepoint": "U+92A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92A0", + "status": "exact_ids", + "ids": "⿰金老", + "canonical_ids": "⿰金老", + "expanded_ids": "⿰金⿱⿻土丿匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銡", + "codepoint": "U+92A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92A1", + "status": "exact_ids", + "ids": "⿰金吉", + "canonical_ids": "⿰金吉", + "expanded_ids": "⿰金⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銢", + "codepoint": "U+92A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92A2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銣", + "codepoint": "U+92A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92A3", + "status": "exact_ids", + "ids": "⿰金如", + "canonical_ids": "⿰金如", + "expanded_ids": "⿰金⿰女口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銤", + "codepoint": "U+92A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92A4", + "status": "exact_ids", + "ids": "⿰金米", + "canonical_ids": "⿰金米", + "expanded_ids": "⿰金⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銥", + "codepoint": "U+92A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92A5", + "status": "exact_ids", + "ids": "⿰金衣", + "canonical_ids": "⿰金衣", + "expanded_ids": "⿰金衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衣", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銦", + "codepoint": "U+92A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92A6", + "status": "exact_ids", + "ids": "⿰金因", + "canonical_ids": "⿰金因", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銧", + "codepoint": "U+92A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92A7", + "status": "exact_ids", + "ids": "⿰金光", + "canonical_ids": "⿰金光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "金" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銨", + "codepoint": "U+92A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92A8", + "status": "exact_ids", + "ids": "⿰金安", + "canonical_ids": "⿰金安", + "expanded_ids": "⿰金⿱宀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銩", + "codepoint": "U+92A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92A9", + "status": "exact_ids", + "ids": "⿰金丢", + "canonical_ids": "⿰金丢", + "expanded_ids": "⿰金⿱⿱丿士厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厶", + "士", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銪", + "codepoint": "U+92AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92AA", + "status": "exact_ids", + "ids": "⿰金有", + "canonical_ids": "⿰金有", + "expanded_ids": "⿰金⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "月", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銫", + "codepoint": "U+92AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92AB", + "status": "exact_ids", + "ids": "⿰金色", + "canonical_ids": "⿰金色", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "金" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銬", + "codepoint": "U+92AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92AC", + "status": "exact_ids", + "ids": "⿰金考", + "canonical_ids": "⿰金考", + "expanded_ids": "⿰金⿱⿻土丿丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "丿", + "土", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銭", + "codepoint": "U+92AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92AD", + "status": "exact_ids", + "ids": "⿰金𢦑", + "canonical_ids": "⿰金𢦑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "𢦑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銮", + "codepoint": "U+92AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92AE", + "status": "exact_ids", + "ids": "⿱亦金", + "canonical_ids": "⿱亦金", + "expanded_ids": "⿱亦金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銯", + "codepoint": "U+92AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92AF", + "status": "exact_ids", + "ids": "⿰金糹", + "canonical_ids": "⿰金糹", + "expanded_ids": "⿰金⿻幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銰", + "codepoint": "U+92B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92B0", + "status": "exact_ids", + "ids": "⿰金艾", + "canonical_ids": "⿰金艾", + "expanded_ids": "⿰金⿱艹乂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "艹", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銱", + "codepoint": "U+92B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92B1", + "status": "exact_ids", + "ids": "⿰金吊", + "canonical_ids": "⿰金吊", + "expanded_ids": "⿰金⿱口⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銲", + "codepoint": "U+92B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92B2", + "status": "exact_ids", + "ids": "⿰金旱", + "canonical_ids": "⿰金旱", + "expanded_ids": "⿰金⿱日⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "日", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銳", + "codepoint": "U+92B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92B3", + "status": "exact_ids", + "ids": "⿰金兌", + "canonical_ids": "⿰金兌", + "expanded_ids": "⿰金⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [ + "鋭" + ] + }, + { + "character": "銴", + "codepoint": "U+92B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92B4", + "status": "exact_ids", + "ids": "⿱折金", + "canonical_ids": "⿱折金", + "expanded_ids": "⿱⿰扌斤金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "斤", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銵", + "codepoint": "U+92B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92B5", + "status": "exact_ids", + "ids": "⿰金身", + "canonical_ids": "⿰金身", + "expanded_ids": "⿰金身", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "身", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銶", + "codepoint": "U+92B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92B6", + "status": "exact_ids", + "ids": "⿰金求", + "canonical_ids": "⿰金求", + "expanded_ids": "⿰金求", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "求", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銷", + "codepoint": "U+92B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92B7", + "status": "exact_ids", + "ids": "⿰金肖", + "canonical_ids": "⿰金肖", + "expanded_ids": "⿰金⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銸", + "codepoint": "U+92B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92B8", + "status": "exact_ids", + "ids": "⿰金耴", + "canonical_ids": "⿰金耴", + "expanded_ids": "⿰金⿰耳乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "耳", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銹", + "codepoint": "U+92B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92B9", + "status": "exact_ids", + "ids": "⿰金秀", + "canonical_ids": "⿰金秀", + "expanded_ids": "⿰金⿱⿻丿木乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乃", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銺", + "codepoint": "U+92BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92BA", + "status": "exact_ids", + "ids": "⿱壯金", + "canonical_ids": "⿱壯金", + "expanded_ids": "⿱⿰爿土金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "爿", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銻", + "codepoint": "U+92BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92BB", + "status": "exact_ids", + "ids": "⿰金弟", + "canonical_ids": "⿰金弟", + "expanded_ids": "⿰金⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銼", + "codepoint": "U+92BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92BC", + "status": "exact_ids", + "ids": "⿰金坐", + "canonical_ids": "⿰金坐", + "expanded_ids": "⿰金⿱⿰人人土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "土", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銽", + "codepoint": "U+92BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92BD", + "status": "exact_ids", + "ids": "⿰金𠯑", + "canonical_ids": "⿰金𠯑", + "expanded_ids": "⿰金⿱氏口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "氏", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銾", + "codepoint": "U+92BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92BE", + "status": "exact_ids", + "ids": "⿰金汞", + "canonical_ids": "⿰金汞", + "expanded_ids": "⿰金⿱工水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "水", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "銿", + "codepoint": "U+92BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92BF", + "status": "exact_ids", + "ids": "⿰金甬", + "canonical_ids": "⿰金甬", + "expanded_ids": "⿰金⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "金", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋀", + "codepoint": "U+92C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92C0", + "status": "exact_ids", + "ids": "⿰金豆", + "canonical_ids": "⿰金豆", + "expanded_ids": "⿰金豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豆", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋁", + "codepoint": "U+92C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92C1", + "status": "exact_ids", + "ids": "⿰金呂", + "canonical_ids": "⿰金呂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "呂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋂", + "codepoint": "U+92C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92C2", + "status": "exact_ids", + "ids": "⿰金每", + "canonical_ids": "⿰金每", + "expanded_ids": "⿰金⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "母", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋃", + "codepoint": "U+92C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92C3", + "status": "exact_ids", + "ids": "⿰金良", + "canonical_ids": "⿰金良", + "expanded_ids": "⿰金⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "艮", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋄", + "codepoint": "U+92C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92C4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋅", + "codepoint": "U+92C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92C5", + "status": "exact_ids", + "ids": "⿰金辛", + "canonical_ids": "⿰金辛", + "expanded_ids": "⿰金⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋆", + "codepoint": "U+92C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92C6", + "status": "exact_ids", + "ids": "⿱均金", + "canonical_ids": "⿱均金", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "金" + ], + "unresolved_leaves": [ + "匀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋇", + "codepoint": "U+92C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92C7", + "status": "exact_ids", + "ids": "⿰金貝", + "canonical_ids": "⿰金貝", + "expanded_ids": "⿰金⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋈", + "codepoint": "U+92C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92C8", + "status": "exact_ids", + "ids": "⿱沃金", + "canonical_ids": "⿱沃金", + "expanded_ids": "⿱⿰氵⿱丿大金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "氵", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋉", + "codepoint": "U+92C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92C9", + "status": "exact_ids", + "ids": "⿰金束", + "canonical_ids": "⿰金束", + "expanded_ids": "⿰金⿻木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋊", + "codepoint": "U+92CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92CA", + "status": "exact_ids", + "ids": "⿰金谷", + "canonical_ids": "⿰金谷", + "expanded_ids": "⿰金⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋋", + "codepoint": "U+92CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92CB", + "status": "exact_ids", + "ids": "⿰金延", + "canonical_ids": "⿰金延", + "expanded_ids": "⿰金⿰廴⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廴", + "止", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋌", + "codepoint": "U+92CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92CC", + "status": "exact_ids", + "ids": "⿰金廷", + "canonical_ids": "⿰金廷", + "expanded_ids": "⿰金⿰廴⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "廴", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋍", + "codepoint": "U+92CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92CD", + "status": "exact_ids", + "ids": "⿰金孛", + "canonical_ids": "⿰金孛", + "expanded_ids": "⿰金⿳十冖子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "子", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋎", + "codepoint": "U+92CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92CE", + "status": "exact_ids", + "ids": "⿰金完", + "canonical_ids": "⿰金完", + "expanded_ids": "⿰金⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "宀", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋏", + "codepoint": "U+92CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92CF", + "status": "exact_ids", + "ids": "⿰金夾", + "canonical_ids": "⿰金夾", + "expanded_ids": "⿰金⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋐", + "codepoint": "U+92D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92D0", + "status": "exact_ids", + "ids": "⿰金宏", + "canonical_ids": "⿰金宏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "金" + ], + "unresolved_leaves": [ + "厷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋑", + "codepoint": "U+92D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92D1", + "status": "exact_ids", + "ids": "⿰金夋", + "canonical_ids": "⿰金夋", + "expanded_ids": "⿰金⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋒", + "codepoint": "U+92D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92D2", + "status": "exact_ids", + "ids": "⿰金夆", + "canonical_ids": "⿰金夆", + "expanded_ids": "⿰金⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋓", + "codepoint": "U+92D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92D3", + "status": "exact_ids", + "ids": "⿰金利", + "canonical_ids": "⿰金利", + "expanded_ids": "⿰金⿰⿻丿木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋔", + "codepoint": "U+92D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92D4", + "status": "exact_ids", + "ids": "⿰金免", + "canonical_ids": "⿰金免", + "expanded_ids": "⿰金免", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "免", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋕", + "codepoint": "U+92D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92D5", + "status": "exact_ids", + "ids": "⿰金志", + "canonical_ids": "⿰金志", + "expanded_ids": "⿰金⿱士心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "士", + "心", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋖", + "codepoint": "U+92D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92D6", + "status": "exact_ids", + "ids": "⿰金妥", + "canonical_ids": "⿰金妥", + "expanded_ids": "⿰金⿱爫女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "爫", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋗", + "codepoint": "U+92D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92D7", + "status": "exact_ids", + "ids": "⿰金肙", + "canonical_ids": "⿰金肙", + "expanded_ids": "⿰金⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋘", + "codepoint": "U+92D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92D8", + "status": "exact_ids", + "ids": "⿰金吳", + "canonical_ids": "⿰金吳", + "expanded_ids": "⿰金⿱口⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "口", + "大", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋙", + "codepoint": "U+92D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92D9", + "status": "exact_ids", + "ids": "⿰金吾", + "canonical_ids": "⿰金吾", + "expanded_ids": "⿰金⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋚", + "codepoint": "U+92DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92DA", + "status": "exact_ids", + "ids": "⿱攸金", + "canonical_ids": "⿱攸金", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "攸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋛", + "codepoint": "U+92DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92DB", + "status": "exact_ids", + "ids": "⿰金串", + "canonical_ids": "⿰金串", + "expanded_ids": "⿰金⿻⿱口口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋜", + "codepoint": "U+92DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92DC", + "status": "exact_ids", + "ids": "⿰金足", + "canonical_ids": "⿰金足", + "expanded_ids": "⿰金⿱口龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "金", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋝", + "codepoint": "U+92DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92DD", + "status": "exact_ids", + "ids": "⿰金寽", + "canonical_ids": "⿰金寽", + "expanded_ids": "⿰金⿱爫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "爫", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋞", + "codepoint": "U+92DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92DE", + "status": "exact_ids", + "ids": "⿰金巠", + "canonical_ids": "⿰金巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋟", + "codepoint": "U+92DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92DF", + "status": "exact_ids", + "ids": "⿰金𠬶", + "canonical_ids": "⿰金𠬶", + "expanded_ids": "⿰金⿳彐冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "又", + "彐", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋠", + "codepoint": "U+92E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92E0", + "status": "exact_ids", + "ids": "⿰金辰", + "canonical_ids": "⿰金辰", + "expanded_ids": "⿰金辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辰", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋡", + "codepoint": "U+92E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92E1", + "status": "exact_ids", + "ids": "⿰金含", + "canonical_ids": "⿰金含", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "金" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋢", + "codepoint": "U+92E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92E2", + "status": "exact_ids", + "ids": "⿰金孚", + "canonical_ids": "⿰金孚", + "expanded_ids": "⿰金⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "爫", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋣", + "codepoint": "U+92E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92E3", + "status": "exact_ids", + "ids": "⿰金邪", + "canonical_ids": "⿰金邪", + "expanded_ids": "⿰金⿰牙阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙", + "金", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋤", + "codepoint": "U+92E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92E4", + "status": "exact_ids", + "ids": "⿰金助", + "canonical_ids": "⿰金助", + "expanded_ids": "⿰金⿰且力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "力", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋥", + "codepoint": "U+92E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92E5", + "status": "exact_ids", + "ids": "⿰金呈", + "canonical_ids": "⿰金呈", + "expanded_ids": "⿰金⿱口王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "王", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋦", + "codepoint": "U+92E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92E6", + "status": "exact_ids", + "ids": "⿰金局", + "canonical_ids": "⿰金局", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "局" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋧", + "codepoint": "U+92E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92E7", + "status": "exact_ids", + "ids": "⿰金見", + "canonical_ids": "⿰金見", + "expanded_ids": "⿰金⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋨", + "codepoint": "U+92E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92E8", + "status": "exact_ids", + "ids": "⿰金我", + "canonical_ids": "⿰金我", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "金" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋩", + "codepoint": "U+92E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92E9", + "status": "exact_ids", + "ids": "⿰金芒", + "canonical_ids": "⿰金芒", + "expanded_ids": "⿰金⿱艹⿻亠乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "艹", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋪", + "codepoint": "U+92EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92EA", + "status": "exact_ids", + "ids": "⿰金甫", + "canonical_ids": "⿰金甫", + "expanded_ids": "⿰金甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甫", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋫", + "codepoint": "U+92EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92EB", + "status": "exact_ids", + "ids": "⿱利金", + "canonical_ids": "⿱利金", + "expanded_ids": "⿱⿰⿻丿木刂金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋬", + "codepoint": "U+92EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92EC", + "status": "exact_ids", + "ids": "⿱扳金", + "canonical_ids": "⿱扳金", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "金" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋭", + "codepoint": "U+92ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92ED", + "status": "exact_ids", + "ids": "⿰金兌", + "canonical_ids": "⿰金兌", + "expanded_ids": "⿰金⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [ + "銳" + ] + }, + { + "character": "鋮", + "codepoint": "U+92EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92EE", + "status": "exact_ids", + "ids": "⿰金成", + "canonical_ids": "⿰金成", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "成" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋯", + "codepoint": "U+92EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92EF", + "status": "exact_ids", + "ids": "⿰金告", + "canonical_ids": "⿰金告", + "expanded_ids": "⿰金⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋰", + "codepoint": "U+92F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92F0", + "status": "exact_ids", + "ids": "⿰金里", + "canonical_ids": "⿰金里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋱", + "codepoint": "U+92F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92F1", + "status": "exact_ids", + "ids": "⿰金忒", + "canonical_ids": "⿰金忒", + "expanded_ids": "⿰金⿱弋心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弋", + "心", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋲", + "codepoint": "U+92F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92F2", + "status": "exact_ids", + "ids": "⿰金兵", + "canonical_ids": "⿰金兵", + "expanded_ids": "⿰金⿱丘八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "八", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋳", + "codepoint": "U+92F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92F3", + "status": "exact_ids", + "ids": "⿰金寿", + "canonical_ids": "⿰金寿", + "expanded_ids": "⿰金⿻丰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "寸", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋴", + "codepoint": "U+92F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92F4", + "status": "exact_ids", + "ids": "⿰金克", + "canonical_ids": "⿰金克", + "expanded_ids": "⿰金⿱⿻十口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "十", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋵", + "codepoint": "U+92F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92F5", + "status": "exact_ids", + "ids": "⿰金秃", + "canonical_ids": "⿰金秃", + "expanded_ids": "⿰金⿱⿻丿木几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "几", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋶", + "codepoint": "U+92F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92F6", + "status": "exact_ids", + "ids": "⿰金㐬", + "canonical_ids": "⿰金㐬", + "expanded_ids": "⿰金⿱亠⿱厶川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "厶", + "川", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋷", + "codepoint": "U+92F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92F7", + "status": "exact_ids", + "ids": "⿰金取", + "canonical_ids": "⿰金取", + "expanded_ids": "⿰金⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "耳", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋸", + "codepoint": "U+92F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92F8", + "status": "exact_ids", + "ids": "⿰金居", + "canonical_ids": "⿰金居", + "expanded_ids": "⿰金⿱尸⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "尸", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋹", + "codepoint": "U+92F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92F9", + "status": "exact_ids", + "ids": "⿰金長", + "canonical_ids": "⿰金長", + "expanded_ids": "⿰金長", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金", + "長" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋺", + "codepoint": "U+92FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92FA", + "status": "exact_ids", + "ids": "⿰金宛", + "canonical_ids": "⿰金宛", + "expanded_ids": "⿰金⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋻", + "codepoint": "U+92FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92FB", + "status": "exact_ids", + "ids": "⿱臤金", + "canonical_ids": "⿱臤金", + "expanded_ids": "⿱⿰臣又金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "臣", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋼", + "codepoint": "U+92FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92FC", + "status": "exact_ids", + "ids": "⿰金岡", + "canonical_ids": "⿰金岡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "岡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋽", + "codepoint": "U+92FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92FD", + "status": "exact_ids", + "ids": "⿰金卓", + "canonical_ids": "⿰金卓", + "expanded_ids": "⿰金⿱卜⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "日", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋾", + "codepoint": "U+92FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92FE", + "status": "exact_ids", + "ids": "⿰金匋", + "canonical_ids": "⿰金匋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "匋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鋿", + "codepoint": "U+92FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-92FF", + "status": "exact_ids", + "ids": "⿰金尚", + "canonical_ids": "⿰金尚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "金" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錀", + "codepoint": "U+9300", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9300", + "status": "exact_ids", + "ids": "⿰金侖", + "canonical_ids": "⿰金侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "金" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錁", + "codepoint": "U+9301", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9301", + "status": "exact_ids", + "ids": "⿰金果", + "canonical_ids": "⿰金果", + "expanded_ids": "⿰金⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錂", + "codepoint": "U+9302", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9302", + "status": "exact_ids", + "ids": "⿰金夌", + "canonical_ids": "⿰金夌", + "expanded_ids": "⿰金⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錃", + "codepoint": "U+9303", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9303", + "status": "exact_ids", + "ids": "⿱波金", + "canonical_ids": "⿱波金", + "expanded_ids": "⿱⿰氵皮金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "皮", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錄", + "codepoint": "U+9304", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9304", + "status": "exact_ids", + "ids": "⿰金彔", + "canonical_ids": "⿰金彔", + "expanded_ids": "⿰金⿱彑氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "氺", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錅", + "codepoint": "U+9305", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9305", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錆", + "codepoint": "U+9306", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9306", + "status": "exact_ids", + "ids": "⿰金青", + "canonical_ids": "⿰金青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "金" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錇", + "codepoint": "U+9307", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9307", + "status": "exact_ids", + "ids": "⿰金咅", + "canonical_ids": "⿰金咅", + "expanded_ids": "⿰金⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "立", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錈", + "codepoint": "U+9308", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9308", + "status": "exact_ids", + "ids": "⿰金卷", + "canonical_ids": "⿰金卷", + "expanded_ids": "⿰金⿱龹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "金", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錉", + "codepoint": "U+9309", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9309", + "status": "exact_ids", + "ids": "⿰金昏", + "canonical_ids": "⿰金昏", + "expanded_ids": "⿰金⿱氏日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "氏", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錊", + "codepoint": "U+930A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-930A", + "status": "exact_ids", + "ids": "⿰金卒", + "canonical_ids": "⿰金卒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錋", + "codepoint": "U+930B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-930B", + "status": "exact_ids", + "ids": "⿰金朋", + "canonical_ids": "⿰金朋", + "expanded_ids": "⿰金⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錌", + "codepoint": "U+930C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-930C", + "status": "exact_ids", + "ids": "⿰金岸", + "canonical_ids": "⿰金岸", + "expanded_ids": "⿰金⿱山⿱厂⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "厂", + "山", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錍", + "codepoint": "U+930D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-930D", + "status": "exact_ids", + "ids": "⿰金卑", + "canonical_ids": "⿰金卑", + "expanded_ids": "⿰金卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錎", + "codepoint": "U+930E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-930E", + "status": "exact_ids", + "ids": "⿰金臽", + "canonical_ids": "⿰金臽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "臼", + "金" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錏", + "codepoint": "U+930F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-930F", + "status": "exact_ids", + "ids": "⿰金亞", + "canonical_ids": "⿰金亞", + "expanded_ids": "⿰金亞", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亞", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錐", + "codepoint": "U+9310", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9310", + "status": "exact_ids", + "ids": "⿰金隹", + "canonical_ids": "⿰金隹", + "expanded_ids": "⿰金隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錑", + "codepoint": "U+9311", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9311", + "status": "exact_ids", + "ids": "⿰金戾", + "canonical_ids": "⿰金戾", + "expanded_ids": "⿰金⿱⿻丿尸⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "大", + "尸", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錒", + "codepoint": "U+9312", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9312", + "status": "exact_ids", + "ids": "⿰金阿", + "canonical_ids": "⿰金阿", + "expanded_ids": "⿰金⿰阝⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "金", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錓", + "codepoint": "U+9313", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9313", + "status": "exact_ids", + "ids": "⿰金羌", + "canonical_ids": "⿰金羌", + "expanded_ids": "⿰金⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "羊", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錔", + "codepoint": "U+9314", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9314", + "status": "exact_ids", + "ids": "⿰金沓", + "canonical_ids": "⿰金沓", + "expanded_ids": "⿰金⿱水日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "水", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錕", + "codepoint": "U+9315", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9315", + "status": "exact_ids", + "ids": "⿰金昆", + "canonical_ids": "⿰金昆", + "expanded_ids": "⿰金⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錖", + "codepoint": "U+9316", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9316", + "status": "exact_ids", + "ids": "⿱叔金", + "canonical_ids": "⿱叔金", + "expanded_ids": "⿱⿰⿱上小又金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "又", + "小", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錗", + "codepoint": "U+9317", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9317", + "status": "exact_ids", + "ids": "⿰金委", + "canonical_ids": "⿰金委", + "expanded_ids": "⿰金⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錘", + "codepoint": "U+9318", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9318", + "status": "exact_ids", + "ids": "⿰金垂", + "canonical_ids": "⿰金垂", + "expanded_ids": "⿰金垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "垂", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錙", + "codepoint": "U+9319", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9319", + "status": "exact_ids", + "ids": "⿰金甾", + "canonical_ids": "⿰金甾", + "expanded_ids": "⿰金⿱巛田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "田", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "鍿" + ] + }, + { + "character": "錚", + "codepoint": "U+931A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-931A", + "status": "exact_ids", + "ids": "⿰金爭", + "canonical_ids": "⿰金爭", + "expanded_ids": "⿰金⿱爫肀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爫", + "肀", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錛", + "codepoint": "U+931B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-931B", + "status": "exact_ids", + "ids": "⿰金奔", + "canonical_ids": "⿰金奔", + "expanded_ids": "⿰金⿱大⿱十廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "大", + "廾", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錜", + "codepoint": "U+931C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-931C", + "status": "exact_ids", + "ids": "⿰金念", + "canonical_ids": "⿰金念", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "心", + "金" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錝", + "codepoint": "U+931D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-931D", + "status": "exact_ids", + "ids": "⿰金宗", + "canonical_ids": "⿰金宗", + "expanded_ids": "⿰金⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錞", + "codepoint": "U+931E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-931E", + "status": "exact_ids", + "ids": "⿰金享", + "canonical_ids": "⿰金享", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錟", + "codepoint": "U+931F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-931F", + "status": "exact_ids", + "ids": "⿰金炎", + "canonical_ids": "⿰金炎", + "expanded_ids": "⿰金⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錠", + "codepoint": "U+9320", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9320", + "status": "exact_ids", + "ids": "⿰金定", + "canonical_ids": "⿰金定", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "金" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錡", + "codepoint": "U+9321", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9321", + "status": "exact_ids", + "ids": "⿰金奇", + "canonical_ids": "⿰金奇", + "expanded_ids": "⿰金⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錢", + "codepoint": "U+9322", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9322", + "status": "exact_ids", + "ids": "⿰金戔", + "canonical_ids": "⿰金戔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錣", + "codepoint": "U+9323", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9323", + "status": "exact_ids", + "ids": "⿰金叕", + "canonical_ids": "⿰金叕", + "expanded_ids": "⿰金⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錤", + "codepoint": "U+9324", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9324", + "status": "exact_ids", + "ids": "⿰金其", + "canonical_ids": "⿰金其", + "expanded_ids": "⿰金其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錥", + "codepoint": "U+9325", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9325", + "status": "exact_ids", + "ids": "⿰金育", + "canonical_ids": "⿰金育", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "育" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錦", + "codepoint": "U+9326", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9326", + "status": "exact_ids", + "ids": "⿰金帛", + "canonical_ids": "⿰金帛", + "expanded_ids": "⿰金⿱⿻日丶⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丶", + "冂", + "日", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錧", + "codepoint": "U+9327", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9327", + "status": "exact_ids", + "ids": "⿰金官", + "canonical_ids": "⿰金官", + "expanded_ids": "⿰金⿱宀㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "宀", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錨", + "codepoint": "U+9328", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9328", + "status": "exact_ids", + "ids": "⿰金苗", + "canonical_ids": "⿰金苗", + "expanded_ids": "⿰金⿱艹田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "艹", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錩", + "codepoint": "U+9329", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9329", + "status": "exact_ids", + "ids": "⿰金昌", + "canonical_ids": "⿰金昌", + "expanded_ids": "⿰金⿱日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錪", + "codepoint": "U+932A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-932A", + "status": "exact_ids", + "ids": "⿰金典", + "canonical_ids": "⿰金典", + "expanded_ids": "⿰金典", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "典", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錫", + "codepoint": "U+932B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-932B", + "status": "exact_ids", + "ids": "⿰金易", + "canonical_ids": "⿰金易", + "expanded_ids": "⿰金⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "日", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錬", + "codepoint": "U+932C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-932C", + "status": "exact_ids", + "ids": "⿰金東", + "canonical_ids": "⿰金東", + "expanded_ids": "⿰金⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錭", + "codepoint": "U+932D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-932D", + "status": "exact_ids", + "ids": "⿰金周", + "canonical_ids": "⿰金周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錮", + "codepoint": "U+932E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-932E", + "status": "exact_ids", + "ids": "⿰金固", + "canonical_ids": "⿰金固", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "固" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錯", + "codepoint": "U+932F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-932F", + "status": "exact_ids", + "ids": "⿰金昔", + "canonical_ids": "⿰金昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "金" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錰", + "codepoint": "U+9330", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9330", + "status": "exact_ids", + "ids": "⿰金杰", + "canonical_ids": "⿰金杰", + "expanded_ids": "⿰金⿱木灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "灬", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錱", + "codepoint": "U+9331", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9331", + "status": "exact_ids", + "ids": "⿱金玨", + "canonical_ids": "⿱金玨", + "expanded_ids": "⿱金⿰王王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "録", + "codepoint": "U+9332", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9332", + "status": "exact_ids", + "ids": "⿰金录", + "canonical_ids": "⿰金录", + "expanded_ids": "⿰金⿱彐氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "氺", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錳", + "codepoint": "U+9333", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9333", + "status": "exact_ids", + "ids": "⿰金孟", + "canonical_ids": "⿰金孟", + "expanded_ids": "⿰金⿱子皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "皿", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錴", + "codepoint": "U+9334", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9334", + "status": "exact_ids", + "ids": "⿰金坴", + "canonical_ids": "⿰金坴", + "expanded_ids": "⿰金⿱⿱土儿土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錵", + "codepoint": "U+9335", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9335", + "status": "exact_ids", + "ids": "⿰金花", + "canonical_ids": "⿰金花", + "expanded_ids": "⿰金⿱艹⿰亻匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "艹", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錶", + "codepoint": "U+9336", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9336", + "status": "exact_ids", + "ids": "⿰金表", + "canonical_ids": "⿰金表", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "表" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錷", + "codepoint": "U+9337", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9337", + "status": "exact_ids", + "ids": "⿰金軋", + "canonical_ids": "⿰金軋", + "expanded_ids": "⿰金⿰車乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "車", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錸", + "codepoint": "U+9338", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9338", + "status": "exact_ids", + "ids": "⿰金來", + "canonical_ids": "⿰金來", + "expanded_ids": "⿰金⿻木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錹", + "codepoint": "U+9339", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9339", + "status": "exact_ids", + "ids": "⿰金肯", + "canonical_ids": "⿰金肯", + "expanded_ids": "⿰金⿱止月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "止", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錺", + "codepoint": "U+933A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-933A", + "status": "exact_ids", + "ids": "⿰金芳", + "canonical_ids": "⿰金芳", + "expanded_ids": "⿰金⿱艹方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "艹", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錻", + "codepoint": "U+933B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-933B", + "status": "exact_ids", + "ids": "⿰金武", + "canonical_ids": "⿰金武", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "武" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錼", + "codepoint": "U+933C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-933C", + "status": "exact_ids", + "ids": "⿰金奈", + "canonical_ids": "⿰金奈", + "expanded_ids": "⿰金⿱大⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "大", + "小", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錽", + "codepoint": "U+933D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-933D", + "status": "exact_ids", + "ids": "⿰金𡕢", + "canonical_ids": "⿰金𡕢", + "expanded_ids": "⿰金⿱⿱一火夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夊", + "火", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錾", + "codepoint": "U+933E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-933E", + "status": "exact_ids", + "ids": "⿱斩金", + "canonical_ids": "⿱斩金", + "expanded_ids": "⿱⿰车斤金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "车", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "錿", + "codepoint": "U+933F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-933F", + "status": "exact_ids", + "ids": "⿰金虎", + "canonical_ids": "⿰金虎", + "expanded_ids": "⿰金⿱虍儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "虍", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍀", + "codepoint": "U+9340", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9340", + "status": "exact_ids", + "ids": "⿰金㝵", + "canonical_ids": "⿰金㝵", + "expanded_ids": "⿰金⿱日寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "日", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍁", + "codepoint": "U+9341", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9341", + "status": "exact_ids", + "ids": "⿰金欣", + "canonical_ids": "⿰金欣", + "expanded_ids": "⿰金⿰斤欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "欠", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍂", + "codepoint": "U+9342", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9342", + "status": "exact_ids", + "ids": "⿰金金", + "canonical_ids": "⿰金金", + "expanded_ids": "⿰金金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍃", + "codepoint": "U+9343", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9343", + "status": "exact_ids", + "ids": "⿰金忽", + "canonical_ids": "⿰金忽", + "expanded_ids": "⿰金⿱勿心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "心", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍄", + "codepoint": "U+9344", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9344", + "status": "exact_ids", + "ids": "⿰金京", + "canonical_ids": "⿰金京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍅", + "codepoint": "U+9345", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9345", + "status": "exact_ids", + "ids": "⿰金法", + "canonical_ids": "⿰金法", + "expanded_ids": "⿰金⿰氵⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "氵", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍆", + "codepoint": "U+9346", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9346", + "status": "exact_ids", + "ids": "⿰金門", + "canonical_ids": "⿰金門", + "expanded_ids": "⿰金門", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金", + "門" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍇", + "codepoint": "U+9347", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9347", + "status": "exact_ids", + "ids": "⿰金皆", + "canonical_ids": "⿰金皆", + "expanded_ids": "⿰金⿱⿰匕匕⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "日", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍈", + "codepoint": "U+9348", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9348", + "status": "exact_ids", + "ids": "⿰金英", + "canonical_ids": "⿰金英", + "expanded_ids": "⿰金⿱艹⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "艹", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍉", + "codepoint": "U+9349", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9349", + "status": "exact_ids", + "ids": "⿰金是", + "canonical_ids": "⿰金是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "金" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍊", + "codepoint": "U+934A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-934A", + "status": "exact_ids", + "ids": "⿰金柬", + "canonical_ids": "⿰金柬", + "expanded_ids": "⿰金柬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "柬", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍋", + "codepoint": "U+934B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-934B", + "status": "exact_ids", + "ids": "⿰金咼", + "canonical_ids": "⿰金咼", + "expanded_ids": "⿰金⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍌", + "codepoint": "U+934C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-934C", + "status": "exact_ids", + "ids": "⿱洗金", + "canonical_ids": "⿱洗金", + "expanded_ids": "⿱⿰氵⿱牛儿金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "氵", + "牛", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍍", + "codepoint": "U+934D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-934D", + "status": "exact_ids", + "ids": "⿰金度", + "canonical_ids": "⿰金度", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "度" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍎", + "codepoint": "U+934E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-934E", + "status": "exact_ids", + "ids": "⿰金盾", + "canonical_ids": "⿰金盾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "目", + "金" + ], + "unresolved_leaves": [ + "⺁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍏", + "codepoint": "U+934F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-934F", + "status": "exact_ids", + "ids": "⿰金韋", + "canonical_ids": "⿰金韋", + "expanded_ids": "⿰金韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍐", + "codepoint": "U+9350", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9350", + "status": "exact_ids", + "ids": "⿰金㚇", + "canonical_ids": "⿰金㚇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "夊", + "金" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍑", + "codepoint": "U+9351", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9351", + "status": "exact_ids", + "ids": "⿰金复", + "canonical_ids": "⿰金复", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "复" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍒", + "codepoint": "U+9352", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9352", + "status": "exact_ids", + "ids": "⿰金柔", + "canonical_ids": "⿰金柔", + "expanded_ids": "⿰金⿱矛木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "矛", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍓", + "codepoint": "U+9353", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9353", + "status": "exact_ids", + "ids": "⿰金咠", + "canonical_ids": "⿰金咠", + "expanded_ids": "⿰金⿱口耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "耳", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍔", + "codepoint": "U+9354", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9354", + "status": "exact_ids", + "ids": "⿰金咢", + "canonical_ids": "⿰金咢", + "expanded_ids": "⿰金⿱⿰口口⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍕", + "codepoint": "U+9355", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9355", + "status": "exact_ids", + "ids": "⿰金軍", + "canonical_ids": "⿰金軍", + "expanded_ids": "⿰金⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "車", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍖", + "codepoint": "U+9356", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9356", + "status": "exact_ids", + "ids": "⿰金甚", + "canonical_ids": "⿰金甚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甘", + "金" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍗", + "codepoint": "U+9357", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9357", + "status": "exact_ids", + "ids": "⿰金帝", + "canonical_ids": "⿰金帝", + "expanded_ids": "⿰金⿳⿱亠八冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍘", + "codepoint": "U+9358", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9358", + "status": "exact_ids", + "ids": "⿰金則", + "canonical_ids": "⿰金則", + "expanded_ids": "⿰金⿰⿱目八刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刂", + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍙", + "codepoint": "U+9359", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9359", + "status": "exact_ids", + "ids": "⿱洪金", + "canonical_ids": "⿱洪金", + "expanded_ids": "⿱⿰氵⿱廿廾金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "氵", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍚", + "codepoint": "U+935A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-935A", + "status": "exact_ids", + "ids": "⿰金昜", + "canonical_ids": "⿰金昜", + "expanded_ids": "⿰金⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍛", + "codepoint": "U+935B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-935B", + "status": "exact_ids", + "ids": "⿰金段", + "canonical_ids": "⿰金段", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "段" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍜", + "codepoint": "U+935C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-935C", + "status": "exact_ids", + "ids": "⿰金叚", + "canonical_ids": "⿰金叚", + "expanded_ids": "⿰金叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍝", + "codepoint": "U+935D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-935D", + "status": "exact_ids", + "ids": "⿰金禺", + "canonical_ids": "⿰金禺", + "expanded_ids": "⿰金⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "禸", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍞", + "codepoint": "U+935E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-935E", + "status": "exact_ids", + "ids": "⿰金貞", + "canonical_ids": "⿰金貞", + "expanded_ids": "⿰金⿱卜⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "卜", + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍟", + "codepoint": "U+935F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-935F", + "status": "exact_ids", + "ids": "⿰金星", + "canonical_ids": "⿰金星", + "expanded_ids": "⿰金⿱日⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "牛", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍠", + "codepoint": "U+9360", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9360", + "status": "exact_ids", + "ids": "⿰金皇", + "canonical_ids": "⿰金皇", + "expanded_ids": "⿰金⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "王", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍡", + "codepoint": "U+9361", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9361", + "status": "exact_ids", + "ids": "⿰金畏", + "canonical_ids": "⿰金畏", + "expanded_ids": "⿰金⿱田氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氏", + "田", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍢", + "codepoint": "U+9362", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9362", + "status": "exact_ids", + "ids": "⿰金畐", + "canonical_ids": "⿰金畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍣", + "codepoint": "U+9363", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9363", + "status": "exact_ids", + "ids": "⿰金苕", + "canonical_ids": "⿰金苕", + "expanded_ids": "⿰金⿱艹⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "艹", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍤", + "codepoint": "U+9364", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9364", + "status": "exact_ids", + "ids": "⿰金臿", + "canonical_ids": "⿰金臿", + "expanded_ids": "⿰金⿱⿱丿十臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "臼", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍥", + "codepoint": "U+9365", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9365", + "status": "exact_ids", + "ids": "⿰金契", + "canonical_ids": "⿰金契", + "expanded_ids": "⿰金⿱⿰丰刀大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "大", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍦", + "codepoint": "U+9366", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9366", + "status": "exact_ids", + "ids": "⿰金施", + "canonical_ids": "⿰金施", + "expanded_ids": "⿰金⿰⿰方人⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "人", + "方", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍧", + "codepoint": "U+9367", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9367", + "status": "exact_ids", + "ids": "⿰金訇", + "canonical_ids": "⿰金訇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "訇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍨", + "codepoint": "U+9368", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9368", + "status": "exact_ids", + "ids": "⿰金癸", + "canonical_ids": "⿰金癸", + "expanded_ids": "⿰金⿱癶⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "癶", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍩", + "codepoint": "U+9369", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9369", + "status": "exact_ids", + "ids": "⿰金若", + "canonical_ids": "⿰金若", + "expanded_ids": "⿰金⿱艹⿱⿻丿一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "艹", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍪", + "codepoint": "U+936A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-936A", + "status": "exact_ids", + "ids": "⿱敄金", + "canonical_ids": "⿱敄金", + "expanded_ids": "⿱⿰矛攵金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "矛", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍫", + "codepoint": "U+936B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-936B", + "status": "exact_ids", + "ids": "⿱秋金", + "canonical_ids": "⿱秋金", + "expanded_ids": "⿱⿰⿻丿木火金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "火", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍬", + "codepoint": "U+936C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-936C", + "status": "exact_ids", + "ids": "⿰金秋", + "canonical_ids": "⿰金秋", + "expanded_ids": "⿰金⿰⿻丿木火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "火", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍭", + "codepoint": "U+936D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-936D", + "status": "exact_ids", + "ids": "⿰金侯", + "canonical_ids": "⿰金侯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "侯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍮", + "codepoint": "U+936E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-936E", + "status": "exact_ids", + "ids": "⿰金兪", + "canonical_ids": "⿰金兪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "兪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍯", + "codepoint": "U+936F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-936F", + "status": "exact_ids", + "ids": "⿰金怱", + "canonical_ids": "⿰金怱", + "expanded_ids": "⿰金⿱⿻勿丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "勿", + "心", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍰", + "codepoint": "U+9370", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9370", + "status": "exact_ids", + "ids": "⿰金爰", + "canonical_ids": "⿰金爰", + "expanded_ids": "⿰金⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "爫", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍱", + "codepoint": "U+9371", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9371", + "status": "exact_ids", + "ids": "⿰金枼", + "canonical_ids": "⿰金枼", + "expanded_ids": "⿰金⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍲", + "codepoint": "U+9372", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9372", + "status": "exact_ids", + "ids": "⿰金昬", + "canonical_ids": "⿰金昬", + "expanded_ids": "⿰金⿱民日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "民", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍳", + "codepoint": "U+9373", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9373", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍴", + "codepoint": "U+9374", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9374", + "status": "exact_ids", + "ids": "⿰金耑", + "canonical_ids": "⿰金耑", + "expanded_ids": "⿰金⿱山而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "而", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍵", + "codepoint": "U+9375", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9375", + "status": "exact_ids", + "ids": "⿰金建", + "canonical_ids": "⿰金建", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廴", + "金" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍶", + "codepoint": "U+9376", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9376", + "status": "exact_ids", + "ids": "⿰金思", + "canonical_ids": "⿰金思", + "expanded_ids": "⿰金⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "田", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍷", + "codepoint": "U+9377", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9377", + "status": "exact_ids", + "ids": "⿰金奎", + "canonical_ids": "⿰金奎", + "expanded_ids": "⿰金⿱大⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "大", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍸", + "codepoint": "U+9378", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9378", + "status": "exact_ids", + "ids": "⿰金胡", + "canonical_ids": "⿰金胡", + "expanded_ids": "⿰金⿰⿻十口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "月", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍹", + "codepoint": "U+9379", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9379", + "status": "exact_ids", + "ids": "⿰金宣", + "canonical_ids": "⿰金宣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "金" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍺", + "codepoint": "U+937A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-937A", + "status": "exact_ids", + "ids": "⿰金者", + "canonical_ids": "⿰金者", + "expanded_ids": "⿰金⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍻", + "codepoint": "U+937B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-937B", + "status": "exact_ids", + "ids": "⿰金曷", + "canonical_ids": "⿰金曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "金" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍼", + "codepoint": "U+937C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-937C", + "status": "exact_ids", + "ids": "⿰金咸", + "canonical_ids": "⿰金咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍽", + "codepoint": "U+937D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-937D", + "status": "exact_ids", + "ids": "⿰金扁", + "canonical_ids": "⿰金扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "金" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍾", + "codepoint": "U+937E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-937E", + "status": "exact_ids", + "ids": "⿰金重", + "canonical_ids": "⿰金重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "金" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鍿", + "codepoint": "U+937F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-937F", + "status": "exact_ids", + "ids": "⿰金甾", + "canonical_ids": "⿰金甾", + "expanded_ids": "⿰金⿱巛田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "田", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "錙" + ] + }, + { + "character": "鎀", + "codepoint": "U+9380", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9380", + "status": "exact_ids", + "ids": "⿰金修", + "canonical_ids": "⿰金修", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "修" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎁", + "codepoint": "U+9381", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9381", + "status": "exact_ids", + "ids": "⿰金耶", + "canonical_ids": "⿰金耶", + "expanded_ids": "⿰金⿰耳阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳", + "金", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎂", + "codepoint": "U+9382", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9382", + "status": "exact_ids", + "ids": "⿰金美", + "canonical_ids": "⿰金美", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "美" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎃", + "codepoint": "U+9383", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9383", + "status": "exact_ids", + "ids": "⿰金派", + "canonical_ids": "⿰金派", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "派" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎄", + "codepoint": "U+9384", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9384", + "status": "exact_ids", + "ids": "⿰金哀", + "canonical_ids": "⿰金哀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "哀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎅", + "codepoint": "U+9385", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9385", + "status": "exact_ids", + "ids": "⿰金界", + "canonical_ids": "⿰金界", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "金" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎆", + "codepoint": "U+9386", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9386", + "status": "exact_ids", + "ids": "⿰金前", + "canonical_ids": "⿰金前", + "expanded_ids": "⿰金⿱止⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "月", + "止", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎇", + "codepoint": "U+9387", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9387", + "status": "exact_ids", + "ids": "⿰金眉", + "canonical_ids": "⿰金眉", + "expanded_ids": "⿰金⿱⿻尸丨目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "尸", + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎈", + "codepoint": "U+9388", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9388", + "status": "exact_ids", + "ids": "⿰金差", + "canonical_ids": "⿰金差", + "expanded_ids": "⿰金⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "羊", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎉", + "codepoint": "U+9389", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9389", + "status": "exact_ids", + "ids": "⿰金𦐇", + "canonical_ids": "⿰金𦐇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "金" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎊", + "codepoint": "U+938A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-938A", + "status": "exact_ids", + "ids": "⿰金旁", + "canonical_ids": "⿰金旁", + "expanded_ids": "⿰金⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "方", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎋", + "codepoint": "U+938B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-938B", + "status": "exact_ids", + "ids": "⿰金害", + "canonical_ids": "⿰金害", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "害" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎌", + "codepoint": "U+938C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-938C", + "status": "exact_ids", + "ids": "⿰金兼", + "canonical_ids": "⿰金兼", + "expanded_ids": "⿰金兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎍", + "codepoint": "U+938D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-938D", + "status": "exact_ids", + "ids": "⿰金索", + "canonical_ids": "⿰金索", + "expanded_ids": "⿰金⿳十冖⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "小", + "幺", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎎", + "codepoint": "U+938E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-938E", + "status": "exact_ids", + "ids": "⿰金氣", + "canonical_ids": "⿰金氣", + "expanded_ids": "⿰金⿱气⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "气", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎏", + "codepoint": "U+938F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-938F", + "status": "exact_ids", + "ids": "⿱流金", + "canonical_ids": "⿱流金", + "expanded_ids": "⿱⿰氵⿱亠⿱厶川金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "厶", + "川", + "氵", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎐", + "codepoint": "U+9390", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9390", + "status": "exact_ids", + "ids": "⿰金䍃", + "canonical_ids": "⿰金䍃", + "expanded_ids": "⿰金⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爪", + "缶", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎑", + "codepoint": "U+9391", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9391", + "status": "exact_ids", + "ids": "⿰金盍", + "canonical_ids": "⿰金盍", + "expanded_ids": "⿰金⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "皿", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎒", + "codepoint": "U+9392", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9392", + "status": "exact_ids", + "ids": "⿰金辱", + "canonical_ids": "⿰金辱", + "expanded_ids": "⿰金⿱辰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "辰", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎓", + "codepoint": "U+9393", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9393", + "status": "exact_ids", + "ids": "⿰金翁", + "canonical_ids": "⿰金翁", + "expanded_ids": "⿰金⿱⿱八厶⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "八", + "厶", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎔", + "codepoint": "U+9394", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9394", + "status": "exact_ids", + "ids": "⿰金容", + "canonical_ids": "⿰金容", + "expanded_ids": "⿰金⿱宀⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎕", + "codepoint": "U+9395", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9395", + "status": "exact_ids", + "ids": "⿰金唐", + "canonical_ids": "⿰金唐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎖", + "codepoint": "U+9396", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9396", + "status": "exact_ids", + "ids": "⿰金𧴪", + "canonical_ids": "⿰金𧴪", + "expanded_ids": "⿰金⿱小⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "小", + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎗", + "codepoint": "U+9397", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9397", + "status": "exact_ids", + "ids": "⿰金倉", + "canonical_ids": "⿰金倉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎘", + "codepoint": "U+9398", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9398", + "status": "exact_ids", + "ids": "⿰金鬲", + "canonical_ids": "⿰金鬲", + "expanded_ids": "⿰金鬲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎙", + "codepoint": "U+9399", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9399", + "status": "exact_ids", + "ids": "⿰金朔", + "canonical_ids": "⿰金朔", + "expanded_ids": "⿰金⿰⿱䒑屮月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "屮", + "月", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎚", + "codepoint": "U+939A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-939A", + "status": "exact_ids", + "ids": "⿰金追", + "canonical_ids": "⿰金追", + "expanded_ids": "⿰金⿰辶⿱丿㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "丿", + "辶", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎛", + "codepoint": "U+939B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-939B", + "status": "exact_ids", + "ids": "⿰金尃", + "canonical_ids": "⿰金尃", + "expanded_ids": "⿰金⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "甫", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎜", + "codepoint": "U+939C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-939C", + "status": "exact_ids", + "ids": "⿱般金", + "canonical_ids": "⿱般金", + "expanded_ids": "⿱⿰舟⿱几又金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "舟", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎝", + "codepoint": "U+939D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-939D", + "status": "exact_ids", + "ids": "⿰金荅", + "canonical_ids": "⿰金荅", + "expanded_ids": "⿰金⿱艹⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "艹", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎞", + "codepoint": "U+939E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-939E", + "status": "exact_ids", + "ids": "⿰金𣬉", + "canonical_ids": "⿰金𣬉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "金" + ], + "unresolved_leaves": [ + "囟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎟", + "codepoint": "U+939F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-939F", + "status": "exact_ids", + "ids": "⿰金桑", + "canonical_ids": "⿰金桑", + "expanded_ids": "⿰金⿱⿱又⿰又又木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎠", + "codepoint": "U+93A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93A0", + "status": "exact_ids", + "ids": "⿰金罡", + "canonical_ids": "⿰金罡", + "expanded_ids": "⿰金⿱罒⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "止", + "罒", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎡", + "codepoint": "U+93A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93A1", + "status": "exact_ids", + "ids": "⿰金兹", + "canonical_ids": "⿰金兹", + "expanded_ids": "⿰金⿱䒑⿰幺幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "幺", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎢", + "codepoint": "U+93A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93A2", + "status": "exact_ids", + "ids": "⿰金烏", + "canonical_ids": "⿰金烏", + "expanded_ids": "⿰金烏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "烏", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎣", + "codepoint": "U+93A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93A3", + "status": "exact_ids", + "ids": "⿳炏冖金", + "canonical_ids": "⿳炏冖金", + "expanded_ids": "⿳⿰火火冖金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "火", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎤", + "codepoint": "U+93A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93A4", + "status": "exact_ids", + "ids": "⿰金晃", + "canonical_ids": "⿰金晃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "日", + "金" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎥", + "codepoint": "U+93A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93A5", + "status": "exact_ids", + "ids": "⿱條金", + "canonical_ids": "⿱條金", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "條" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎦", + "codepoint": "U+93A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93A6", + "status": "exact_ids", + "ids": "⿰金留", + "canonical_ids": "⿰金留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎧", + "codepoint": "U+93A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93A7", + "status": "exact_ids", + "ids": "⿰金豈", + "canonical_ids": "⿰金豈", + "expanded_ids": "⿰金⿱山豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "豆", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎨", + "codepoint": "U+93A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93A8", + "status": "exact_ids", + "ids": "⿰金隼", + "canonical_ids": "⿰金隼", + "expanded_ids": "⿰金⿱隹十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "金", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎩", + "codepoint": "U+93A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93A9", + "status": "exact_ids", + "ids": "⿰金殺", + "canonical_ids": "⿰金殺", + "expanded_ids": "⿰金⿰⿱乂朩⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "几", + "又", + "朩", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎪", + "codepoint": "U+93AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93AA", + "status": "exact_ids", + "ids": "⿰金叟", + "canonical_ids": "⿰金叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "金" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎫", + "codepoint": "U+93AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93AB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎬", + "codepoint": "U+93AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93AC", + "status": "exact_ids", + "ids": "⿰金高", + "canonical_ids": "⿰金高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎭", + "codepoint": "U+93AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93AD", + "status": "exact_ids", + "ids": "⿰金眞", + "canonical_ids": "⿰金眞", + "expanded_ids": "⿰金⿻匕⿱⿱一儿目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "匕", + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎮", + "codepoint": "U+93AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93AE", + "status": "exact_ids", + "ids": "⿰金真", + "canonical_ids": "⿰金真", + "expanded_ids": "⿰金⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎯", + "codepoint": "U+93AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93AF", + "status": "exact_ids", + "ids": "⿰金郎", + "canonical_ids": "⿰金郎", + "expanded_ids": "⿰金⿰⿻丶艮阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "艮", + "金", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎰", + "codepoint": "U+93B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93B0", + "status": "exact_ids", + "ids": "⿰金益", + "canonical_ids": "⿰金益", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎱", + "codepoint": "U+93B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93B1", + "status": "exact_ids", + "ids": "⿰金袁", + "canonical_ids": "⿰金袁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "袁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎲", + "codepoint": "U+93B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93B2", + "status": "exact_ids", + "ids": "⿰金党", + "canonical_ids": "⿰金党", + "expanded_ids": "⿰金⿳小冖⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "口", + "小", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎳", + "codepoint": "U+93B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93B3", + "status": "exact_ids", + "ids": "⿰金臬", + "canonical_ids": "⿰金臬", + "expanded_ids": "⿰金⿱⿻目丶木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "木", + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎴", + "codepoint": "U+93B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93B4", + "status": "exact_ids", + "ids": "⿰金息", + "canonical_ids": "⿰金息", + "expanded_ids": "⿰金⿱⿻目丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "心", + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎵", + "codepoint": "U+93B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93B5", + "status": "exact_ids", + "ids": "⿰金家", + "canonical_ids": "⿰金家", + "expanded_ids": "⿰金⿱宀豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "豕", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎶", + "codepoint": "U+93B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93B6", + "status": "exact_ids", + "ids": "⿰金哥", + "canonical_ids": "⿰金哥", + "expanded_ids": "⿰金⿱⿰口⿱一亅⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎷", + "codepoint": "U+93B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93B7", + "status": "exact_ids", + "ids": "⿰金馬", + "canonical_ids": "⿰金馬", + "expanded_ids": "⿰金馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎸", + "codepoint": "U+93B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93B8", + "status": "exact_ids", + "ids": "⿰金隽", + "canonical_ids": "⿰金隽", + "expanded_ids": "⿰金⿱隹乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "金", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎹", + "codepoint": "U+93B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93B9", + "status": "exact_ids", + "ids": "⿰金送", + "canonical_ids": "⿰金送", + "expanded_ids": "⿰金⿰辶⿱丷⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "辶", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎺", + "codepoint": "U+93BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93BA", + "status": "exact_ids", + "ids": "⿰金祖", + "canonical_ids": "⿰金祖", + "expanded_ids": "⿰金⿰礻且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "礻", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎻", + "codepoint": "U+93BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93BB", + "status": "exact_ids", + "ids": "⿰金𧴲", + "canonical_ids": "⿰金𧴲", + "expanded_ids": "⿰金⿱巛⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "巛", + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎼", + "codepoint": "U+93BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93BC", + "status": "exact_ids", + "ids": "⿰金𧆠", + "canonical_ids": "⿰金𧆠", + "expanded_ids": "⿰金⿱虍手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "手", + "虍", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎽", + "codepoint": "U+93BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93BD", + "status": "exact_ids", + "ids": "⿰金峯", + "canonical_ids": "⿰金峯", + "expanded_ids": "⿰金⿱山⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "山", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎾", + "codepoint": "U+93BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93BE", + "status": "exact_ids", + "ids": "⿰金昷", + "canonical_ids": "⿰金昷", + "expanded_ids": "⿰金⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "皿", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鎿", + "codepoint": "U+93BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93BF", + "status": "exact_ids", + "ids": "⿰金拿", + "canonical_ids": "⿰金拿", + "expanded_ids": "⿰金⿱⿱⿱人一口手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "手", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏀", + "codepoint": "U+93C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93C0", + "status": "exact_ids", + "ids": "⿰金鹵", + "canonical_ids": "⿰金鹵", + "expanded_ids": "⿰金鹵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金", + "鹵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏁", + "codepoint": "U+93C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93C1", + "status": "exact_ids", + "ids": "⿰金巢", + "canonical_ids": "⿰金巢", + "expanded_ids": "⿰金⿱巛⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "木", + "田", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏂", + "codepoint": "U+93C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93C2", + "status": "exact_ids", + "ids": "⿰金區", + "canonical_ids": "⿰金區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏃", + "codepoint": "U+93C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93C3", + "status": "exact_ids", + "ids": "⿰金族", + "canonical_ids": "⿰金族", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "族" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏄", + "codepoint": "U+93C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93C4", + "status": "exact_ids", + "ids": "⿰金專", + "canonical_ids": "⿰金專", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "寸", + "金" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏅", + "codepoint": "U+93C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93C5", + "status": "exact_ids", + "ids": "⿰金脩", + "canonical_ids": "⿰金脩", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "脩" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏆", + "codepoint": "U+93C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93C6", + "status": "exact_ids", + "ids": "⿰金貫", + "canonical_ids": "⿰金貫", + "expanded_ids": "⿰金⿱毌⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "毌", + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏇", + "codepoint": "U+93C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93C7", + "status": "exact_ids", + "ids": "⿰金旋", + "canonical_ids": "⿰金旋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "旋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏈", + "codepoint": "U+93C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93C8", + "status": "exact_ids", + "ids": "⿰金連", + "canonical_ids": "⿰金連", + "expanded_ids": "⿰金⿰辶車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車", + "辶", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏉", + "codepoint": "U+93C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93C9", + "status": "exact_ids", + "ids": "⿰金欶", + "canonical_ids": "⿰金欶", + "expanded_ids": "⿰金⿰⿻木口欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "欠", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏊", + "codepoint": "U+93CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93CA", + "status": "exact_ids", + "ids": "⿱敖金", + "canonical_ids": "⿱敖金", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏋", + "codepoint": "U+93CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93CB", + "status": "exact_ids", + "ids": "⿰金㒼", + "canonical_ids": "⿰金㒼", + "expanded_ids": "⿰金⿱艹⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "艹", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 264, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏌", + "codepoint": "U+93CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93CC", + "status": "exact_ids", + "ids": "⿰金莫", + "canonical_ids": "⿰金莫", + "expanded_ids": "⿰金⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "艹", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏍", + "codepoint": "U+93CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93CD", + "status": "exact_ids", + "ids": "⿰金累", + "canonical_ids": "⿰金累", + "expanded_ids": "⿰金⿱田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "田", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏎", + "codepoint": "U+93CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93CE", + "status": "exact_ids", + "ids": "⿰金畢", + "canonical_ids": "⿰金畢", + "expanded_ids": "⿰金畢", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "畢", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏏", + "codepoint": "U+93CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93CF", + "status": "exact_ids", + "ids": "⿰金彗", + "canonical_ids": "⿰金彗", + "expanded_ids": "⿰金⿱⿰丰丰彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "彐", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏐", + "codepoint": "U+93D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93D0", + "status": "exact_ids", + "ids": "⿰金翏", + "canonical_ids": "⿰金翏", + "expanded_ids": "⿰金⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏑", + "codepoint": "U+93D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93D1", + "status": "exact_ids", + "ids": "⿰金啇", + "canonical_ids": "⿰金啇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏒", + "codepoint": "U+93D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93D2", + "status": "exact_ids", + "ids": "⿰金參", + "canonical_ids": "⿰金參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏓", + "codepoint": "U+93D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93D3", + "status": "exact_ids", + "ids": "⿰金悤", + "canonical_ids": "⿰金悤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "金" + ], + "unresolved_leaves": [ + "囱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏔", + "codepoint": "U+93D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93D4", + "status": "exact_ids", + "ids": "⿰金寅", + "canonical_ids": "⿰金寅", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "寅" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏕", + "codepoint": "U+93D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93D5", + "status": "exact_ids", + "ids": "⿰金鹿", + "canonical_ids": "⿰金鹿", + "expanded_ids": "⿰金鹿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏖", + "codepoint": "U+93D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93D6", + "status": "exact_ids", + "ids": "⿱鹿金", + "canonical_ids": "⿱鹿金", + "expanded_ids": "⿱鹿金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏗", + "codepoint": "U+93D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93D7", + "status": "exact_ids", + "ids": "⿰金堅", + "canonical_ids": "⿰金堅", + "expanded_ids": "⿰金⿱⿰臣又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "土", + "臣", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏘", + "codepoint": "U+93D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93D8", + "status": "exact_ids", + "ids": "⿰金將", + "canonical_ids": "⿰金將", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "將" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏙", + "codepoint": "U+93D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93D9", + "status": "exact_ids", + "ids": "⿰金崔", + "canonical_ids": "⿰金崔", + "expanded_ids": "⿰金⿱山隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "金", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏚", + "codepoint": "U+93DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93DA", + "status": "exact_ids", + "ids": "⿰金戚", + "canonical_ids": "⿰金戚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "戚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏛", + "codepoint": "U+93DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93DB", + "status": "exact_ids", + "ids": "⿰金常", + "canonical_ids": "⿰金常", + "expanded_ids": "⿰金⿳小冖⿱口⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "口", + "小", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏜", + "codepoint": "U+93DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93DC", + "status": "exact_ids", + "ids": "⿰金堂", + "canonical_ids": "⿰金堂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "金" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏝", + "codepoint": "U+93DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93DD", + "status": "exact_ids", + "ids": "⿰金曼", + "canonical_ids": "⿰金曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏞", + "codepoint": "U+93DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93DE", + "status": "exact_ids", + "ids": "⿰金庸", + "canonical_ids": "⿰金庸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "庸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏟", + "codepoint": "U+93DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93DF", + "status": "exact_ids", + "ids": "⿰金産", + "canonical_ids": "⿰金産", + "expanded_ids": "⿰金⿱⿱⿱亠八厂⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "八", + "厂", + "牛", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏠", + "codepoint": "U+93E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93E0", + "status": "exact_ids", + "ids": "⿰金逢", + "canonical_ids": "⿰金逢", + "expanded_ids": "⿰金⿰辶⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "辶", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏡", + "codepoint": "U+93E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93E1", + "status": "exact_ids", + "ids": "⿰金竟", + "canonical_ids": "⿰金竟", + "expanded_ids": "⿰金⿱立⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目", + "立", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏢", + "codepoint": "U+93E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93E2", + "status": "exact_ids", + "ids": "⿰金票", + "canonical_ids": "⿰金票", + "expanded_ids": "⿰金⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "覀", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏣", + "codepoint": "U+93E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93E3", + "status": "exact_ids", + "ids": "⿰金庶", + "canonical_ids": "⿰金庶", + "expanded_ids": "⿰金⿱广⿱廿火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "廿", + "火", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏤", + "codepoint": "U+93E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93E4", + "status": "exact_ids", + "ids": "⿰金婁", + "canonical_ids": "⿰金婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏥", + "codepoint": "U+93E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93E5", + "status": "exact_ids", + "ids": "⿰金宿", + "canonical_ids": "⿰金宿", + "expanded_ids": "⿰金⿱宀⿰亻⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "亻", + "宀", + "日", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏦", + "codepoint": "U+93E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93E6", + "status": "exact_ids", + "ids": "⿰金從", + "canonical_ids": "⿰金從", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "從" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏧", + "codepoint": "U+93E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93E7", + "status": "exact_ids", + "ids": "⿱殸金", + "canonical_ids": "⿱殸金", + "expanded_ids": "⿱⿰⿱士⿻尸丨⿱几又金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "几", + "又", + "士", + "尸", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏨", + "codepoint": "U+93E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93E8", + "status": "exact_ids", + "ids": "⿱斬金", + "canonical_ids": "⿱斬金", + "expanded_ids": "⿱⿰車斤金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "車", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏩", + "codepoint": "U+93E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93E9", + "status": "exact_ids", + "ids": "⿰金斬", + "canonical_ids": "⿰金斬", + "expanded_ids": "⿰金⿰車斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "車", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏪", + "codepoint": "U+93EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93EA", + "status": "exact_ids", + "ids": "⿰金曹", + "canonical_ids": "⿰金曹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "曹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏫", + "codepoint": "U+93EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93EB", + "status": "exact_ids", + "ids": "⿰金梨", + "canonical_ids": "⿰金梨", + "expanded_ids": "⿰金⿱⿰⿻丿木刂木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏬", + "codepoint": "U+93EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93EC", + "status": "exact_ids", + "ids": "⿰金虖", + "canonical_ids": "⿰金虖", + "expanded_ids": "⿰金⿱虍乎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乎", + "虍", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏭", + "codepoint": "U+93ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93ED", + "status": "exact_ids", + "ids": "⿰金悉", + "canonical_ids": "⿰金悉", + "expanded_ids": "⿰金⿱⿱丿⿻木丷心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "心", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏮", + "codepoint": "U+93EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93EE", + "status": "exact_ids", + "ids": "⿰金康", + "canonical_ids": "⿰金康", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "金" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏯", + "codepoint": "U+93EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93EF", + "status": "exact_ids", + "ids": "⿰金爽", + "canonical_ids": "⿰金爽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "金" + ], + "unresolved_leaves": [ + "㸚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏰", + "codepoint": "U+93F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93F0", + "status": "exact_ids", + "ids": "⿰金崩", + "canonical_ids": "⿰金崩", + "expanded_ids": "⿰金⿱山⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "月", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏱", + "codepoint": "U+93F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93F1", + "status": "exact_ids", + "ids": "⿰金章", + "canonical_ids": "⿰金章", + "expanded_ids": "⿰金⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "立", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏲", + "codepoint": "U+93F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93F2", + "status": "exact_ids", + "ids": "⿰金牽", + "canonical_ids": "⿰金牽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "牽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏳", + "codepoint": "U+93F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93F3", + "status": "exact_ids", + "ids": "⿰金曾", + "canonical_ids": "⿰金曾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏴", + "codepoint": "U+93F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93F4", + "status": "exact_ids", + "ids": "⿰金路", + "canonical_ids": "⿰金路", + "expanded_ids": "⿰金⿰⿱口龰⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "金", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏵", + "codepoint": "U+93F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93F5", + "status": "exact_ids", + "ids": "⿰金華", + "canonical_ids": "⿰金華", + "expanded_ids": "⿰金⿱艹𠦒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "金", + "𠦒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 118, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏶", + "codepoint": "U+93F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93F6", + "status": "exact_ids", + "ids": "⿰金集", + "canonical_ids": "⿰金集", + "expanded_ids": "⿰金⿱隹木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "金", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏷", + "codepoint": "U+93F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93F7", + "status": "exact_ids", + "ids": "⿰金菐", + "canonical_ids": "⿰金菐", + "expanded_ids": "⿰金⿱业⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "儿", + "羊", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏸", + "codepoint": "U+93F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93F8", + "status": "exact_ids", + "ids": "⿰金惠", + "canonical_ids": "⿰金惠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "心", + "金" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏹", + "codepoint": "U+93F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93F9", + "status": "exact_ids", + "ids": "⿰金强", + "canonical_ids": "⿰金强", + "expanded_ids": "⿰金⿰弓⿱口虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "弓", + "虫", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏺", + "codepoint": "U+93FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93FA", + "status": "exact_ids", + "ids": "⿰金發", + "canonical_ids": "⿰金發", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "發" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏻", + "codepoint": "U+93FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93FB", + "status": "exact_ids", + "ids": "⿰金粦", + "canonical_ids": "⿰金粦", + "expanded_ids": "⿰金⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏼", + "codepoint": "U+93FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93FC", + "status": "exact_ids", + "ids": "⿰金策", + "canonical_ids": "⿰金策", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "木", + "金" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏽", + "codepoint": "U+93FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93FD", + "status": "exact_ids", + "ids": "⿰金肅", + "canonical_ids": "⿰金肅", + "expanded_ids": "⿰金⿻肀𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "肀", + "金", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 118, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏾", + "codepoint": "U+93FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93FE", + "status": "exact_ids", + "ids": "⿰金散", + "canonical_ids": "⿰金散", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "散" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鏿", + "codepoint": "U+93FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-93FF", + "status": "exact_ids", + "ids": "⿰金棠", + "canonical_ids": "⿰金棠", + "expanded_ids": "⿰金⿳小冖⿱口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "口", + "小", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐀", + "codepoint": "U+9400", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9400", + "status": "exact_ids", + "ids": "⿰金貴", + "canonical_ids": "⿰金貴", + "expanded_ids": "⿰金⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐁", + "codepoint": "U+9401", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9401", + "status": "exact_ids", + "ids": "⿰金斯", + "canonical_ids": "⿰金斯", + "expanded_ids": "⿰金⿰其斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "斤", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐂", + "codepoint": "U+9402", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9402", + "status": "exact_ids", + "ids": "⿰金畱", + "canonical_ids": "⿰金畱", + "expanded_ids": "⿰金⿱丣田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丣", + "田", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐃", + "codepoint": "U+9403", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9403", + "status": "exact_ids", + "ids": "⿰金堯", + "canonical_ids": "⿰金堯", + "expanded_ids": "⿰金⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐄", + "codepoint": "U+9404", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9404", + "status": "exact_ids", + "ids": "⿰金黄", + "canonical_ids": "⿰金黄", + "expanded_ids": "⿰金黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐅", + "codepoint": "U+9405", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9405", + "status": "exact_ids", + "ids": "⿱敝金", + "canonical_ids": "⿱敝金", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "金" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐆", + "codepoint": "U+9406", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9406", + "status": "exact_ids", + "ids": "⿱隊金", + "canonical_ids": "⿱隊金", + "expanded_ids": "⿱⿰阝⿱八豕金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "豕", + "金", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐇", + "codepoint": "U+9407", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9407", + "status": "exact_ids", + "ids": "⿰金番", + "canonical_ids": "⿰金番", + "expanded_ids": "⿰金⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "木", + "田", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐈", + "codepoint": "U+9408", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9408", + "status": "exact_ids", + "ids": "⿰金喬", + "canonical_ids": "⿰金喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "金" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐉", + "codepoint": "U+9409", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9409", + "status": "exact_ids", + "ids": "⿰金巽", + "canonical_ids": "⿰金巽", + "expanded_ids": "⿰金⿱⿰己己⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "廾", + "廿", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐊", + "codepoint": "U+940A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-940A", + "status": "exact_ids", + "ids": "⿰金陽", + "canonical_ids": "⿰金陽", + "expanded_ids": "⿰金⿰阝⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "金", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐋", + "codepoint": "U+940B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-940B", + "status": "exact_ids", + "ids": "⿰金湯", + "canonical_ids": "⿰金湯", + "expanded_ids": "⿰金⿰氵⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "氵", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐌", + "codepoint": "U+940C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-940C", + "status": "exact_ids", + "ids": "⿰金象", + "canonical_ids": "⿰金象", + "expanded_ids": "⿰金象", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "象", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐍", + "codepoint": "U+940D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-940D", + "status": "exact_ids", + "ids": "⿰金矞", + "canonical_ids": "⿰金矞", + "expanded_ids": "⿰金⿱矛⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "矛", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐎", + "codepoint": "U+940E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-940E", + "status": "exact_ids", + "ids": "⿰金焦", + "canonical_ids": "⿰金焦", + "expanded_ids": "⿰金⿱隹灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬", + "金", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐏", + "codepoint": "U+940F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-940F", + "status": "exact_ids", + "ids": "⿰金尊", + "canonical_ids": "⿰金尊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "寸", + "金" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐐", + "codepoint": "U+9410", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9410", + "status": "exact_ids", + "ids": "⿰金尞", + "canonical_ids": "⿰金尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "金" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐑", + "codepoint": "U+9411", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9411", + "status": "exact_ids", + "ids": "⿰金結", + "canonical_ids": "⿰金結", + "expanded_ids": "⿰金⿰⿻幺小⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "小", + "幺", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐒", + "codepoint": "U+9412", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9412", + "status": "exact_ids", + "ids": "⿰金勞", + "canonical_ids": "⿰金勞", + "expanded_ids": "⿰金⿳⿰火火冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "火", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐓", + "codepoint": "U+9413", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9413", + "status": "exact_ids", + "ids": "⿰金敦", + "canonical_ids": "⿰金敦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "金" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐔", + "codepoint": "U+9414", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9414", + "status": "exact_ids", + "ids": "⿰金覃", + "canonical_ids": "⿰金覃", + "expanded_ids": "⿰金⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "襾", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐕", + "codepoint": "U+9415", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9415", + "status": "exact_ids", + "ids": "⿰金朁", + "canonical_ids": "⿰金朁", + "expanded_ids": "⿰金⿱⿰旡旡曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "旡", + "曰", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐖", + "codepoint": "U+9416", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9416", + "status": "exact_ids", + "ids": "⿰金幾", + "canonical_ids": "⿰金幾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "金" + ], + "unresolved_leaves": [ + "戍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐗", + "codepoint": "U+9417", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9417", + "status": "exact_ids", + "ids": "⿰金閒", + "canonical_ids": "⿰金閒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "閒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐘", + "codepoint": "U+9418", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9418", + "status": "exact_ids", + "ids": "⿰金童", + "canonical_ids": "⿰金童", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立", + "金" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐙", + "codepoint": "U+9419", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9419", + "status": "exact_ids", + "ids": "⿰金登", + "canonical_ids": "⿰金登", + "expanded_ids": "⿰金⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "癶", + "豆", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐚", + "codepoint": "U+941A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-941A", + "status": "exact_ids", + "ids": "⿰金惡", + "canonical_ids": "⿰金惡", + "expanded_ids": "⿰金⿱亞心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亞", + "心", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐛", + "codepoint": "U+941B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-941B", + "status": "exact_ids", + "ids": "⿰金景", + "canonical_ids": "⿰金景", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "金" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐜", + "codepoint": "U+941C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-941C", + "status": "exact_ids", + "ids": "⿱敦金", + "canonical_ids": "⿱敦金", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "金" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐝", + "codepoint": "U+941D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-941D", + "status": "exact_ids", + "ids": "⿰金厥", + "canonical_ids": "⿰金厥", + "expanded_ids": "⿰金⿱厂⿰⿱䒑屮欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "厂", + "屮", + "欠", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐞", + "codepoint": "U+941E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-941E", + "status": "exact_ids", + "ids": "⿰金尋", + "canonical_ids": "⿰金尋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "尋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐟", + "codepoint": "U+941F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-941F", + "status": "exact_ids", + "ids": "⿰金替", + "canonical_ids": "⿰金替", + "expanded_ids": "⿰金⿱⿰⿻一大⿻一大曰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "曰", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐠", + "codepoint": "U+9420", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9420", + "status": "exact_ids", + "ids": "⿰金普", + "canonical_ids": "⿰金普", + "expanded_ids": "⿰金⿱⿱丷亚日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亚", + "日", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐡", + "codepoint": "U+9421", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9421", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐢", + "codepoint": "U+9422", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9422", + "status": "exact_ids", + "ids": "⿱棥金", + "canonical_ids": "⿱棥金", + "expanded_ids": "⿱⿲木⿱乂乂木金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐣", + "codepoint": "U+9423", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9423", + "status": "exact_ids", + "ids": "⿰金掌", + "canonical_ids": "⿰金掌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "手", + "金" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐤", + "codepoint": "U+9424", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9424", + "status": "exact_ids", + "ids": "⿰金鼎", + "canonical_ids": "⿰金鼎", + "expanded_ids": "⿰金鼎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金", + "鼎" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐥", + "codepoint": "U+9425", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9425", + "status": "exact_ids", + "ids": "⿰金善", + "canonical_ids": "⿰金善", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "善" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐦", + "codepoint": "U+9426", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9426", + "status": "exact_ids", + "ids": "⿰金開", + "canonical_ids": "⿰金開", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "開" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐧", + "codepoint": "U+9427", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9427", + "status": "exact_ids", + "ids": "⿰金間", + "canonical_ids": "⿰金間", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "間" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐨", + "codepoint": "U+9428", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9428", + "status": "exact_ids", + "ids": "⿰金費", + "canonical_ids": "⿰金費", + "expanded_ids": "⿰金⿱⿻弓刂⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刂", + "弓", + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐩", + "codepoint": "U+9429", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9429", + "status": "exact_ids", + "ids": "⿰金遂", + "canonical_ids": "⿰金遂", + "expanded_ids": "⿰金⿰辶⿱八豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "豕", + "辶", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐪", + "codepoint": "U+942A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-942A", + "status": "exact_ids", + "ids": "⿰金虜", + "canonical_ids": "⿰金虜", + "expanded_ids": "⿰金⿱虍⿱田力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "田", + "虍", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐫", + "codepoint": "U+942B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-942B", + "status": "exact_ids", + "ids": "⿰金雋", + "canonical_ids": "⿰金雋", + "expanded_ids": "⿰金⿱隹弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "金", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐬", + "codepoint": "U+942C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-942C", + "status": "exact_ids", + "ids": "⿰金歲", + "canonical_ids": "⿰金歲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "歲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐭", + "codepoint": "U+942D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-942D", + "status": "exact_ids", + "ids": "⿰金奥", + "canonical_ids": "⿰金奥", + "expanded_ids": "⿰金⿱⿱宀⿻木丷大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "大", + "宀", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐮", + "codepoint": "U+942E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-942E", + "status": "exact_ids", + "ids": "⿰金廉", + "canonical_ids": "⿰金廉", + "expanded_ids": "⿰金⿱广兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "广", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐯", + "codepoint": "U+942F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-942F", + "status": "exact_ids", + "ids": "⿰金著", + "canonical_ids": "⿰金著", + "expanded_ids": "⿰金⿱艹⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "艹", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐰", + "codepoint": "U+9430", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9430", + "status": "exact_ids", + "ids": "⿰金喿", + "canonical_ids": "⿰金喿", + "expanded_ids": "⿰金⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐱", + "codepoint": "U+9431", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9431", + "status": "exact_ids", + "ids": "⿰金僉", + "canonical_ids": "⿰金僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐲", + "codepoint": "U+9432", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9432", + "status": "exact_ids", + "ids": "⿰金蜀", + "canonical_ids": "⿰金蜀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒", + "金" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐳", + "codepoint": "U+9433", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9433", + "status": "exact_ids", + "ids": "⿰金雷", + "canonical_ids": "⿰金雷", + "expanded_ids": "⿰金⿱雨田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "金", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐴", + "codepoint": "U+9434", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9434", + "status": "exact_ids", + "ids": "⿰金辟", + "canonical_ids": "⿰金辟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立", + "金" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐵", + "codepoint": "U+9435", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9435", + "status": "exact_ids", + "ids": "⿰金𢧜", + "canonical_ids": "⿰金𢧜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "𢧜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐶", + "codepoint": "U+9436", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9436", + "status": "exact_ids", + "ids": "⿰金睘", + "canonical_ids": "⿰金睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐷", + "codepoint": "U+9437", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9437", + "status": "exact_ids", + "ids": "⿰金葉", + "canonical_ids": "⿰金葉", + "expanded_ids": "⿰金⿱艹⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木", + "艹", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐸", + "codepoint": "U+9438", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9438", + "status": "exact_ids", + "ids": "⿰金睪", + "canonical_ids": "⿰金睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "罒", + "金" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐹", + "codepoint": "U+9439", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9439", + "status": "exact_ids", + "ids": "⿰金過", + "canonical_ids": "⿰金過", + "expanded_ids": "⿰金⿰辶⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "辶", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐺", + "codepoint": "U+943A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-943A", + "status": "exact_ids", + "ids": "⿰金當", + "canonical_ids": "⿰金當", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "田", + "金" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐻", + "codepoint": "U+943B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-943B", + "status": "exact_ids", + "ids": "⿰金豦", + "canonical_ids": "⿰金豦", + "expanded_ids": "⿰金⿱虍豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虍", + "豕", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐼", + "codepoint": "U+943C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-943C", + "status": "exact_ids", + "ids": "⿰金賁", + "canonical_ids": "⿰金賁", + "expanded_ids": "⿰金⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "廾", + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐽", + "codepoint": "U+943D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-943D", + "status": "exact_ids", + "ids": "⿰金達", + "canonical_ids": "⿰金達", + "expanded_ids": "⿰金⿰辶⿱土羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "羊", + "辶", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐾", + "codepoint": "U+943E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-943E", + "status": "exact_ids", + "ids": "⿱辟金", + "canonical_ids": "⿱辟金", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立", + "金" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鐿", + "codepoint": "U+943F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-943F", + "status": "exact_ids", + "ids": "⿰金意", + "canonical_ids": "⿰金意", + "expanded_ids": "⿰金⿱⿱立日心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "日", + "立", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑀", + "codepoint": "U+9440", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9440", + "status": "exact_ids", + "ids": "⿰金愛", + "canonical_ids": "⿰金愛", + "expanded_ids": "⿰金⿳爫冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "夊", + "心", + "爫", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑁", + "codepoint": "U+9441", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9441", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑂", + "codepoint": "U+9442", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9442", + "status": "exact_ids", + "ids": "⿰金熏", + "canonical_ids": "⿰金熏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "熏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑃", + "codepoint": "U+9443", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9443", + "status": "exact_ids", + "ids": "⿰金翟", + "canonical_ids": "⿰金翟", + "expanded_ids": "⿰金⿱⿰习习隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "金", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑄", + "codepoint": "U+9444", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9444", + "status": "exact_ids", + "ids": "⿰金壽", + "canonical_ids": "⿰金壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑅", + "codepoint": "U+9445", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9445", + "status": "exact_ids", + "ids": "⿰金榮", + "canonical_ids": "⿰金榮", + "expanded_ids": "⿰金⿳⿰火火冖木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "木", + "火", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑆", + "codepoint": "U+9446", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9446", + "status": "exact_ids", + "ids": "⿰金對", + "canonical_ids": "⿰金對", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "寸", + "金" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑇", + "codepoint": "U+9447", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9447", + "status": "exact_ids", + "ids": "⿰金齊", + "canonical_ids": "⿰金齊", + "expanded_ids": "⿰金齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑈", + "codepoint": "U+9448", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9448", + "status": "exact_ids", + "ids": "⿰金爾", + "canonical_ids": "⿰金爾", + "expanded_ids": "⿰金爾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爾", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑉", + "codepoint": "U+9449", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9449", + "status": "exact_ids", + "ids": "⿰金蓋", + "canonical_ids": "⿰金蓋", + "expanded_ids": "⿰金⿱艹⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "皿", + "艹", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑊", + "codepoint": "U+944A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-944A", + "status": "exact_ids", + "ids": "⿰金蒦", + "canonical_ids": "⿰金蒦", + "expanded_ids": "⿰金⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "艹", + "金", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑋", + "codepoint": "U+944B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-944B", + "status": "exact_ids", + "ids": "⿱輕金", + "canonical_ids": "⿱輕金", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車", + "金" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑌", + "codepoint": "U+944C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-944C", + "status": "exact_ids", + "ids": "⿰金賓", + "canonical_ids": "⿰金賓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑍", + "codepoint": "U+944D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-944D", + "status": "exact_ids", + "ids": "⿱⿰貝貝金", + "canonical_ids": "⿱⿰貝貝金", + "expanded_ids": "⿱⿰⿱目八⿱目八金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑎", + "codepoint": "U+944E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-944E", + "status": "exact_ids", + "ids": "⿰金匱", + "canonical_ids": "⿰金匱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "匱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑏", + "codepoint": "U+944F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-944F", + "status": "exact_ids", + "ids": "⿰金寧", + "canonical_ids": "⿰金寧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "金" + ], + "unresolved_leaves": [ + "寍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑐", + "codepoint": "U+9450", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9450", + "status": "exact_ids", + "ids": "⿰金需", + "canonical_ids": "⿰金需", + "expanded_ids": "⿰金⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "而", + "金", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑑", + "codepoint": "U+9451", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9451", + "status": "exact_ids", + "ids": "⿰金監", + "canonical_ids": "⿰金監", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "監" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑒", + "codepoint": "U+9452", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9452", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑓", + "codepoint": "U+9453", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9453", + "status": "exact_ids", + "ids": "⿰金遣", + "canonical_ids": "⿰金遣", + "expanded_ids": "⿰金⿰辶⿱⿱⿻口丨一㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "一", + "丨", + "口", + "辶", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑔", + "codepoint": "U+9454", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9454", + "status": "exact_ids", + "ids": "⿰金察", + "canonical_ids": "⿰金察", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "金" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑕", + "codepoint": "U+9455", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9455", + "status": "exact_ids", + "ids": "⿰金質", + "canonical_ids": "⿰金質", + "expanded_ids": "⿰金⿱⿰斤斤⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "斤", + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑖", + "codepoint": "U+9456", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9456", + "status": "exact_ids", + "ids": "⿰金蔑", + "canonical_ids": "⿰金蔑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "艹", + "金" + ], + "unresolved_leaves": [ + "戌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑗", + "codepoint": "U+9457", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9457", + "status": "exact_ids", + "ids": "⿰金黎", + "canonical_ids": "⿰金黎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "黎" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑘", + "codepoint": "U+9458", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9458", + "status": "exact_ids", + "ids": "⿰金畾", + "canonical_ids": "⿰金畾", + "expanded_ids": "⿰金⿱田⿰田田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑙", + "codepoint": "U+9459", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9459", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑚", + "codepoint": "U+945A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-945A", + "status": "exact_ids", + "ids": "⿰金賛", + "canonical_ids": "⿰金賛", + "expanded_ids": "⿰金⿱⿰⿻一大⿻一大⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "大", + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑛", + "codepoint": "U+945B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-945B", + "status": "exact_ids", + "ids": "⿰金廣", + "canonical_ids": "⿰金廣", + "expanded_ids": "⿰金⿱广黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "金", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑜", + "codepoint": "U+945C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-945C", + "status": "exact_ids", + "ids": "⿰金賞", + "canonical_ids": "⿰金賞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "小", + "目", + "金" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑝", + "codepoint": "U+945D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-945D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑞", + "codepoint": "U+945E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-945E", + "status": "exact_ids", + "ids": "⿰金巤", + "canonical_ids": "⿰金巤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "巤" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑟", + "codepoint": "U+945F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-945F", + "status": "exact_ids", + "ids": "⿰金賣", + "canonical_ids": "⿰金賣", + "expanded_ids": "⿰金⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "士", + "目", + "罒", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑠", + "codepoint": "U+9460", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9460", + "status": "exact_ids", + "ids": "⿰金樂", + "canonical_ids": "⿰金樂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "樂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑡", + "codepoint": "U+9461", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9461", + "status": "exact_ids", + "ids": "⿰金齒", + "canonical_ids": "⿰金齒", + "expanded_ids": "⿰金齒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑢", + "codepoint": "U+9462", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9462", + "status": "exact_ids", + "ids": "⿰金慮", + "canonical_ids": "⿰金慮", + "expanded_ids": "⿰金⿱虍⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "田", + "虍", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑣", + "codepoint": "U+9463", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9463", + "status": "exact_ids", + "ids": "⿰金麃", + "canonical_ids": "⿰金麃", + "expanded_ids": "⿰金⿱鹿灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬", + "金", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑤", + "codepoint": "U+9464", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9464", + "status": "exact_ids", + "ids": "⿰金暴", + "canonical_ids": "⿰金暴", + "expanded_ids": "⿰金⿱日⿱⿱廿廾氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "日", + "氺", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑥", + "codepoint": "U+9465", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9465", + "status": "exact_ids", + "ids": "⿰金魯", + "canonical_ids": "⿰金魯", + "expanded_ids": "⿰金⿱魚日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "金", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑦", + "codepoint": "U+9466", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9466", + "status": "exact_ids", + "ids": "⿰金賢", + "canonical_ids": "⿰金賢", + "expanded_ids": "⿰金⿱⿰臣又⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "又", + "目", + "臣", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑧", + "codepoint": "U+9467", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9467", + "status": "exact_ids", + "ids": "⿰金寬", + "canonical_ids": "⿰金寬", + "expanded_ids": "⿰金⿱宀萈", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "萈", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑨", + "codepoint": "U+9468", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9468", + "status": "exact_ids", + "ids": "⿰金龍", + "canonical_ids": "⿰金龍", + "expanded_ids": "⿰金龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑩", + "codepoint": "U+9469", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9469", + "status": "exact_ids", + "ids": "⿰金噩", + "canonical_ids": "⿰金噩", + "expanded_ids": "⿰金⿻王⿰⿱口口⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "王", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑪", + "codepoint": "U+946A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-946A", + "status": "exact_ids", + "ids": "⿰金盧", + "canonical_ids": "⿰金盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "金" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑫", + "codepoint": "U+946B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-946B", + "status": "exact_ids", + "ids": "⿱金⿰金金", + "canonical_ids": "⿱金⿰金金", + "expanded_ids": "⿱金⿰金金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑬", + "codepoint": "U+946C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-946C", + "status": "exact_ids", + "ids": "⿰金覧", + "canonical_ids": "⿰金覧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "覧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑭", + "codepoint": "U+946D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-946D", + "status": "exact_ids", + "ids": "⿰金闌", + "canonical_ids": "⿰金闌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑮", + "codepoint": "U+946E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-946E", + "status": "exact_ids", + "ids": "⿰金薄", + "canonical_ids": "⿰金薄", + "expanded_ids": "⿰金⿱艹⿰氵⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "氵", + "甫", + "艹", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑯", + "codepoint": "U+946F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-946F", + "status": "exact_ids", + "ids": "⿰金韱", + "canonical_ids": "⿰金韱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "韱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑰", + "codepoint": "U+9470", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9470", + "status": "exact_ids", + "ids": "⿰金龠", + "canonical_ids": "⿰金龠", + "expanded_ids": "⿰金龠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金", + "龠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑱", + "codepoint": "U+9471", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9471", + "status": "exact_ids", + "ids": "⿰金毚", + "canonical_ids": "⿰金毚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "毚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑲", + "codepoint": "U+9472", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9472", + "status": "exact_ids", + "ids": "⿰金襄", + "canonical_ids": "⿰金襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑳", + "codepoint": "U+9473", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9473", + "status": "exact_ids", + "ids": "⿰金蹇", + "canonical_ids": "⿰金蹇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "蹇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑴", + "codepoint": "U+9474", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9474", + "status": "exact_ids", + "ids": "⿰金巂", + "canonical_ids": "⿰金巂", + "expanded_ids": "⿰金⿱⿱山隹⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "山", + "金", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑵", + "codepoint": "U+9475", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9475", + "status": "exact_ids", + "ids": "⿰金雚", + "canonical_ids": "⿰金雚", + "expanded_ids": "⿰金⿱艹⿱⿰口口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艹", + "金", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑶", + "codepoint": "U+9476", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9476", + "status": "exact_ids", + "ids": "⿰金藏", + "canonical_ids": "⿰金藏", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "金" + ], + "unresolved_leaves": [ + "臧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑷", + "codepoint": "U+9477", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9477", + "status": "exact_ids", + "ids": "⿰金聶", + "canonical_ids": "⿰金聶", + "expanded_ids": "⿰金⿱耳⿰耳耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 154, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑸", + "codepoint": "U+9478", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9478", + "status": "exact_ids", + "ids": "⿰金壘", + "canonical_ids": "⿰金壘", + "expanded_ids": "⿰金⿱⿱田⿰田田土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "田", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑹", + "codepoint": "U+9479", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9479", + "status": "exact_ids", + "ids": "⿰金竄", + "canonical_ids": "⿰金竄", + "expanded_ids": "⿰金⿱⿱宀八鼠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "金", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑺", + "codepoint": "U+947A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-947A", + "status": "exact_ids", + "ids": "⿰金瞿", + "canonical_ids": "⿰金瞿", + "expanded_ids": "⿰金⿱⿰目目隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "金", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑻", + "codepoint": "U+947B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-947B", + "status": "exact_ids", + "ids": "⿰金攀", + "canonical_ids": "⿰金攀", + "expanded_ids": "⿰金⿱⿱⿲木⿱乂乂木大手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "大", + "手", + "木", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 253, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑼", + "codepoint": "U+947C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-947C", + "status": "exact_ids", + "ids": "⿰金羅", + "canonical_ids": "⿰金羅", + "expanded_ids": "⿰金⿱罒⿰⿻幺小隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "罒", + "金", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑽", + "codepoint": "U+947D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-947D", + "status": "exact_ids", + "ids": "⿰金贊", + "canonical_ids": "⿰金贊", + "expanded_ids": "⿰金⿱⿰⿱牛儿⿱牛儿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "牛", + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑾", + "codepoint": "U+947E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-947E", + "status": "exact_ids", + "ids": "⿱䜌金", + "canonical_ids": "⿱䜌金", + "expanded_ids": "⿱⿲⿱幺小言⿱幺小金", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "言", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 217, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鑿", + "codepoint": "U+947F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-947F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钀", + "codepoint": "U+9480", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9480", + "status": "exact_ids", + "ids": "⿰金獻", + "canonical_ids": "⿰金獻", + "expanded_ids": "⿰金⿰⿱虍鬲⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "虍", + "金", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钁", + "codepoint": "U+9481", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9481", + "status": "exact_ids", + "ids": "⿰金矍", + "canonical_ids": "⿰金矍", + "expanded_ids": "⿰金⿱⿰目目⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "目", + "金", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钂", + "codepoint": "U+9482", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9482", + "status": "exact_ids", + "ids": "⿰金黨", + "canonical_ids": "⿰金黨", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "金", + "黑" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钃", + "codepoint": "U+9483", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9483", + "status": "exact_ids", + "ids": "⿰金屬", + "canonical_ids": "⿰金屬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金" + ], + "unresolved_leaves": [ + "屬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钄", + "codepoint": "U+9484", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9484", + "status": "exact_ids", + "ids": "⿰金蘭", + "canonical_ids": "⿰金蘭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "金" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钅", + "codepoint": "U+9485", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9485", + "status": "leaf_self_fallback", + "ids": "钅", + "canonical_ids": "钅", + "expanded_ids": "钅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钆", + "codepoint": "U+9486", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9486", + "status": "exact_ids", + "ids": "⿰钅乚", + "canonical_ids": "⿰钅乚", + "expanded_ids": "⿰钅乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钇", + "codepoint": "U+9487", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9487", + "status": "exact_ids", + "ids": "⿰钅乙", + "canonical_ids": "⿰钅乙", + "expanded_ids": "⿰钅乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "针", + "codepoint": "U+9488", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9488", + "status": "exact_ids", + "ids": "⿰钅十", + "canonical_ids": "⿰钅十", + "expanded_ids": "⿰钅十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钉", + "codepoint": "U+9489", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9489", + "status": "exact_ids", + "ids": "⿰钅丁", + "canonical_ids": "⿰钅丁", + "expanded_ids": "⿰钅⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钊", + "codepoint": "U+948A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-948A", + "status": "exact_ids", + "ids": "⿰钅刂", + "canonical_ids": "⿰钅刂", + "expanded_ids": "⿰钅刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钋", + "codepoint": "U+948B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-948B", + "status": "exact_ids", + "ids": "⿰钅卜", + "canonical_ids": "⿰钅卜", + "expanded_ids": "⿰钅卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钌", + "codepoint": "U+948C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-948C", + "status": "exact_ids", + "ids": "⿰钅了", + "canonical_ids": "⿰钅了", + "expanded_ids": "⿰钅了", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "了", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钍", + "codepoint": "U+948D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-948D", + "status": "exact_ids", + "ids": "⿰钅土", + "canonical_ids": "⿰钅土", + "expanded_ids": "⿰钅土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钎", + "codepoint": "U+948E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-948E", + "status": "exact_ids", + "ids": "⿰钅千", + "canonical_ids": "⿰钅千", + "expanded_ids": "⿰钅⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钏", + "codepoint": "U+948F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-948F", + "status": "exact_ids", + "ids": "⿰钅川", + "canonical_ids": "⿰钅川", + "expanded_ids": "⿰钅川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "川", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钐", + "codepoint": "U+9490", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9490", + "status": "exact_ids", + "ids": "⿰钅彡", + "canonical_ids": "⿰钅彡", + "expanded_ids": "⿰钅彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钑", + "codepoint": "U+9491", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9491", + "status": "exact_ids", + "ids": "⿰钅及", + "canonical_ids": "⿰钅及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "钅" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钒", + "codepoint": "U+9492", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9492", + "status": "exact_ids", + "ids": "⿰钅凡", + "canonical_ids": "⿰钅凡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钓", + "codepoint": "U+9493", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9493", + "status": "exact_ids", + "ids": "⿰钅勺", + "canonical_ids": "⿰钅勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钔", + "codepoint": "U+9494", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9494", + "status": "exact_ids", + "ids": "⿰钅门", + "canonical_ids": "⿰钅门", + "expanded_ids": "⿰钅门", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅", + "门" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钕", + "codepoint": "U+9495", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9495", + "status": "exact_ids", + "ids": "⿰钅女", + "canonical_ids": "⿰钅女", + "expanded_ids": "⿰钅女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钖", + "codepoint": "U+9496", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9496", + "status": "exact_ids", + "ids": "⿰钅𠃓", + "canonical_ids": "⿰钅𠃓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "𠃓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钗", + "codepoint": "U+9497", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9497", + "status": "exact_ids", + "ids": "⿰钅叉", + "canonical_ids": "⿰钅叉", + "expanded_ids": "⿰钅⿻又丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "又", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钘", + "codepoint": "U+9498", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9498", + "status": "exact_ids", + "ids": "⿰钅开", + "canonical_ids": "⿰钅开", + "expanded_ids": "⿰钅⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廾", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钙", + "codepoint": "U+9499", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9499", + "status": "exact_ids", + "ids": "⿰钅丐", + "canonical_ids": "⿰钅丐", + "expanded_ids": "⿰钅丐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丐", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钚", + "codepoint": "U+949A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-949A", + "status": "exact_ids", + "ids": "⿰钅不", + "canonical_ids": "⿰钅不", + "expanded_ids": "⿰钅不", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钛", + "codepoint": "U+949B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-949B", + "status": "exact_ids", + "ids": "⿰钅太", + "canonical_ids": "⿰钅太", + "expanded_ids": "⿰钅⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钜", + "codepoint": "U+949C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-949C", + "status": "exact_ids", + "ids": "⿰钅巨", + "canonical_ids": "⿰钅巨", + "expanded_ids": "⿰钅巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钝", + "codepoint": "U+949D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-949D", + "status": "exact_ids", + "ids": "⿰钅屯", + "canonical_ids": "⿰钅屯", + "expanded_ids": "⿰钅屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钞", + "codepoint": "U+949E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-949E", + "status": "exact_ids", + "ids": "⿰钅少", + "canonical_ids": "⿰钅少", + "expanded_ids": "⿰钅⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钟", + "codepoint": "U+949F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-949F", + "status": "exact_ids", + "ids": "⿰钅中", + "canonical_ids": "⿰钅中", + "expanded_ids": "⿰钅⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钠", + "codepoint": "U+94A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94A0", + "status": "exact_ids", + "ids": "⿰钅内", + "canonical_ids": "⿰钅内", + "expanded_ids": "⿰钅⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "钡" + ] + }, + { + "character": "钡", + "codepoint": "U+94A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94A1", + "status": "exact_ids", + "ids": "⿰钅贝", + "canonical_ids": "⿰钅贝", + "expanded_ids": "⿰钅⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "钠" + ] + }, + { + "character": "钢", + "codepoint": "U+94A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94A2", + "status": "exact_ids", + "ids": "⿰钅冈", + "canonical_ids": "⿰钅冈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "冈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钣", + "codepoint": "U+94A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94A3", + "status": "exact_ids", + "ids": "⿰钅反", + "canonical_ids": "⿰钅反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钤", + "codepoint": "U+94A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94A4", + "status": "exact_ids", + "ids": "⿰钅今", + "canonical_ids": "⿰钅今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "钅" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钥", + "codepoint": "U+94A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94A5", + "status": "exact_ids", + "ids": "⿰钅月", + "canonical_ids": "⿰钅月", + "expanded_ids": "⿰钅月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钦", + "codepoint": "U+94A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94A6", + "status": "exact_ids", + "ids": "⿰钅欠", + "canonical_ids": "⿰钅欠", + "expanded_ids": "⿰钅欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钧", + "codepoint": "U+94A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94A7", + "status": "exact_ids", + "ids": "⿰钅匀", + "canonical_ids": "⿰钅匀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "匀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钨", + "codepoint": "U+94A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94A8", + "status": "exact_ids", + "ids": "⿰钅乌", + "canonical_ids": "⿰钅乌", + "expanded_ids": "⿰钅乌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乌", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钩", + "codepoint": "U+94A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94A9", + "status": "exact_ids", + "ids": "⿰钅勾", + "canonical_ids": "⿰钅勾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "勾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钪", + "codepoint": "U+94AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94AA", + "status": "exact_ids", + "ids": "⿰钅亢", + "canonical_ids": "⿰钅亢", + "expanded_ids": "⿰钅⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钫", + "codepoint": "U+94AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94AB", + "status": "exact_ids", + "ids": "⿰钅方", + "canonical_ids": "⿰钅方", + "expanded_ids": "⿰钅方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钬", + "codepoint": "U+94AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94AC", + "status": "exact_ids", + "ids": "⿰钅火", + "canonical_ids": "⿰钅火", + "expanded_ids": "⿰钅火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钭", + "codepoint": "U+94AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94AD", + "status": "exact_ids", + "ids": "⿰钅斗", + "canonical_ids": "⿰钅斗", + "expanded_ids": "⿰钅斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斗", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钮", + "codepoint": "U+94AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94AE", + "status": "exact_ids", + "ids": "⿰钅丑", + "canonical_ids": "⿰钅丑", + "expanded_ids": "⿰钅丑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钯", + "codepoint": "U+94AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94AF", + "status": "exact_ids", + "ids": "⿰钅巴", + "canonical_ids": "⿰钅巴", + "expanded_ids": "⿰钅巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钰", + "codepoint": "U+94B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94B0", + "status": "exact_ids", + "ids": "⿰钅玉", + "canonical_ids": "⿰钅玉", + "expanded_ids": "⿰钅⿻王丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钱", + "codepoint": "U+94B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94B1", + "status": "exact_ids", + "ids": "⿰钅戋", + "canonical_ids": "⿰钅戋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "钅" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钲", + "codepoint": "U+94B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94B2", + "status": "exact_ids", + "ids": "⿰钅正", + "canonical_ids": "⿰钅正", + "expanded_ids": "⿰钅⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "止", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钳", + "codepoint": "U+94B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94B3", + "status": "exact_ids", + "ids": "⿰钅甘", + "canonical_ids": "⿰钅甘", + "expanded_ids": "⿰钅甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甘", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钴", + "codepoint": "U+94B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94B4", + "status": "exact_ids", + "ids": "⿰钅古", + "canonical_ids": "⿰钅古", + "expanded_ids": "⿰钅⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钵", + "codepoint": "U+94B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94B5", + "status": "exact_ids", + "ids": "⿰钅本", + "canonical_ids": "⿰钅本", + "expanded_ids": "⿰钅⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钶", + "codepoint": "U+94B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94B6", + "status": "exact_ids", + "ids": "⿰钅可", + "canonical_ids": "⿰钅可", + "expanded_ids": "⿰钅⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钷", + "codepoint": "U+94B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94B7", + "status": "exact_ids", + "ids": "⿰钅叵", + "canonical_ids": "⿰钅叵", + "expanded_ids": "⿰钅⿰匚口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匚", + "口", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钸", + "codepoint": "U+94B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94B8", + "status": "exact_ids", + "ids": "⿰钅布", + "canonical_ids": "⿰钅布", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钹", + "codepoint": "U+94B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94B9", + "status": "exact_ids", + "ids": "⿰钅犮", + "canonical_ids": "⿰钅犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钺", + "codepoint": "U+94BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94BA", + "status": "exact_ids", + "ids": "⿰钅戉", + "canonical_ids": "⿰钅戉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "钅" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钻", + "codepoint": "U+94BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94BB", + "status": "exact_ids", + "ids": "⿰钅占", + "canonical_ids": "⿰钅占", + "expanded_ids": "⿰钅⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钼", + "codepoint": "U+94BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94BC", + "status": "exact_ids", + "ids": "⿰钅目", + "canonical_ids": "⿰钅目", + "expanded_ids": "⿰钅目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钽", + "codepoint": "U+94BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94BD", + "status": "exact_ids", + "ids": "⿰钅旦", + "canonical_ids": "⿰钅旦", + "expanded_ids": "⿰钅⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钾", + "codepoint": "U+94BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94BE", + "status": "exact_ids", + "ids": "⿰钅甲", + "canonical_ids": "⿰钅甲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "甲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "钿", + "codepoint": "U+94BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94BF", + "status": "exact_ids", + "ids": "⿰钅田", + "canonical_ids": "⿰钅田", + "expanded_ids": "⿰钅田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铀", + "codepoint": "U+94C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94C0", + "status": "exact_ids", + "ids": "⿰钅由", + "canonical_ids": "⿰钅由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铁", + "codepoint": "U+94C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94C1", + "status": "exact_ids", + "ids": "⿰钅失", + "canonical_ids": "⿰钅失", + "expanded_ids": "⿰钅⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铂", + "codepoint": "U+94C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94C2", + "status": "exact_ids", + "ids": "⿰钅白", + "canonical_ids": "⿰钅白", + "expanded_ids": "⿰钅⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铃", + "codepoint": "U+94C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94C3", + "status": "exact_ids", + "ids": "⿰钅令", + "canonical_ids": "⿰钅令", + "expanded_ids": "⿰钅⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "钅", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铄", + "codepoint": "U+94C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94C4", + "status": "exact_ids", + "ids": "⿰钅乐", + "canonical_ids": "⿰钅乐", + "expanded_ids": "⿰钅乐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乐", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铅", + "codepoint": "U+94C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94C5", + "status": "exact_ids", + "ids": "⿰钅㕣", + "canonical_ids": "⿰钅㕣", + "expanded_ids": "⿰钅⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铆", + "codepoint": "U+94C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94C6", + "status": "exact_ids", + "ids": "⿰钅卯", + "canonical_ids": "⿰钅卯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "卯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铇", + "codepoint": "U+94C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94C7", + "status": "exact_ids", + "ids": "⿰钅包", + "canonical_ids": "⿰钅包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铈", + "codepoint": "U+94C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94C8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铉", + "codepoint": "U+94C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94C9", + "status": "exact_ids", + "ids": "⿰钅玄", + "canonical_ids": "⿰钅玄", + "expanded_ids": "⿰钅⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铊", + "codepoint": "U+94CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94CA", + "status": "exact_ids", + "ids": "⿰钅它", + "canonical_ids": "⿰钅它", + "expanded_ids": "⿰钅⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铋", + "codepoint": "U+94CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94CB", + "status": "exact_ids", + "ids": "⿰钅必", + "canonical_ids": "⿰钅必", + "expanded_ids": "⿰钅⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铌", + "codepoint": "U+94CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94CC", + "status": "exact_ids", + "ids": "⿰钅尼", + "canonical_ids": "⿰钅尼", + "expanded_ids": "⿰钅⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "尸", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铍", + "codepoint": "U+94CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94CD", + "status": "exact_ids", + "ids": "⿰钅皮", + "canonical_ids": "⿰钅皮", + "expanded_ids": "⿰钅皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皮", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铎", + "codepoint": "U+94CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94CE", + "status": "exact_ids", + "ids": "⿰钅𠬤", + "canonical_ids": "⿰钅𠬤", + "expanded_ids": "⿰钅⿱又⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "又", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铏", + "codepoint": "U+94CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94CF", + "status": "exact_ids", + "ids": "⿰钅刑", + "canonical_ids": "⿰钅刑", + "expanded_ids": "⿰钅⿰⿱一廾刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "廾", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铐", + "codepoint": "U+94D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94D0", + "status": "exact_ids", + "ids": "⿰钅考", + "canonical_ids": "⿰钅考", + "expanded_ids": "⿰钅⿱⿻土丿丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "丿", + "土", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铑", + "codepoint": "U+94D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94D1", + "status": "exact_ids", + "ids": "⿰钅老", + "canonical_ids": "⿰钅老", + "expanded_ids": "⿰钅⿱⿻土丿匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铒", + "codepoint": "U+94D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94D2", + "status": "exact_ids", + "ids": "⿰钅耳", + "canonical_ids": "⿰钅耳", + "expanded_ids": "⿰钅耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铓", + "codepoint": "U+94D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94D3", + "status": "exact_ids", + "ids": "⿰钅芒", + "canonical_ids": "⿰钅芒", + "expanded_ids": "⿰钅⿱艹⿻亠乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "亠", + "艹", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铔", + "codepoint": "U+94D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94D4", + "status": "exact_ids", + "ids": "⿰钅亚", + "canonical_ids": "⿰钅亚", + "expanded_ids": "⿰钅亚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亚", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铕", + "codepoint": "U+94D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94D5", + "status": "exact_ids", + "ids": "⿰钅有", + "canonical_ids": "⿰钅有", + "expanded_ids": "⿰钅⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "月", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铖", + "codepoint": "U+94D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94D6", + "status": "exact_ids", + "ids": "⿰钅成", + "canonical_ids": "⿰钅成", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "成" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铗", + "codepoint": "U+94D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94D7", + "status": "exact_ids", + "ids": "⿰钅夹", + "canonical_ids": "⿰钅夹", + "expanded_ids": "⿰钅⿻⿻一大丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铘", + "codepoint": "U+94D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94D8", + "status": "exact_ids", + "ids": "⿰钅邪", + "canonical_ids": "⿰钅邪", + "expanded_ids": "⿰钅⿰牙阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙", + "钅", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铙", + "codepoint": "U+94D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94D9", + "status": "exact_ids", + "ids": "⿰钅尧", + "canonical_ids": "⿰钅尧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "尧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铚", + "codepoint": "U+94DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94DA", + "status": "exact_ids", + "ids": "⿰钅至", + "canonical_ids": "⿰钅至", + "expanded_ids": "⿰钅⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铛", + "codepoint": "U+94DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94DB", + "status": "exact_ids", + "ids": "⿰钅当", + "canonical_ids": "⿰钅当", + "expanded_ids": "⿰钅⿱小彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "彐", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铜", + "codepoint": "U+94DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94DC", + "status": "exact_ids", + "ids": "⿰钅同", + "canonical_ids": "⿰钅同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铝", + "codepoint": "U+94DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94DD", + "status": "exact_ids", + "ids": "⿰钅吕", + "canonical_ids": "⿰钅吕", + "expanded_ids": "⿰钅⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铞", + "codepoint": "U+94DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94DE", + "status": "exact_ids", + "ids": "⿰钅吊", + "canonical_ids": "⿰钅吊", + "expanded_ids": "⿰钅⿱口⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "口", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铟", + "codepoint": "U+94DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94DF", + "status": "exact_ids", + "ids": "⿰钅因", + "canonical_ids": "⿰钅因", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铠", + "codepoint": "U+94E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94E0", + "status": "exact_ids", + "ids": "⿰钅岂", + "canonical_ids": "⿰钅岂", + "expanded_ids": "⿰钅⿱山己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "己", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铡", + "codepoint": "U+94E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94E1", + "status": "exact_ids", + "ids": "⿰钅则", + "canonical_ids": "⿰钅则", + "expanded_ids": "⿰钅⿰⿻冂人刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "刂", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铢", + "codepoint": "U+94E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94E2", + "status": "exact_ids", + "ids": "⿰钅朱", + "canonical_ids": "⿰钅朱", + "expanded_ids": "⿰钅⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铣", + "codepoint": "U+94E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94E3", + "status": "exact_ids", + "ids": "⿰钅先", + "canonical_ids": "⿰钅先", + "expanded_ids": "⿰钅⿱牛儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "牛", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铤", + "codepoint": "U+94E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94E4", + "status": "exact_ids", + "ids": "⿰钅廷", + "canonical_ids": "⿰钅廷", + "expanded_ids": "⿰钅⿰廴⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "廴", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铥", + "codepoint": "U+94E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94E5", + "status": "exact_ids", + "ids": "⿰钅丢", + "canonical_ids": "⿰钅丢", + "expanded_ids": "⿰钅⿱⿱丿士厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厶", + "士", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铦", + "codepoint": "U+94E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94E6", + "status": "exact_ids", + "ids": "⿰钅舌", + "canonical_ids": "⿰钅舌", + "expanded_ids": "⿰钅⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铧", + "codepoint": "U+94E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94E7", + "status": "exact_ids", + "ids": "⿰钅华", + "canonical_ids": "⿰钅华", + "expanded_ids": "⿰钅⿱⿰亻匕十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "十", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铨", + "codepoint": "U+94E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94E8", + "status": "exact_ids", + "ids": "⿰钅全", + "canonical_ids": "⿰钅全", + "expanded_ids": "⿰钅⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "王", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铩", + "codepoint": "U+94E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94E9", + "status": "exact_ids", + "ids": "⿰钅杀", + "canonical_ids": "⿰钅杀", + "expanded_ids": "⿰钅⿱乂朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "朩", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铪", + "codepoint": "U+94EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94EA", + "status": "exact_ids", + "ids": "⿰钅合", + "canonical_ids": "⿰钅合", + "expanded_ids": "⿰钅⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铫", + "codepoint": "U+94EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94EB", + "status": "exact_ids", + "ids": "⿰钅兆", + "canonical_ids": "⿰钅兆", + "expanded_ids": "⿰钅兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铬", + "codepoint": "U+94EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94EC", + "status": "exact_ids", + "ids": "⿰钅各", + "canonical_ids": "⿰钅各", + "expanded_ids": "⿰钅⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铭", + "codepoint": "U+94ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94ED", + "status": "exact_ids", + "ids": "⿰钅名", + "canonical_ids": "⿰钅名", + "expanded_ids": "⿰钅⿱夕口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夕", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铮", + "codepoint": "U+94EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94EE", + "status": "exact_ids", + "ids": "⿰钅争", + "canonical_ids": "⿰钅争", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "争" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铯", + "codepoint": "U+94EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94EF", + "status": "exact_ids", + "ids": "⿰钅色", + "canonical_ids": "⿰钅色", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "钅" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铰", + "codepoint": "U+94F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94F0", + "status": "exact_ids", + "ids": "⿰钅交", + "canonical_ids": "⿰钅交", + "expanded_ids": "⿰钅⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "父", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铱", + "codepoint": "U+94F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94F1", + "status": "exact_ids", + "ids": "⿰钅衣", + "canonical_ids": "⿰钅衣", + "expanded_ids": "⿰钅衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衣", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铲", + "codepoint": "U+94F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94F2", + "status": "exact_ids", + "ids": "⿰钅产", + "canonical_ids": "⿰钅产", + "expanded_ids": "⿰钅⿱⿱亠八厂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "厂", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铳", + "codepoint": "U+94F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94F3", + "status": "exact_ids", + "ids": "⿰钅充", + "canonical_ids": "⿰钅充", + "expanded_ids": "⿰钅⿱亠⿱厶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "儿", + "厶", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铴", + "codepoint": "U+94F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94F4", + "status": "exact_ids", + "ids": "⿰钅汤", + "canonical_ids": "⿰钅汤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "钅" + ], + "unresolved_leaves": [ + "𠃓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铵", + "codepoint": "U+94F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94F5", + "status": "exact_ids", + "ids": "⿰钅安", + "canonical_ids": "⿰钅安", + "expanded_ids": "⿰钅⿱宀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "银", + "codepoint": "U+94F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94F6", + "status": "exact_ids", + "ids": "⿰钅艮", + "canonical_ids": "⿰钅艮", + "expanded_ids": "⿰钅艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艮", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铷", + "codepoint": "U+94F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94F7", + "status": "exact_ids", + "ids": "⿰钅如", + "canonical_ids": "⿰钅如", + "expanded_ids": "⿰钅⿰女口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铸", + "codepoint": "U+94F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94F8", + "status": "exact_ids", + "ids": "⿰钅寿", + "canonical_ids": "⿰钅寿", + "expanded_ids": "⿰钅⿻丰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "寸", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铹", + "codepoint": "U+94F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94F9", + "status": "exact_ids", + "ids": "⿰钅劳", + "canonical_ids": "⿰钅劳", + "expanded_ids": "⿰钅⿳艹冖力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "艹", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 141, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铺", + "codepoint": "U+94FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94FA", + "status": "exact_ids", + "ids": "⿰钅甫", + "canonical_ids": "⿰钅甫", + "expanded_ids": "⿰钅甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甫", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铻", + "codepoint": "U+94FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94FB", + "status": "exact_ids", + "ids": "⿰钅吾", + "canonical_ids": "⿰钅吾", + "expanded_ids": "⿰钅⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铼", + "codepoint": "U+94FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94FC", + "status": "exact_ids", + "ids": "⿰钅来", + "canonical_ids": "⿰钅来", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "来" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铽", + "codepoint": "U+94FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94FD", + "status": "exact_ids", + "ids": "⿰钅忒", + "canonical_ids": "⿰钅忒", + "expanded_ids": "⿰钅⿱弋心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弋", + "心", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "链", + "codepoint": "U+94FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94FE", + "status": "exact_ids", + "ids": "⿰钅连", + "canonical_ids": "⿰钅连", + "expanded_ids": "⿰钅⿰辶车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "车", + "辶", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "铿", + "codepoint": "U+94FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-94FF", + "status": "exact_ids", + "ids": "⿰钅坚", + "canonical_ids": "⿰钅坚", + "expanded_ids": "⿰钅⿱⿰⿰丨丨又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "又", + "土", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "销", + "codepoint": "U+9500", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9500", + "status": "exact_ids", + "ids": "⿰钅肖", + "canonical_ids": "⿰钅肖", + "expanded_ids": "⿰钅⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锁", + "codepoint": "U+9501", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9501", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锂", + "codepoint": "U+9502", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9502", + "status": "exact_ids", + "ids": "⿰钅里", + "canonical_ids": "⿰钅里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锃", + "codepoint": "U+9503", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9503", + "status": "exact_ids", + "ids": "⿰钅呈", + "canonical_ids": "⿰钅呈", + "expanded_ids": "⿰钅⿱口王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "王", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锄", + "codepoint": "U+9504", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9504", + "status": "exact_ids", + "ids": "⿰钅助", + "canonical_ids": "⿰钅助", + "expanded_ids": "⿰钅⿰且力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "力", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锅", + "codepoint": "U+9505", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9505", + "status": "exact_ids", + "ids": "⿰钅呙", + "canonical_ids": "⿰钅呙", + "expanded_ids": "⿰钅⿱口⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锆", + "codepoint": "U+9506", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9506", + "status": "exact_ids", + "ids": "⿰钅告", + "canonical_ids": "⿰钅告", + "expanded_ids": "⿰钅⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锇", + "codepoint": "U+9507", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9507", + "status": "exact_ids", + "ids": "⿰钅我", + "canonical_ids": "⿰钅我", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "钅" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锈", + "codepoint": "U+9508", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9508", + "status": "exact_ids", + "ids": "⿰钅秀", + "canonical_ids": "⿰钅秀", + "expanded_ids": "⿰钅⿱⿻丿木乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乃", + "木", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锉", + "codepoint": "U+9509", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9509", + "status": "exact_ids", + "ids": "⿰钅坐", + "canonical_ids": "⿰钅坐", + "expanded_ids": "⿰钅⿱⿰人人土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "土", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锊", + "codepoint": "U+950A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-950A", + "status": "exact_ids", + "ids": "⿰钅寽", + "canonical_ids": "⿰钅寽", + "expanded_ids": "⿰钅⿱爫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "爫", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锋", + "codepoint": "U+950B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-950B", + "status": "exact_ids", + "ids": "⿰钅夆", + "canonical_ids": "⿰钅夆", + "expanded_ids": "⿰钅⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锌", + "codepoint": "U+950C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-950C", + "status": "exact_ids", + "ids": "⿰钅辛", + "canonical_ids": "⿰钅辛", + "expanded_ids": "⿰钅⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锍", + "codepoint": "U+950D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-950D", + "status": "exact_ids", + "ids": "⿰钅㐬", + "canonical_ids": "⿰钅㐬", + "expanded_ids": "⿰钅⿱亠⿱厶川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "厶", + "川", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锎", + "codepoint": "U+950E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-950E", + "status": "exact_ids", + "ids": "⿰钅開", + "canonical_ids": "⿰钅開", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "開" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锏", + "codepoint": "U+950F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-950F", + "status": "exact_ids", + "ids": "⿰钅间", + "canonical_ids": "⿰钅间", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "间" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锐", + "codepoint": "U+9510", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9510", + "status": "exact_ids", + "ids": "⿰钅兌", + "canonical_ids": "⿰钅兌", + "expanded_ids": "⿰钅⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锑", + "codepoint": "U+9511", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9511", + "status": "exact_ids", + "ids": "⿰钅弟", + "canonical_ids": "⿰钅弟", + "expanded_ids": "⿰钅⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锒", + "codepoint": "U+9512", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9512", + "status": "exact_ids", + "ids": "⿰钅良", + "canonical_ids": "⿰钅良", + "expanded_ids": "⿰钅⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "艮", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锓", + "codepoint": "U+9513", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9513", + "status": "exact_ids", + "ids": "⿰钅𠬶", + "canonical_ids": "⿰钅𠬶", + "expanded_ids": "⿰钅⿳彐冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "又", + "彐", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锔", + "codepoint": "U+9514", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9514", + "status": "exact_ids", + "ids": "⿰钅局", + "canonical_ids": "⿰钅局", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "局" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锕", + "codepoint": "U+9515", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9515", + "status": "exact_ids", + "ids": "⿰钅阿", + "canonical_ids": "⿰钅阿", + "expanded_ids": "⿰钅⿰阝⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "钅", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锖", + "codepoint": "U+9516", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9516", + "status": "exact_ids", + "ids": "⿰钅青", + "canonical_ids": "⿰钅青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "钅" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锗", + "codepoint": "U+9517", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9517", + "status": "exact_ids", + "ids": "⿰钅者", + "canonical_ids": "⿰钅者", + "expanded_ids": "⿰钅⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锘", + "codepoint": "U+9518", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9518", + "status": "exact_ids", + "ids": "⿰钅若", + "canonical_ids": "⿰钅若", + "expanded_ids": "⿰钅⿱艹⿱⿻丿一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "艹", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "错", + "codepoint": "U+9519", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9519", + "status": "exact_ids", + "ids": "⿰钅昔", + "canonical_ids": "⿰钅昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "钅" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锚", + "codepoint": "U+951A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-951A", + "status": "exact_ids", + "ids": "⿰钅苗", + "canonical_ids": "⿰钅苗", + "expanded_ids": "⿰钅⿱艹田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "艹", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锛", + "codepoint": "U+951B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-951B", + "status": "exact_ids", + "ids": "⿰钅奔", + "canonical_ids": "⿰钅奔", + "expanded_ids": "⿰钅⿱大⿱十廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "大", + "廾", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锜", + "codepoint": "U+951C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-951C", + "status": "exact_ids", + "ids": "⿰钅奇", + "canonical_ids": "⿰钅奇", + "expanded_ids": "⿰钅⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锝", + "codepoint": "U+951D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-951D", + "status": "exact_ids", + "ids": "⿰钅㝵", + "canonical_ids": "⿰钅㝵", + "expanded_ids": "⿰钅⿱日寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "日", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锞", + "codepoint": "U+951E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-951E", + "status": "exact_ids", + "ids": "⿰钅果", + "canonical_ids": "⿰钅果", + "expanded_ids": "⿰钅⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锟", + "codepoint": "U+951F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-951F", + "status": "exact_ids", + "ids": "⿰钅昆", + "canonical_ids": "⿰钅昆", + "expanded_ids": "⿰钅⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锠", + "codepoint": "U+9520", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9520", + "status": "exact_ids", + "ids": "⿰钅昌", + "canonical_ids": "⿰钅昌", + "expanded_ids": "⿰钅⿱日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锡", + "codepoint": "U+9521", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9521", + "status": "exact_ids", + "ids": "⿰钅易", + "canonical_ids": "⿰钅易", + "expanded_ids": "⿰钅⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "日", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锢", + "codepoint": "U+9522", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9522", + "status": "exact_ids", + "ids": "⿰钅固", + "canonical_ids": "⿰钅固", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "固" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锣", + "codepoint": "U+9523", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9523", + "status": "exact_ids", + "ids": "⿰钅罗", + "canonical_ids": "⿰钅罗", + "expanded_ids": "⿰钅⿱罒夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "罒", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锤", + "codepoint": "U+9524", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9524", + "status": "exact_ids", + "ids": "⿰钅垂", + "canonical_ids": "⿰钅垂", + "expanded_ids": "⿰钅垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "垂", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锥", + "codepoint": "U+9525", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9525", + "status": "exact_ids", + "ids": "⿰钅隹", + "canonical_ids": "⿰钅隹", + "expanded_ids": "⿰钅隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锦", + "codepoint": "U+9526", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9526", + "status": "exact_ids", + "ids": "⿰钅帛", + "canonical_ids": "⿰钅帛", + "expanded_ids": "⿰钅⿱⿻日丶⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丶", + "冂", + "日", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锧", + "codepoint": "U+9527", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9527", + "status": "exact_ids", + "ids": "⿰钅质", + "canonical_ids": "⿰钅质", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "钅" + ], + "unresolved_leaves": [ + "𣂑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锨", + "codepoint": "U+9528", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9528", + "status": "exact_ids", + "ids": "⿰钅欣", + "canonical_ids": "⿰钅欣", + "expanded_ids": "⿰钅⿰斤欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "欠", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锩", + "codepoint": "U+9529", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9529", + "status": "exact_ids", + "ids": "⿰钅卷", + "canonical_ids": "⿰钅卷", + "expanded_ids": "⿰钅⿱龹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "钅", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锪", + "codepoint": "U+952A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-952A", + "status": "exact_ids", + "ids": "⿰钅忽", + "canonical_ids": "⿰钅忽", + "expanded_ids": "⿰钅⿱勿心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "心", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锫", + "codepoint": "U+952B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-952B", + "status": "exact_ids", + "ids": "⿰钅咅", + "canonical_ids": "⿰钅咅", + "expanded_ids": "⿰钅⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "立", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锬", + "codepoint": "U+952C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-952C", + "status": "exact_ids", + "ids": "⿰钅炎", + "canonical_ids": "⿰钅炎", + "expanded_ids": "⿰钅⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锭", + "codepoint": "U+952D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-952D", + "status": "exact_ids", + "ids": "⿰钅定", + "canonical_ids": "⿰钅定", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "钅" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "键", + "codepoint": "U+952E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-952E", + "status": "exact_ids", + "ids": "⿰钅建", + "canonical_ids": "⿰钅建", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廴", + "钅" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锯", + "codepoint": "U+952F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-952F", + "status": "exact_ids", + "ids": "⿰钅居", + "canonical_ids": "⿰钅居", + "expanded_ids": "⿰钅⿱尸⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "尸", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锰", + "codepoint": "U+9530", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9530", + "status": "exact_ids", + "ids": "⿰钅孟", + "canonical_ids": "⿰钅孟", + "expanded_ids": "⿰钅⿱子皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "皿", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锱", + "codepoint": "U+9531", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9531", + "status": "exact_ids", + "ids": "⿰钅甾", + "canonical_ids": "⿰钅甾", + "expanded_ids": "⿰钅⿱巛田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "田", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锲", + "codepoint": "U+9532", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9532", + "status": "exact_ids", + "ids": "⿰钅契", + "canonical_ids": "⿰钅契", + "expanded_ids": "⿰钅⿱⿰丰刀大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "大", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锳", + "codepoint": "U+9533", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9533", + "status": "exact_ids", + "ids": "⿰钅英", + "canonical_ids": "⿰钅英", + "expanded_ids": "⿰钅⿱艹⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "艹", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锴", + "codepoint": "U+9534", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9534", + "status": "exact_ids", + "ids": "⿰钅皆", + "canonical_ids": "⿰钅皆", + "expanded_ids": "⿰钅⿱⿰匕匕⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "日", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锵", + "codepoint": "U+9535", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9535", + "status": "exact_ids", + "ids": "⿰钅将", + "canonical_ids": "⿰钅将", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "将" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锶", + "codepoint": "U+9536", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9536", + "status": "exact_ids", + "ids": "⿰钅思", + "canonical_ids": "⿰钅思", + "expanded_ids": "⿰钅⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "田", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锷", + "codepoint": "U+9537", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9537", + "status": "exact_ids", + "ids": "⿰钅咢", + "canonical_ids": "⿰钅咢", + "expanded_ids": "⿰钅⿱⿰口口⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "口", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锸", + "codepoint": "U+9538", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9538", + "status": "exact_ids", + "ids": "⿰钅臿", + "canonical_ids": "⿰钅臿", + "expanded_ids": "⿰钅⿱⿱丿十臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "臼", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锹", + "codepoint": "U+9539", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9539", + "status": "exact_ids", + "ids": "⿰钅秋", + "canonical_ids": "⿰钅秋", + "expanded_ids": "⿰钅⿰⿻丿木火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "火", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锺", + "codepoint": "U+953A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-953A", + "status": "exact_ids", + "ids": "⿰钅重", + "canonical_ids": "⿰钅重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "钅" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锻", + "codepoint": "U+953B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-953B", + "status": "exact_ids", + "ids": "⿰钅段", + "canonical_ids": "⿰钅段", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "段" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锼", + "codepoint": "U+953C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-953C", + "status": "exact_ids", + "ids": "⿰钅叟", + "canonical_ids": "⿰钅叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "钅" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锽", + "codepoint": "U+953D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-953D", + "status": "exact_ids", + "ids": "⿰钅皇", + "canonical_ids": "⿰钅皇", + "expanded_ids": "⿰钅⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "王", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锾", + "codepoint": "U+953E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-953E", + "status": "exact_ids", + "ids": "⿰钅爰", + "canonical_ids": "⿰钅爰", + "expanded_ids": "⿰钅⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "爫", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "锿", + "codepoint": "U+953F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-953F", + "status": "exact_ids", + "ids": "⿰钅哀", + "canonical_ids": "⿰钅哀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "哀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镀", + "codepoint": "U+9540", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9540", + "status": "exact_ids", + "ids": "⿰钅度", + "canonical_ids": "⿰钅度", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "度" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镁", + "codepoint": "U+9541", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9541", + "status": "exact_ids", + "ids": "⿰钅美", + "canonical_ids": "⿰钅美", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "美" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镂", + "codepoint": "U+9542", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9542", + "status": "exact_ids", + "ids": "⿰钅娄", + "canonical_ids": "⿰钅娄", + "expanded_ids": "⿰钅⿱⿻木丷女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "女", + "木", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镃", + "codepoint": "U+9543", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9543", + "status": "exact_ids", + "ids": "⿰钅兹", + "canonical_ids": "⿰钅兹", + "expanded_ids": "⿰钅⿱䒑⿰幺幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "幺", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镄", + "codepoint": "U+9544", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9544", + "status": "exact_ids", + "ids": "⿰钅费", + "canonical_ids": "⿰钅费", + "expanded_ids": "⿰钅⿱⿻弓刂⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "刂", + "弓", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镅", + "codepoint": "U+9545", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9545", + "status": "exact_ids", + "ids": "⿰钅眉", + "canonical_ids": "⿰钅眉", + "expanded_ids": "⿰钅⿱⿻尸丨目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "尸", + "目", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镆", + "codepoint": "U+9546", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9546", + "status": "exact_ids", + "ids": "⿰钅莫", + "canonical_ids": "⿰钅莫", + "expanded_ids": "⿰钅⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "艹", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镇", + "codepoint": "U+9547", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9547", + "status": "exact_ids", + "ids": "⿰钅真", + "canonical_ids": "⿰钅真", + "expanded_ids": "⿰钅⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "目", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镈", + "codepoint": "U+9548", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9548", + "status": "exact_ids", + "ids": "⿰钅尃", + "canonical_ids": "⿰钅尃", + "expanded_ids": "⿰钅⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "甫", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镉", + "codepoint": "U+9549", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9549", + "status": "exact_ids", + "ids": "⿰钅鬲", + "canonical_ids": "⿰钅鬲", + "expanded_ids": "⿰钅鬲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镊", + "codepoint": "U+954A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-954A", + "status": "exact_ids", + "ids": "⿰钅聂", + "canonical_ids": "⿰钅聂", + "expanded_ids": "⿰钅⿱耳⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "耳", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镋", + "codepoint": "U+954B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-954B", + "status": "exact_ids", + "ids": "⿰钅党", + "canonical_ids": "⿰钅党", + "expanded_ids": "⿰钅⿳小冖⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "口", + "小", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镌", + "codepoint": "U+954C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-954C", + "status": "exact_ids", + "ids": "⿰钅隽", + "canonical_ids": "⿰钅隽", + "expanded_ids": "⿰钅⿱隹乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "钅", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镍", + "codepoint": "U+954D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-954D", + "status": "exact_ids", + "ids": "⿰钅臬", + "canonical_ids": "⿰钅臬", + "expanded_ids": "⿰钅⿱⿻目丶木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "木", + "目", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镎", + "codepoint": "U+954E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-954E", + "status": "exact_ids", + "ids": "⿰钅拿", + "canonical_ids": "⿰钅拿", + "expanded_ids": "⿰钅⿱⿱⿱人一口手", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "手", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镏", + "codepoint": "U+954F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-954F", + "status": "exact_ids", + "ids": "⿰钅留", + "canonical_ids": "⿰钅留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镐", + "codepoint": "U+9550", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9550", + "status": "exact_ids", + "ids": "⿰钅高", + "canonical_ids": "⿰钅高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镑", + "codepoint": "U+9551", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9551", + "status": "exact_ids", + "ids": "⿰钅旁", + "canonical_ids": "⿰钅旁", + "expanded_ids": "⿰钅⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "方", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镒", + "codepoint": "U+9552", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9552", + "status": "exact_ids", + "ids": "⿰钅益", + "canonical_ids": "⿰钅益", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镓", + "codepoint": "U+9553", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9553", + "status": "exact_ids", + "ids": "⿰钅家", + "canonical_ids": "⿰钅家", + "expanded_ids": "⿰钅⿱宀豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "豕", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镔", + "codepoint": "U+9554", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9554", + "status": "exact_ids", + "ids": "⿰钅宾", + "canonical_ids": "⿰钅宾", + "expanded_ids": "⿰钅⿱宀⿱丘八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "八", + "宀", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镕", + "codepoint": "U+9555", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9555", + "status": "exact_ids", + "ids": "⿰钅容", + "canonical_ids": "⿰钅容", + "expanded_ids": "⿰钅⿱宀⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镖", + "codepoint": "U+9556", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9556", + "status": "exact_ids", + "ids": "⿰钅票", + "canonical_ids": "⿰钅票", + "expanded_ids": "⿰钅⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "覀", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镗", + "codepoint": "U+9557", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9557", + "status": "exact_ids", + "ids": "⿰钅堂", + "canonical_ids": "⿰钅堂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "钅" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镘", + "codepoint": "U+9558", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9558", + "status": "exact_ids", + "ids": "⿰钅曼", + "canonical_ids": "⿰钅曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镙", + "codepoint": "U+9559", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9559", + "status": "exact_ids", + "ids": "⿰钅累", + "canonical_ids": "⿰钅累", + "expanded_ids": "⿰钅⿱田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "田", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镚", + "codepoint": "U+955A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-955A", + "status": "exact_ids", + "ids": "⿰钅崩", + "canonical_ids": "⿰钅崩", + "expanded_ids": "⿰钅⿱山⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "月", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镛", + "codepoint": "U+955B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-955B", + "status": "exact_ids", + "ids": "⿰钅庸", + "canonical_ids": "⿰钅庸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "庸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镜", + "codepoint": "U+955C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-955C", + "status": "exact_ids", + "ids": "⿰钅竟", + "canonical_ids": "⿰钅竟", + "expanded_ids": "⿰钅⿱立⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目", + "立", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镝", + "codepoint": "U+955D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-955D", + "status": "exact_ids", + "ids": "⿰钅啇", + "canonical_ids": "⿰钅啇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "啇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镞", + "codepoint": "U+955E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-955E", + "status": "exact_ids", + "ids": "⿰钅族", + "canonical_ids": "⿰钅族", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "族" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镟", + "codepoint": "U+955F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-955F", + "status": "exact_ids", + "ids": "⿰钅旋", + "canonical_ids": "⿰钅旋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "旋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镠", + "codepoint": "U+9560", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9560", + "status": "exact_ids", + "ids": "⿰钅翏", + "canonical_ids": "⿰钅翏", + "expanded_ids": "⿰钅⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镡", + "codepoint": "U+9561", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9561", + "status": "exact_ids", + "ids": "⿰钅覃", + "canonical_ids": "⿰钅覃", + "expanded_ids": "⿰钅⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "襾", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镢", + "codepoint": "U+9562", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9562", + "status": "exact_ids", + "ids": "⿰钅厥", + "canonical_ids": "⿰钅厥", + "expanded_ids": "⿰钅⿱厂⿰⿱䒑屮欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "厂", + "屮", + "欠", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镣", + "codepoint": "U+9563", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9563", + "status": "exact_ids", + "ids": "⿰钅尞", + "canonical_ids": "⿰钅尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "钅" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镤", + "codepoint": "U+9564", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9564", + "status": "exact_ids", + "ids": "⿰钅菐", + "canonical_ids": "⿰钅菐", + "expanded_ids": "⿰钅⿱业⿱羊儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "儿", + "羊", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镥", + "codepoint": "U+9565", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9565", + "status": "exact_ids", + "ids": "⿰钅鲁", + "canonical_ids": "⿰钅鲁", + "expanded_ids": "⿰钅⿱鱼日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "钅", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镦", + "codepoint": "U+9566", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9566", + "status": "exact_ids", + "ids": "⿰钅敦", + "canonical_ids": "⿰钅敦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "钅" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镧", + "codepoint": "U+9567", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9567", + "status": "exact_ids", + "ids": "⿰钅阑", + "canonical_ids": "⿰钅阑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "阑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镨", + "codepoint": "U+9568", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9568", + "status": "exact_ids", + "ids": "⿰钅普", + "canonical_ids": "⿰钅普", + "expanded_ids": "⿰钅⿱⿱丷亚日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "亚", + "日", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镩", + "codepoint": "U+9569", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9569", + "status": "exact_ids", + "ids": "⿰钅窜", + "canonical_ids": "⿰钅窜", + "expanded_ids": "⿰钅⿱⿱宀八⿻⿱口口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "八", + "口", + "宀", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镪", + "codepoint": "U+956A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-956A", + "status": "exact_ids", + "ids": "⿰钅强", + "canonical_ids": "⿰钅强", + "expanded_ids": "⿰钅⿰弓⿱口虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "弓", + "虫", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镫", + "codepoint": "U+956B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-956B", + "status": "exact_ids", + "ids": "⿰钅登", + "canonical_ids": "⿰钅登", + "expanded_ids": "⿰钅⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "癶", + "豆", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镬", + "codepoint": "U+956C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-956C", + "status": "exact_ids", + "ids": "⿰钅蒦", + "canonical_ids": "⿰钅蒦", + "expanded_ids": "⿰钅⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "艹", + "钅", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镭", + "codepoint": "U+956D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-956D", + "status": "exact_ids", + "ids": "⿰钅雷", + "canonical_ids": "⿰钅雷", + "expanded_ids": "⿰钅⿱雨田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "钅", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镮", + "codepoint": "U+956E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-956E", + "status": "exact_ids", + "ids": "⿰钅睘", + "canonical_ids": "⿰钅睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镯", + "codepoint": "U+956F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-956F", + "status": "exact_ids", + "ids": "⿰钅蜀", + "canonical_ids": "⿰钅蜀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒", + "钅" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镰", + "codepoint": "U+9570", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9570", + "status": "exact_ids", + "ids": "⿰钅廉", + "canonical_ids": "⿰钅廉", + "expanded_ids": "⿰钅⿱广兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "广", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镱", + "codepoint": "U+9571", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9571", + "status": "exact_ids", + "ids": "⿰钅意", + "canonical_ids": "⿰钅意", + "expanded_ids": "⿰钅⿱⿱立日心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "日", + "立", + "钅" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镲", + "codepoint": "U+9572", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9572", + "status": "exact_ids", + "ids": "⿰钅察", + "canonical_ids": "⿰钅察", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "钅" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镳", + "codepoint": "U+9573", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9573", + "status": "exact_ids", + "ids": "⿰钅麃", + "canonical_ids": "⿰钅麃", + "expanded_ids": "⿰钅⿱鹿灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬", + "钅", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镴", + "codepoint": "U+9574", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9574", + "status": "exact_ids", + "ids": "⿰钅巤", + "canonical_ids": "⿰钅巤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "巤" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镵", + "codepoint": "U+9575", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9575", + "status": "exact_ids", + "ids": "⿰钅毚", + "canonical_ids": "⿰钅毚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "毚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镶", + "codepoint": "U+9576", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9576", + "status": "exact_ids", + "ids": "⿰钅襄", + "canonical_ids": "⿰钅襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "钅" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "長", + "codepoint": "U+9577", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9577", + "status": "leaf_self_fallback", + "ids": "長", + "canonical_ids": "長", + "expanded_ids": "長", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "長" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镸", + "codepoint": "U+9578", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9578", + "status": "leaf_self_fallback", + "ids": "镸", + "canonical_ids": "镸", + "expanded_ids": "镸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镹", + "codepoint": "U+9579", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9579", + "status": "exact_ids", + "ids": "⿰镸久", + "canonical_ids": "⿰镸久", + "expanded_ids": "⿰镸久", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "久", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镺", + "codepoint": "U+957A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-957A", + "status": "exact_ids", + "ids": "⿰镸夭", + "canonical_ids": "⿰镸夭", + "expanded_ids": "⿰镸⿱丿大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镻", + "codepoint": "U+957B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-957B", + "status": "exact_ids", + "ids": "⿰镸失", + "canonical_ids": "⿰镸失", + "expanded_ids": "⿰镸⿻丿⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镼", + "codepoint": "U+957C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-957C", + "status": "exact_ids", + "ids": "⿰镸屈", + "canonical_ids": "⿰镸屈", + "expanded_ids": "⿰镸⿱尸⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "尸", + "屮", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镽", + "codepoint": "U+957D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-957D", + "status": "exact_ids", + "ids": "⿰镸尞", + "canonical_ids": "⿰镸尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "镸" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "镾", + "codepoint": "U+957E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-957E", + "status": "exact_ids", + "ids": "⿰镸爾", + "canonical_ids": "⿰镸爾", + "expanded_ids": "⿰镸爾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爾", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "长", + "codepoint": "U+957F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-957F", + "status": "leaf_self_fallback", + "ids": "长", + "canonical_ids": "长", + "expanded_ids": "长", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "长" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "門", + "codepoint": "U+9580", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9580", + "status": "leaf_self_fallback", + "ids": "門", + "canonical_ids": "門", + "expanded_ids": "門", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "門" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閁", + "codepoint": "U+9581", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9581", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閂", + "codepoint": "U+9582", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9582", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閃", + "codepoint": "U+9583", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9583", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閄", + "codepoint": "U+9584", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9584", + "status": "exact_ids", + "ids": "⿰門人", + "canonical_ids": "⿰門人", + "expanded_ids": "⿰門人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "門" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閅", + "codepoint": "U+9585", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9585", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閆", + "codepoint": "U+9586", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9586", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閇", + "codepoint": "U+9587", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9587", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閈", + "codepoint": "U+9588", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9588", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閉", + "codepoint": "U+9589", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9589", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閊", + "codepoint": "U+958A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-958A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "開", + "codepoint": "U+958B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-958B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閌", + "codepoint": "U+958C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-958C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閍", + "codepoint": "U+958D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-958D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閎", + "codepoint": "U+958E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-958E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閏", + "codepoint": "U+958F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-958F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閐", + "codepoint": "U+9590", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9590", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閑", + "codepoint": "U+9591", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9591", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閒", + "codepoint": "U+9592", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9592", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "間", + "codepoint": "U+9593", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9593", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閔", + "codepoint": "U+9594", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9594", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閕", + "codepoint": "U+9595", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9595", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閖", + "codepoint": "U+9596", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9596", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閗", + "codepoint": "U+9597", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9597", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閘", + "codepoint": "U+9598", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9598", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閙", + "codepoint": "U+9599", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9599", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閚", + "codepoint": "U+959A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-959A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閛", + "codepoint": "U+959B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-959B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閜", + "codepoint": "U+959C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-959C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閝", + "codepoint": "U+959D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-959D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閞", + "codepoint": "U+959E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-959E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閟", + "codepoint": "U+959F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-959F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閠", + "codepoint": "U+95A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95A0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閡", + "codepoint": "U+95A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95A1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "関", + "codepoint": "U+95A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95A2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閣", + "codepoint": "U+95A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95A3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閤", + "codepoint": "U+95A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95A4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閥", + "codepoint": "U+95A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95A5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閦", + "codepoint": "U+95A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95A6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閧", + "codepoint": "U+95A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95A7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閨", + "codepoint": "U+95A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95A8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閩", + "codepoint": "U+95A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95A9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閪", + "codepoint": "U+95AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95AA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閫", + "codepoint": "U+95AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95AB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閬", + "codepoint": "U+95AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95AC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閭", + "codepoint": "U+95AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95AD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閮", + "codepoint": "U+95AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95AE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閯", + "codepoint": "U+95AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95AF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閰", + "codepoint": "U+95B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95B0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閱", + "codepoint": "U+95B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95B1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閲", + "codepoint": "U+95B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95B2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閳", + "codepoint": "U+95B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95B3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閴", + "codepoint": "U+95B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95B4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閵", + "codepoint": "U+95B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95B5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閶", + "codepoint": "U+95B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95B6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閷", + "codepoint": "U+95B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95B7", + "status": "exact_ids", + "ids": "⿰杀閃", + "canonical_ids": "⿰杀閃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "朩" + ], + "unresolved_leaves": [ + "閃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閸", + "codepoint": "U+95B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95B8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閹", + "codepoint": "U+95B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95B9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閺", + "codepoint": "U+95BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95BA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閻", + "codepoint": "U+95BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95BB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閼", + "codepoint": "U+95BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95BC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閽", + "codepoint": "U+95BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95BD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閾", + "codepoint": "U+95BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95BE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "閿", + "codepoint": "U+95BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95BF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闀", + "codepoint": "U+95C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95C0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闁", + "codepoint": "U+95C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95C1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闂", + "codepoint": "U+95C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95C2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闃", + "codepoint": "U+95C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95C3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闄", + "codepoint": "U+95C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95C4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闅", + "codepoint": "U+95C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95C5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闆", + "codepoint": "U+95C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95C6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闇", + "codepoint": "U+95C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95C7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闈", + "codepoint": "U+95C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95C8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闉", + "codepoint": "U+95C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95C9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闊", + "codepoint": "U+95CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95CA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闋", + "codepoint": "U+95CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95CB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闌", + "codepoint": "U+95CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95CC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闍", + "codepoint": "U+95CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95CD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闎", + "codepoint": "U+95CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95CE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闏", + "codepoint": "U+95CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95CF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闐", + "codepoint": "U+95D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95D0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闑", + "codepoint": "U+95D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95D1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闒", + "codepoint": "U+95D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95D2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闓", + "codepoint": "U+95D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95D3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闔", + "codepoint": "U+95D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95D4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闕", + "codepoint": "U+95D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95D5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闖", + "codepoint": "U+95D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95D6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闗", + "codepoint": "U+95D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95D7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闘", + "codepoint": "U+95D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95D8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闙", + "codepoint": "U+95D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95D9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闚", + "codepoint": "U+95DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95DA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闛", + "codepoint": "U+95DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95DB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "關", + "codepoint": "U+95DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95DC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闝", + "codepoint": "U+95DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95DD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闞", + "codepoint": "U+95DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95DE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闟", + "codepoint": "U+95DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95DF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闠", + "codepoint": "U+95E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95E0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闡", + "codepoint": "U+95E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95E1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闢", + "codepoint": "U+95E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95E2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闣", + "codepoint": "U+95E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95E3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闤", + "codepoint": "U+95E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95E4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闥", + "codepoint": "U+95E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95E5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闦", + "codepoint": "U+95E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95E6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闧", + "codepoint": "U+95E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95E7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "门", + "codepoint": "U+95E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95E8", + "status": "leaf_self_fallback", + "ids": "门", + "canonical_ids": "门", + "expanded_ids": "门", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "门" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闩", + "codepoint": "U+95E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95E9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闪", + "codepoint": "U+95EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95EA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闫", + "codepoint": "U+95EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95EB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闬", + "codepoint": "U+95EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95EC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闭", + "codepoint": "U+95ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95ED", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "问", + "codepoint": "U+95EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95EE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闯", + "codepoint": "U+95EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95EF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闰", + "codepoint": "U+95F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95F0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闱", + "codepoint": "U+95F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95F1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闲", + "codepoint": "U+95F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95F2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闳", + "codepoint": "U+95F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95F3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "间", + "codepoint": "U+95F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95F4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闵", + "codepoint": "U+95F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95F5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闶", + "codepoint": "U+95F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95F6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闷", + "codepoint": "U+95F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95F7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闸", + "codepoint": "U+95F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95F8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闹", + "codepoint": "U+95F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95F9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闺", + "codepoint": "U+95FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95FA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闻", + "codepoint": "U+95FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95FB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闼", + "codepoint": "U+95FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95FC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闽", + "codepoint": "U+95FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95FD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闾", + "codepoint": "U+95FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95FE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "闿", + "codepoint": "U+95FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-95FF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阀", + "codepoint": "U+9600", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9600", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阁", + "codepoint": "U+9601", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9601", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阂", + "codepoint": "U+9602", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9602", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阃", + "codepoint": "U+9603", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9603", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阄", + "codepoint": "U+9604", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9604", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阅", + "codepoint": "U+9605", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9605", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阆", + "codepoint": "U+9606", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9606", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阇", + "codepoint": "U+9607", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9607", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阈", + "codepoint": "U+9608", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9608", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阉", + "codepoint": "U+9609", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9609", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阊", + "codepoint": "U+960A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-960A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阋", + "codepoint": "U+960B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-960B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阌", + "codepoint": "U+960C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-960C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阍", + "codepoint": "U+960D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-960D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阎", + "codepoint": "U+960E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-960E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阏", + "codepoint": "U+960F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-960F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阐", + "codepoint": "U+9610", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9610", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阑", + "codepoint": "U+9611", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9611", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阒", + "codepoint": "U+9612", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9612", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阓", + "codepoint": "U+9613", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9613", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阔", + "codepoint": "U+9614", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9614", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阕", + "codepoint": "U+9615", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9615", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阖", + "codepoint": "U+9616", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9616", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阗", + "codepoint": "U+9617", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9617", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阘", + "codepoint": "U+9618", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9618", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阙", + "codepoint": "U+9619", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9619", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阚", + "codepoint": "U+961A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-961A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阛", + "codepoint": "U+961B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-961B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阜", + "codepoint": "U+961C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-961C", + "status": "leaf_self_fallback", + "ids": "阜", + "canonical_ids": "阜", + "expanded_ids": "阜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阝", + "codepoint": "U+961D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-961D", + "status": "leaf_self_fallback", + "ids": "阝", + "canonical_ids": "阝", + "expanded_ids": "阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阞", + "codepoint": "U+961E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-961E", + "status": "exact_ids", + "ids": "⿰阝力", + "canonical_ids": "⿰阝力", + "expanded_ids": "⿰阝力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "队", + "codepoint": "U+961F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-961F", + "status": "exact_ids", + "ids": "⿰阝人", + "canonical_ids": "⿰阝人", + "expanded_ids": "⿰阝人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阠", + "codepoint": "U+9620", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9620", + "status": "exact_ids", + "ids": "⿰阝卂", + "canonical_ids": "⿰阝卂", + "expanded_ids": "⿰阝⿱乁十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乁", + "十", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阡", + "codepoint": "U+9621", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9621", + "status": "exact_ids", + "ids": "⿰阝千", + "canonical_ids": "⿰阝千", + "expanded_ids": "⿰阝⿱丿十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阢", + "codepoint": "U+9622", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9622", + "status": "exact_ids", + "ids": "⿰阝兀", + "canonical_ids": "⿰阝兀", + "expanded_ids": "⿰阝⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阣", + "codepoint": "U+9623", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9623", + "status": "exact_ids", + "ids": "⿰阝乞", + "canonical_ids": "⿰阝乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阤", + "codepoint": "U+9624", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9624", + "status": "exact_ids", + "ids": "⿰阝也", + "canonical_ids": "⿰阝也", + "expanded_ids": "⿰阝⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阥", + "codepoint": "U+9625", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9625", + "status": "exact_ids", + "ids": "⿰阝水", + "canonical_ids": "⿰阝水", + "expanded_ids": "⿰阝水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "水", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阦", + "codepoint": "U+9626", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9626", + "status": "exact_ids", + "ids": "⿰阝火", + "canonical_ids": "⿰阝火", + "expanded_ids": "⿰阝火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阧", + "codepoint": "U+9627", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9627", + "status": "exact_ids", + "ids": "⿰阝斗", + "canonical_ids": "⿰阝斗", + "expanded_ids": "⿰阝斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斗", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阨", + "codepoint": "U+9628", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9628", + "status": "exact_ids", + "ids": "⿰阝厄", + "canonical_ids": "⿰阝厄", + "expanded_ids": "⿰阝⿱厂㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阩", + "codepoint": "U+9629", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9629", + "status": "exact_ids", + "ids": "⿰阝升", + "canonical_ids": "⿰阝升", + "expanded_ids": "⿰阝升", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "升", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阪", + "codepoint": "U+962A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-962A", + "status": "exact_ids", + "ids": "⿰阝反", + "canonical_ids": "⿰阝反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阫", + "codepoint": "U+962B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-962B", + "status": "exact_ids", + "ids": "⿰阝不", + "canonical_ids": "⿰阝不", + "expanded_ids": "⿰阝不", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阬", + "codepoint": "U+962C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-962C", + "status": "exact_ids", + "ids": "⿰阝亢", + "canonical_ids": "⿰阝亢", + "expanded_ids": "⿰阝⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阭", + "codepoint": "U+962D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-962D", + "status": "exact_ids", + "ids": "⿰阝允", + "canonical_ids": "⿰阝允", + "expanded_ids": "⿰阝⿱厶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阮", + "codepoint": "U+962E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-962E", + "status": "exact_ids", + "ids": "⿰阝元", + "canonical_ids": "⿰阝元", + "expanded_ids": "⿰阝⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阯", + "codepoint": "U+962F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-962F", + "status": "exact_ids", + "ids": "⿰阝止", + "canonical_ids": "⿰阝止", + "expanded_ids": "⿰阝止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阰", + "codepoint": "U+9630", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9630", + "status": "exact_ids", + "ids": "⿰阝比", + "canonical_ids": "⿰阝比", + "expanded_ids": "⿰阝⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阱", + "codepoint": "U+9631", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9631", + "status": "exact_ids", + "ids": "⿰阝井", + "canonical_ids": "⿰阝井", + "expanded_ids": "⿰阝井", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "井", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "防", + "codepoint": "U+9632", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9632", + "status": "exact_ids", + "ids": "⿰阝方", + "canonical_ids": "⿰阝方", + "expanded_ids": "⿰阝方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阳", + "codepoint": "U+9633", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9633", + "status": "exact_ids", + "ids": "⿰阝日", + "canonical_ids": "⿰阝日", + "expanded_ids": "⿰阝日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阴", + "codepoint": "U+9634", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9634", + "status": "exact_ids", + "ids": "⿰阝月", + "canonical_ids": "⿰阝月", + "expanded_ids": "⿰阝月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阵", + "codepoint": "U+9635", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9635", + "status": "exact_ids", + "ids": "⿰阝车", + "canonical_ids": "⿰阝车", + "expanded_ids": "⿰阝车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "车", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阶", + "codepoint": "U+9636", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9636", + "status": "exact_ids", + "ids": "⿰阝介", + "canonical_ids": "⿰阝介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阷", + "codepoint": "U+9637", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9637", + "status": "exact_ids", + "ids": "⿰阝正", + "canonical_ids": "⿰阝正", + "expanded_ids": "⿰阝⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "止", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阸", + "codepoint": "U+9638", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9638", + "status": "exact_ids", + "ids": "⿰阝戹", + "canonical_ids": "⿰阝戹", + "expanded_ids": "⿰阝⿱⿻丶尸乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乙", + "尸", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阹", + "codepoint": "U+9639", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9639", + "status": "exact_ids", + "ids": "⿰阝去", + "canonical_ids": "⿰阝去", + "expanded_ids": "⿰阝⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阺", + "codepoint": "U+963A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-963A", + "status": "exact_ids", + "ids": "⿰阝氐", + "canonical_ids": "⿰阝氐", + "expanded_ids": "⿰阝⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氏", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阻", + "codepoint": "U+963B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-963B", + "status": "exact_ids", + "ids": "⿰阝且", + "canonical_ids": "⿰阝且", + "expanded_ids": "⿰阝且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阼", + "codepoint": "U+963C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-963C", + "status": "exact_ids", + "ids": "⿰阝乍", + "canonical_ids": "⿰阝乍", + "expanded_ids": "⿰阝乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阽", + "codepoint": "U+963D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-963D", + "status": "exact_ids", + "ids": "⿰阝占", + "canonical_ids": "⿰阝占", + "expanded_ids": "⿰阝⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阾", + "codepoint": "U+963E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-963E", + "status": "exact_ids", + "ids": "⿰阝令", + "canonical_ids": "⿰阝令", + "expanded_ids": "⿰阝⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "阝", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "阿", + "codepoint": "U+963F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-963F", + "status": "exact_ids", + "ids": "⿰阝可", + "canonical_ids": "⿰阝可", + "expanded_ids": "⿰阝⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陀", + "codepoint": "U+9640", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9640", + "status": "exact_ids", + "ids": "⿰阝它", + "canonical_ids": "⿰阝它", + "expanded_ids": "⿰阝⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陁", + "codepoint": "U+9641", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9641", + "status": "exact_ids", + "ids": "⿰阝㐌", + "canonical_ids": "⿰阝㐌", + "expanded_ids": "⿰阝⿱⿻丿一⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丿", + "乜", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陂", + "codepoint": "U+9642", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9642", + "status": "exact_ids", + "ids": "⿰阝皮", + "canonical_ids": "⿰阝皮", + "expanded_ids": "⿰阝皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皮", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陃", + "codepoint": "U+9643", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9643", + "status": "exact_ids", + "ids": "⿰阝丙", + "canonical_ids": "⿰阝丙", + "expanded_ids": "⿰阝⿱一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "附", + "codepoint": "U+9644", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9644", + "status": "exact_ids", + "ids": "⿰阝付", + "canonical_ids": "⿰阝付", + "expanded_ids": "⿰阝⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "际", + "codepoint": "U+9645", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9645", + "status": "exact_ids", + "ids": "⿰阝示", + "canonical_ids": "⿰阝示", + "expanded_ids": "⿰阝⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陆", + "codepoint": "U+9646", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9646", + "status": "exact_ids", + "ids": "⿰阝击", + "canonical_ids": "⿰阝击", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "击" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陇", + "codepoint": "U+9647", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9647", + "status": "exact_ids", + "ids": "⿰阝龙", + "canonical_ids": "⿰阝龙", + "expanded_ids": "⿰阝龙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陈", + "codepoint": "U+9648", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9648", + "status": "exact_ids", + "ids": "⿰阝东", + "canonical_ids": "⿰阝东", + "expanded_ids": "⿰阝东", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "东", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陉", + "codepoint": "U+9649", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9649", + "status": "exact_ids", + "ids": "⿰阝𢀖", + "canonical_ids": "⿰阝𢀖", + "expanded_ids": "⿰阝⿱又工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "工", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陊", + "codepoint": "U+964A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-964A", + "status": "exact_ids", + "ids": "⿰阝多", + "canonical_ids": "⿰阝多", + "expanded_ids": "⿰阝⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陋", + "codepoint": "U+964B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-964B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陌", + "codepoint": "U+964C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-964C", + "status": "exact_ids", + "ids": "⿰阝百", + "canonical_ids": "⿰阝百", + "expanded_ids": "⿰阝⿻一⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "日", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "降", + "codepoint": "U+964D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-964D", + "status": "exact_ids", + "ids": "⿰阝夅", + "canonical_ids": "⿰阝夅", + "expanded_ids": "⿰阝⿱夂⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夂", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陎", + "codepoint": "U+964E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-964E", + "status": "exact_ids", + "ids": "⿰阝朱", + "canonical_ids": "⿰阝朱", + "expanded_ids": "⿰阝⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陏", + "codepoint": "U+964F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-964F", + "status": "exact_ids", + "ids": "⿰阝有", + "canonical_ids": "⿰阝有", + "expanded_ids": "⿰阝⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "月", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "限", + "codepoint": "U+9650", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9650", + "status": "exact_ids", + "ids": "⿰阝艮", + "canonical_ids": "⿰阝艮", + "expanded_ids": "⿰阝艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艮", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陑", + "codepoint": "U+9651", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9651", + "status": "exact_ids", + "ids": "⿰阝而", + "canonical_ids": "⿰阝而", + "expanded_ids": "⿰阝而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "而", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陒", + "codepoint": "U+9652", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9652", + "status": "exact_ids", + "ids": "⿰阝危", + "canonical_ids": "⿰阝危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "阝" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陓", + "codepoint": "U+9653", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9653", + "status": "exact_ids", + "ids": "⿰阝夸", + "canonical_ids": "⿰阝夸", + "expanded_ids": "⿰阝⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陔", + "codepoint": "U+9654", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9654", + "status": "exact_ids", + "ids": "⿰阝亥", + "canonical_ids": "⿰阝亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陕", + "codepoint": "U+9655", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9655", + "status": "exact_ids", + "ids": "⿰阝夹", + "canonical_ids": "⿰阝夹", + "expanded_ids": "⿰阝⿻⿻一大丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陖", + "codepoint": "U+9656", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9656", + "status": "exact_ids", + "ids": "⿰阝夋", + "canonical_ids": "⿰阝夋", + "expanded_ids": "⿰阝⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陗", + "codepoint": "U+9657", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9657", + "status": "exact_ids", + "ids": "⿰阝肖", + "canonical_ids": "⿰阝肖", + "expanded_ids": "⿰阝⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陘", + "codepoint": "U+9658", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9658", + "status": "exact_ids", + "ids": "⿰阝巠", + "canonical_ids": "⿰阝巠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陙", + "codepoint": "U+9659", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9659", + "status": "exact_ids", + "ids": "⿰阝辰", + "canonical_ids": "⿰阝辰", + "expanded_ids": "⿰阝辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辰", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陚", + "codepoint": "U+965A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-965A", + "status": "exact_ids", + "ids": "⿰阝武", + "canonical_ids": "⿰阝武", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "武" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陛", + "codepoint": "U+965B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-965B", + "status": "exact_ids", + "ids": "⿰阝坒", + "canonical_ids": "⿰阝坒", + "expanded_ids": "⿰阝⿱⿰匕匕土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "土", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陜", + "codepoint": "U+965C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-965C", + "status": "exact_ids", + "ids": "⿰阝夾", + "canonical_ids": "⿰阝夾", + "expanded_ids": "⿰阝⿻大⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陝", + "codepoint": "U+965D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-965D", + "status": "exact_ids", + "ids": "⿰阝㚒", + "canonical_ids": "⿰阝㚒", + "expanded_ids": "⿰阝⿻大⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "大", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陞", + "codepoint": "U+965E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-965E", + "status": "exact_ids", + "ids": "⿰阝𡉼", + "canonical_ids": "⿰阝𡉼", + "expanded_ids": "⿰阝⿱升土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "升", + "土", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陟", + "codepoint": "U+965F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-965F", + "status": "exact_ids", + "ids": "⿰阝步", + "canonical_ids": "⿰阝步", + "expanded_ids": "⿰阝⿱止𣥂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止", + "阝", + "𣥂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陠", + "codepoint": "U+9660", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9660", + "status": "exact_ids", + "ids": "⿰阝甫", + "canonical_ids": "⿰阝甫", + "expanded_ids": "⿰阝甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甫", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陡", + "codepoint": "U+9661", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9661", + "status": "exact_ids", + "ids": "⿰阝走", + "canonical_ids": "⿰阝走", + "expanded_ids": "⿰阝⿱土龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "阝", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "院", + "codepoint": "U+9662", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9662", + "status": "exact_ids", + "ids": "⿰阝完", + "canonical_ids": "⿰阝完", + "expanded_ids": "⿰阝⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "宀", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陣", + "codepoint": "U+9663", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9663", + "status": "exact_ids", + "ids": "⿰阝車", + "canonical_ids": "⿰阝車", + "expanded_ids": "⿰阝車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "除", + "codepoint": "U+9664", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9664", + "status": "exact_ids", + "ids": "⿰阝余", + "canonical_ids": "⿰阝余", + "expanded_ids": "⿰阝⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陥", + "codepoint": "U+9665", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9665", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陦", + "codepoint": "U+9666", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9666", + "status": "exact_ids", + "ids": "⿰阝寿", + "canonical_ids": "⿰阝寿", + "expanded_ids": "⿰阝⿻丰寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "寸", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陧", + "codepoint": "U+9667", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9667", + "status": "exact_ids", + "ids": "⿰阝圼", + "canonical_ids": "⿰阝圼", + "expanded_ids": "⿰阝⿱日土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "日", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陨", + "codepoint": "U+9668", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9668", + "status": "exact_ids", + "ids": "⿰阝员", + "canonical_ids": "⿰阝员", + "expanded_ids": "⿰阝⿱口⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "口", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "险", + "codepoint": "U+9669", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9669", + "status": "exact_ids", + "ids": "⿰阝佥", + "canonical_ids": "⿰阝佥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "佥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陪", + "codepoint": "U+966A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-966A", + "status": "exact_ids", + "ids": "⿰阝咅", + "canonical_ids": "⿰阝咅", + "expanded_ids": "⿰阝⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "立", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陫", + "codepoint": "U+966B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-966B", + "status": "exact_ids", + "ids": "⿰阝非", + "canonical_ids": "⿰阝非", + "expanded_ids": "⿰阝非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陬", + "codepoint": "U+966C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-966C", + "status": "exact_ids", + "ids": "⿰阝取", + "canonical_ids": "⿰阝取", + "expanded_ids": "⿰阝⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "耳", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陭", + "codepoint": "U+966D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-966D", + "status": "exact_ids", + "ids": "⿰阝奇", + "canonical_ids": "⿰阝奇", + "expanded_ids": "⿰阝⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陮", + "codepoint": "U+966E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-966E", + "status": "exact_ids", + "ids": "⿰阝隹", + "canonical_ids": "⿰阝隹", + "expanded_ids": "⿰阝隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陯", + "codepoint": "U+966F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-966F", + "status": "exact_ids", + "ids": "⿰阝侖", + "canonical_ids": "⿰阝侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "阝" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陰", + "codepoint": "U+9670", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9670", + "status": "exact_ids", + "ids": "⿰阝侌", + "canonical_ids": "⿰阝侌", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "二", + "人", + "厶", + "阝" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陱", + "codepoint": "U+9671", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9671", + "status": "exact_ids", + "ids": "⿰阝匊", + "canonical_ids": "⿰阝匊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "匊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陲", + "codepoint": "U+9672", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9672", + "status": "exact_ids", + "ids": "⿰阝垂", + "canonical_ids": "⿰阝垂", + "expanded_ids": "⿰阝垂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "垂", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陳", + "codepoint": "U+9673", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9673", + "status": "exact_ids", + "ids": "⿰阝東", + "canonical_ids": "⿰阝東", + "expanded_ids": "⿰阝⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陴", + "codepoint": "U+9674", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9674", + "status": "exact_ids", + "ids": "⿰阝卑", + "canonical_ids": "⿰阝卑", + "expanded_ids": "⿰阝卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陵", + "codepoint": "U+9675", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9675", + "status": "exact_ids", + "ids": "⿰阝夌", + "canonical_ids": "⿰阝夌", + "expanded_ids": "⿰阝⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陶", + "codepoint": "U+9676", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9676", + "status": "exact_ids", + "ids": "⿰阝匋", + "canonical_ids": "⿰阝匋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "匋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陷", + "codepoint": "U+9677", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9677", + "status": "exact_ids", + "ids": "⿰阝臽", + "canonical_ids": "⿰阝臽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "臼", + "阝" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陸", + "codepoint": "U+9678", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9678", + "status": "exact_ids", + "ids": "⿰阝坴", + "canonical_ids": "⿰阝坴", + "expanded_ids": "⿰阝⿱⿱土儿土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陹", + "codepoint": "U+9679", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9679", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "険", + "codepoint": "U+967A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-967A", + "status": "exact_ids", + "ids": "⿰阝㑒", + "canonical_ids": "⿰阝㑒", + "expanded_ids": "⿰阝⿻⿱⿱人一口人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陻", + "codepoint": "U+967B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-967B", + "status": "exact_ids", + "ids": "⿰阝垔", + "canonical_ids": "⿰阝垔", + "expanded_ids": "⿰阝⿱覀土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "覀", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陼", + "codepoint": "U+967C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-967C", + "status": "exact_ids", + "ids": "⿰阝者", + "canonical_ids": "⿰阝者", + "expanded_ids": "⿰阝⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陽", + "codepoint": "U+967D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-967D", + "status": "exact_ids", + "ids": "⿰阝昜", + "canonical_ids": "⿰阝昜", + "expanded_ids": "⿰阝⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陾", + "codepoint": "U+967E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-967E", + "status": "exact_ids", + "ids": "⿰阝耎", + "canonical_ids": "⿰阝耎", + "expanded_ids": "⿰阝⿱而大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "而", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "陿", + "codepoint": "U+967F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-967F", + "status": "exact_ids", + "ids": "⿰阝匧", + "canonical_ids": "⿰阝匧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "匧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隀", + "codepoint": "U+9680", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9680", + "status": "exact_ids", + "ids": "⿰阝重", + "canonical_ids": "⿰阝重", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "阝" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隁", + "codepoint": "U+9681", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9681", + "status": "exact_ids", + "ids": "⿰阝匽", + "canonical_ids": "⿰阝匽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "匽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隂", + "codepoint": "U+9682", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9682", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隃", + "codepoint": "U+9683", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9683", + "status": "exact_ids", + "ids": "⿰阝俞", + "canonical_ids": "⿰阝俞", + "expanded_ids": "⿰阝⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "月", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隄", + "codepoint": "U+9684", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9684", + "status": "exact_ids", + "ids": "⿰阝是", + "canonical_ids": "⿰阝是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "阝" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隅", + "codepoint": "U+9685", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9685", + "status": "exact_ids", + "ids": "⿰阝禺", + "canonical_ids": "⿰阝禺", + "expanded_ids": "⿰阝⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "禸", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隆", + "codepoint": "U+9686", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9686", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隇", + "codepoint": "U+9687", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9687", + "status": "exact_ids", + "ids": "⿰阝威", + "canonical_ids": "⿰阝威", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "威" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隈", + "codepoint": "U+9688", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9688", + "status": "exact_ids", + "ids": "⿰阝畏", + "canonical_ids": "⿰阝畏", + "expanded_ids": "⿰阝⿱田氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氏", + "田", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隉", + "codepoint": "U+9689", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9689", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隊", + "codepoint": "U+968A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-968A", + "status": "exact_ids", + "ids": "⿰阝㒸", + "canonical_ids": "⿰阝㒸", + "expanded_ids": "⿰阝⿱八豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "豕", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隋", + "codepoint": "U+968B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-968B", + "status": "exact_ids", + "ids": "⿰阝𤯝", + "canonical_ids": "⿰阝𤯝", + "expanded_ids": "⿰阝⿱⿱牛一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "月", + "牛", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隌", + "codepoint": "U+968C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-968C", + "status": "exact_ids", + "ids": "⿰阝音", + "canonical_ids": "⿰阝音", + "expanded_ids": "⿰阝⿱立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "立", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隍", + "codepoint": "U+968D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-968D", + "status": "exact_ids", + "ids": "⿰阝皇", + "canonical_ids": "⿰阝皇", + "expanded_ids": "⿰阝⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "王", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "階", + "codepoint": "U+968E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-968E", + "status": "exact_ids", + "ids": "⿰阝皆", + "canonical_ids": "⿰阝皆", + "expanded_ids": "⿰阝⿱⿰匕匕⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "日", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "随", + "codepoint": "U+968F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-968F", + "status": "exact_ids", + "ids": "⿰阝迶", + "canonical_ids": "⿰阝迶", + "expanded_ids": "⿰阝⿰辶⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "月", + "辶", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隐", + "codepoint": "U+9690", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9690", + "status": "exact_ids", + "ids": "⿰阝急", + "canonical_ids": "⿰阝急", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "心", + "阝" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隑", + "codepoint": "U+9691", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9691", + "status": "exact_ids", + "ids": "⿰阝豈", + "canonical_ids": "⿰阝豈", + "expanded_ids": "⿰阝⿱山豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "豆", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隒", + "codepoint": "U+9692", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9692", + "status": "exact_ids", + "ids": "⿰阝兼", + "canonical_ids": "⿰阝兼", + "expanded_ids": "⿰阝兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隓", + "codepoint": "U+9693", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9693", + "status": "exact_ids", + "ids": "⿰阝𢀡", + "canonical_ids": "⿰阝𢀡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "左" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隔", + "codepoint": "U+9694", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9694", + "status": "exact_ids", + "ids": "⿰阝鬲", + "canonical_ids": "⿰阝鬲", + "expanded_ids": "⿰阝鬲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隕", + "codepoint": "U+9695", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9695", + "status": "exact_ids", + "ids": "⿰阝員", + "canonical_ids": "⿰阝員", + "expanded_ids": "⿰阝⿱口⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "目", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隖", + "codepoint": "U+9696", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9696", + "status": "exact_ids", + "ids": "⿰阝烏", + "canonical_ids": "⿰阝烏", + "expanded_ids": "⿰阝烏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "烏", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隗", + "codepoint": "U+9697", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9697", + "status": "exact_ids", + "ids": "⿰阝鬼", + "canonical_ids": "⿰阝鬼", + "expanded_ids": "⿰阝鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隘", + "codepoint": "U+9698", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9698", + "status": "exact_ids", + "ids": "⿰阝益", + "canonical_ids": "⿰阝益", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隙", + "codepoint": "U+9699", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9699", + "status": "exact_ids", + "ids": "⿰阝𡭴", + "canonical_ids": "⿰阝𡭴", + "expanded_ids": "⿰阝⿱小⿱曰小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "曰", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隚", + "codepoint": "U+969A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-969A", + "status": "exact_ids", + "ids": "⿰阝堂", + "canonical_ids": "⿰阝堂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "阝" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "際", + "codepoint": "U+969B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-969B", + "status": "exact_ids", + "ids": "⿰阝祭", + "canonical_ids": "⿰阝祭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "障", + "codepoint": "U+969C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-969C", + "status": "exact_ids", + "ids": "⿰阝章", + "canonical_ids": "⿰阝章", + "expanded_ids": "⿰阝⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "立", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隝", + "codepoint": "U+969D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-969D", + "status": "exact_ids", + "ids": "⿰阝鳥", + "canonical_ids": "⿰阝鳥", + "expanded_ids": "⿰阝鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隞", + "codepoint": "U+969E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-969E", + "status": "exact_ids", + "ids": "⿰阝敖", + "canonical_ids": "⿰阝敖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隟", + "codepoint": "U+969F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-969F", + "status": "exact_ids", + "ids": "⿰阝巢", + "canonical_ids": "⿰阝巢", + "expanded_ids": "⿰阝⿱巛⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "木", + "田", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隠", + "codepoint": "U+96A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96A0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隡", + "codepoint": "U+96A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96A1", + "status": "exact_ids", + "ids": "⿰阝產", + "canonical_ids": "⿰阝產", + "expanded_ids": "⿰阝⿱⿱⿱亠八厂⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "八", + "厂", + "牛", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隢", + "codepoint": "U+96A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96A2", + "status": "exact_ids", + "ids": "⿰阝堯", + "canonical_ids": "⿰阝堯", + "expanded_ids": "⿰阝⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隣", + "codepoint": "U+96A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96A3", + "status": "exact_ids", + "ids": "⿰阝粦", + "canonical_ids": "⿰阝粦", + "expanded_ids": "⿰阝⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "木", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隤", + "codepoint": "U+96A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96A4", + "status": "exact_ids", + "ids": "⿰阝貴", + "canonical_ids": "⿰阝貴", + "expanded_ids": "⿰阝⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "目", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隥", + "codepoint": "U+96A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96A5", + "status": "exact_ids", + "ids": "⿰阝登", + "canonical_ids": "⿰阝登", + "expanded_ids": "⿰阝⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "癶", + "豆", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隦", + "codepoint": "U+96A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96A6", + "status": "exact_ids", + "ids": "⿰阝辟", + "canonical_ids": "⿰阝辟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立", + "阝" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隧", + "codepoint": "U+96A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96A7", + "status": "exact_ids", + "ids": "⿰阝遂", + "canonical_ids": "⿰阝遂", + "expanded_ids": "⿰阝⿰辶⿱八豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "豕", + "辶", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隨", + "codepoint": "U+96A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96A8", + "status": "exact_ids", + "ids": "⿰阝遀", + "canonical_ids": "⿰阝遀", + "expanded_ids": "⿰阝⿰辶⿱⿱牛一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "月", + "牛", + "辶", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隩", + "codepoint": "U+96A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96A9", + "status": "exact_ids", + "ids": "⿰阝奧", + "canonical_ids": "⿰阝奧", + "expanded_ids": "⿰阝⿱⿱宀⿱丿⿻木丷大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "大", + "宀", + "木", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "險", + "codepoint": "U+96AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96AA", + "status": "exact_ids", + "ids": "⿰阝僉", + "canonical_ids": "⿰阝僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隫", + "codepoint": "U+96AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96AB", + "status": "exact_ids", + "ids": "⿰阝賁", + "canonical_ids": "⿰阝賁", + "expanded_ids": "⿰阝⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "廾", + "目", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隬", + "codepoint": "U+96AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96AC", + "status": "exact_ids", + "ids": "⿰阝爾", + "canonical_ids": "⿰阝爾", + "expanded_ids": "⿰阝爾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爾", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隭", + "codepoint": "U+96AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96AD", + "status": "exact_ids", + "ids": "⿰阝需", + "canonical_ids": "⿰阝需", + "expanded_ids": "⿰阝⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "而", + "阝", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隮", + "codepoint": "U+96AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96AE", + "status": "exact_ids", + "ids": "⿰阝齊", + "canonical_ids": "⿰阝齊", + "expanded_ids": "⿰阝齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隯", + "codepoint": "U+96AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96AF", + "status": "exact_ids", + "ids": "⿰阝壽", + "canonical_ids": "⿰阝壽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隰", + "codepoint": "U+96B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96B0", + "status": "exact_ids", + "ids": "⿰阝㬎", + "canonical_ids": "⿰阝㬎", + "expanded_ids": "⿰阝⿱日⿱⿰幺幺灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "日", + "灬", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隱", + "codepoint": "U+96B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96B1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隲", + "codepoint": "U+96B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96B2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隳", + "codepoint": "U+96B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96B3", + "status": "exact_ids", + "ids": "⿱隋𠇍", + "canonical_ids": "⿱隋𠇍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "月", + "牛", + "阝" + ], + "unresolved_leaves": [ + "㣺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隴", + "codepoint": "U+96B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96B4", + "status": "exact_ids", + "ids": "⿰阝龍", + "canonical_ids": "⿰阝龍", + "expanded_ids": "⿰阝龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隵", + "codepoint": "U+96B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96B5", + "status": "exact_ids", + "ids": "⿰阝戲", + "canonical_ids": "⿰阝戲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝" + ], + "unresolved_leaves": [ + "䖒", + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隶", + "codepoint": "U+96B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96B6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隷", + "codepoint": "U+96B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96B7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隸", + "codepoint": "U+96B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96B8", + "status": "exact_ids", + "ids": "⿰柰隶", + "canonical_ids": "⿰柰隶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "木" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隹", + "codepoint": "U+96B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96B9", + "status": "leaf_self_fallback", + "ids": "隹", + "canonical_ids": "隹", + "expanded_ids": "隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隺", + "codepoint": "U+96BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96BA", + "status": "exact_ids", + "ids": "⿻冖隹", + "canonical_ids": "⿻冖隹", + "expanded_ids": "⿻冖隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隻", + "codepoint": "U+96BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96BB", + "status": "exact_ids", + "ids": "⿱隹又", + "canonical_ids": "⿱隹又", + "expanded_ids": "⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隼", + "codepoint": "U+96BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96BC", + "status": "exact_ids", + "ids": "⿱隹十", + "canonical_ids": "⿱隹十", + "expanded_ids": "⿱隹十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隽", + "codepoint": "U+96BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96BD", + "status": "exact_ids", + "ids": "⿱隹乃", + "canonical_ids": "⿱隹乃", + "expanded_ids": "⿱隹乃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "难", + "codepoint": "U+96BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96BE", + "status": "exact_ids", + "ids": "⿰又隹", + "canonical_ids": "⿰又隹", + "expanded_ids": "⿰又隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "隿", + "codepoint": "U+96BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96BF", + "status": "exact_ids", + "ids": "⿰弋隹", + "canonical_ids": "⿰弋隹", + "expanded_ids": "⿰弋隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弋", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雀", + "codepoint": "U+96C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96C0", + "status": "exact_ids", + "ids": "⿱小隹", + "canonical_ids": "⿱小隹", + "expanded_ids": "⿱小隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雁", + "codepoint": "U+96C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96C1", + "status": "exact_ids", + "ids": "⿱厂倠", + "canonical_ids": "⿱厂倠", + "expanded_ids": "⿱厂⿰亻隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "厂", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雂", + "codepoint": "U+96C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96C2", + "status": "exact_ids", + "ids": "⿰今隹", + "canonical_ids": "⿰今隹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "隹" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雃", + "codepoint": "U+96C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96C3", + "status": "exact_ids", + "ids": "⿰开隹", + "canonical_ids": "⿰开隹", + "expanded_ids": "⿰⿱一廾隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廾", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雄", + "codepoint": "U+96C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96C4", + "status": "exact_ids", + "ids": "⿰厷隹", + "canonical_ids": "⿰厷隹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "隹" + ], + "unresolved_leaves": [ + "厷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雅", + "codepoint": "U+96C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96C5", + "status": "exact_ids", + "ids": "⿰牙隹", + "canonical_ids": "⿰牙隹", + "expanded_ids": "⿰牙隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "集", + "codepoint": "U+96C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96C6", + "status": "exact_ids", + "ids": "⿱隹木", + "canonical_ids": "⿱隹木", + "expanded_ids": "⿱隹木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雇", + "codepoint": "U+96C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96C7", + "status": "exact_ids", + "ids": "⿱戸隹", + "canonical_ids": "⿱戸隹", + "expanded_ids": "⿱⿻一尸隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雈", + "codepoint": "U+96C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96C8", + "status": "exact_ids", + "ids": "⿱卝隹", + "canonical_ids": "⿱卝隹", + "expanded_ids": "⿱卝隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卝", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雉", + "codepoint": "U+96C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96C9", + "status": "exact_ids", + "ids": "⿰矢隹", + "canonical_ids": "⿰矢隹", + "expanded_ids": "⿰⿱⿻丿一大隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雊", + "codepoint": "U+96CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96CA", + "status": "exact_ids", + "ids": "⿰句隹", + "canonical_ids": "⿰句隹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "隹" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雋", + "codepoint": "U+96CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96CB", + "status": "exact_ids", + "ids": "⿱隹弓", + "canonical_ids": "⿱隹弓", + "expanded_ids": "⿱隹弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雌", + "codepoint": "U+96CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96CC", + "status": "exact_ids", + "ids": "⿰此隹", + "canonical_ids": "⿰此隹", + "expanded_ids": "⿰⿰止匕隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "止", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雍", + "codepoint": "U+96CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96CD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雎", + "codepoint": "U+96CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96CE", + "status": "exact_ids", + "ids": "⿰且隹", + "canonical_ids": "⿰且隹", + "expanded_ids": "⿰且隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雏", + "codepoint": "U+96CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96CF", + "status": "exact_ids", + "ids": "⿰刍隹", + "canonical_ids": "⿰刍隹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "隹" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雐", + "codepoint": "U+96D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96D0", + "status": "exact_ids", + "ids": "⿱虍隹", + "canonical_ids": "⿱虍隹", + "expanded_ids": "⿱虍隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虍", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雑", + "codepoint": "U+96D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96D1", + "status": "exact_ids", + "ids": "⿰杂隹", + "canonical_ids": "⿰杂隹", + "expanded_ids": "⿰⿱九朩隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "朩", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雒", + "codepoint": "U+96D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96D2", + "status": "exact_ids", + "ids": "⿰各隹", + "canonical_ids": "⿰各隹", + "expanded_ids": "⿰⿱夂口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雓", + "codepoint": "U+96D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96D3", + "status": "exact_ids", + "ids": "⿰余隹", + "canonical_ids": "⿰余隹", + "expanded_ids": "⿰⿱⿱人一朩隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雔", + "codepoint": "U+96D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96D4", + "status": "exact_ids", + "ids": "⿰隹隹", + "canonical_ids": "⿰隹隹", + "expanded_ids": "⿰隹隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雕", + "codepoint": "U+96D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96D5", + "status": "exact_ids", + "ids": "⿰周隹", + "canonical_ids": "⿰周隹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "隹" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雖", + "codepoint": "U+96D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96D6", + "status": "exact_ids", + "ids": "⿰虽隹", + "canonical_ids": "⿰虽隹", + "expanded_ids": "⿰⿱口虫隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "虫", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雗", + "codepoint": "U+96D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96D7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雘", + "codepoint": "U+96D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96D8", + "status": "exact_ids", + "ids": "⿰丹蒦", + "canonical_ids": "⿰丹蒦", + "expanded_ids": "⿰丹⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丹", + "又", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雙", + "codepoint": "U+96D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96D9", + "status": "exact_ids", + "ids": "⿱雔又", + "canonical_ids": "⿱雔又", + "expanded_ids": "⿱⿰隹隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雚", + "codepoint": "U+96DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96DA", + "status": "exact_ids", + "ids": "⿱艹𨾴", + "canonical_ids": "⿱艹𨾴", + "expanded_ids": "⿱艹⿱⿰口口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雛", + "codepoint": "U+96DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96DB", + "status": "exact_ids", + "ids": "⿰芻隹", + "canonical_ids": "⿰芻隹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "隹" + ], + "unresolved_leaves": [ + "芻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雜", + "codepoint": "U+96DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96DC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雝", + "codepoint": "U+96DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96DD", + "status": "exact_ids", + "ids": "⿰邕隹", + "canonical_ids": "⿰邕隹", + "expanded_ids": "⿰⿱巛⿱口巴隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "巛", + "巴", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雞", + "codepoint": "U+96DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96DE", + "status": "exact_ids", + "ids": "⿰奚隹", + "canonical_ids": "⿰奚隹", + "expanded_ids": "⿰⿱爪⿱幺大隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "幺", + "爪", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雟", + "codepoint": "U+96DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96DF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雠", + "codepoint": "U+96E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96E0", + "status": "exact_ids", + "ids": "⿲隹讠隹", + "canonical_ids": "⿲隹讠隹", + "expanded_ids": "⿲隹讠隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "讠", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 105, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雡", + "codepoint": "U+96E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96E1", + "status": "exact_ids", + "ids": "⿰翏隹", + "canonical_ids": "⿰翏隹", + "expanded_ids": "⿰⿱⿰习习⿱人彡隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "離", + "codepoint": "U+96E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96E2", + "status": "exact_ids", + "ids": "⿰离隹", + "canonical_ids": "⿰离隹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "禸", + "隹" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "難", + "codepoint": "U+96E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96E3", + "status": "exact_ids", + "ids": "⿰堇隹", + "canonical_ids": "⿰堇隹", + "expanded_ids": "⿰堇隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雤", + "codepoint": "U+96E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96E4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雥", + "codepoint": "U+96E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96E5", + "status": "exact_ids", + "ids": "⿱隹⿰隹隹", + "canonical_ids": "⿱隹⿰隹隹", + "expanded_ids": "⿱隹⿰隹隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雦", + "codepoint": "U+96E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96E6", + "status": "exact_ids", + "ids": "⿲隹隹隹", + "canonical_ids": "⿲隹隹隹", + "expanded_ids": "⿲隹隹隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 105, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雧", + "codepoint": "U+96E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96E7", + "status": "exact_ids", + "ids": "⿱雥木", + "canonical_ids": "⿱雥木", + "expanded_ids": "⿱⿱隹⿰隹隹木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雨", + "codepoint": "U+96E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96E8", + "status": "leaf_self_fallback", + "ids": "雨", + "canonical_ids": "雨", + "expanded_ids": "雨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雩", + "codepoint": "U+96E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96E9", + "status": "exact_ids", + "ids": "⿱雨亏", + "canonical_ids": "⿱雨亏", + "expanded_ids": "⿱雨⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雪", + "codepoint": "U+96EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96EA", + "status": "exact_ids", + "ids": "⿱雨彐", + "canonical_ids": "⿱雨彐", + "expanded_ids": "⿱雨彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雫", + "codepoint": "U+96EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96EB", + "status": "exact_ids", + "ids": "⿱雨下", + "canonical_ids": "⿱雨下", + "expanded_ids": "⿱雨⿱一卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "卜", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雬", + "codepoint": "U+96EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96EC", + "status": "exact_ids", + "ids": "⿱雨木", + "canonical_ids": "⿱雨木", + "expanded_ids": "⿱雨木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雭", + "codepoint": "U+96ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96ED", + "status": "exact_ids", + "ids": "⿱雨及", + "canonical_ids": "⿱雨及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "雨" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雮", + "codepoint": "U+96EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96EE", + "status": "exact_ids", + "ids": "⿱雨毛", + "canonical_ids": "⿱雨毛", + "expanded_ids": "⿱雨毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雯", + "codepoint": "U+96EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96EF", + "status": "exact_ids", + "ids": "⿱雨文", + "canonical_ids": "⿱雨文", + "expanded_ids": "⿱雨文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雰", + "codepoint": "U+96F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96F0", + "status": "exact_ids", + "ids": "⿱雨分", + "canonical_ids": "⿱雨分", + "expanded_ids": "⿱雨⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雱", + "codepoint": "U+96F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96F1", + "status": "exact_ids", + "ids": "⿱雨方", + "canonical_ids": "⿱雨方", + "expanded_ids": "⿱雨方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雲", + "codepoint": "U+96F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96F2", + "status": "exact_ids", + "ids": "⿱雨云", + "canonical_ids": "⿱雨云", + "expanded_ids": "⿱雨⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雳", + "codepoint": "U+96F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96F3", + "status": "exact_ids", + "ids": "⿱雨历", + "canonical_ids": "⿱雨历", + "expanded_ids": "⿱雨⿱厂力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "厂", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雴", + "codepoint": "U+96F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96F4", + "status": "exact_ids", + "ids": "⿱雨立", + "canonical_ids": "⿱雨立", + "expanded_ids": "⿱雨立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雵", + "codepoint": "U+96F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96F5", + "status": "exact_ids", + "ids": "⿱雨央", + "canonical_ids": "⿱雨央", + "expanded_ids": "⿱雨⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "零", + "codepoint": "U+96F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96F6", + "status": "exact_ids", + "ids": "⿱雨令", + "canonical_ids": "⿱雨令", + "expanded_ids": "⿱雨⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "雨", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雷", + "codepoint": "U+96F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96F7", + "status": "exact_ids", + "ids": "⿱雨田", + "canonical_ids": "⿱雨田", + "expanded_ids": "⿱雨田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雸", + "codepoint": "U+96F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96F8", + "status": "exact_ids", + "ids": "⿱雨甘", + "canonical_ids": "⿱雨甘", + "expanded_ids": "⿱雨甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甘", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雹", + "codepoint": "U+96F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96F9", + "status": "exact_ids", + "ids": "⿱雨包", + "canonical_ids": "⿱雨包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雺", + "codepoint": "U+96FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96FA", + "status": "exact_ids", + "ids": "⿱雨矛", + "canonical_ids": "⿱雨矛", + "expanded_ids": "⿱雨矛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "矛", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "電", + "codepoint": "U+96FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96FB", + "status": "exact_ids", + "ids": "⿱雨电", + "canonical_ids": "⿱雨电", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雼", + "codepoint": "U+96FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96FC", + "status": "exact_ids", + "ids": "⿱雨石", + "canonical_ids": "⿱雨石", + "expanded_ids": "⿱雨石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雽", + "codepoint": "U+96FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96FD", + "status": "exact_ids", + "ids": "⿱雨乎", + "canonical_ids": "⿱雨乎", + "expanded_ids": "⿱雨乎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乎", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雾", + "codepoint": "U+96FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96FE", + "status": "exact_ids", + "ids": "⿱雨务", + "canonical_ids": "⿱雨务", + "expanded_ids": "⿱雨⿱夂力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "夂", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "雿", + "codepoint": "U+96FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-96FF", + "status": "exact_ids", + "ids": "⿱雨兆", + "canonical_ids": "⿱雨兆", + "expanded_ids": "⿱雨兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "需", + "codepoint": "U+9700", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9700", + "status": "exact_ids", + "ids": "⿱雨而", + "canonical_ids": "⿱雨而", + "expanded_ids": "⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霁", + "codepoint": "U+9701", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9701", + "status": "exact_ids", + "ids": "⿱雨齐", + "canonical_ids": "⿱雨齐", + "expanded_ids": "⿱雨齐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨", + "齐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霂", + "codepoint": "U+9702", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9702", + "status": "exact_ids", + "ids": "⿱雨沐", + "canonical_ids": "⿱雨沐", + "expanded_ids": "⿱雨⿰氵木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "氵", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霃", + "codepoint": "U+9703", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9703", + "status": "exact_ids", + "ids": "⿱雨沈", + "canonical_ids": "⿱雨沈", + "expanded_ids": "⿱雨⿰氵⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "氵", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霄", + "codepoint": "U+9704", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9704", + "status": "exact_ids", + "ids": "⿱雨肖", + "canonical_ids": "⿱雨肖", + "expanded_ids": "⿱雨⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霅", + "codepoint": "U+9705", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9705", + "status": "exact_ids", + "ids": "⿱雨言", + "canonical_ids": "⿱雨言", + "expanded_ids": "⿱雨言", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "言", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霆", + "codepoint": "U+9706", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9706", + "status": "exact_ids", + "ids": "⿱雨廷", + "canonical_ids": "⿱雨廷", + "expanded_ids": "⿱雨⿰廴⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "廴", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "震", + "codepoint": "U+9707", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9707", + "status": "exact_ids", + "ids": "⿱雨辰", + "canonical_ids": "⿱雨辰", + "expanded_ids": "⿱雨辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辰", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霈", + "codepoint": "U+9708", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9708", + "status": "exact_ids", + "ids": "⿱雨沛", + "canonical_ids": "⿱雨沛", + "expanded_ids": "⿱雨⿰氵⿻⿻冂丨一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "氵", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霉", + "codepoint": "U+9709", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9709", + "status": "exact_ids", + "ids": "⿱雨每", + "canonical_ids": "⿱雨每", + "expanded_ids": "⿱雨⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "母", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霊", + "codepoint": "U+970A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-970A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霋", + "codepoint": "U+970B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-970B", + "status": "exact_ids", + "ids": "⿱雨妻", + "canonical_ids": "⿱雨妻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨" + ], + "unresolved_leaves": [ + "妻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霌", + "codepoint": "U+970C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-970C", + "status": "exact_ids", + "ids": "⿱雨周", + "canonical_ids": "⿱雨周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霍", + "codepoint": "U+970D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-970D", + "status": "exact_ids", + "ids": "⿱雨隹", + "canonical_ids": "⿱雨隹", + "expanded_ids": "⿱雨隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "隹", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霎", + "codepoint": "U+970E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-970E", + "status": "exact_ids", + "ids": "⿱雨妾", + "canonical_ids": "⿱雨妾", + "expanded_ids": "⿱雨⿱立女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "立", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霏", + "codepoint": "U+970F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-970F", + "status": "exact_ids", + "ids": "⿱雨非", + "canonical_ids": "⿱雨非", + "expanded_ids": "⿱雨非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霐", + "codepoint": "U+9710", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9710", + "status": "exact_ids", + "ids": "⿱雨泓", + "canonical_ids": "⿱雨泓", + "expanded_ids": "⿱雨⿰氵⿰弓厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "弓", + "氵", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霑", + "codepoint": "U+9711", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9711", + "status": "exact_ids", + "ids": "⿱雨沾", + "canonical_ids": "⿱雨沾", + "expanded_ids": "⿱雨⿰氵⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "氵", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霒", + "codepoint": "U+9712", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9712", + "status": "exact_ids", + "ids": "⿰雲今", + "canonical_ids": "⿰雲今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "二", + "人", + "厶", + "雨" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霓", + "codepoint": "U+9713", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9713", + "status": "exact_ids", + "ids": "⿱雨兒", + "canonical_ids": "⿱雨兒", + "expanded_ids": "⿱雨⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "臼", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霔", + "codepoint": "U+9714", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9714", + "status": "exact_ids", + "ids": "⿱雨注", + "canonical_ids": "⿱雨注", + "expanded_ids": "⿱雨⿰氵⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氵", + "王", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霕", + "codepoint": "U+9715", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9715", + "status": "exact_ids", + "ids": "⿰雲屯", + "canonical_ids": "⿰雲屯", + "expanded_ids": "⿰⿱雨⿱二厶屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "屯", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霖", + "codepoint": "U+9716", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9716", + "status": "exact_ids", + "ids": "⿱雨林", + "canonical_ids": "⿱雨林", + "expanded_ids": "⿱雨⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霗", + "codepoint": "U+9717", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9717", + "status": "exact_ids", + "ids": "⿱雨泠", + "canonical_ids": "⿱雨泠", + "expanded_ids": "⿱雨⿰氵⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "氵", + "雨", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霘", + "codepoint": "U+9718", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9718", + "status": "exact_ids", + "ids": "⿱雨洞", + "canonical_ids": "⿱雨洞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "雨" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霙", + "codepoint": "U+9719", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9719", + "status": "exact_ids", + "ids": "⿱雨英", + "canonical_ids": "⿱雨英", + "expanded_ids": "⿱雨⿱艹⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "艹", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霚", + "codepoint": "U+971A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-971A", + "status": "exact_ids", + "ids": "⿱雨敄", + "canonical_ids": "⿱雨敄", + "expanded_ids": "⿱雨⿰矛攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "矛", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霛", + "codepoint": "U+971B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-971B", + "status": "exact_ids", + "ids": "⿱雨𢏝", + "canonical_ids": "⿱雨𢏝", + "expanded_ids": "⿱雨⿲弓弓弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霜", + "codepoint": "U+971C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-971C", + "status": "exact_ids", + "ids": "⿱雨相", + "canonical_ids": "⿱雨相", + "expanded_ids": "⿱雨⿰木目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "目", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霝", + "codepoint": "U+971D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-971D", + "status": "exact_ids", + "ids": "⿱雨𠱠", + "canonical_ids": "⿱雨𠱠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨" + ], + "unresolved_leaves": [ + "𠱠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霞", + "codepoint": "U+971E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-971E", + "status": "exact_ids", + "ids": "⿱雨叚", + "canonical_ids": "⿱雨叚", + "expanded_ids": "⿱雨叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霟", + "codepoint": "U+971F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-971F", + "status": "exact_ids", + "ids": "⿱雨洪", + "canonical_ids": "⿱雨洪", + "expanded_ids": "⿱雨⿰氵⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "氵", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霠", + "codepoint": "U+9720", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9720", + "status": "exact_ids", + "ids": "⿱雨竛", + "canonical_ids": "⿱雨竛", + "expanded_ids": "⿱雨⿰立⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "立", + "雨", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霡", + "codepoint": "U+9721", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9721", + "status": "exact_ids", + "ids": "⿱雨脉", + "canonical_ids": "⿱雨脉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "雨" + ], + "unresolved_leaves": [ + "永" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霢", + "codepoint": "U+9722", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9722", + "status": "exact_ids", + "ids": "⿱雨脈", + "canonical_ids": "⿱雨脈", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨" + ], + "unresolved_leaves": [ + "脈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霣", + "codepoint": "U+9723", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9723", + "status": "exact_ids", + "ids": "⿱雨員", + "canonical_ids": "⿱雨員", + "expanded_ids": "⿱雨⿱口⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "目", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霤", + "codepoint": "U+9724", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9724", + "status": "exact_ids", + "ids": "⿱雨留", + "canonical_ids": "⿱雨留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霥", + "codepoint": "U+9725", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9725", + "status": "exact_ids", + "ids": "⿱雨冡", + "canonical_ids": "⿱雨冡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霦", + "codepoint": "U+9726", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9726", + "status": "exact_ids", + "ids": "⿱雨彬", + "canonical_ids": "⿱雨彬", + "expanded_ids": "⿱雨⿰⿰木木彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "木", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霧", + "codepoint": "U+9727", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9727", + "status": "exact_ids", + "ids": "⿱雨務", + "canonical_ids": "⿱雨務", + "expanded_ids": "⿱雨⿰矛⿱夂力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "夂", + "矛", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霨", + "codepoint": "U+9728", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9728", + "status": "exact_ids", + "ids": "⿱雨尉", + "canonical_ids": "⿱雨尉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨" + ], + "unresolved_leaves": [ + "尉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霩", + "codepoint": "U+9729", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9729", + "status": "exact_ids", + "ids": "⿱雨郭", + "canonical_ids": "⿱雨郭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝", + "雨" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霪", + "codepoint": "U+972A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-972A", + "status": "exact_ids", + "ids": "⿱雨淫", + "canonical_ids": "⿱雨淫", + "expanded_ids": "⿱雨⿰氵⿱爪王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "爪", + "王", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霫", + "codepoint": "U+972B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-972B", + "status": "exact_ids", + "ids": "⿱雨習", + "canonical_ids": "⿱雨習", + "expanded_ids": "⿱雨⿱⿰习习⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "习", + "日", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霬", + "codepoint": "U+972C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-972C", + "status": "exact_ids", + "ids": "⿱雨異", + "canonical_ids": "⿱雨異", + "expanded_ids": "⿱雨⿱田⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "田", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霭", + "codepoint": "U+972D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-972D", + "status": "exact_ids", + "ids": "⿱雨谒", + "canonical_ids": "⿱雨谒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "讠", + "雨" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霮", + "codepoint": "U+972E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-972E", + "status": "exact_ids", + "ids": "⿱雨湛", + "canonical_ids": "⿱雨湛", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氵", + "甘", + "雨" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霯", + "codepoint": "U+972F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-972F", + "status": "exact_ids", + "ids": "⿱雨登", + "canonical_ids": "⿱雨登", + "expanded_ids": "⿱雨⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "癶", + "豆", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霰", + "codepoint": "U+9730", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9730", + "status": "exact_ids", + "ids": "⿱雨散", + "canonical_ids": "⿱雨散", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨" + ], + "unresolved_leaves": [ + "散" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霱", + "codepoint": "U+9731", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9731", + "status": "exact_ids", + "ids": "⿱雨矞", + "canonical_ids": "⿱雨矞", + "expanded_ids": "⿱雨⿱矛⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "矛", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "露", + "codepoint": "U+9732", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9732", + "status": "exact_ids", + "ids": "⿱雨路", + "canonical_ids": "⿱雨路", + "expanded_ids": "⿱雨⿰⿱口龰⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "雨", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霳", + "codepoint": "U+9733", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9733", + "status": "exact_ids", + "ids": "⿱雨隆", + "canonical_ids": "⿱雨隆", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨" + ], + "unresolved_leaves": [ + "隆" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霴", + "codepoint": "U+9734", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9734", + "status": "exact_ids", + "ids": "⿰雲隶", + "canonical_ids": "⿰雲隶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "雨" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霵", + "codepoint": "U+9735", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9735", + "status": "exact_ids", + "ids": "⿱雨戢", + "canonical_ids": "⿱雨戢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "耳", + "雨" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霶", + "codepoint": "U+9736", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9736", + "status": "exact_ids", + "ids": "⿱雨滂", + "canonical_ids": "⿱雨滂", + "expanded_ids": "⿱雨⿰氵⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "方", + "氵", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霷", + "codepoint": "U+9737", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9737", + "status": "exact_ids", + "ids": "⿱雨暘", + "canonical_ids": "⿱雨暘", + "expanded_ids": "⿱雨⿰日⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霸", + "codepoint": "U+9738", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9738", + "status": "exact_ids", + "ids": "⿱雨䩗", + "canonical_ids": "⿱雨䩗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨" + ], + "unresolved_leaves": [ + "䩗" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霹", + "codepoint": "U+9739", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9739", + "status": "exact_ids", + "ids": "⿱雨辟", + "canonical_ids": "⿱雨辟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立", + "雨" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霺", + "codepoint": "U+973A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-973A", + "status": "exact_ids", + "ids": "⿱雨微", + "canonical_ids": "⿱雨微", + "expanded_ids": "⿱雨⿰彳⿰⿳山冖几攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "几", + "山", + "彳", + "攵", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霻", + "codepoint": "U+973B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-973B", + "status": "exact_ids", + "ids": "⿱雨豊", + "canonical_ids": "⿱雨豊", + "expanded_ids": "⿱雨⿱曲豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "豆", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霼", + "codepoint": "U+973C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-973C", + "status": "exact_ids", + "ids": "⿰雲氣", + "canonical_ids": "⿰雲氣", + "expanded_ids": "⿰⿱雨⿱二厶⿱气⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "二", + "厶", + "木", + "气", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霽", + "codepoint": "U+973D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-973D", + "status": "exact_ids", + "ids": "⿱雨齊", + "canonical_ids": "⿱雨齊", + "expanded_ids": "⿱雨齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霾", + "codepoint": "U+973E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-973E", + "status": "exact_ids", + "ids": "⿱雨貍", + "canonical_ids": "⿱雨貍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豸", + "雨" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "霿", + "codepoint": "U+973F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-973F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靀", + "codepoint": "U+9740", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9740", + "status": "exact_ids", + "ids": "⿱雨蒙", + "canonical_ids": "⿱雨蒙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "雨", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靁", + "codepoint": "U+9741", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9741", + "status": "exact_ids", + "ids": "⿱雨畾", + "canonical_ids": "⿱雨畾", + "expanded_ids": "⿱雨⿱田⿰田田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靂", + "codepoint": "U+9742", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9742", + "status": "exact_ids", + "ids": "⿱雨歷", + "canonical_ids": "⿱雨歷", + "expanded_ids": "⿱雨⿱⿱厂⿰⿻丿木⿻丿木止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厂", + "木", + "止", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靃", + "codepoint": "U+9743", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9743", + "status": "exact_ids", + "ids": "⿱雨雔", + "canonical_ids": "⿱雨雔", + "expanded_ids": "⿱雨⿰隹隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "隹", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靄", + "codepoint": "U+9744", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9744", + "status": "exact_ids", + "ids": "⿱雨謁", + "canonical_ids": "⿱雨謁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "言", + "雨" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靅", + "codepoint": "U+9745", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9745", + "status": "exact_ids", + "ids": "⿰雲費", + "canonical_ids": "⿰雲費", + "expanded_ids": "⿰⿱雨⿱二厶⿱⿻弓刂⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "八", + "刂", + "厶", + "弓", + "目", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靆", + "codepoint": "U+9746", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9746", + "status": "exact_ids", + "ids": "⿰雲逮", + "canonical_ids": "⿰雲逮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "辶", + "雨" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靇", + "codepoint": "U+9747", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9747", + "status": "exact_ids", + "ids": "⿱雨龍", + "canonical_ids": "⿱雨龍", + "expanded_ids": "⿱雨龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靈", + "codepoint": "U+9748", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9748", + "status": "exact_ids", + "ids": "⿱霝巫", + "canonical_ids": "⿱霝巫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "工", + "雨" + ], + "unresolved_leaves": [ + "𠱠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靉", + "codepoint": "U+9749", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9749", + "status": "exact_ids", + "ids": "⿰雲愛", + "canonical_ids": "⿰雲愛", + "expanded_ids": "⿰⿱雨⿱二厶⿳爫冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "冖", + "厶", + "夊", + "心", + "爫", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 253, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靊", + "codepoint": "U+974A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-974A", + "status": "exact_ids", + "ids": "⿱雨豐", + "canonical_ids": "⿱雨豐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豆", + "雨" + ], + "unresolved_leaves": [ + "𠁳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靋", + "codepoint": "U+974B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-974B", + "status": "exact_ids", + "ids": "⿱雨瀝", + "canonical_ids": "⿱雨瀝", + "expanded_ids": "⿱雨⿰氵⿱⿱厂⿰⿻丿木⿻丿木止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厂", + "木", + "止", + "氵", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 300, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靌", + "codepoint": "U+974C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-974C", + "status": "exact_ids", + "ids": "⿱雨寳", + "canonical_ids": "⿱雨寳", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨" + ], + "unresolved_leaves": [ + "寳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靍", + "codepoint": "U+974D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-974D", + "status": "exact_ids", + "ids": "⿱雨䳡", + "canonical_ids": "⿱雨䳡", + "expanded_ids": "⿱雨⿰隹鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "隹", + "雨", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靎", + "codepoint": "U+974E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-974E", + "status": "exact_ids", + "ids": "⿱雨鵭", + "canonical_ids": "⿱雨鵭", + "expanded_ids": "⿱雨⿰金鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金", + "雨", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靏", + "codepoint": "U+974F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-974F", + "status": "exact_ids", + "ids": "⿱雨鶴", + "canonical_ids": "⿱雨鶴", + "expanded_ids": "⿱雨⿰⿻冖隹鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "隹", + "雨", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靐", + "codepoint": "U+9750", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9750", + "status": "exact_ids", + "ids": "⿱雷⿰雷雷", + "canonical_ids": "⿱雷⿰雷雷", + "expanded_ids": "⿱⿱雨田⿰⿱雨田⿱雨田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 228, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靑", + "codepoint": "U+9751", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9751", + "status": "exact_ids", + "ids": "⿱龶円", + "canonical_ids": "⿱龶円", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "円", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "青", + "codepoint": "U+9752", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9752", + "status": "exact_ids", + "ids": "⿱龶月", + "canonical_ids": "⿱龶月", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靓", + "codepoint": "U+9753", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9753", + "status": "exact_ids", + "ids": "⿰青见", + "canonical_ids": "⿰青见", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂", + "月" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靔", + "codepoint": "U+9754", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9754", + "status": "exact_ids", + "ids": "⿰青气", + "canonical_ids": "⿰青气", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "气" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靕", + "codepoint": "U+9755", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9755", + "status": "exact_ids", + "ids": "⿰正靑", + "canonical_ids": "⿰正靑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "止" + ], + "unresolved_leaves": [ + "円", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靖", + "codepoint": "U+9756", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9756", + "status": "exact_ids", + "ids": "⿰立青", + "canonical_ids": "⿰立青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "立" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靗", + "codepoint": "U+9757", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9757", + "status": "exact_ids", + "ids": "⿰青光", + "canonical_ids": "⿰青光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "月" + ], + "unresolved_leaves": [ + "⺌", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靘", + "codepoint": "U+9758", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9758", + "status": "exact_ids", + "ids": "⿰青色", + "canonical_ids": "⿰青色", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "月" + ], + "unresolved_leaves": [ + "⺈", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "静", + "codepoint": "U+9759", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9759", + "status": "exact_ids", + "ids": "⿰青争", + "canonical_ids": "⿰青争", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月" + ], + "unresolved_leaves": [ + "争", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靚", + "codepoint": "U+975A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-975A", + "status": "exact_ids", + "ids": "⿰青見", + "canonical_ids": "⿰青見", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "月", + "目" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靛", + "codepoint": "U+975B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-975B", + "status": "exact_ids", + "ids": "⿰青定", + "canonical_ids": "⿰青定", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "月" + ], + "unresolved_leaves": [ + "龶", + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靜", + "codepoint": "U+975C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-975C", + "status": "exact_ids", + "ids": "⿰青爭", + "canonical_ids": "⿰青爭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "爫", + "肀" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靝", + "codepoint": "U+975D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-975D", + "status": "exact_ids", + "ids": "⿰青氣", + "canonical_ids": "⿰青氣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "月", + "木", + "气" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "非", + "codepoint": "U+975E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-975E", + "status": "leaf_self_fallback", + "ids": "非", + "canonical_ids": "非", + "expanded_ids": "非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靟", + "codepoint": "U+975F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-975F", + "status": "exact_ids", + "ids": "⿱非毛", + "canonical_ids": "⿱非毛", + "expanded_ids": "⿱非毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靠", + "codepoint": "U+9760", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9760", + "status": "exact_ids", + "ids": "⿱告非", + "canonical_ids": "⿱告非", + "expanded_ids": "⿱⿱牛口非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靡", + "codepoint": "U+9761", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9761", + "status": "exact_ids", + "ids": "⿱麻非", + "canonical_ids": "⿱麻非", + "expanded_ids": "⿱⿱广⿰木木非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "木", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "面", + "codepoint": "U+9762", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9762", + "status": "leaf_self_fallback", + "ids": "面", + "canonical_ids": "面", + "expanded_ids": "面", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "面" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靣", + "codepoint": "U+9763", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9763", + "status": "exact_ids", + "ids": "⿱丆回", + "canonical_ids": "⿱丆回", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靤", + "codepoint": "U+9764", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9764", + "status": "exact_ids", + "ids": "⿰面包", + "canonical_ids": "⿰面包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "面" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靥", + "codepoint": "U+9765", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9765", + "status": "exact_ids", + "ids": "⿱厌面", + "canonical_ids": "⿱厌面", + "expanded_ids": "⿱⿱厂⿻大丶面", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "大", + "面" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靦", + "codepoint": "U+9766", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9766", + "status": "exact_ids", + "ids": "⿰面見", + "canonical_ids": "⿰面見", + "expanded_ids": "⿰面⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "目", + "面" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靧", + "codepoint": "U+9767", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9767", + "status": "exact_ids", + "ids": "⿰面貴", + "canonical_ids": "⿰面貴", + "expanded_ids": "⿰面⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "目", + "面" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靨", + "codepoint": "U+9768", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9768", + "status": "exact_ids", + "ids": "⿱厭面", + "canonical_ids": "⿱厭面", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "大", + "月", + "面" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "革", + "codepoint": "U+9769", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9769", + "status": "leaf_self_fallback", + "ids": "革", + "canonical_ids": "革", + "expanded_ids": "革", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靪", + "codepoint": "U+976A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-976A", + "status": "exact_ids", + "ids": "⿰革丁", + "canonical_ids": "⿰革丁", + "expanded_ids": "⿰革⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靫", + "codepoint": "U+976B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-976B", + "status": "exact_ids", + "ids": "⿰革叉", + "canonical_ids": "⿰革叉", + "expanded_ids": "⿰革⿻又丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "又", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靬", + "codepoint": "U+976C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-976C", + "status": "exact_ids", + "ids": "⿰革干", + "canonical_ids": "⿰革干", + "expanded_ids": "⿰革⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靭", + "codepoint": "U+976D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-976D", + "status": "exact_ids", + "ids": "⿰革刃", + "canonical_ids": "⿰革刃", + "expanded_ids": "⿰革⿻刀丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靮", + "codepoint": "U+976E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-976E", + "status": "exact_ids", + "ids": "⿰革勺", + "canonical_ids": "⿰革勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "革" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靯", + "codepoint": "U+976F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-976F", + "status": "exact_ids", + "ids": "⿰革土", + "canonical_ids": "⿰革土", + "expanded_ids": "⿰革土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靰", + "codepoint": "U+9770", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9770", + "status": "exact_ids", + "ids": "⿰革兀", + "canonical_ids": "⿰革兀", + "expanded_ids": "⿰革⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靱", + "codepoint": "U+9771", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9771", + "status": "exact_ids", + "ids": "⿰革刄", + "canonical_ids": "⿰革刄", + "expanded_ids": "⿰革⿻刀乀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乀", + "刀", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靲", + "codepoint": "U+9772", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9772", + "status": "exact_ids", + "ids": "⿰革今", + "canonical_ids": "⿰革今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "革" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靳", + "codepoint": "U+9773", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9773", + "status": "exact_ids", + "ids": "⿰革斤", + "canonical_ids": "⿰革斤", + "expanded_ids": "⿰革斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靴", + "codepoint": "U+9774", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9774", + "status": "exact_ids", + "ids": "⿰革化", + "canonical_ids": "⿰革化", + "expanded_ids": "⿰革⿰亻匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靵", + "codepoint": "U+9775", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9775", + "status": "exact_ids", + "ids": "⿰革丑", + "canonical_ids": "⿰革丑", + "expanded_ids": "⿰革丑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靶", + "codepoint": "U+9776", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9776", + "status": "exact_ids", + "ids": "⿰革巴", + "canonical_ids": "⿰革巴", + "expanded_ids": "⿰革巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靷", + "codepoint": "U+9777", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9777", + "status": "exact_ids", + "ids": "⿰革引", + "canonical_ids": "⿰革引", + "expanded_ids": "⿰革⿰弓丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "弓", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靸", + "codepoint": "U+9778", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9778", + "status": "exact_ids", + "ids": "⿰革及", + "canonical_ids": "⿰革及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "革" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靹", + "codepoint": "U+9779", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9779", + "status": "exact_ids", + "ids": "⿰革內", + "canonical_ids": "⿰革內", + "expanded_ids": "⿰革⿻冂入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "冂", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靺", + "codepoint": "U+977A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-977A", + "status": "exact_ids", + "ids": "⿰革末", + "canonical_ids": "⿰革末", + "expanded_ids": "⿰革⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靻", + "codepoint": "U+977B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-977B", + "status": "exact_ids", + "ids": "⿰革且", + "canonical_ids": "⿰革且", + "expanded_ids": "⿰革且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靼", + "codepoint": "U+977C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-977C", + "status": "exact_ids", + "ids": "⿰革旦", + "canonical_ids": "⿰革旦", + "expanded_ids": "⿰革⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靽", + "codepoint": "U+977D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-977D", + "status": "exact_ids", + "ids": "⿰革半", + "canonical_ids": "⿰革半", + "expanded_ids": "⿰革半", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "半", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靾", + "codepoint": "U+977E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-977E", + "status": "exact_ids", + "ids": "⿰革世", + "canonical_ids": "⿰革世", + "expanded_ids": "⿰革世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "靿", + "codepoint": "U+977F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-977F", + "status": "exact_ids", + "ids": "⿰革幼", + "canonical_ids": "⿰革幼", + "expanded_ids": "⿰革⿰幺力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "幺", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞀", + "codepoint": "U+9780", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9780", + "status": "exact_ids", + "ids": "⿰革召", + "canonical_ids": "⿰革召", + "expanded_ids": "⿰革⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞁", + "codepoint": "U+9781", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9781", + "status": "exact_ids", + "ids": "⿰革皮", + "canonical_ids": "⿰革皮", + "expanded_ids": "⿰革皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皮", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞂", + "codepoint": "U+9782", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9782", + "status": "exact_ids", + "ids": "⿰革禾", + "canonical_ids": "⿰革禾", + "expanded_ids": "⿰革⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞃", + "codepoint": "U+9783", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9783", + "status": "exact_ids", + "ids": "⿰革弘", + "canonical_ids": "⿰革弘", + "expanded_ids": "⿰革⿰弓厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "弓", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞄", + "codepoint": "U+9784", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9784", + "status": "exact_ids", + "ids": "⿰革包", + "canonical_ids": "⿰革包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "革" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞅", + "codepoint": "U+9785", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9785", + "status": "exact_ids", + "ids": "⿰革央", + "canonical_ids": "⿰革央", + "expanded_ids": "⿰革⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞆", + "codepoint": "U+9786", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9786", + "status": "exact_ids", + "ids": "⿰革丙", + "canonical_ids": "⿰革丙", + "expanded_ids": "⿰革⿱一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "冂", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞇", + "codepoint": "U+9787", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9787", + "status": "exact_ids", + "ids": "⿰革因", + "canonical_ids": "⿰革因", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "革" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞈", + "codepoint": "U+9788", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9788", + "status": "exact_ids", + "ids": "⿰革合", + "canonical_ids": "⿰革合", + "expanded_ids": "⿰革⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞉", + "codepoint": "U+9789", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9789", + "status": "exact_ids", + "ids": "⿰革兆", + "canonical_ids": "⿰革兆", + "expanded_ids": "⿰革兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞊", + "codepoint": "U+978A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-978A", + "status": "exact_ids", + "ids": "⿰革吉", + "canonical_ids": "⿰革吉", + "expanded_ids": "⿰革⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞋", + "codepoint": "U+978B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-978B", + "status": "exact_ids", + "ids": "⿰革圭", + "canonical_ids": "⿰革圭", + "expanded_ids": "⿰革⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞌", + "codepoint": "U+978C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-978C", + "status": "exact_ids", + "ids": "⿱安革", + "canonical_ids": "⿱安革", + "expanded_ids": "⿱⿱宀女革", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞍", + "codepoint": "U+978D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-978D", + "status": "exact_ids", + "ids": "⿰革安", + "canonical_ids": "⿰革安", + "expanded_ids": "⿰革⿱宀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞎", + "codepoint": "U+978E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-978E", + "status": "exact_ids", + "ids": "⿰革艮", + "canonical_ids": "⿰革艮", + "expanded_ids": "⿰革艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艮", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞏", + "codepoint": "U+978F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-978F", + "status": "exact_ids", + "ids": "⿱巩革", + "canonical_ids": "⿱巩革", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "革" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞐", + "codepoint": "U+9790", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9790", + "status": "exact_ids", + "ids": "⿰革𠧗", + "canonical_ids": "⿰革𠧗", + "expanded_ids": "⿰革⿱上⿱一卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "上", + "卜", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞑", + "codepoint": "U+9791", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9791", + "status": "exact_ids", + "ids": "⿰革达", + "canonical_ids": "⿰革达", + "expanded_ids": "⿰革⿰辶大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "辶", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞒", + "codepoint": "U+9792", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9792", + "status": "exact_ids", + "ids": "⿰革乔", + "canonical_ids": "⿰革乔", + "expanded_ids": "⿰革⿱丿⿱大儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "大", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞓", + "codepoint": "U+9793", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9793", + "status": "exact_ids", + "ids": "⿰革呈", + "canonical_ids": "⿰革呈", + "expanded_ids": "⿰革⿱口王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "王", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞔", + "codepoint": "U+9794", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9794", + "status": "exact_ids", + "ids": "⿰革免", + "canonical_ids": "⿰革免", + "expanded_ids": "⿰革免", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "免", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞕", + "codepoint": "U+9795", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9795", + "status": "exact_ids", + "ids": "⿰革更", + "canonical_ids": "⿰革更", + "expanded_ids": "⿰革更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "更", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞖", + "codepoint": "U+9796", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9796", + "status": "exact_ids", + "ids": "⿰革妥", + "canonical_ids": "⿰革妥", + "expanded_ids": "⿰革⿱爫女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "爫", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞗", + "codepoint": "U+9797", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9797", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞘", + "codepoint": "U+9798", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9798", + "status": "exact_ids", + "ids": "⿰革肖", + "canonical_ids": "⿰革肖", + "expanded_ids": "⿰革⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞙", + "codepoint": "U+9799", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9799", + "status": "exact_ids", + "ids": "⿰革肙", + "canonical_ids": "⿰革肙", + "expanded_ids": "⿰革⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞚", + "codepoint": "U+979A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-979A", + "status": "exact_ids", + "ids": "⿰革空", + "canonical_ids": "⿰革空", + "expanded_ids": "⿰革⿱⿱宀八工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "工", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞛", + "codepoint": "U+979B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-979B", + "status": "exact_ids", + "ids": "⿰革咅", + "canonical_ids": "⿰革咅", + "expanded_ids": "⿰革⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "立", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞜", + "codepoint": "U+979C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-979C", + "status": "exact_ids", + "ids": "⿰革沓", + "canonical_ids": "⿰革沓", + "expanded_ids": "⿰革⿱水日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "水", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞝", + "codepoint": "U+979D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-979D", + "status": "exact_ids", + "ids": "⿰革尚", + "canonical_ids": "⿰革尚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "革" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞞", + "codepoint": "U+979E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-979E", + "status": "exact_ids", + "ids": "⿰革卑", + "canonical_ids": "⿰革卑", + "expanded_ids": "⿰革卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞟", + "codepoint": "U+979F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-979F", + "status": "exact_ids", + "ids": "⿰革享", + "canonical_ids": "⿰革享", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "革" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞠", + "codepoint": "U+97A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97A0", + "status": "exact_ids", + "ids": "⿰革匊", + "canonical_ids": "⿰革匊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "革" + ], + "unresolved_leaves": [ + "匊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞡", + "codepoint": "U+97A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97A1", + "status": "exact_ids", + "ids": "⿰革拉", + "canonical_ids": "⿰革拉", + "expanded_ids": "⿰革⿰扌立", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "扌", + "立", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞢", + "codepoint": "U+97A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97A2", + "status": "exact_ids", + "ids": "⿰革枼", + "canonical_ids": "⿰革枼", + "expanded_ids": "⿰革⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞣", + "codepoint": "U+97A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97A3", + "status": "exact_ids", + "ids": "⿰革柔", + "canonical_ids": "⿰革柔", + "expanded_ids": "⿰革⿱矛木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "矛", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞤", + "codepoint": "U+97A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97A4", + "status": "exact_ids", + "ids": "⿱封革", + "canonical_ids": "⿱封革", + "expanded_ids": "⿱⿰⿱土土寸革", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞥", + "codepoint": "U+97A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97A5", + "status": "exact_ids", + "ids": "⿰革弇", + "canonical_ids": "⿰革弇", + "expanded_ids": "⿰革⿱⿱⿱人一口廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "廾", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞦", + "codepoint": "U+97A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97A6", + "status": "exact_ids", + "ids": "⿰革秋", + "canonical_ids": "⿰革秋", + "expanded_ids": "⿰革⿰⿻丿木火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "火", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞧", + "codepoint": "U+97A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97A7", + "status": "exact_ids", + "ids": "⿰革酋", + "canonical_ids": "⿰革酋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "革" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞨", + "codepoint": "U+97A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97A8", + "status": "exact_ids", + "ids": "⿰革曷", + "canonical_ids": "⿰革曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "革" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞩", + "codepoint": "U+97A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97A9", + "status": "exact_ids", + "ids": "⿰革削", + "canonical_ids": "⿰革削", + "expanded_ids": "⿰革⿰⿱小月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "小", + "月", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞪", + "codepoint": "U+97AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97AA", + "status": "exact_ids", + "ids": "⿱敄革", + "canonical_ids": "⿱敄革", + "expanded_ids": "⿱⿰矛攵革", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "矛", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞫", + "codepoint": "U+97AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97AB", + "status": "exact_ids", + "ids": "⿰革訇", + "canonical_ids": "⿰革訇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "革" + ], + "unresolved_leaves": [ + "訇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞬", + "codepoint": "U+97AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97AC", + "status": "exact_ids", + "ids": "⿰革建", + "canonical_ids": "⿰革建", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廴", + "革" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞭", + "codepoint": "U+97AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97AD", + "status": "exact_ids", + "ids": "⿰革便", + "canonical_ids": "⿰革便", + "expanded_ids": "⿰革⿰亻更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "更", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞮", + "codepoint": "U+97AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97AE", + "status": "exact_ids", + "ids": "⿰革是", + "canonical_ids": "⿰革是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "革" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞯", + "codepoint": "U+97AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97AF", + "status": "exact_ids", + "ids": "⿰革荐", + "canonical_ids": "⿰革荐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "革" + ], + "unresolved_leaves": [ + "存" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞰", + "codepoint": "U+97B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97B0", + "status": "exact_ids", + "ids": "⿰革昷", + "canonical_ids": "⿰革昷", + "expanded_ids": "⿰革⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "皿", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞱", + "codepoint": "U+97B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97B1", + "status": "exact_ids", + "ids": "⿰革舀", + "canonical_ids": "⿰革舀", + "expanded_ids": "⿰革⿱爫臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爫", + "臼", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞲", + "codepoint": "U+97B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97B2", + "status": "exact_ids", + "ids": "⿰革冓", + "canonical_ids": "⿰革冓", + "expanded_ids": "⿰革⿱井⿱一⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "井", + "冂", + "土", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞳", + "codepoint": "U+97B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97B3", + "status": "exact_ids", + "ids": "⿰革荅", + "canonical_ids": "⿰革荅", + "expanded_ids": "⿰革⿱艹⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "艹", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞴", + "codepoint": "U+97B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97B4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞵", + "codepoint": "U+97B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97B5", + "status": "exact_ids", + "ids": "⿰革奚", + "canonical_ids": "⿰革奚", + "expanded_ids": "⿰革⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "幺", + "爪", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞶", + "codepoint": "U+97B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97B6", + "status": "exact_ids", + "ids": "⿱般革", + "canonical_ids": "⿱般革", + "expanded_ids": "⿱⿰舟⿱几又革", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "舟", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞷", + "codepoint": "U+97B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97B7", + "status": "exact_ids", + "ids": "⿱鬲革", + "canonical_ids": "⿱鬲革", + "expanded_ids": "⿱鬲革", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "革", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞸", + "codepoint": "U+97B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97B8", + "status": "exact_ids", + "ids": "⿰革畢", + "canonical_ids": "⿰革畢", + "expanded_ids": "⿰革畢", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "畢", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞹", + "codepoint": "U+97B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97B9", + "status": "exact_ids", + "ids": "⿰革郭", + "canonical_ids": "⿰革郭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "阝", + "革" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞺", + "codepoint": "U+97BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97BA", + "status": "exact_ids", + "ids": "⿰革堂", + "canonical_ids": "⿰革堂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "小", + "革" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞻", + "codepoint": "U+97BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97BB", + "status": "exact_ids", + "ids": "⿰革婁", + "canonical_ids": "⿰革婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "革" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞼", + "codepoint": "U+97BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97BC", + "status": "exact_ids", + "ids": "⿰革貴", + "canonical_ids": "⿰革貴", + "expanded_ids": "⿰革⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "八", + "口", + "目", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞽", + "codepoint": "U+97BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97BD", + "status": "exact_ids", + "ids": "⿰革喬", + "canonical_ids": "⿰革喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "革" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞾", + "codepoint": "U+97BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97BE", + "status": "exact_ids", + "ids": "⿰革華", + "canonical_ids": "⿰革華", + "expanded_ids": "⿰革⿱艹𠦒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "革", + "𠦒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 118, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鞿", + "codepoint": "U+97BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97BF", + "status": "exact_ids", + "ids": "⿰革幾", + "canonical_ids": "⿰革幾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "革" + ], + "unresolved_leaves": [ + "戍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韀", + "codepoint": "U+97C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97C0", + "status": "exact_ids", + "ids": "⿰革廌", + "canonical_ids": "⿰革廌", + "expanded_ids": "⿰革廌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廌", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韁", + "codepoint": "U+97C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97C1", + "status": "exact_ids", + "ids": "⿰革畺", + "canonical_ids": "⿰革畺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "革" + ], + "unresolved_leaves": [ + "三" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韂", + "codepoint": "U+97C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97C2", + "status": "exact_ids", + "ids": "⿰革詹", + "canonical_ids": "⿰革詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "革" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韃", + "codepoint": "U+97C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97C3", + "status": "exact_ids", + "ids": "⿰革達", + "canonical_ids": "⿰革達", + "expanded_ids": "⿰革⿰辶⿱土羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "羊", + "辶", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韄", + "codepoint": "U+97C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97C4", + "status": "exact_ids", + "ids": "⿰革蒦", + "canonical_ids": "⿰革蒦", + "expanded_ids": "⿰革⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "艹", + "隹", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韅", + "codepoint": "U+97C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97C5", + "status": "exact_ids", + "ids": "⿰革㬎", + "canonical_ids": "⿰革㬎", + "expanded_ids": "⿰革⿱日⿱⿰幺幺灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "日", + "灬", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韆", + "codepoint": "U+97C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97C6", + "status": "exact_ids", + "ids": "⿰革遷", + "canonical_ids": "⿰革遷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "革" + ], + "unresolved_leaves": [ + "遷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韇", + "codepoint": "U+97C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97C7", + "status": "exact_ids", + "ids": "⿰革賣", + "canonical_ids": "⿰革賣", + "expanded_ids": "⿰革⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "士", + "目", + "罒", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韈", + "codepoint": "U+97C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97C8", + "status": "exact_ids", + "ids": "⿰革蔑", + "canonical_ids": "⿰革蔑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "艹", + "革" + ], + "unresolved_leaves": [ + "戌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韉", + "codepoint": "U+97C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97C9", + "status": "exact_ids", + "ids": "⿰革薦", + "canonical_ids": "⿰革薦", + "expanded_ids": "⿰革⿱艹廌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廌", + "艹", + "革" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韊", + "codepoint": "U+97CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97CA", + "status": "exact_ids", + "ids": "⿰革蘭", + "canonical_ids": "⿰革蘭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "革" + ], + "unresolved_leaves": [ + "闌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韋", + "codepoint": "U+97CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97CB", + "status": "leaf_self_fallback", + "ids": "韋", + "canonical_ids": "韋", + "expanded_ids": "韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韌", + "codepoint": "U+97CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97CC", + "status": "exact_ids", + "ids": "⿰韋刃", + "canonical_ids": "⿰韋刃", + "expanded_ids": "⿰韋⿻刀丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韍", + "codepoint": "U+97CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97CD", + "status": "exact_ids", + "ids": "⿰韋犮", + "canonical_ids": "⿰韋犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "韋" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韎", + "codepoint": "U+97CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97CE", + "status": "exact_ids", + "ids": "⿰韋末", + "canonical_ids": "⿰韋末", + "expanded_ids": "⿰韋⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韏", + "codepoint": "U+97CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97CF", + "status": "exact_ids", + "ids": "⿱关韋", + "canonical_ids": "⿱关韋", + "expanded_ids": "⿱⿱丷⿻一大韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韐", + "codepoint": "U+97D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97D0", + "status": "exact_ids", + "ids": "⿰韋合", + "canonical_ids": "⿰韋合", + "expanded_ids": "⿰韋⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韑", + "codepoint": "U+97D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97D1", + "status": "exact_ids", + "ids": "⿰光韋", + "canonical_ids": "⿰光韋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "韋" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韒", + "codepoint": "U+97D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97D2", + "status": "exact_ids", + "ids": "⿰韋肖", + "canonical_ids": "⿰韋肖", + "expanded_ids": "⿰韋⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韓", + "codepoint": "U+97D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97D3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韔", + "codepoint": "U+97D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97D4", + "status": "exact_ids", + "ids": "⿰韋長", + "canonical_ids": "⿰韋長", + "expanded_ids": "⿰韋長", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "長", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韕", + "codepoint": "U+97D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97D5", + "status": "exact_ids", + "ids": "⿰韋享", + "canonical_ids": "⿰韋享", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "韋" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韖", + "codepoint": "U+97D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97D6", + "status": "exact_ids", + "ids": "⿰韋柔", + "canonical_ids": "⿰韋柔", + "expanded_ids": "⿰韋⿱矛木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "矛", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韗", + "codepoint": "U+97D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97D7", + "status": "exact_ids", + "ids": "⿰韋軍", + "canonical_ids": "⿰韋軍", + "expanded_ids": "⿰韋⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "車", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韘", + "codepoint": "U+97D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97D8", + "status": "exact_ids", + "ids": "⿰韋枼", + "canonical_ids": "⿰韋枼", + "expanded_ids": "⿰韋⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韙", + "codepoint": "U+97D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97D9", + "status": "exact_ids", + "ids": "⿰是韋", + "canonical_ids": "⿰是韋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "韋" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韚", + "codepoint": "U+97DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97DA", + "status": "exact_ids", + "ids": "⿰韋革", + "canonical_ids": "⿰韋革", + "expanded_ids": "⿰韋革", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "革", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韛", + "codepoint": "U+97DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97DB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韜", + "codepoint": "U+97DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97DC", + "status": "exact_ids", + "ids": "⿰韋舀", + "canonical_ids": "⿰韋舀", + "expanded_ids": "⿰韋⿱爫臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爫", + "臼", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韝", + "codepoint": "U+97DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97DD", + "status": "exact_ids", + "ids": "⿰韋冓", + "canonical_ids": "⿰韋冓", + "expanded_ids": "⿰韋⿱井⿱一⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "井", + "冂", + "土", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韞", + "codepoint": "U+97DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97DE", + "status": "exact_ids", + "ids": "⿰韋𥁕", + "canonical_ids": "⿰韋𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "韋" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韟", + "codepoint": "U+97DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97DF", + "status": "exact_ids", + "ids": "⿰韋皋", + "canonical_ids": "⿰韋皋", + "expanded_ids": "⿰韋⿱⿻日丶⿱大十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "十", + "大", + "日", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韠", + "codepoint": "U+97E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97E0", + "status": "exact_ids", + "ids": "⿰韋畢", + "canonical_ids": "⿰韋畢", + "expanded_ids": "⿰韋畢", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "畢", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韡", + "codepoint": "U+97E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97E1", + "status": "exact_ids", + "ids": "⿰韋華", + "canonical_ids": "⿰韋華", + "expanded_ids": "⿰韋⿱艹𠦒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "韋", + "𠦒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 118, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韢", + "codepoint": "U+97E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97E2", + "status": "exact_ids", + "ids": "⿰韋惠", + "canonical_ids": "⿰韋惠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "心", + "韋" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韣", + "codepoint": "U+97E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97E3", + "status": "exact_ids", + "ids": "⿰韋蜀", + "canonical_ids": "⿰韋蜀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒", + "韋" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韤", + "codepoint": "U+97E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97E4", + "status": "exact_ids", + "ids": "⿰韋蔑", + "canonical_ids": "⿰韋蔑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "艹", + "韋" + ], + "unresolved_leaves": [ + "戌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韥", + "codepoint": "U+97E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97E5", + "status": "exact_ids", + "ids": "⿰韋賣", + "canonical_ids": "⿰韋賣", + "expanded_ids": "⿰韋⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "士", + "目", + "罒", + "韋" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韦", + "codepoint": "U+97E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97E6", + "status": "leaf_self_fallback", + "ids": "韦", + "canonical_ids": "韦", + "expanded_ids": "韦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "韦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韧", + "codepoint": "U+97E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97E7", + "status": "exact_ids", + "ids": "⿰韦刃", + "canonical_ids": "⿰韦刃", + "expanded_ids": "⿰韦⿻刀丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "刀", + "韦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韨", + "codepoint": "U+97E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97E8", + "status": "exact_ids", + "ids": "⿰韦犮", + "canonical_ids": "⿰韦犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "韦" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韩", + "codepoint": "U+97E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97E9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韪", + "codepoint": "U+97EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97EA", + "status": "exact_ids", + "ids": "⿰是韦", + "canonical_ids": "⿰是韦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "韦" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韫", + "codepoint": "U+97EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97EB", + "status": "exact_ids", + "ids": "⿰韦昷", + "canonical_ids": "⿰韦昷", + "expanded_ids": "⿰韦⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "皿", + "韦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韬", + "codepoint": "U+97EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97EC", + "status": "exact_ids", + "ids": "⿰韦舀", + "canonical_ids": "⿰韦舀", + "expanded_ids": "⿰韦⿱爫臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爫", + "臼", + "韦" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韭", + "codepoint": "U+97ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97ED", + "status": "leaf_self_fallback", + "ids": "韭", + "canonical_ids": "韭", + "expanded_ids": "韭", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "韭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韮", + "codepoint": "U+97EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97EE", + "status": "exact_ids", + "ids": "⿱艹韭", + "canonical_ids": "⿱艹韭", + "expanded_ids": "⿱艹韭", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "韭" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韯", + "codepoint": "U+97EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97EF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韰", + "codepoint": "U+97F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97F0", + "status": "exact_ids", + "ids": "⿱𣦼韭", + "canonical_ids": "⿱𣦼韭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "韭" + ], + "unresolved_leaves": [ + "𣦼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韱", + "codepoint": "U+97F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97F1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韲", + "codepoint": "U+97F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97F2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "音", + "codepoint": "U+97F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97F3", + "status": "exact_ids", + "ids": "⿱立日", + "canonical_ids": "⿱立日", + "expanded_ids": "⿱立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韴", + "codepoint": "U+97F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97F4", + "status": "exact_ids", + "ids": "⿰音帀", + "canonical_ids": "⿰音帀", + "expanded_ids": "⿰⿱立日⿱一⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韵", + "codepoint": "U+97F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97F5", + "status": "exact_ids", + "ids": "⿰音匀", + "canonical_ids": "⿰音匀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "立" + ], + "unresolved_leaves": [ + "匀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韶", + "codepoint": "U+97F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97F6", + "status": "exact_ids", + "ids": "⿰音召", + "canonical_ids": "⿰音召", + "expanded_ids": "⿰⿱立日⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韷", + "codepoint": "U+97F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97F7", + "status": "exact_ids", + "ids": "⿰音出", + "canonical_ids": "⿰音出", + "expanded_ids": "⿰⿱立日⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韸", + "codepoint": "U+97F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97F8", + "status": "exact_ids", + "ids": "⿰音夆", + "canonical_ids": "⿰音夆", + "expanded_ids": "⿰⿱立日⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韹", + "codepoint": "U+97F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97F9", + "status": "exact_ids", + "ids": "⿰音皇", + "canonical_ids": "⿰音皇", + "expanded_ids": "⿰⿱立日⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "王", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韺", + "codepoint": "U+97FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97FA", + "status": "exact_ids", + "ids": "⿰音英", + "canonical_ids": "⿰音英", + "expanded_ids": "⿰⿱立日⿱艹⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "日", + "立", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韻", + "codepoint": "U+97FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97FB", + "status": "exact_ids", + "ids": "⿰音員", + "canonical_ids": "⿰音員", + "expanded_ids": "⿰⿱立日⿱口⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "日", + "目", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韼", + "codepoint": "U+97FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97FC", + "status": "exact_ids", + "ids": "⿰音逢", + "canonical_ids": "⿰音逢", + "expanded_ids": "⿰⿱立日⿰辶⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "日", + "立", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韽", + "codepoint": "U+97FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97FD", + "status": "exact_ids", + "ids": "⿰酓音", + "canonical_ids": "⿰酓音", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "日", + "立" + ], + "unresolved_leaves": [ + "㇇", + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "韾", + "codepoint": "U+97FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97FE", + "status": "exact_ids", + "ids": "⿱殸音", + "canonical_ids": "⿱殸音", + "expanded_ids": "⿱⿰⿱士⿻尸丨⿱几又⿱立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "几", + "又", + "士", + "尸", + "日", + "立" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "響", + "codepoint": "U+97FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-97FF", + "status": "exact_ids", + "ids": "⿱鄉音", + "canonical_ids": "⿱鄉音", + "expanded_ids": "⿱⿰乡⿰⿻丶艮阝⿱立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乡", + "日", + "立", + "艮", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頀", + "codepoint": "U+9800", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9800", + "status": "exact_ids", + "ids": "⿰音蒦", + "canonical_ids": "⿰音蒦", + "expanded_ids": "⿰⿱立日⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "日", + "立", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頁", + "codepoint": "U+9801", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9801", + "status": "exact_ids", + "ids": "⿱丆貝", + "canonical_ids": "⿱丆貝", + "expanded_ids": "⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頂", + "codepoint": "U+9802", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9802", + "status": "exact_ids", + "ids": "⿰丁頁", + "canonical_ids": "⿰丁頁", + "expanded_ids": "⿰⿱一亅⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亅", + "八", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頃", + "codepoint": "U+9803", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9803", + "status": "exact_ids", + "ids": "⿰匕頁", + "canonical_ids": "⿰匕頁", + "expanded_ids": "⿰匕⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "匕", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頄", + "codepoint": "U+9804", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9804", + "status": "exact_ids", + "ids": "⿰九頁", + "canonical_ids": "⿰九頁", + "expanded_ids": "⿰九⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "九", + "八", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "項", + "codepoint": "U+9805", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9805", + "status": "exact_ids", + "ids": "⿰工頁", + "canonical_ids": "⿰工頁", + "expanded_ids": "⿰工⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "工", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "順", + "codepoint": "U+9806", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9806", + "status": "exact_ids", + "ids": "⿰川頁", + "canonical_ids": "⿰川頁", + "expanded_ids": "⿰川⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "川", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頇", + "codepoint": "U+9807", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9807", + "status": "exact_ids", + "ids": "⿰干頁", + "canonical_ids": "⿰干頁", + "expanded_ids": "⿰⿱一十⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "十", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "須", + "codepoint": "U+9808", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9808", + "status": "exact_ids", + "ids": "⿰彡頁", + "canonical_ids": "⿰彡頁", + "expanded_ids": "⿰彡⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "彡", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頉", + "codepoint": "U+9809", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9809", + "status": "exact_ids", + "ids": "⿰止頁", + "canonical_ids": "⿰止頁", + "expanded_ids": "⿰止⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "止", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頊", + "codepoint": "U+980A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-980A", + "status": "exact_ids", + "ids": "⿰王頁", + "canonical_ids": "⿰王頁", + "expanded_ids": "⿰王⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "王", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頋", + "codepoint": "U+980B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-980B", + "status": "exact_ids", + "ids": "⿰厄頁", + "canonical_ids": "⿰厄頁", + "expanded_ids": "⿰⿱厂㔾⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "一", + "丿", + "八", + "厂", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 220, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頌", + "codepoint": "U+980C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-980C", + "status": "exact_ids", + "ids": "⿰公頁", + "canonical_ids": "⿰公頁", + "expanded_ids": "⿰⿱八厶⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "厶", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頍", + "codepoint": "U+980D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-980D", + "status": "exact_ids", + "ids": "⿰支頁", + "canonical_ids": "⿰支頁", + "expanded_ids": "⿰⿱十又⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "十", + "又", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頎", + "codepoint": "U+980E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-980E", + "status": "exact_ids", + "ids": "⿰斤頁", + "canonical_ids": "⿰斤頁", + "expanded_ids": "⿰斤⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "斤", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頏", + "codepoint": "U+980F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-980F", + "status": "exact_ids", + "ids": "⿰亢頁", + "canonical_ids": "⿰亢頁", + "expanded_ids": "⿰⿱亠几⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亠", + "八", + "几", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "預", + "codepoint": "U+9810", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9810", + "status": "exact_ids", + "ids": "⿰予頁", + "canonical_ids": "⿰予頁", + "expanded_ids": "⿰⿱龴⿱一亅⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亅", + "八", + "目", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頑", + "codepoint": "U+9811", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9811", + "status": "exact_ids", + "ids": "⿰元頁", + "canonical_ids": "⿰元頁", + "expanded_ids": "⿰⿱一⿱一儿⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "儿", + "八", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頒", + "codepoint": "U+9812", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9812", + "status": "exact_ids", + "ids": "⿰分頁", + "canonical_ids": "⿰分頁", + "expanded_ids": "⿰⿱八刀⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "刀", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頓", + "codepoint": "U+9813", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9813", + "status": "exact_ids", + "ids": "⿰屯頁", + "canonical_ids": "⿰屯頁", + "expanded_ids": "⿰屯⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "屯", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頔", + "codepoint": "U+9814", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9814", + "status": "exact_ids", + "ids": "⿰由頁", + "canonical_ids": "⿰由頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頕", + "codepoint": "U+9815", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9815", + "status": "exact_ids", + "ids": "⿰占頁", + "canonical_ids": "⿰占頁", + "expanded_ids": "⿰⿱卜口⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "卜", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頖", + "codepoint": "U+9816", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9816", + "status": "exact_ids", + "ids": "⿰半頁", + "canonical_ids": "⿰半頁", + "expanded_ids": "⿰半⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "半", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頗", + "codepoint": "U+9817", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9817", + "status": "exact_ids", + "ids": "⿰皮頁", + "canonical_ids": "⿰皮頁", + "expanded_ids": "⿰皮⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "皮", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "領", + "codepoint": "U+9818", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9818", + "status": "exact_ids", + "ids": "⿰令頁", + "canonical_ids": "⿰令頁", + "expanded_ids": "⿰⿱⿱人一龴⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "八", + "目", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頙", + "codepoint": "U+9819", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9819", + "status": "exact_ids", + "ids": "⿰正頁", + "canonical_ids": "⿰正頁", + "expanded_ids": "⿰⿱一止⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "止", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頚", + "codepoint": "U+981A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-981A", + "status": "exact_ids", + "ids": "⿰圣頁", + "canonical_ids": "⿰圣頁", + "expanded_ids": "⿰⿱又土⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "又", + "土", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頛", + "codepoint": "U+981B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-981B", + "status": "exact_ids", + "ids": "⿰耒頁", + "canonical_ids": "⿰耒頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目" + ], + "unresolved_leaves": [ + "耒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頜", + "codepoint": "U+981C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-981C", + "status": "exact_ids", + "ids": "⿰合頁", + "canonical_ids": "⿰合頁", + "expanded_ids": "⿰⿱⿱人一口⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "八", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頝", + "codepoint": "U+981D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-981D", + "status": "exact_ids", + "ids": "⿰交頁", + "canonical_ids": "⿰交頁", + "expanded_ids": "⿰⿱亠父⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亠", + "八", + "父", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頞", + "codepoint": "U+981E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-981E", + "status": "exact_ids", + "ids": "⿰安頁", + "canonical_ids": "⿰安頁", + "expanded_ids": "⿰⿱宀女⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "女", + "宀", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頟", + "codepoint": "U+981F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-981F", + "status": "exact_ids", + "ids": "⿰各頁", + "canonical_ids": "⿰各頁", + "expanded_ids": "⿰⿱夂口⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "口", + "夂", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頠", + "codepoint": "U+9820", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9820", + "status": "exact_ids", + "ids": "⿰危頁", + "canonical_ids": "⿰危頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "一", + "丿", + "八", + "厂", + "目" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頡", + "codepoint": "U+9821", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9821", + "status": "exact_ids", + "ids": "⿰吉頁", + "canonical_ids": "⿰吉頁", + "expanded_ids": "⿰⿱士口⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "口", + "士", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頢", + "codepoint": "U+9822", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9822", + "status": "exact_ids", + "ids": "⿰舌頁", + "canonical_ids": "⿰舌頁", + "expanded_ids": "⿰⿱⿱丿十口⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "十", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頣", + "codepoint": "U+9823", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9823", + "status": "exact_ids", + "ids": "⿰臣頁", + "canonical_ids": "⿰臣頁", + "expanded_ids": "⿰臣⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目", + "臣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頤", + "codepoint": "U+9824", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9824", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頥", + "codepoint": "U+9825", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9825", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頦", + "codepoint": "U+9826", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9826", + "status": "exact_ids", + "ids": "⿰亥頁", + "canonical_ids": "⿰亥頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頧", + "codepoint": "U+9827", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9827", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頨", + "codepoint": "U+9828", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9828", + "status": "exact_ids", + "ids": "⿰羽頁", + "canonical_ids": "⿰羽頁", + "expanded_ids": "⿰⿰习习⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "习", + "八", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頩", + "codepoint": "U+9829", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9829", + "status": "exact_ids", + "ids": "⿰并頁", + "canonical_ids": "⿰并頁", + "expanded_ids": "⿰⿱丷⿱一廾⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "丿", + "八", + "廾", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頪", + "codepoint": "U+982A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-982A", + "status": "exact_ids", + "ids": "⿰米頁", + "canonical_ids": "⿰米頁", + "expanded_ids": "⿰⿻木丷⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "丿", + "八", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頫", + "codepoint": "U+982B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-982B", + "status": "exact_ids", + "ids": "⿰兆頁", + "canonical_ids": "⿰兆頁", + "expanded_ids": "⿰兆⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "兆", + "八", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頬", + "codepoint": "U+982C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-982C", + "status": "exact_ids", + "ids": "⿰夹頁", + "canonical_ids": "⿰夹頁", + "expanded_ids": "⿰⿻⿻一大丷⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "丿", + "八", + "大", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頭", + "codepoint": "U+982D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-982D", + "status": "exact_ids", + "ids": "⿰豆頁", + "canonical_ids": "⿰豆頁", + "expanded_ids": "⿰豆⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頮", + "codepoint": "U+982E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-982E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頯", + "codepoint": "U+982F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-982F", + "status": "exact_ids", + "ids": "⿰𢌳頁", + "canonical_ids": "⿰𢌳頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目" + ], + "unresolved_leaves": [ + "𢌳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頰", + "codepoint": "U+9830", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9830", + "status": "exact_ids", + "ids": "⿰夾頁", + "canonical_ids": "⿰夾頁", + "expanded_ids": "⿰⿻大⿰人人⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "八", + "大", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頱", + "codepoint": "U+9831", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9831", + "status": "exact_ids", + "ids": "⿰寽頁", + "canonical_ids": "⿰寽頁", + "expanded_ids": "⿰⿱爫寸⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "寸", + "爫", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頲", + "codepoint": "U+9832", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9832", + "status": "exact_ids", + "ids": "⿰廷頁", + "canonical_ids": "⿰廷頁", + "expanded_ids": "⿰⿰廴⿱丿士⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "士", + "廴", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頳", + "codepoint": "U+9833", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9833", + "status": "exact_ids", + "ids": "⿰赤頁", + "canonical_ids": "⿰赤頁", + "expanded_ids": "⿰赤⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目", + "赤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頴", + "codepoint": "U+9834", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9834", + "status": "exact_ids", + "ids": "⿰𥘈頁", + "canonical_ids": "⿰𥘈頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目" + ], + "unresolved_leaves": [ + "𥘈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頵", + "codepoint": "U+9835", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9835", + "status": "exact_ids", + "ids": "⿰君頁", + "canonical_ids": "⿰君頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "口", + "目" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頶", + "codepoint": "U+9836", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9836", + "status": "exact_ids", + "ids": "⿰告頁", + "canonical_ids": "⿰告頁", + "expanded_ids": "⿰⿱牛口⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "口", + "牛", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頷", + "codepoint": "U+9837", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9837", + "status": "exact_ids", + "ids": "⿰含頁", + "canonical_ids": "⿰含頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "八", + "口", + "目" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頸", + "codepoint": "U+9838", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9838", + "status": "exact_ids", + "ids": "⿰巠頁", + "canonical_ids": "⿰巠頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頹", + "codepoint": "U+9839", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9839", + "status": "exact_ids", + "ids": "⿰禿頁", + "canonical_ids": "⿰禿頁", + "expanded_ids": "⿰⿱⿻丿木儿⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "儿", + "八", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頺", + "codepoint": "U+983A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-983A", + "status": "exact_ids", + "ids": "⿰秀頁", + "canonical_ids": "⿰秀頁", + "expanded_ids": "⿰⿱⿻丿木乃⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "乃", + "八", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頻", + "codepoint": "U+983B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-983B", + "status": "exact_ids", + "ids": "⿰步頁", + "canonical_ids": "⿰步頁", + "expanded_ids": "⿰⿱止𣥂⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "止", + "目", + "𣥂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 228, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頼", + "codepoint": "U+983C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-983C", + "status": "exact_ids", + "ids": "⿰束頁", + "canonical_ids": "⿰束頁", + "expanded_ids": "⿰⿻木口⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "口", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頽", + "codepoint": "U+983D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-983D", + "status": "exact_ids", + "ids": "⿰秃頁", + "canonical_ids": "⿰秃頁", + "expanded_ids": "⿰⿱⿻丿木几⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "几", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頾", + "codepoint": "U+983E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-983E", + "status": "exact_ids", + "ids": "⿱須此", + "canonical_ids": "⿱須此", + "expanded_ids": "⿱⿰彡⿱⿱一丿⿱目八⿰止匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "匕", + "彡", + "止", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "頿", + "codepoint": "U+983F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-983F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顀", + "codepoint": "U+9840", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9840", + "status": "exact_ids", + "ids": "⿰隹頁", + "canonical_ids": "⿰隹頁", + "expanded_ids": "⿰隹⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顁", + "codepoint": "U+9841", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9841", + "status": "exact_ids", + "ids": "⿰定頁", + "canonical_ids": "⿰定頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "宀", + "目" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顂", + "codepoint": "U+9842", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9842", + "status": "exact_ids", + "ids": "⿰來頁", + "canonical_ids": "⿰來頁", + "expanded_ids": "⿰⿻木⿰人人⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "八", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顃", + "codepoint": "U+9843", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9843", + "status": "exact_ids", + "ids": "⿰炎頁", + "canonical_ids": "⿰炎頁", + "expanded_ids": "⿰⿱火火⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "火", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顄", + "codepoint": "U+9844", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9844", + "status": "exact_ids", + "ids": "⿰函頁", + "canonical_ids": "⿰函頁", + "expanded_ids": "⿰函⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "函", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顅", + "codepoint": "U+9845", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9845", + "status": "exact_ids", + "ids": "⿰肩頁", + "canonical_ids": "⿰肩頁", + "expanded_ids": "⿰⿱⿻一尸月⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "尸", + "月", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顆", + "codepoint": "U+9846", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9846", + "status": "exact_ids", + "ids": "⿰果頁", + "canonical_ids": "⿰果頁", + "expanded_ids": "⿰⿻田木⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "木", + "田", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顇", + "codepoint": "U+9847", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9847", + "status": "exact_ids", + "ids": "⿰卒頁", + "canonical_ids": "⿰卒頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目" + ], + "unresolved_leaves": [ + "卒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顈", + "codepoint": "U+9848", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9848", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顉", + "codepoint": "U+9849", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9849", + "status": "exact_ids", + "ids": "⿰金頁", + "canonical_ids": "⿰金頁", + "expanded_ids": "⿰金⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目", + "金" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顊", + "codepoint": "U+984A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-984A", + "status": "exact_ids", + "ids": "⿰阜頁", + "canonical_ids": "⿰阜頁", + "expanded_ids": "⿰阜⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目", + "阜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顋", + "codepoint": "U+984B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-984B", + "status": "exact_ids", + "ids": "⿰思頁", + "canonical_ids": "⿰思頁", + "expanded_ids": "⿰⿱田心⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "心", + "田", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "題", + "codepoint": "U+984C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-984C", + "status": "exact_ids", + "ids": "⿰是頁", + "canonical_ids": "⿰是頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "日", + "目" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "額", + "codepoint": "U+984D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-984D", + "status": "exact_ids", + "ids": "⿰客頁", + "canonical_ids": "⿰客頁", + "expanded_ids": "⿰⿱宀⿱夂口⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "口", + "夂", + "宀", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顎", + "codepoint": "U+984E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-984E", + "status": "exact_ids", + "ids": "⿰咢頁", + "canonical_ids": "⿰咢頁", + "expanded_ids": "⿰⿱⿰口口⿱一丂⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "丿", + "八", + "口", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顏", + "codepoint": "U+984F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-984F", + "status": "exact_ids", + "ids": "⿰彥頁", + "canonical_ids": "⿰彥頁", + "expanded_ids": "⿰⿱⿱⿱亠八厂彡⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亠", + "八", + "厂", + "彡", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [ + "顔" + ] + }, + { + "character": "顐", + "codepoint": "U+9850", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9850", + "status": "exact_ids", + "ids": "⿰軍頁", + "canonical_ids": "⿰軍頁", + "expanded_ids": "⿰⿱冖車⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "冖", + "目", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顑", + "codepoint": "U+9851", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9851", + "status": "exact_ids", + "ids": "⿰咸頁", + "canonical_ids": "⿰咸頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顒", + "codepoint": "U+9852", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9852", + "status": "exact_ids", + "ids": "⿰禺頁", + "canonical_ids": "⿰禺頁", + "expanded_ids": "⿰⿻田禸⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "田", + "目", + "禸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顓", + "codepoint": "U+9853", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9853", + "status": "exact_ids", + "ids": "⿰耑頁", + "canonical_ids": "⿰耑頁", + "expanded_ids": "⿰⿱山而⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "山", + "目", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顔", + "codepoint": "U+9854", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9854", + "status": "exact_ids", + "ids": "⿰彦頁", + "canonical_ids": "⿰彦頁", + "expanded_ids": "⿰⿱⿱⿱亠八厂彡⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亠", + "八", + "厂", + "彡", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [ + "顏" + ] + }, + { + "character": "顕", + "codepoint": "U+9855", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9855", + "status": "exact_ids", + "ids": "⿰显頁", + "canonical_ids": "⿰显頁", + "expanded_ids": "⿰⿱日业⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "业", + "丿", + "八", + "日", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顖", + "codepoint": "U+9856", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9856", + "status": "exact_ids", + "ids": "⿰恖頁", + "canonical_ids": "⿰恖頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "心", + "目" + ], + "unresolved_leaves": [ + "囟" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顗", + "codepoint": "U+9857", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9857", + "status": "exact_ids", + "ids": "⿰豈頁", + "canonical_ids": "⿰豈頁", + "expanded_ids": "⿰⿱山豆⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "山", + "目", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "願", + "codepoint": "U+9858", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9858", + "status": "exact_ids", + "ids": "⿰原頁", + "canonical_ids": "⿰原頁", + "expanded_ids": "⿰⿱厂⿱⿻日丶小⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "丿", + "八", + "厂", + "小", + "日", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顙", + "codepoint": "U+9859", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9859", + "status": "exact_ids", + "ids": "⿰桑頁", + "canonical_ids": "⿰桑頁", + "expanded_ids": "⿰⿱⿱又⿰又又木⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "又", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顚", + "codepoint": "U+985A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-985A", + "status": "exact_ids", + "ids": "⿰眞頁", + "canonical_ids": "⿰眞頁", + "expanded_ids": "⿰⿻匕⿱⿱一儿目⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "儿", + "八", + "匕", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顛", + "codepoint": "U+985B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-985B", + "status": "exact_ids", + "ids": "⿰真頁", + "canonical_ids": "⿰真頁", + "expanded_ids": "⿰⿱十⿻⿱目八一⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "十", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顜", + "codepoint": "U+985C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-985C", + "status": "exact_ids", + "ids": "⿰冓頁", + "canonical_ids": "⿰冓頁", + "expanded_ids": "⿰⿱井⿱一⿻冂土⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "井", + "八", + "冂", + "土", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顝", + "codepoint": "U+985D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-985D", + "status": "exact_ids", + "ids": "⿰骨頁", + "canonical_ids": "⿰骨頁", + "expanded_ids": "⿰⿱冎月⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "冎", + "月", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "類", + "codepoint": "U+985E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-985E", + "status": "exact_ids", + "ids": "⿰类頁", + "canonical_ids": "⿰类頁", + "expanded_ids": "⿰⿱⿻木丷大⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "丿", + "八", + "大", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顟", + "codepoint": "U+985F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-985F", + "status": "exact_ids", + "ids": "⿰翏頁", + "canonical_ids": "⿰翏頁", + "expanded_ids": "⿰⿱⿰习习⿱人彡⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "习", + "人", + "八", + "彡", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顠", + "codepoint": "U+9860", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9860", + "status": "exact_ids", + "ids": "⿰票頁", + "canonical_ids": "⿰票頁", + "expanded_ids": "⿰⿱覀⿱二小⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "二", + "八", + "小", + "目", + "覀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顡", + "codepoint": "U+9861", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9861", + "status": "exact_ids", + "ids": "⿰豙頁", + "canonical_ids": "⿰豙頁", + "expanded_ids": "⿰⿱立𧰨⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目", + "立", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 228, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顢", + "codepoint": "U+9862", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9862", + "status": "exact_ids", + "ids": "⿰㒼頁", + "canonical_ids": "⿰㒼頁", + "expanded_ids": "⿰⿱艹⿻⿱一⿻冂丨⿰入入⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丿", + "入", + "八", + "冂", + "目", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 376, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顣", + "codepoint": "U+9863", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9863", + "status": "exact_ids", + "ids": "⿰戚頁", + "canonical_ids": "⿰戚頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目" + ], + "unresolved_leaves": [ + "戚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顤", + "codepoint": "U+9864", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9864", + "status": "exact_ids", + "ids": "⿰堯頁", + "canonical_ids": "⿰堯頁", + "expanded_ids": "⿰⿱⿱土⿰土土⿱一儿⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "儿", + "八", + "土", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 336, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顥", + "codepoint": "U+9865", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9865", + "status": "exact_ids", + "ids": "⿰景頁", + "canonical_ids": "⿰景頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "日", + "目" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顦", + "codepoint": "U+9866", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9866", + "status": "exact_ids", + "ids": "⿰焦頁", + "canonical_ids": "⿰焦頁", + "expanded_ids": "⿰⿱隹灬⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "灬", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顧", + "codepoint": "U+9867", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9867", + "status": "exact_ids", + "ids": "⿰雇頁", + "canonical_ids": "⿰雇頁", + "expanded_ids": "⿰⿱⿻一尸隹⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "尸", + "目", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顨", + "codepoint": "U+9868", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9868", + "status": "exact_ids", + "ids": "⿱⿰頁頁丌", + "canonical_ids": "⿱⿰頁頁丌", + "expanded_ids": "⿱⿰⿱⿱一丿⿱目八⿱⿱一丿⿱目八丌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丌", + "丿", + "八", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 336, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顩", + "codepoint": "U+9869", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9869", + "status": "exact_ids", + "ids": "⿰僉頁", + "canonical_ids": "⿰僉頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顪", + "codepoint": "U+986A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-986A", + "status": "exact_ids", + "ids": "⿰歲頁", + "canonical_ids": "⿰歲頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目" + ], + "unresolved_leaves": [ + "歲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顫", + "codepoint": "U+986B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-986B", + "status": "exact_ids", + "ids": "⿰亶頁", + "canonical_ids": "⿰亶頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亠", + "八", + "日", + "目" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顬", + "codepoint": "U+986C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-986C", + "status": "exact_ids", + "ids": "⿰需頁", + "canonical_ids": "⿰需頁", + "expanded_ids": "⿰⿱雨而⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顭", + "codepoint": "U+986D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-986D", + "status": "exact_ids", + "ids": "⿰夢頁", + "canonical_ids": "⿰夢頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目" + ], + "unresolved_leaves": [ + "夢" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顮", + "codepoint": "U+986E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-986E", + "status": "exact_ids", + "ids": "⿰賓頁", + "canonical_ids": "⿰賓頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顯", + "codepoint": "U+986F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-986F", + "status": "exact_ids", + "ids": "⿰㬎頁", + "canonical_ids": "⿰㬎頁", + "expanded_ids": "⿰⿱日⿱⿰幺幺灬⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "幺", + "日", + "灬", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顰", + "codepoint": "U+9870", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9870", + "status": "exact_ids", + "ids": "⿱頻卑", + "canonical_ids": "⿱頻卑", + "expanded_ids": "⿱⿰⿱止𣥂⿱⿱一丿⿱目八卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "卑", + "止", + "目", + "𣥂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 266, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顱", + "codepoint": "U+9871", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9871", + "status": "exact_ids", + "ids": "⿰盧頁", + "canonical_ids": "⿰盧頁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "皿", + "目" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顲", + "codepoint": "U+9872", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9872", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顳", + "codepoint": "U+9873", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9873", + "status": "exact_ids", + "ids": "⿰聶頁", + "canonical_ids": "⿰聶頁", + "expanded_ids": "⿰⿱耳⿰耳耳⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 266, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顴", + "codepoint": "U+9874", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9874", + "status": "exact_ids", + "ids": "⿰雚頁", + "canonical_ids": "⿰雚頁", + "expanded_ids": "⿰⿱艹⿱⿰口口隹⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "口", + "目", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 302, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "页", + "codepoint": "U+9875", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9875", + "status": "exact_ids", + "ids": "⿱丆贝", + "canonical_ids": "⿱丆贝", + "expanded_ids": "⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顶", + "codepoint": "U+9876", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9876", + "status": "exact_ids", + "ids": "⿰丁页", + "canonical_ids": "⿰丁页", + "expanded_ids": "⿰⿱一亅⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亅", + "人", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顷", + "codepoint": "U+9877", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9877", + "status": "exact_ids", + "ids": "⿰匕页", + "canonical_ids": "⿰匕页", + "expanded_ids": "⿰匕⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "匕" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顸", + "codepoint": "U+9878", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9878", + "status": "exact_ids", + "ids": "⿰干页", + "canonical_ids": "⿰干页", + "expanded_ids": "⿰⿱一十⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "十" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "项", + "codepoint": "U+9879", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9879", + "status": "exact_ids", + "ids": "⿰工页", + "canonical_ids": "⿰工页", + "expanded_ids": "⿰工⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "工" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顺", + "codepoint": "U+987A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-987A", + "status": "exact_ids", + "ids": "⿰川页", + "canonical_ids": "⿰川页", + "expanded_ids": "⿰川⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "川" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "须", + "codepoint": "U+987B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-987B", + "status": "exact_ids", + "ids": "⿰彡页", + "canonical_ids": "⿰彡页", + "expanded_ids": "⿰彡⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顼", + "codepoint": "U+987C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-987C", + "status": "exact_ids", + "ids": "⿰王页", + "canonical_ids": "⿰王页", + "expanded_ids": "⿰王⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "王" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顽", + "codepoint": "U+987D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-987D", + "status": "exact_ids", + "ids": "⿰元页", + "canonical_ids": "⿰元页", + "expanded_ids": "⿰⿱一⿱一儿⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "儿", + "冂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顾", + "codepoint": "U+987E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-987E", + "status": "exact_ids", + "ids": "⿰厄页", + "canonical_ids": "⿰厄页", + "expanded_ids": "⿰⿱厂㔾⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "一", + "丿", + "人", + "冂", + "厂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 220, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "顿", + "codepoint": "U+987F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-987F", + "status": "exact_ids", + "ids": "⿰屯页", + "canonical_ids": "⿰屯页", + "expanded_ids": "⿰屯⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "屯" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颀", + "codepoint": "U+9880", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9880", + "status": "exact_ids", + "ids": "⿰斤页", + "canonical_ids": "⿰斤页", + "expanded_ids": "⿰斤⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "斤" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颁", + "codepoint": "U+9881", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9881", + "status": "exact_ids", + "ids": "⿰分页", + "canonical_ids": "⿰分页", + "expanded_ids": "⿰⿱八刀⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "八", + "冂", + "刀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颂", + "codepoint": "U+9882", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9882", + "status": "exact_ids", + "ids": "⿰公页", + "canonical_ids": "⿰公页", + "expanded_ids": "⿰⿱八厶⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "八", + "冂", + "厶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颃", + "codepoint": "U+9883", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9883", + "status": "exact_ids", + "ids": "⿰亢页", + "canonical_ids": "⿰亢页", + "expanded_ids": "⿰⿱亠几⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亠", + "人", + "冂", + "几" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "预", + "codepoint": "U+9884", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9884", + "status": "exact_ids", + "ids": "⿰予页", + "canonical_ids": "⿰予页", + "expanded_ids": "⿰⿱龴⿱一亅⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亅", + "人", + "冂", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颅", + "codepoint": "U+9885", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9885", + "status": "exact_ids", + "ids": "⿰卢页", + "canonical_ids": "⿰卢页", + "expanded_ids": "⿰⿱卜尸⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "卜", + "尸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "领", + "codepoint": "U+9886", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9886", + "status": "exact_ids", + "ids": "⿰令页", + "canonical_ids": "⿰令页", + "expanded_ids": "⿰⿱⿱人一龴⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颇", + "codepoint": "U+9887", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9887", + "status": "exact_ids", + "ids": "⿰皮页", + "canonical_ids": "⿰皮页", + "expanded_ids": "⿰皮⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颈", + "codepoint": "U+9888", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9888", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颉", + "codepoint": "U+9889", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9889", + "status": "exact_ids", + "ids": "⿰吉页", + "canonical_ids": "⿰吉页", + "expanded_ids": "⿰⿱士口⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "口", + "士" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颊", + "codepoint": "U+988A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-988A", + "status": "exact_ids", + "ids": "⿰夹页", + "canonical_ids": "⿰夹页", + "expanded_ids": "⿰⿻⿻一大丷⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "丿", + "人", + "冂", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颋", + "codepoint": "U+988B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-988B", + "status": "exact_ids", + "ids": "⿰廷页", + "canonical_ids": "⿰廷页", + "expanded_ids": "⿰⿰廴⿱丿士⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "士", + "廴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颌", + "codepoint": "U+988C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-988C", + "status": "exact_ids", + "ids": "⿰合页", + "canonical_ids": "⿰合页", + "expanded_ids": "⿰⿱⿱人一口⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颍", + "codepoint": "U+988D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-988D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颎", + "codepoint": "U+988E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-988E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颏", + "codepoint": "U+988F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-988F", + "status": "exact_ids", + "ids": "⿰亥页", + "canonical_ids": "⿰亥页", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颐", + "codepoint": "U+9890", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9890", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "频", + "codepoint": "U+9891", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9891", + "status": "exact_ids", + "ids": "⿰步页", + "canonical_ids": "⿰步页", + "expanded_ids": "⿰⿱止𣥂⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "止", + "𣥂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 228, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颒", + "codepoint": "U+9892", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9892", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颓", + "codepoint": "U+9893", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9893", + "status": "exact_ids", + "ids": "⿰秃页", + "canonical_ids": "⿰秃页", + "expanded_ids": "⿰⿱⿻丿木几⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "几", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颔", + "codepoint": "U+9894", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9894", + "status": "exact_ids", + "ids": "⿰含页", + "canonical_ids": "⿰含页", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "口" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颕", + "codepoint": "U+9895", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9895", + "status": "exact_ids", + "ids": "⿰𥘈页", + "canonical_ids": "⿰𥘈页", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂" + ], + "unresolved_leaves": [ + "𥘈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颖", + "codepoint": "U+9896", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9896", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颗", + "codepoint": "U+9897", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9897", + "status": "exact_ids", + "ids": "⿰果页", + "canonical_ids": "⿰果页", + "expanded_ids": "⿰⿻田木⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "题", + "codepoint": "U+9898", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9898", + "status": "exact_ids", + "ids": "⿰是页", + "canonical_ids": "⿰是页", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "日" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颙", + "codepoint": "U+9899", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9899", + "status": "exact_ids", + "ids": "⿰禺页", + "canonical_ids": "⿰禺页", + "expanded_ids": "⿰⿻田禸⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "田", + "禸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颚", + "codepoint": "U+989A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-989A", + "status": "exact_ids", + "ids": "⿰咢页", + "canonical_ids": "⿰咢页", + "expanded_ids": "⿰⿱⿰口口⿱一丂⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "丿", + "人", + "冂", + "口" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颛", + "codepoint": "U+989B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-989B", + "status": "exact_ids", + "ids": "⿰耑页", + "canonical_ids": "⿰耑页", + "expanded_ids": "⿰⿱山而⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "山", + "而" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颜", + "codepoint": "U+989C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-989C", + "status": "exact_ids", + "ids": "⿰彦页", + "canonical_ids": "⿰彦页", + "expanded_ids": "⿰⿱⿱⿱亠八厂彡⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亠", + "人", + "八", + "冂", + "厂", + "彡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "额", + "codepoint": "U+989D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-989D", + "status": "exact_ids", + "ids": "⿰客页", + "canonical_ids": "⿰客页", + "expanded_ids": "⿰⿱宀⿱夂口⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "口", + "夂", + "宀" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颞", + "codepoint": "U+989E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-989E", + "status": "exact_ids", + "ids": "⿰聂页", + "canonical_ids": "⿰聂页", + "expanded_ids": "⿰⿱耳⿰又又⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "又", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颟", + "codepoint": "U+989F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-989F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颠", + "codepoint": "U+98A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98A0", + "status": "exact_ids", + "ids": "⿰真页", + "canonical_ids": "⿰真页", + "expanded_ids": "⿰⿱十⿻⿱目八一⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "八", + "冂", + "十", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颡", + "codepoint": "U+98A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98A1", + "status": "exact_ids", + "ids": "⿰桑页", + "canonical_ids": "⿰桑页", + "expanded_ids": "⿰⿱⿱又⿰又又木⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "又", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颢", + "codepoint": "U+98A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98A2", + "status": "exact_ids", + "ids": "⿰景页", + "canonical_ids": "⿰景页", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "日" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颣", + "codepoint": "U+98A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98A3", + "status": "exact_ids", + "ids": "⿰絭页", + "canonical_ids": "⿰絭页", + "expanded_ids": "⿰⿱龹⿱幺小⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "小", + "幺", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颤", + "codepoint": "U+98A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98A4", + "status": "exact_ids", + "ids": "⿰亶页", + "canonical_ids": "⿰亶页", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "亠", + "人", + "冂", + "日" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颥", + "codepoint": "U+98A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98A5", + "status": "exact_ids", + "ids": "⿰需页", + "canonical_ids": "⿰需页", + "expanded_ids": "⿰⿱雨而⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "而", + "雨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颦", + "codepoint": "U+98A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98A6", + "status": "exact_ids", + "ids": "⿱频卑", + "canonical_ids": "⿱频卑", + "expanded_ids": "⿱⿰⿱止𣥂⿱⿱一丿⿻冂人卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "卑", + "止", + "𣥂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 266, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颧", + "codepoint": "U+98A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98A7", + "status": "exact_ids", + "ids": "⿰雚页", + "canonical_ids": "⿰雚页", + "expanded_ids": "⿰⿱艹⿱⿰口口隹⿱⿱一丿⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "冂", + "口", + "艹", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 302, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "風", + "codepoint": "U+98A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98A8", + "status": "leaf_self_fallback", + "ids": "風", + "canonical_ids": "風", + "expanded_ids": "風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颩", + "codepoint": "U+98A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98A9", + "status": "exact_ids", + "ids": "⿰風彡", + "canonical_ids": "⿰風彡", + "expanded_ids": "⿰風彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颪", + "codepoint": "U+98AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98AA", + "status": "exact_ids", + "ids": "⿱下風", + "canonical_ids": "⿱下風", + "expanded_ids": "⿱⿱一卜風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "卜", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颫", + "codepoint": "U+98AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98AB", + "status": "exact_ids", + "ids": "⿰風夫", + "canonical_ids": "⿰風夫", + "expanded_ids": "⿰風⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颬", + "codepoint": "U+98AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98AC", + "status": "exact_ids", + "ids": "⿰風牙", + "canonical_ids": "⿰風牙", + "expanded_ids": "⿰風牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颭", + "codepoint": "U+98AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98AD", + "status": "exact_ids", + "ids": "⿰風占", + "canonical_ids": "⿰風占", + "expanded_ids": "⿰風⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颮", + "codepoint": "U+98AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98AE", + "status": "exact_ids", + "ids": "⿰風包", + "canonical_ids": "⿰風包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "風" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颯", + "codepoint": "U+98AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98AF", + "status": "exact_ids", + "ids": "⿰立風", + "canonical_ids": "⿰立風", + "expanded_ids": "⿰立風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颰", + "codepoint": "U+98B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98B0", + "status": "exact_ids", + "ids": "⿰風犮", + "canonical_ids": "⿰風犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "風" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颱", + "codepoint": "U+98B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98B1", + "status": "exact_ids", + "ids": "⿰風台", + "canonical_ids": "⿰風台", + "expanded_ids": "⿰風⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颲", + "codepoint": "U+98B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98B2", + "status": "exact_ids", + "ids": "⿰風列", + "canonical_ids": "⿰風列", + "expanded_ids": "⿰風⿰⿻夕一刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "夕", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颳", + "codepoint": "U+98B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98B3", + "status": "exact_ids", + "ids": "⿰風舌", + "canonical_ids": "⿰風舌", + "expanded_ids": "⿰風⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颴", + "codepoint": "U+98B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98B4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颵", + "codepoint": "U+98B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98B5", + "status": "exact_ids", + "ids": "⿰風肖", + "canonical_ids": "⿰風肖", + "expanded_ids": "⿰風⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颶", + "codepoint": "U+98B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98B6", + "status": "exact_ids", + "ids": "⿰風具", + "canonical_ids": "⿰風具", + "expanded_ids": "⿰風⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "目", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颷", + "codepoint": "U+98B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98B7", + "status": "exact_ids", + "ids": "⿰風炎", + "canonical_ids": "⿰風炎", + "expanded_ids": "⿰風⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颸", + "codepoint": "U+98B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98B8", + "status": "exact_ids", + "ids": "⿰風思", + "canonical_ids": "⿰風思", + "expanded_ids": "⿰風⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "田", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颹", + "codepoint": "U+98B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98B9", + "status": "exact_ids", + "ids": "⿰風韋", + "canonical_ids": "⿰風韋", + "expanded_ids": "⿰風韋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "韋", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颺", + "codepoint": "U+98BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98BA", + "status": "exact_ids", + "ids": "⿰風昜", + "canonical_ids": "⿰風昜", + "expanded_ids": "⿰風⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颻", + "codepoint": "U+98BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98BB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颼", + "codepoint": "U+98BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98BC", + "status": "exact_ids", + "ids": "⿰風叟", + "canonical_ids": "⿰風叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "風" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颽", + "codepoint": "U+98BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98BD", + "status": "exact_ids", + "ids": "⿰豈風", + "canonical_ids": "⿰豈風", + "expanded_ids": "⿰⿱山豆風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "山", + "豆", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颾", + "codepoint": "U+98BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98BE", + "status": "exact_ids", + "ids": "⿰風蚤", + "canonical_ids": "⿰風蚤", + "expanded_ids": "⿰風⿱⿻又丶虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "又", + "虫", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "颿", + "codepoint": "U+98BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98BF", + "status": "exact_ids", + "ids": "⿰馬風", + "canonical_ids": "⿰馬風", + "expanded_ids": "⿰馬風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "風", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飀", + "codepoint": "U+98C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98C0", + "status": "exact_ids", + "ids": "⿰風留", + "canonical_ids": "⿰風留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "風" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飁", + "codepoint": "U+98C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98C1", + "status": "exact_ids", + "ids": "⿰習風", + "canonical_ids": "⿰習風", + "expanded_ids": "⿰⿱⿰习习⿻日丶風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "习", + "日", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飂", + "codepoint": "U+98C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98C2", + "status": "exact_ids", + "ids": "⿰風翏", + "canonical_ids": "⿰風翏", + "expanded_ids": "⿰風⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飃", + "codepoint": "U+98C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98C3", + "status": "exact_ids", + "ids": "⿰風票", + "canonical_ids": "⿰風票", + "expanded_ids": "⿰風⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "覀", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飄", + "codepoint": "U+98C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98C4", + "status": "exact_ids", + "ids": "⿰票風", + "canonical_ids": "⿰票風", + "expanded_ids": "⿰⿱覀⿱二小風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "覀", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飅", + "codepoint": "U+98C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98C5", + "status": "exact_ids", + "ids": "⿰風畱", + "canonical_ids": "⿰風畱", + "expanded_ids": "⿰風⿱丣田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丣", + "田", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飆", + "codepoint": "U+98C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98C6", + "status": "exact_ids", + "ids": "⿰猋風", + "canonical_ids": "⿰猋風", + "expanded_ids": "⿰⿱⿻大丶⿰⿻大丶⿻大丶風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飇", + "codepoint": "U+98C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98C7", + "status": "exact_ids", + "ids": "⿰風猋", + "canonical_ids": "⿰風猋", + "expanded_ids": "⿰風⿱⿻大丶⿰⿻大丶⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飈", + "codepoint": "U+98C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98C8", + "status": "exact_ids", + "ids": "⿰風焱", + "canonical_ids": "⿰風焱", + "expanded_ids": "⿰風⿱火⿰火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飉", + "codepoint": "U+98C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98C9", + "status": "exact_ids", + "ids": "⿰風尞", + "canonical_ids": "⿰風尞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "風" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飊", + "codepoint": "U+98CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98CA", + "status": "exact_ids", + "ids": "⿰焱風", + "canonical_ids": "⿰焱風", + "expanded_ids": "⿰⿱火⿰火火風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飋", + "codepoint": "U+98CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98CB", + "status": "exact_ids", + "ids": "⿰風瑟", + "canonical_ids": "⿰風瑟", + "expanded_ids": "⿰風⿱⿰王王⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "王", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飌", + "codepoint": "U+98CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98CC", + "status": "exact_ids", + "ids": "⿰雚風", + "canonical_ids": "⿰雚風", + "expanded_ids": "⿰⿱艹⿱⿰口口隹風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艹", + "隹", + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飍", + "codepoint": "U+98CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98CD", + "status": "exact_ids", + "ids": "⿱風⿰風風", + "canonical_ids": "⿱風⿰風風", + "expanded_ids": "⿱風⿰風風", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "風" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "风", + "codepoint": "U+98CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98CE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飏", + "codepoint": "U+98CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98CF", + "status": "exact_ids", + "ids": "⿰风𠃓", + "canonical_ids": "⿰风𠃓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "风", + "𠃓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飐", + "codepoint": "U+98D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98D0", + "status": "exact_ids", + "ids": "⿰风占", + "canonical_ids": "⿰风占", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口" + ], + "unresolved_leaves": [ + "风" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飑", + "codepoint": "U+98D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98D1", + "status": "exact_ids", + "ids": "⿰风包", + "canonical_ids": "⿰风包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "包", + "风" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飒", + "codepoint": "U+98D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98D2", + "status": "exact_ids", + "ids": "⿰立风", + "canonical_ids": "⿰立风", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立" + ], + "unresolved_leaves": [ + "风" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飓", + "codepoint": "U+98D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98D3", + "status": "exact_ids", + "ids": "⿰风具", + "canonical_ids": "⿰风具", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "目" + ], + "unresolved_leaves": [ + "风" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飔", + "codepoint": "U+98D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98D4", + "status": "exact_ids", + "ids": "⿰风思", + "canonical_ids": "⿰风思", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "田" + ], + "unresolved_leaves": [ + "风" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飕", + "codepoint": "U+98D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98D5", + "status": "exact_ids", + "ids": "⿰风叟", + "canonical_ids": "⿰风叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又" + ], + "unresolved_leaves": [ + "风", + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飖", + "codepoint": "U+98D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98D6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飗", + "codepoint": "U+98D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98D7", + "status": "exact_ids", + "ids": "⿰风留", + "canonical_ids": "⿰风留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [ + "留", + "风" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飘", + "codepoint": "U+98D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98D8", + "status": "exact_ids", + "ids": "⿰票风", + "canonical_ids": "⿰票风", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "覀" + ], + "unresolved_leaves": [ + "风" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飙", + "codepoint": "U+98D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98D9", + "status": "exact_ids", + "ids": "⿰猋风", + "canonical_ids": "⿰猋风", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大" + ], + "unresolved_leaves": [ + "风" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飚", + "codepoint": "U+98DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98DA", + "status": "exact_ids", + "ids": "⿰风焱", + "canonical_ids": "⿰风焱", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火" + ], + "unresolved_leaves": [ + "风" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飛", + "codepoint": "U+98DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98DB", + "status": "leaf_self_fallback", + "ids": "飛", + "canonical_ids": "飛", + "expanded_ids": "飛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "飛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飜", + "codepoint": "U+98DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98DC", + "status": "exact_ids", + "ids": "⿰番飛", + "canonical_ids": "⿰番飛", + "expanded_ids": "⿰⿱⿱丿⿻木丷田飛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "木", + "田", + "飛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飝", + "codepoint": "U+98DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98DD", + "status": "exact_ids", + "ids": "⿱飛⿰飛飛", + "canonical_ids": "⿱飛⿰飛飛", + "expanded_ids": "⿱飛⿰飛飛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "飛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飞", + "codepoint": "U+98DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98DE", + "status": "leaf_self_fallback", + "ids": "飞", + "canonical_ids": "飞", + "expanded_ids": "飞", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "飞" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "食", + "codepoint": "U+98DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98DF", + "status": "exact_ids", + "ids": "⿱人良", + "canonical_ids": "⿱人良", + "expanded_ids": "⿱人⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "飠" + ] + }, + { + "character": "飠", + "codepoint": "U+98E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98E0", + "status": "exact_ids", + "ids": "⿱人良", + "canonical_ids": "⿱人良", + "expanded_ids": "⿱人⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "食" + ] + }, + { + "character": "飡", + "codepoint": "U+98E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98E1", + "status": "exact_ids", + "ids": "⿰冫食", + "canonical_ids": "⿰冫食", + "expanded_ids": "⿰冫⿱人⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "冫", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飢", + "codepoint": "U+98E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98E2", + "status": "exact_ids", + "ids": "⿰食几", + "canonical_ids": "⿰食几", + "expanded_ids": "⿰⿱人⿻丶艮几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "几", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飣", + "codepoint": "U+98E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98E3", + "status": "exact_ids", + "ids": "⿰食丁", + "canonical_ids": "⿰食丁", + "expanded_ids": "⿰⿱人⿻丶艮⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "亅", + "人", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飤", + "codepoint": "U+98E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98E4", + "status": "exact_ids", + "ids": "⿰食人", + "canonical_ids": "⿰食人", + "expanded_ids": "⿰⿱人⿻丶艮人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飥", + "codepoint": "U+98E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98E5", + "status": "exact_ids", + "ids": "⿰食乇", + "canonical_ids": "⿰食乇", + "expanded_ids": "⿰⿱人⿻丶艮⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丶", + "丿", + "人", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飦", + "codepoint": "U+98E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98E6", + "status": "exact_ids", + "ids": "⿰食干", + "canonical_ids": "⿰食干", + "expanded_ids": "⿰⿱人⿻丶艮⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "人", + "十", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飧", + "codepoint": "U+98E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98E7", + "status": "exact_ids", + "ids": "⿰夕食", + "canonical_ids": "⿰夕食", + "expanded_ids": "⿰夕⿱人⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "夕", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飨", + "codepoint": "U+98E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98E8", + "status": "exact_ids", + "ids": "⿰乡食", + "canonical_ids": "⿰乡食", + "expanded_ids": "⿰乡⿱人⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乡", + "人", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飩", + "codepoint": "U+98E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98E9", + "status": "exact_ids", + "ids": "⿰食屯", + "canonical_ids": "⿰食屯", + "expanded_ids": "⿰⿱人⿻丶艮屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "屯", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飪", + "codepoint": "U+98EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98EA", + "status": "exact_ids", + "ids": "⿰食王", + "canonical_ids": "⿰食王", + "expanded_ids": "⿰⿱人⿻丶艮王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "王", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飫", + "codepoint": "U+98EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98EB", + "status": "exact_ids", + "ids": "⿰食夭", + "canonical_ids": "⿰食夭", + "expanded_ids": "⿰⿱人⿻丶艮⿱丿大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "人", + "大", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飬", + "codepoint": "U+98EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98EC", + "status": "exact_ids", + "ids": "⿱关良", + "canonical_ids": "⿱关良", + "expanded_ids": "⿱⿱丷⿻一大⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "丷", + "大", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飭", + "codepoint": "U+98ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98ED", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飮", + "codepoint": "U+98EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98EE", + "status": "exact_ids", + "ids": "⿰食欠", + "canonical_ids": "⿰食欠", + "expanded_ids": "⿰⿱人⿻丶艮欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "欠", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [ + "飲" + ] + }, + { + "character": "飯", + "codepoint": "U+98EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98EF", + "status": "exact_ids", + "ids": "⿰食反", + "canonical_ids": "⿰食反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飰", + "codepoint": "U+98F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98F0", + "status": "exact_ids", + "ids": "⿰食卞", + "canonical_ids": "⿰食卞", + "expanded_ids": "⿰⿱人⿻丶艮⿱亠卜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亠", + "人", + "卜", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飱", + "codepoint": "U+98F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98F1", + "status": "exact_ids", + "ids": "⿰歹食", + "canonical_ids": "⿰歹食", + "expanded_ids": "⿰⿻夕一⿱人⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "人", + "夕", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飲", + "codepoint": "U+98F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98F2", + "status": "exact_ids", + "ids": "⿰食欠", + "canonical_ids": "⿰食欠", + "expanded_ids": "⿰⿱人⿻丶艮欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "欠", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [ + "飮" + ] + }, + { + "character": "飳", + "codepoint": "U+98F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98F3", + "status": "exact_ids", + "ids": "⿰食主", + "canonical_ids": "⿰食主", + "expanded_ids": "⿰⿱人⿻丶艮⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "王", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飴", + "codepoint": "U+98F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98F4", + "status": "exact_ids", + "ids": "⿰食台", + "canonical_ids": "⿰食台", + "expanded_ids": "⿰⿱人⿻丶艮⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "厶", + "口", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飵", + "codepoint": "U+98F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98F5", + "status": "exact_ids", + "ids": "⿰食乍", + "canonical_ids": "⿰食乍", + "expanded_ids": "⿰⿱人⿻丶艮乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乍", + "人", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飶", + "codepoint": "U+98F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98F6", + "status": "exact_ids", + "ids": "⿰食必", + "canonical_ids": "⿰食必", + "expanded_ids": "⿰⿱人⿻丶艮⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "人", + "心", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飷", + "codepoint": "U+98F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98F7", + "status": "exact_ids", + "ids": "⿰食且", + "canonical_ids": "⿰食且", + "expanded_ids": "⿰⿱人⿻丶艮且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "丶", + "人", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飸", + "codepoint": "U+98F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98F8", + "status": "exact_ids", + "ids": "⿰号食", + "canonical_ids": "⿰号食", + "expanded_ids": "⿰⿱口丂⿱人⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "丶", + "人", + "口", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飹", + "codepoint": "U+98F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98F9", + "status": "exact_ids", + "ids": "⿰食卯", + "canonical_ids": "⿰食卯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "卯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飺", + "codepoint": "U+98FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98FA", + "status": "exact_ids", + "ids": "⿱此食", + "canonical_ids": "⿱此食", + "expanded_ids": "⿱⿰止匕⿱人⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "匕", + "止", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飻", + "codepoint": "U+98FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98FB", + "status": "exact_ids", + "ids": "⿰食㐱", + "canonical_ids": "⿰食㐱", + "expanded_ids": "⿰⿱人⿻丶艮⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "彡", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飼", + "codepoint": "U+98FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98FC", + "status": "exact_ids", + "ids": "⿰食司", + "canonical_ids": "⿰食司", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "司" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飽", + "codepoint": "U+98FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98FD", + "status": "exact_ids", + "ids": "⿰食包", + "canonical_ids": "⿰食包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飾", + "codepoint": "U+98FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98FE", + "status": "exact_ids", + "ids": "⿰食布", + "canonical_ids": "⿰食布", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "飿", + "codepoint": "U+98FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-98FF", + "status": "exact_ids", + "ids": "⿰食出", + "canonical_ids": "⿰食出", + "expanded_ids": "⿰⿱人⿻丶艮⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "凵", + "屮", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餀", + "codepoint": "U+9900", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9900", + "status": "exact_ids", + "ids": "⿰食艾", + "canonical_ids": "⿰食艾", + "expanded_ids": "⿰⿱人⿻丶艮⿱艹乂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乂", + "人", + "艮", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餁", + "codepoint": "U+9901", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9901", + "status": "exact_ids", + "ids": "⿰食任", + "canonical_ids": "⿰食任", + "expanded_ids": "⿰⿱人⿻丶艮⿰亻⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "人", + "亻", + "士", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餂", + "codepoint": "U+9902", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9902", + "status": "exact_ids", + "ids": "⿰食舌", + "canonical_ids": "⿰食舌", + "expanded_ids": "⿰⿱人⿻丶艮⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "人", + "十", + "口", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餃", + "codepoint": "U+9903", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9903", + "status": "exact_ids", + "ids": "⿰食交", + "canonical_ids": "⿰食交", + "expanded_ids": "⿰⿱人⿻丶艮⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亠", + "人", + "父", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餄", + "codepoint": "U+9904", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9904", + "status": "exact_ids", + "ids": "⿰食合", + "canonical_ids": "⿰食合", + "expanded_ids": "⿰⿱人⿻丶艮⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "人", + "口", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餅", + "codepoint": "U+9905", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9905", + "status": "exact_ids", + "ids": "⿰食并", + "canonical_ids": "⿰食并", + "expanded_ids": "⿰⿱人⿻丶艮⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "丷", + "人", + "廾", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餆", + "codepoint": "U+9906", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9906", + "status": "exact_ids", + "ids": "⿰食兆", + "canonical_ids": "⿰食兆", + "expanded_ids": "⿰⿱人⿻丶艮兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "兆", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餇", + "codepoint": "U+9907", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9907", + "status": "exact_ids", + "ids": "⿰食同", + "canonical_ids": "⿰食同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餈", + "codepoint": "U+9908", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9908", + "status": "exact_ids", + "ids": "⿱次食", + "canonical_ids": "⿱次食", + "expanded_ids": "⿱⿰冫欠⿱人⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "冫", + "欠", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餉", + "codepoint": "U+9909", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9909", + "status": "exact_ids", + "ids": "⿰食向", + "canonical_ids": "⿰食向", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "養", + "codepoint": "U+990A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-990A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餋", + "codepoint": "U+990B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-990B", + "status": "exact_ids", + "ids": "⿱关食", + "canonical_ids": "⿱关食", + "expanded_ids": "⿱⿱丷⿻一大⿱人⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "丷", + "人", + "大", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餌", + "codepoint": "U+990C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-990C", + "status": "exact_ids", + "ids": "⿰食耳", + "canonical_ids": "⿰食耳", + "expanded_ids": "⿰⿱人⿻丶艮耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "耳", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餍", + "codepoint": "U+990D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-990D", + "status": "exact_ids", + "ids": "⿱厌食", + "canonical_ids": "⿱厌食", + "expanded_ids": "⿱⿱厂⿻大丶⿱人⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "厂", + "大", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餎", + "codepoint": "U+990E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-990E", + "status": "exact_ids", + "ids": "⿰食各", + "canonical_ids": "⿰食各", + "expanded_ids": "⿰⿱人⿻丶艮⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "口", + "夂", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餏", + "codepoint": "U+990F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-990F", + "status": "exact_ids", + "ids": "⿰食衣", + "canonical_ids": "⿰食衣", + "expanded_ids": "⿰⿱人⿻丶艮衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮", + "衣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餐", + "codepoint": "U+9910", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9910", + "status": "exact_ids", + "ids": "⿱𣦼食", + "canonical_ids": "⿱𣦼食", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "𣦼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餑", + "codepoint": "U+9911", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9911", + "status": "exact_ids", + "ids": "⿰食孛", + "canonical_ids": "⿰食孛", + "expanded_ids": "⿰⿱人⿻丶艮⿳十冖子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "冖", + "十", + "子", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餒", + "codepoint": "U+9912", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9912", + "status": "exact_ids", + "ids": "⿰食妥", + "canonical_ids": "⿰食妥", + "expanded_ids": "⿰⿱人⿻丶艮⿱爫女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "女", + "爫", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餓", + "codepoint": "U+9913", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9913", + "status": "exact_ids", + "ids": "⿰食我", + "canonical_ids": "⿰食我", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "人", + "十", + "艮" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餔", + "codepoint": "U+9914", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9914", + "status": "exact_ids", + "ids": "⿰食甫", + "canonical_ids": "⿰食甫", + "expanded_ids": "⿰⿱人⿻丶艮甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "甫", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餕", + "codepoint": "U+9915", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9915", + "status": "exact_ids", + "ids": "⿰食夋", + "canonical_ids": "⿰食夋", + "expanded_ids": "⿰⿱人⿻丶艮⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "儿", + "厶", + "夂", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餖", + "codepoint": "U+9916", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9916", + "status": "exact_ids", + "ids": "⿰食豆", + "canonical_ids": "⿰食豆", + "expanded_ids": "⿰⿱人⿻丶艮豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餗", + "codepoint": "U+9917", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9917", + "status": "exact_ids", + "ids": "⿰食束", + "canonical_ids": "⿰食束", + "expanded_ids": "⿰⿱人⿻丶艮⿻木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "口", + "木", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餘", + "codepoint": "U+9918", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9918", + "status": "exact_ids", + "ids": "⿰食余", + "canonical_ids": "⿰食余", + "expanded_ids": "⿰⿱人⿻丶艮⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "人", + "朩", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餙", + "codepoint": "U+9919", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9919", + "status": "exact_ids", + "ids": "⿰食希", + "canonical_ids": "⿰食希", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乂", + "人", + "艮" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餚", + "codepoint": "U+991A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-991A", + "status": "exact_ids", + "ids": "⿰食肴", + "canonical_ids": "⿰食肴", + "expanded_ids": "⿰⿱人⿻丶艮⿱乂⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "丿", + "乂", + "人", + "月", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餛", + "codepoint": "U+991B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-991B", + "status": "exact_ids", + "ids": "⿰食昆", + "canonical_ids": "⿰食昆", + "expanded_ids": "⿰⿱人⿻丶艮⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "匕", + "日", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餜", + "codepoint": "U+991C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-991C", + "status": "exact_ids", + "ids": "⿰食果", + "canonical_ids": "⿰食果", + "expanded_ids": "⿰⿱人⿻丶艮⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "木", + "田", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餝", + "codepoint": "U+991D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-991D", + "status": "exact_ids", + "ids": "⿰食芳", + "canonical_ids": "⿰食芳", + "expanded_ids": "⿰⿱人⿻丶艮⿱艹方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "方", + "艮", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餞", + "codepoint": "U+991E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-991E", + "status": "exact_ids", + "ids": "⿰食戔", + "canonical_ids": "⿰食戔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餟", + "codepoint": "U+991F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-991F", + "status": "exact_ids", + "ids": "⿰食叕", + "canonical_ids": "⿰食叕", + "expanded_ids": "⿰⿱人⿻丶艮⿱⿰又又⿰又又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "又", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餠", + "codepoint": "U+9920", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9920", + "status": "exact_ids", + "ids": "⿰食幷", + "canonical_ids": "⿰食幷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "幷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餡", + "codepoint": "U+9921", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9921", + "status": "exact_ids", + "ids": "⿰食臽", + "canonical_ids": "⿰食臽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "臼", + "艮" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餢", + "codepoint": "U+9922", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9922", + "status": "exact_ids", + "ids": "⿰食咅", + "canonical_ids": "⿰食咅", + "expanded_ids": "⿰⿱人⿻丶艮⿱立口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "口", + "立", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餣", + "codepoint": "U+9923", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9923", + "status": "exact_ids", + "ids": "⿰食奄", + "canonical_ids": "⿰食奄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "大", + "艮" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餤", + "codepoint": "U+9924", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9924", + "status": "exact_ids", + "ids": "⿰食炎", + "canonical_ids": "⿰食炎", + "expanded_ids": "⿰⿱人⿻丶艮⿱火火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "火", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餥", + "codepoint": "U+9925", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9925", + "status": "exact_ids", + "ids": "⿱非食", + "canonical_ids": "⿱非食", + "expanded_ids": "⿱非⿱人⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餦", + "codepoint": "U+9926", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9926", + "status": "exact_ids", + "ids": "⿰食長", + "canonical_ids": "⿰食長", + "expanded_ids": "⿰⿱人⿻丶艮長", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮", + "長" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餧", + "codepoint": "U+9927", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9927", + "status": "exact_ids", + "ids": "⿰食委", + "canonical_ids": "⿰食委", + "expanded_ids": "⿰⿱人⿻丶艮⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丿", + "人", + "女", + "木", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "館", + "codepoint": "U+9928", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9928", + "status": "exact_ids", + "ids": "⿰食官", + "canonical_ids": "⿰食官", + "expanded_ids": "⿰⿱人⿻丶艮⿱宀㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "丶", + "人", + "宀", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餩", + "codepoint": "U+9929", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9929", + "status": "exact_ids", + "ids": "⿰食侅", + "canonical_ids": "⿰食侅", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "亻", + "艮" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餪", + "codepoint": "U+992A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-992A", + "status": "exact_ids", + "ids": "⿰食耎", + "canonical_ids": "⿰食耎", + "expanded_ids": "⿰⿱人⿻丶艮⿱而大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "大", + "而", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餫", + "codepoint": "U+992B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-992B", + "status": "exact_ids", + "ids": "⿰食軍", + "canonical_ids": "⿰食軍", + "expanded_ids": "⿰⿱人⿻丶艮⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "冖", + "艮", + "車" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餬", + "codepoint": "U+992C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-992C", + "status": "exact_ids", + "ids": "⿰食胡", + "canonical_ids": "⿰食胡", + "expanded_ids": "⿰⿱人⿻丶艮⿰⿻十口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "十", + "口", + "月", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餭", + "codepoint": "U+992D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-992D", + "status": "exact_ids", + "ids": "⿰食皇", + "canonical_ids": "⿰食皇", + "expanded_ids": "⿰⿱人⿻丶艮⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "日", + "王", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餮", + "codepoint": "U+992E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-992E", + "status": "exact_ids", + "ids": "⿱殄食", + "canonical_ids": "⿱殄食", + "expanded_ids": "⿱⿰⿻夕一⿱人彡⿱人⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "人", + "夕", + "彡", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餯", + "codepoint": "U+992F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-992F", + "status": "exact_ids", + "ids": "⿰食彖", + "canonical_ids": "⿰食彖", + "expanded_ids": "⿰⿱人⿻丶艮⿱彑𧰨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "彑", + "艮", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 192, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餰", + "codepoint": "U+9930", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9930", + "status": "exact_ids", + "ids": "⿰食衍", + "canonical_ids": "⿰食衍", + "expanded_ids": "⿰⿱人⿻丶艮⿲彳氵彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "彳", + "氵", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餱", + "codepoint": "U+9931", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9931", + "status": "exact_ids", + "ids": "⿰食侯", + "canonical_ids": "⿰食侯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "侯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餲", + "codepoint": "U+9932", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9932", + "status": "exact_ids", + "ids": "⿰食曷", + "canonical_ids": "⿰食曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "曰", + "艮" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餳", + "codepoint": "U+9933", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9933", + "status": "exact_ids", + "ids": "⿰食昜", + "canonical_ids": "⿰食昜", + "expanded_ids": "⿰⿱人⿻丶艮⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "人", + "勿", + "日", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餴", + "codepoint": "U+9934", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9934", + "status": "exact_ids", + "ids": "⿰食奔", + "canonical_ids": "⿰食奔", + "expanded_ids": "⿰⿱人⿻丶艮⿱大⿱十廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "十", + "大", + "廾", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餵", + "codepoint": "U+9935", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9935", + "status": "exact_ids", + "ids": "⿰食畏", + "canonical_ids": "⿰食畏", + "expanded_ids": "⿰⿱人⿻丶艮⿱田氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "氏", + "田", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餶", + "codepoint": "U+9936", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9936", + "status": "exact_ids", + "ids": "⿰食骨", + "canonical_ids": "⿰食骨", + "expanded_ids": "⿰⿱人⿻丶艮⿱冎月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "冎", + "月", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餷", + "codepoint": "U+9937", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9937", + "status": "exact_ids", + "ids": "⿰食查", + "canonical_ids": "⿰食查", + "expanded_ids": "⿰⿱人⿻丶艮⿱木⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "人", + "日", + "木", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餸", + "codepoint": "U+9938", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9938", + "status": "exact_ids", + "ids": "⿰食送", + "canonical_ids": "⿰食送", + "expanded_ids": "⿰⿱人⿻丶艮⿰辶⿱丷⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "丷", + "人", + "大", + "艮", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 264, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餹", + "codepoint": "U+9939", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9939", + "status": "exact_ids", + "ids": "⿰食唐", + "canonical_ids": "⿰食唐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餺", + "codepoint": "U+993A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-993A", + "status": "exact_ids", + "ids": "⿰食尃", + "canonical_ids": "⿰食尃", + "expanded_ids": "⿰⿱人⿻丶艮⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "寸", + "甫", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餻", + "codepoint": "U+993B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-993B", + "status": "exact_ids", + "ids": "⿰食羔", + "canonical_ids": "⿰食羔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "羔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餼", + "codepoint": "U+993C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-993C", + "status": "exact_ids", + "ids": "⿰食氣", + "canonical_ids": "⿰食氣", + "expanded_ids": "⿰⿱人⿻丶艮⿱气⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "丷", + "人", + "木", + "气", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餽", + "codepoint": "U+993D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-993D", + "status": "exact_ids", + "ids": "⿰食鬼", + "canonical_ids": "⿰食鬼", + "expanded_ids": "⿰⿱人⿻丶艮鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餾", + "codepoint": "U+993E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-993E", + "status": "exact_ids", + "ids": "⿰食留", + "canonical_ids": "⿰食留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "餿", + "codepoint": "U+993F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-993F", + "status": "exact_ids", + "ids": "⿰食叟", + "canonical_ids": "⿰食叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "又", + "艮" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饀", + "codepoint": "U+9940", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9940", + "status": "exact_ids", + "ids": "⿰食舀", + "canonical_ids": "⿰食舀", + "expanded_ids": "⿰⿱人⿻丶艮⿱爫臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "爫", + "臼", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饁", + "codepoint": "U+9941", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9941", + "status": "exact_ids", + "ids": "⿰食盍", + "canonical_ids": "⿰食盍", + "expanded_ids": "⿰⿱人⿻丶艮⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "厶", + "土", + "皿", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饂", + "codepoint": "U+9942", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9942", + "status": "exact_ids", + "ids": "⿰食𥁕", + "canonical_ids": "⿰食𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "皿", + "艮" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饃", + "codepoint": "U+9943", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9943", + "status": "exact_ids", + "ids": "⿰食莫", + "canonical_ids": "⿰食莫", + "expanded_ids": "⿰⿱人⿻丶艮⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "大", + "日", + "艮", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饄", + "codepoint": "U+9944", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9944", + "status": "exact_ids", + "ids": "⿰食堂", + "canonical_ids": "⿰食堂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "土", + "小", + "艮" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饅", + "codepoint": "U+9945", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9945", + "status": "exact_ids", + "ids": "⿰食曼", + "canonical_ids": "⿰食曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饆", + "codepoint": "U+9946", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9946", + "status": "exact_ids", + "ids": "⿰食畢", + "canonical_ids": "⿰食畢", + "expanded_ids": "⿰⿱人⿻丶艮畢", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "畢", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饇", + "codepoint": "U+9947", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9947", + "status": "exact_ids", + "ids": "⿰食區", + "canonical_ids": "⿰食區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饈", + "codepoint": "U+9948", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9948", + "status": "exact_ids", + "ids": "⿰食羞", + "canonical_ids": "⿰食羞", + "expanded_ids": "⿰⿱人⿻丶艮⿱羊丑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑", + "丶", + "人", + "羊", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饉", + "codepoint": "U+9949", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9949", + "status": "exact_ids", + "ids": "⿰食堇", + "canonical_ids": "⿰食堇", + "expanded_ids": "⿰⿱人⿻丶艮堇", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "堇", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饊", + "codepoint": "U+994A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-994A", + "status": "exact_ids", + "ids": "⿰食散", + "canonical_ids": "⿰食散", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "散" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饋", + "codepoint": "U+994B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-994B", + "status": "exact_ids", + "ids": "⿰食貴", + "canonical_ids": "⿰食貴", + "expanded_ids": "⿰⿱人⿻丶艮⿱⿱⿻口丨一⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丶", + "人", + "八", + "口", + "目", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 300, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饌", + "codepoint": "U+994C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-994C", + "status": "exact_ids", + "ids": "⿰食巽", + "canonical_ids": "⿰食巽", + "expanded_ids": "⿰⿱人⿻丶艮⿱⿰己己⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "己", + "廾", + "廿", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饍", + "codepoint": "U+994D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-994D", + "status": "exact_ids", + "ids": "⿰食善", + "canonical_ids": "⿰食善", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "善" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饎", + "codepoint": "U+994E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-994E", + "status": "exact_ids", + "ids": "⿰食喜", + "canonical_ids": "⿰食喜", + "expanded_ids": "⿰⿱人⿻丶艮⿱⿱十豆口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "十", + "口", + "艮", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饏", + "codepoint": "U+994F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-994F", + "status": "exact_ids", + "ids": "⿱敢食", + "canonical_ids": "⿱敢食", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "敢" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饐", + "codepoint": "U+9950", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9950", + "status": "exact_ids", + "ids": "⿰食壹", + "canonical_ids": "⿰食壹", + "expanded_ids": "⿰⿱人⿻丶艮⿳土冖豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "冖", + "土", + "艮", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 217, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饑", + "codepoint": "U+9951", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9951", + "status": "exact_ids", + "ids": "⿰食幾", + "canonical_ids": "⿰食幾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "幺", + "艮" + ], + "unresolved_leaves": [ + "戍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饒", + "codepoint": "U+9952", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9952", + "status": "exact_ids", + "ids": "⿰食堯", + "canonical_ids": "⿰食堯", + "expanded_ids": "⿰⿱人⿻丶艮⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "人", + "儿", + "土", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 300, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饓", + "codepoint": "U+9953", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9953", + "status": "exact_ids", + "ids": "⿰食棠", + "canonical_ids": "⿰食棠", + "expanded_ids": "⿰⿱人⿻丶艮⿳小冖⿱口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "冖", + "口", + "小", + "木", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 253, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饔", + "codepoint": "U+9954", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9954", + "status": "exact_ids", + "ids": "⿱雍食", + "canonical_ids": "⿱雍食", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "雍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饕", + "codepoint": "U+9955", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9955", + "status": "exact_ids", + "ids": "⿱號食", + "canonical_ids": "⿱號食", + "expanded_ids": "⿱⿰⿱口丂⿱虍儿⿱人⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "丶", + "人", + "儿", + "口", + "艮", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 264, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饖", + "codepoint": "U+9956", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9956", + "status": "exact_ids", + "ids": "⿰食歲", + "canonical_ids": "⿰食歲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "歲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饗", + "codepoint": "U+9957", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9957", + "status": "exact_ids", + "ids": "⿱鄉食", + "canonical_ids": "⿱鄉食", + "expanded_ids": "⿱⿰乡⿰⿻丶艮阝⿱人⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乡", + "人", + "艮", + "阝" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 266, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饘", + "codepoint": "U+9958", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9958", + "status": "exact_ids", + "ids": "⿰食亶", + "canonical_ids": "⿰食亶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丶", + "亠", + "人", + "日", + "艮" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饙", + "codepoint": "U+9959", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9959", + "status": "exact_ids", + "ids": "⿰食賁", + "canonical_ids": "⿰食賁", + "expanded_ids": "⿰⿱人⿻丶艮⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "八", + "十", + "廾", + "目", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饚", + "codepoint": "U+995A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-995A", + "status": "exact_ids", + "ids": "⿰食蓋", + "canonical_ids": "⿰食蓋", + "expanded_ids": "⿰⿱人⿻丶艮⿱艹⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "厶", + "土", + "皿", + "艮", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 264, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饛", + "codepoint": "U+995B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-995B", + "status": "exact_ids", + "ids": "⿰食蒙", + "canonical_ids": "⿰食蒙", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮", + "艹", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饜", + "codepoint": "U+995C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-995C", + "status": "exact_ids", + "ids": "⿱厭食", + "canonical_ids": "⿱厭食", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "厂", + "大", + "月", + "艮" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饝", + "codepoint": "U+995D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-995D", + "status": "exact_ids", + "ids": "⿰食磨", + "canonical_ids": "⿰食磨", + "expanded_ids": "⿰⿱人⿻丶艮⿱⿱广⿰木木石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "广", + "木", + "石", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饞", + "codepoint": "U+995E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-995E", + "status": "exact_ids", + "ids": "⿰食毚", + "canonical_ids": "⿰食毚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "毚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饟", + "codepoint": "U+995F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-995F", + "status": "exact_ids", + "ids": "⿰食襄", + "canonical_ids": "⿰食襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "艮" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饠", + "codepoint": "U+9960", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9960", + "status": "exact_ids", + "ids": "⿰食羅", + "canonical_ids": "⿰食羅", + "expanded_ids": "⿰⿱人⿻丶艮⿱罒⿰⿻幺小隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "小", + "幺", + "罒", + "艮", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 264, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饡", + "codepoint": "U+9961", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9961", + "status": "exact_ids", + "ids": "⿰食贊", + "canonical_ids": "⿰食贊", + "expanded_ids": "⿰⿱人⿻丶艮⿱⿰⿱牛儿⿱牛儿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "儿", + "八", + "牛", + "目", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 338, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饢", + "codepoint": "U+9962", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9962", + "status": "exact_ids", + "ids": "⿰食囊", + "canonical_ids": "⿰食囊", + "expanded_ids": "⿰⿱人⿻丶艮囊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "人", + "囊", + "艮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饣", + "codepoint": "U+9963", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9963", + "status": "leaf_self_fallback", + "ids": "饣", + "canonical_ids": "饣", + "expanded_ids": "饣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饤", + "codepoint": "U+9964", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9964", + "status": "exact_ids", + "ids": "⿰饣丁", + "canonical_ids": "⿰饣丁", + "expanded_ids": "⿰饣⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饥", + "codepoint": "U+9965", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9965", + "status": "exact_ids", + "ids": "⿰饣几", + "canonical_ids": "⿰饣几", + "expanded_ids": "⿰饣几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饦", + "codepoint": "U+9966", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9966", + "status": "exact_ids", + "ids": "⿰饣乇", + "canonical_ids": "⿰饣乇", + "expanded_ids": "⿰饣⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饧", + "codepoint": "U+9967", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9967", + "status": "exact_ids", + "ids": "⿰饣𠃓", + "canonical_ids": "⿰饣𠃓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "饣" + ], + "unresolved_leaves": [ + "𠃓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饨", + "codepoint": "U+9968", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9968", + "status": "exact_ids", + "ids": "⿰饣屯", + "canonical_ids": "⿰饣屯", + "expanded_ids": "⿰饣屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饩", + "codepoint": "U+9969", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9969", + "status": "exact_ids", + "ids": "⿰饣气", + "canonical_ids": "⿰饣气", + "expanded_ids": "⿰饣气", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "气", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饪", + "codepoint": "U+996A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-996A", + "status": "exact_ids", + "ids": "⿰饣壬", + "canonical_ids": "⿰饣壬", + "expanded_ids": "⿰饣⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饫", + "codepoint": "U+996B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-996B", + "status": "exact_ids", + "ids": "⿰饣夭", + "canonical_ids": "⿰饣夭", + "expanded_ids": "⿰饣⿱丿大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饬", + "codepoint": "U+996C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-996C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饭", + "codepoint": "U+996D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-996D", + "status": "exact_ids", + "ids": "⿰饣反", + "canonical_ids": "⿰饣反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "饣" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饮", + "codepoint": "U+996E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-996E", + "status": "exact_ids", + "ids": "⿰饣欠", + "canonical_ids": "⿰饣欠", + "expanded_ids": "⿰饣欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饯", + "codepoint": "U+996F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-996F", + "status": "exact_ids", + "ids": "⿰饣𢦑", + "canonical_ids": "⿰饣𢦑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "饣" + ], + "unresolved_leaves": [ + "𢦑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饰", + "codepoint": "U+9970", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9970", + "status": "exact_ids", + "ids": "⿰饣布", + "canonical_ids": "⿰饣布", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "饣" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饱", + "codepoint": "U+9971", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9971", + "status": "exact_ids", + "ids": "⿰饣包", + "canonical_ids": "⿰饣包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "饣" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饲", + "codepoint": "U+9972", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9972", + "status": "exact_ids", + "ids": "⿰饣司", + "canonical_ids": "⿰饣司", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "饣" + ], + "unresolved_leaves": [ + "司" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饳", + "codepoint": "U+9973", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9973", + "status": "exact_ids", + "ids": "⿰饣出", + "canonical_ids": "⿰饣出", + "expanded_ids": "⿰饣⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饴", + "codepoint": "U+9974", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9974", + "status": "exact_ids", + "ids": "⿰饣台", + "canonical_ids": "⿰饣台", + "expanded_ids": "⿰饣⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饵", + "codepoint": "U+9975", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9975", + "status": "exact_ids", + "ids": "⿰饣耳", + "canonical_ids": "⿰饣耳", + "expanded_ids": "⿰饣耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饶", + "codepoint": "U+9976", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9976", + "status": "exact_ids", + "ids": "⿰饣尧", + "canonical_ids": "⿰饣尧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "饣" + ], + "unresolved_leaves": [ + "尧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饷", + "codepoint": "U+9977", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9977", + "status": "exact_ids", + "ids": "⿰饣向", + "canonical_ids": "⿰饣向", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "饣" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饸", + "codepoint": "U+9978", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9978", + "status": "exact_ids", + "ids": "⿰饣合", + "canonical_ids": "⿰饣合", + "expanded_ids": "⿰饣⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饹", + "codepoint": "U+9979", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9979", + "status": "exact_ids", + "ids": "⿰饣各", + "canonical_ids": "⿰饣各", + "expanded_ids": "⿰饣⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饺", + "codepoint": "U+997A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-997A", + "status": "exact_ids", + "ids": "⿰饣交", + "canonical_ids": "⿰饣交", + "expanded_ids": "⿰饣⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "父", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饻", + "codepoint": "U+997B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-997B", + "status": "exact_ids", + "ids": "⿰饣衣", + "canonical_ids": "⿰饣衣", + "expanded_ids": "⿰饣衣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "衣", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饼", + "codepoint": "U+997C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-997C", + "status": "exact_ids", + "ids": "⿰饣并", + "canonical_ids": "⿰饣并", + "expanded_ids": "⿰饣⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饽", + "codepoint": "U+997D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-997D", + "status": "exact_ids", + "ids": "⿰饣孛", + "canonical_ids": "⿰饣孛", + "expanded_ids": "⿰饣⿳十冖子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "子", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饾", + "codepoint": "U+997E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-997E", + "status": "exact_ids", + "ids": "⿰饣豆", + "canonical_ids": "⿰饣豆", + "expanded_ids": "⿰饣豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豆", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "饿", + "codepoint": "U+997F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-997F", + "status": "exact_ids", + "ids": "⿰饣我", + "canonical_ids": "⿰饣我", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "饣" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馀", + "codepoint": "U+9980", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9980", + "status": "exact_ids", + "ids": "⿰饣余", + "canonical_ids": "⿰饣余", + "expanded_ids": "⿰饣⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馁", + "codepoint": "U+9981", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9981", + "status": "exact_ids", + "ids": "⿰饣妥", + "canonical_ids": "⿰饣妥", + "expanded_ids": "⿰饣⿱爫女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "爫", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馂", + "codepoint": "U+9982", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9982", + "status": "exact_ids", + "ids": "⿰饣夋", + "canonical_ids": "⿰饣夋", + "expanded_ids": "⿰饣⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馃", + "codepoint": "U+9983", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9983", + "status": "exact_ids", + "ids": "⿰饣果", + "canonical_ids": "⿰饣果", + "expanded_ids": "⿰饣⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馄", + "codepoint": "U+9984", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9984", + "status": "exact_ids", + "ids": "⿰饣昆", + "canonical_ids": "⿰饣昆", + "expanded_ids": "⿰饣⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馅", + "codepoint": "U+9985", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9985", + "status": "exact_ids", + "ids": "⿰饣臽", + "canonical_ids": "⿰饣臽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "臼", + "饣" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馆", + "codepoint": "U+9986", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9986", + "status": "exact_ids", + "ids": "⿰饣官", + "canonical_ids": "⿰饣官", + "expanded_ids": "⿰饣⿱宀㠯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "宀", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馇", + "codepoint": "U+9987", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9987", + "status": "exact_ids", + "ids": "⿰饣查", + "canonical_ids": "⿰饣查", + "expanded_ids": "⿰饣⿱木⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "木", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馈", + "codepoint": "U+9988", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9988", + "status": "exact_ids", + "ids": "⿰饣贵", + "canonical_ids": "⿰饣贵", + "expanded_ids": "⿰饣⿱⿱⿻口丨一⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "人", + "冂", + "口", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馉", + "codepoint": "U+9989", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9989", + "status": "exact_ids", + "ids": "⿰饣骨", + "canonical_ids": "⿰饣骨", + "expanded_ids": "⿰饣⿱冎月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馊", + "codepoint": "U+998A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-998A", + "status": "exact_ids", + "ids": "⿰饣叟", + "canonical_ids": "⿰饣叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "饣" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馋", + "codepoint": "U+998B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-998B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馌", + "codepoint": "U+998C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-998C", + "status": "exact_ids", + "ids": "⿰饣盍", + "canonical_ids": "⿰饣盍", + "expanded_ids": "⿰饣⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "皿", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馍", + "codepoint": "U+998D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-998D", + "status": "exact_ids", + "ids": "⿰饣莫", + "canonical_ids": "⿰饣莫", + "expanded_ids": "⿰饣⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "艹", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馎", + "codepoint": "U+998E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-998E", + "status": "exact_ids", + "ids": "⿰饣尃", + "canonical_ids": "⿰饣尃", + "expanded_ids": "⿰饣⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "甫", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馏", + "codepoint": "U+998F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-998F", + "status": "exact_ids", + "ids": "⿰饣留", + "canonical_ids": "⿰饣留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "饣" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馐", + "codepoint": "U+9990", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9990", + "status": "exact_ids", + "ids": "⿰饣羞", + "canonical_ids": "⿰饣羞", + "expanded_ids": "⿰饣⿱羊丑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑", + "羊", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馑", + "codepoint": "U+9991", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9991", + "status": "exact_ids", + "ids": "⿰饣堇", + "canonical_ids": "⿰饣堇", + "expanded_ids": "⿰饣堇", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馒", + "codepoint": "U+9992", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9992", + "status": "exact_ids", + "ids": "⿰饣曼", + "canonical_ids": "⿰饣曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "饣" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馓", + "codepoint": "U+9993", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9993", + "status": "exact_ids", + "ids": "⿰饣散", + "canonical_ids": "⿰饣散", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "饣" + ], + "unresolved_leaves": [ + "散" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馔", + "codepoint": "U+9994", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9994", + "status": "exact_ids", + "ids": "⿰饣巽", + "canonical_ids": "⿰饣巽", + "expanded_ids": "⿰饣⿱⿰己己⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "廾", + "廿", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馕", + "codepoint": "U+9995", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9995", + "status": "exact_ids", + "ids": "⿰饣囊", + "canonical_ids": "⿰饣囊", + "expanded_ids": "⿰饣囊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "囊", + "饣" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "首", + "codepoint": "U+9996", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9996", + "status": "exact_ids", + "ids": "⿱䒑自", + "canonical_ids": "⿱䒑自", + "expanded_ids": "⿱䒑⿻目丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "丶", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馗", + "codepoint": "U+9997", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9997", + "status": "exact_ids", + "ids": "⿰九首", + "canonical_ids": "⿰九首", + "expanded_ids": "⿰九⿱䒑⿻目丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "丶", + "九", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馘", + "codepoint": "U+9998", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9998", + "status": "exact_ids", + "ids": "⿰首或", + "canonical_ids": "⿰首或", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "丶", + "目" + ], + "unresolved_leaves": [ + "或" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "香", + "codepoint": "U+9999", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9999", + "status": "exact_ids", + "ids": "⿱禾日", + "canonical_ids": "⿱禾日", + "expanded_ids": "⿱⿻丿木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馚", + "codepoint": "U+999A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-999A", + "status": "exact_ids", + "ids": "⿰香分", + "canonical_ids": "⿰香分", + "expanded_ids": "⿰⿱⿻丿木日⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "八", + "刀", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馛", + "codepoint": "U+999B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-999B", + "status": "exact_ids", + "ids": "⿰香犮", + "canonical_ids": "⿰香犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "日", + "木" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馜", + "codepoint": "U+999C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-999C", + "status": "exact_ids", + "ids": "⿰香尼", + "canonical_ids": "⿰香尼", + "expanded_ids": "⿰⿱⿻丿木日⿱尸匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "尸", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馝", + "codepoint": "U+999D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-999D", + "status": "exact_ids", + "ids": "⿰香必", + "canonical_ids": "⿰香必", + "expanded_ids": "⿰⿱⿻丿木日⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馞", + "codepoint": "U+999E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-999E", + "status": "exact_ids", + "ids": "⿰香孛", + "canonical_ids": "⿰香孛", + "expanded_ids": "⿰⿱⿻丿木日⿳十冖子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "冖", + "十", + "子", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馟", + "codepoint": "U+999F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-999F", + "status": "exact_ids", + "ids": "⿰香孚", + "canonical_ids": "⿰香孚", + "expanded_ids": "⿰⿱⿻丿木日⿱爫子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "子", + "日", + "木", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馠", + "codepoint": "U+99A0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99A0", + "status": "exact_ids", + "ids": "⿰香含", + "canonical_ids": "⿰香含", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "人", + "口", + "日", + "木" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馡", + "codepoint": "U+99A1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99A1", + "status": "exact_ids", + "ids": "⿰香非", + "canonical_ids": "⿰香非", + "expanded_ids": "⿰⿱⿻丿木日非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "日", + "木", + "非" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馢", + "codepoint": "U+99A2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99A2", + "status": "exact_ids", + "ids": "⿰香戔", + "canonical_ids": "⿰香戔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "日", + "木" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馣", + "codepoint": "U+99A3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99A3", + "status": "exact_ids", + "ids": "⿰香奄", + "canonical_ids": "⿰香奄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "日", + "木" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馤", + "codepoint": "U+99A4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99A4", + "status": "exact_ids", + "ids": "⿰香曷", + "canonical_ids": "⿰香曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "日", + "曰", + "木" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馥", + "codepoint": "U+99A5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99A5", + "status": "exact_ids", + "ids": "⿰香复", + "canonical_ids": "⿰香复", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "日", + "木" + ], + "unresolved_leaves": [ + "复" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馦", + "codepoint": "U+99A6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99A6", + "status": "exact_ids", + "ids": "⿰香兼", + "canonical_ids": "⿰香兼", + "expanded_ids": "⿰⿱⿻丿木日兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "兼", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馧", + "codepoint": "U+99A7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99A7", + "status": "exact_ids", + "ids": "⿰香𥁕", + "canonical_ids": "⿰香𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "日", + "木", + "皿" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馨", + "codepoint": "U+99A8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99A8", + "status": "exact_ids", + "ids": "⿱殸香", + "canonical_ids": "⿱殸香", + "expanded_ids": "⿱⿰⿱士⿻尸丨⿱几又⿱⿻丿木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丿", + "几", + "又", + "士", + "尸", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馩", + "codepoint": "U+99A9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99A9", + "status": "exact_ids", + "ids": "⿰香賁", + "canonical_ids": "⿰香賁", + "expanded_ids": "⿰⿱⿻丿木日⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "八", + "十", + "廾", + "日", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馪", + "codepoint": "U+99AA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99AA", + "status": "exact_ids", + "ids": "⿰香賓", + "canonical_ids": "⿰香賓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "日", + "木" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馫", + "codepoint": "U+99AB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99AB", + "status": "exact_ids", + "ids": "⿱香⿰香香", + "canonical_ids": "⿱香⿰香香", + "expanded_ids": "⿱⿱⿻丿木日⿰⿱⿻丿木日⿱⿻丿木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 336, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馬", + "codepoint": "U+99AC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99AC", + "status": "leaf_self_fallback", + "ids": "馬", + "canonical_ids": "馬", + "expanded_ids": "馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馭", + "codepoint": "U+99AD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99AD", + "status": "exact_ids", + "ids": "⿰馬又", + "canonical_ids": "⿰馬又", + "expanded_ids": "⿰馬又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馮", + "codepoint": "U+99AE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99AE", + "status": "exact_ids", + "ids": "⿰冫馬", + "canonical_ids": "⿰冫馬", + "expanded_ids": "⿰冫馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馯", + "codepoint": "U+99AF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99AF", + "status": "exact_ids", + "ids": "⿰馬干", + "canonical_ids": "⿰馬干", + "expanded_ids": "⿰馬⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馰", + "codepoint": "U+99B0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99B0", + "status": "exact_ids", + "ids": "⿰馬勺", + "canonical_ids": "⿰馬勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馱", + "codepoint": "U+99B1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99B1", + "status": "exact_ids", + "ids": "⿰馬大", + "canonical_ids": "⿰馬大", + "expanded_ids": "⿰馬大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馲", + "codepoint": "U+99B2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99B2", + "status": "exact_ids", + "ids": "⿰馬乇", + "canonical_ids": "⿰馬乇", + "expanded_ids": "⿰馬⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馳", + "codepoint": "U+99B3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99B3", + "status": "exact_ids", + "ids": "⿰馬也", + "canonical_ids": "⿰馬也", + "expanded_ids": "⿰馬⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馴", + "codepoint": "U+99B4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99B4", + "status": "exact_ids", + "ids": "⿰馬川", + "canonical_ids": "⿰馬川", + "expanded_ids": "⿰馬川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "川", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馵", + "codepoint": "U+99B5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99B5", + "status": "exact_ids", + "ids": "⿱馬廾", + "canonical_ids": "⿱馬廾", + "expanded_ids": "⿱馬廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馶", + "codepoint": "U+99B6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99B6", + "status": "exact_ids", + "ids": "⿰馬支", + "canonical_ids": "⿰馬支", + "expanded_ids": "⿰馬⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馷", + "codepoint": "U+99B7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99B7", + "status": "exact_ids", + "ids": "⿰馬巿", + "canonical_ids": "⿰馬巿", + "expanded_ids": "⿰馬⿻⿻冂丨一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馸", + "codepoint": "U+99B8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99B8", + "status": "exact_ids", + "ids": "⿰馬斤", + "canonical_ids": "⿰馬斤", + "expanded_ids": "⿰馬斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馹", + "codepoint": "U+99B9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99B9", + "status": "exact_ids", + "ids": "⿰馬日", + "canonical_ids": "⿰馬日", + "expanded_ids": "⿰馬日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馺", + "codepoint": "U+99BA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99BA", + "status": "exact_ids", + "ids": "⿰馬及", + "canonical_ids": "⿰馬及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "馬" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馻", + "codepoint": "U+99BB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99BB", + "status": "exact_ids", + "ids": "⿰馬允", + "canonical_ids": "⿰馬允", + "expanded_ids": "⿰馬⿱厶儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馼", + "codepoint": "U+99BC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99BC", + "status": "exact_ids", + "ids": "⿰馬文", + "canonical_ids": "⿰馬文", + "expanded_ids": "⿰馬文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馽", + "codepoint": "U+99BD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99BD", + "status": "exact_ids", + "ids": "⿱馬中", + "canonical_ids": "⿱馬中", + "expanded_ids": "⿱馬⿻口丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "口", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馾", + "codepoint": "U+99BE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99BE", + "status": "exact_ids", + "ids": "⿰馬冘", + "canonical_ids": "⿰馬冘", + "expanded_ids": "⿰馬⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "馿", + "codepoint": "U+99BF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99BF", + "status": "exact_ids", + "ids": "⿰馬户", + "canonical_ids": "⿰馬户", + "expanded_ids": "⿰馬⿻丶尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "尸", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駀", + "codepoint": "U+99C0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99C0", + "status": "exact_ids", + "ids": "⿰馬尤", + "canonical_ids": "⿰馬尤", + "expanded_ids": "⿰馬尤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駁", + "codepoint": "U+99C1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99C1", + "status": "exact_ids", + "ids": "⿰馬爻", + "canonical_ids": "⿰馬爻", + "expanded_ids": "⿰馬⿱乂乂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駂", + "codepoint": "U+99C2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99C2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駃", + "codepoint": "U+99C3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99C3", + "status": "exact_ids", + "ids": "⿰馬夬", + "canonical_ids": "⿰馬夬", + "expanded_ids": "⿰馬⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "大", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駄", + "codepoint": "U+99C4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99C4", + "status": "exact_ids", + "ids": "⿰馬太", + "canonical_ids": "⿰馬太", + "expanded_ids": "⿰馬⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駅", + "codepoint": "U+99C5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99C5", + "status": "exact_ids", + "ids": "⿰馬尺", + "canonical_ids": "⿰馬尺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "馬" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駆", + "codepoint": "U+99C6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99C6", + "status": "exact_ids", + "ids": "⿰馬区", + "canonical_ids": "⿰馬区", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "区" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駇", + "codepoint": "U+99C7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99C7", + "status": "exact_ids", + "ids": "⿰馬攵", + "canonical_ids": "⿰馬攵", + "expanded_ids": "⿰馬攵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駈", + "codepoint": "U+99C8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99C8", + "status": "exact_ids", + "ids": "⿰馬丘", + "canonical_ids": "⿰馬丘", + "expanded_ids": "⿰馬丘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駉", + "codepoint": "U+99C9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99C9", + "status": "exact_ids", + "ids": "⿰馬冋", + "canonical_ids": "⿰馬冋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駊", + "codepoint": "U+99CA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99CA", + "status": "exact_ids", + "ids": "⿰馬皮", + "canonical_ids": "⿰馬皮", + "expanded_ids": "⿰馬皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皮", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駋", + "codepoint": "U+99CB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99CB", + "status": "exact_ids", + "ids": "⿰馬召", + "canonical_ids": "⿰馬召", + "expanded_ids": "⿰馬⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駌", + "codepoint": "U+99CC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99CC", + "status": "exact_ids", + "ids": "⿱夗馬", + "canonical_ids": "⿱夗馬", + "expanded_ids": "⿱⿰夕㔾馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駍", + "codepoint": "U+99CD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99CD", + "status": "exact_ids", + "ids": "⿰馬平", + "canonical_ids": "⿰馬平", + "expanded_ids": "⿰馬⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "十", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駎", + "codepoint": "U+99CE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99CE", + "status": "exact_ids", + "ids": "⿰馬由", + "canonical_ids": "⿰馬由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駏", + "codepoint": "U+99CF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99CF", + "status": "exact_ids", + "ids": "⿰馬巨", + "canonical_ids": "⿰馬巨", + "expanded_ids": "⿰馬巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駐", + "codepoint": "U+99D0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99D0", + "status": "exact_ids", + "ids": "⿰馬主", + "canonical_ids": "⿰馬主", + "expanded_ids": "⿰馬⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駑", + "codepoint": "U+99D1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99D1", + "status": "exact_ids", + "ids": "⿱奴馬", + "canonical_ids": "⿱奴馬", + "expanded_ids": "⿱⿰女又馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "女", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駒", + "codepoint": "U+99D2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99D2", + "status": "exact_ids", + "ids": "⿰馬句", + "canonical_ids": "⿰馬句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駓", + "codepoint": "U+99D3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99D3", + "status": "exact_ids", + "ids": "⿰馬丕", + "canonical_ids": "⿰馬丕", + "expanded_ids": "⿰馬⿱不一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駔", + "codepoint": "U+99D4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99D4", + "status": "exact_ids", + "ids": "⿰馬且", + "canonical_ids": "⿰馬且", + "expanded_ids": "⿰馬且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駕", + "codepoint": "U+99D5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99D5", + "status": "exact_ids", + "ids": "⿱加馬", + "canonical_ids": "⿱加馬", + "expanded_ids": "⿱⿰力口馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駖", + "codepoint": "U+99D6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99D6", + "status": "exact_ids", + "ids": "⿰馬令", + "canonical_ids": "⿰馬令", + "expanded_ids": "⿰馬⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "馬", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駗", + "codepoint": "U+99D7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99D7", + "status": "exact_ids", + "ids": "⿰馬㐱", + "canonical_ids": "⿰馬㐱", + "expanded_ids": "⿰馬⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "彡", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駘", + "codepoint": "U+99D8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99D8", + "status": "exact_ids", + "ids": "⿰馬台", + "canonical_ids": "⿰馬台", + "expanded_ids": "⿰馬⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駙", + "codepoint": "U+99D9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99D9", + "status": "exact_ids", + "ids": "⿰馬付", + "canonical_ids": "⿰馬付", + "expanded_ids": "⿰馬⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駚", + "codepoint": "U+99DA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99DA", + "status": "exact_ids", + "ids": "⿰馬央", + "canonical_ids": "⿰馬央", + "expanded_ids": "⿰馬⿻冂大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駛", + "codepoint": "U+99DB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99DB", + "status": "exact_ids", + "ids": "⿰馬史", + "canonical_ids": "⿰馬史", + "expanded_ids": "⿰馬⿻口乂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "口", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駜", + "codepoint": "U+99DC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99DC", + "status": "exact_ids", + "ids": "⿰馬必", + "canonical_ids": "⿰馬必", + "expanded_ids": "⿰馬⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駝", + "codepoint": "U+99DD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99DD", + "status": "exact_ids", + "ids": "⿰馬它", + "canonical_ids": "⿰馬它", + "expanded_ids": "⿰馬⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駞", + "codepoint": "U+99DE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99DE", + "status": "exact_ids", + "ids": "⿰馬㐌", + "canonical_ids": "⿰馬㐌", + "expanded_ids": "⿰馬⿱⿻丿一⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "丿", + "乜", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駟", + "codepoint": "U+99DF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99DF", + "status": "exact_ids", + "ids": "⿰馬四", + "canonical_ids": "⿰馬四", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "四" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駠", + "codepoint": "U+99E0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99E0", + "status": "exact_ids", + "ids": "⿰馬卯", + "canonical_ids": "⿰馬卯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "卯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駡", + "codepoint": "U+99E1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99E1", + "status": "exact_ids", + "ids": "⿱⿰口口馬", + "canonical_ids": "⿱⿰口口馬", + "expanded_ids": "⿱⿰口口馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駢", + "codepoint": "U+99E2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99E2", + "status": "exact_ids", + "ids": "⿰馬并", + "canonical_ids": "⿰馬并", + "expanded_ids": "⿰馬⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駣", + "codepoint": "U+99E3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99E3", + "status": "exact_ids", + "ids": "⿰馬兆", + "canonical_ids": "⿰馬兆", + "expanded_ids": "⿰馬兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駤", + "codepoint": "U+99E4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99E4", + "status": "exact_ids", + "ids": "⿰馬至", + "canonical_ids": "⿰馬至", + "expanded_ids": "⿰馬⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駥", + "codepoint": "U+99E5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99E5", + "status": "exact_ids", + "ids": "⿰馬戎", + "canonical_ids": "⿰馬戎", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "馬" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駦", + "codepoint": "U+99E6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99E6", + "status": "exact_ids", + "ids": "⿱关馬", + "canonical_ids": "⿱关馬", + "expanded_ids": "⿱⿱丷⿻一大馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駧", + "codepoint": "U+99E7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99E7", + "status": "exact_ids", + "ids": "⿰馬同", + "canonical_ids": "⿰馬同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駨", + "codepoint": "U+99E8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99E8", + "status": "exact_ids", + "ids": "⿰馬旬", + "canonical_ids": "⿰馬旬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "旬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駩", + "codepoint": "U+99E9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99E9", + "status": "exact_ids", + "ids": "⿰馬全", + "canonical_ids": "⿰馬全", + "expanded_ids": "⿰馬⿱入王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "王", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駪", + "codepoint": "U+99EA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99EA", + "status": "exact_ids", + "ids": "⿰馬先", + "canonical_ids": "⿰馬先", + "expanded_ids": "⿰馬⿱牛儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "牛", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駫", + "codepoint": "U+99EB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99EB", + "status": "exact_ids", + "ids": "⿰馬光", + "canonical_ids": "⿰馬光", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "馬" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駬", + "codepoint": "U+99EC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99EC", + "status": "exact_ids", + "ids": "⿰馬耳", + "canonical_ids": "⿰馬耳", + "expanded_ids": "⿰馬耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駭", + "codepoint": "U+99ED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99ED", + "status": "exact_ids", + "ids": "⿰馬亥", + "canonical_ids": "⿰馬亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駮", + "codepoint": "U+99EE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99EE", + "status": "exact_ids", + "ids": "⿰馬交", + "canonical_ids": "⿰馬交", + "expanded_ids": "⿰馬⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "父", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駯", + "codepoint": "U+99EF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99EF", + "status": "exact_ids", + "ids": "⿰馬朱", + "canonical_ids": "⿰馬朱", + "expanded_ids": "⿰馬⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駰", + "codepoint": "U+99F0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99F0", + "status": "exact_ids", + "ids": "⿰馬因", + "canonical_ids": "⿰馬因", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駱", + "codepoint": "U+99F1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99F1", + "status": "exact_ids", + "ids": "⿰馬各", + "canonical_ids": "⿰馬各", + "expanded_ids": "⿰馬⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駲", + "codepoint": "U+99F2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99F2", + "status": "exact_ids", + "ids": "⿰馬州", + "canonical_ids": "⿰馬州", + "expanded_ids": "⿰馬州", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "州", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駳", + "codepoint": "U+99F3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99F3", + "status": "exact_ids", + "ids": "⿰馬延", + "canonical_ids": "⿰馬延", + "expanded_ids": "⿰馬⿰廴⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廴", + "止", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駴", + "codepoint": "U+99F4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99F4", + "status": "exact_ids", + "ids": "⿰馬戒", + "canonical_ids": "⿰馬戒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "馬" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駵", + "codepoint": "U+99F5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99F5", + "status": "exact_ids", + "ids": "⿰馬丣", + "canonical_ids": "⿰馬丣", + "expanded_ids": "⿰馬丣", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丣", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駶", + "codepoint": "U+99F6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99F6", + "status": "exact_ids", + "ids": "⿰馬局", + "canonical_ids": "⿰馬局", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "局" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駷", + "codepoint": "U+99F7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99F7", + "status": "exact_ids", + "ids": "⿰馬束", + "canonical_ids": "⿰馬束", + "expanded_ids": "⿰馬⿻木口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駸", + "codepoint": "U+99F8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99F8", + "status": "exact_ids", + "ids": "⿰馬𠬶", + "canonical_ids": "⿰馬𠬶", + "expanded_ids": "⿰馬⿳彐冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "又", + "彐", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駹", + "codepoint": "U+99F9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99F9", + "status": "exact_ids", + "ids": "⿰馬尨", + "canonical_ids": "⿰馬尨", + "expanded_ids": "⿰馬⿰尤彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "彡", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駺", + "codepoint": "U+99FA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99FA", + "status": "exact_ids", + "ids": "⿰馬良", + "canonical_ids": "⿰馬良", + "expanded_ids": "⿰馬⿻丶艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "艮", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駻", + "codepoint": "U+99FB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99FB", + "status": "exact_ids", + "ids": "⿰馬旱", + "canonical_ids": "⿰馬旱", + "expanded_ids": "⿰馬⿱日⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "日", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駼", + "codepoint": "U+99FC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99FC", + "status": "exact_ids", + "ids": "⿰馬余", + "canonical_ids": "⿰馬余", + "expanded_ids": "⿰馬⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駽", + "codepoint": "U+99FD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99FD", + "status": "exact_ids", + "ids": "⿰馬肙", + "canonical_ids": "⿰馬肙", + "expanded_ids": "⿰馬⿱口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駾", + "codepoint": "U+99FE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99FE", + "status": "exact_ids", + "ids": "⿰馬兌", + "canonical_ids": "⿰馬兌", + "expanded_ids": "⿰馬⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "駿", + "codepoint": "U+99FF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-99FF", + "status": "exact_ids", + "ids": "⿰馬夋", + "canonical_ids": "⿰馬夋", + "expanded_ids": "⿰馬⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騀", + "codepoint": "U+9A00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A00", + "status": "exact_ids", + "ids": "⿰馬我", + "canonical_ids": "⿰馬我", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "馬" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騁", + "codepoint": "U+9A01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A01", + "status": "exact_ids", + "ids": "⿰馬甹", + "canonical_ids": "⿰馬甹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "馬" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騂", + "codepoint": "U+9A02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A02", + "status": "exact_ids", + "ids": "⿰馬辛", + "canonical_ids": "⿰馬辛", + "expanded_ids": "⿰馬⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騃", + "codepoint": "U+9A03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A03", + "status": "exact_ids", + "ids": "⿰馬矣", + "canonical_ids": "⿰馬矣", + "expanded_ids": "⿰馬⿱厶⿱⿻丿一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "厶", + "大", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騄", + "codepoint": "U+9A04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A04", + "status": "exact_ids", + "ids": "⿰馬录", + "canonical_ids": "⿰馬录", + "expanded_ids": "⿰馬⿱彐氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "氺", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騅", + "codepoint": "U+9A05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A05", + "status": "exact_ids", + "ids": "⿰馬隹", + "canonical_ids": "⿰馬隹", + "expanded_ids": "⿰馬隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "隹", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騆", + "codepoint": "U+9A06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A06", + "status": "exact_ids", + "ids": "⿰馬周", + "canonical_ids": "⿰馬周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騇", + "codepoint": "U+9A07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A07", + "status": "exact_ids", + "ids": "⿰馬舍", + "canonical_ids": "⿰馬舍", + "expanded_ids": "⿰馬⿱⿱人一⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "十", + "口", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騈", + "codepoint": "U+9A08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A08", + "status": "exact_ids", + "ids": "⿰馬幷", + "canonical_ids": "⿰馬幷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "幷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騉", + "codepoint": "U+9A09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A09", + "status": "exact_ids", + "ids": "⿰馬昆", + "canonical_ids": "⿰馬昆", + "expanded_ids": "⿰馬⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騊", + "codepoint": "U+9A0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A0A", + "status": "exact_ids", + "ids": "⿰馬匋", + "canonical_ids": "⿰馬匋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "匋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騋", + "codepoint": "U+9A0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A0B", + "status": "exact_ids", + "ids": "⿰馬來", + "canonical_ids": "⿰馬來", + "expanded_ids": "⿰馬⿻木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "木", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騌", + "codepoint": "U+9A0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A0C", + "status": "exact_ids", + "ids": "⿰馬宗", + "canonical_ids": "⿰馬宗", + "expanded_ids": "⿰馬⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騍", + "codepoint": "U+9A0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A0D", + "status": "exact_ids", + "ids": "⿰馬果", + "canonical_ids": "⿰馬果", + "expanded_ids": "⿰馬⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騎", + "codepoint": "U+9A0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A0E", + "status": "exact_ids", + "ids": "⿰馬奇", + "canonical_ids": "⿰馬奇", + "expanded_ids": "⿰馬⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騏", + "codepoint": "U+9A0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A0F", + "status": "exact_ids", + "ids": "⿰馬其", + "canonical_ids": "⿰馬其", + "expanded_ids": "⿰馬其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騐", + "codepoint": "U+9A10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A10", + "status": "exact_ids", + "ids": "⿰馬念", + "canonical_ids": "⿰馬念", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "心", + "馬" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騑", + "codepoint": "U+9A11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A11", + "status": "exact_ids", + "ids": "⿰馬非", + "canonical_ids": "⿰馬非", + "expanded_ids": "⿰馬非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "非", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騒", + "codepoint": "U+9A12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A12", + "status": "exact_ids", + "ids": "⿰馬𧈡", + "canonical_ids": "⿰馬𧈡", + "expanded_ids": "⿰馬⿱又虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "虫", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "験", + "codepoint": "U+9A13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A13", + "status": "exact_ids", + "ids": "⿰馬㑒", + "canonical_ids": "⿰馬㑒", + "expanded_ids": "⿰馬⿻⿱⿱人一口人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騔", + "codepoint": "U+9A14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A14", + "status": "exact_ids", + "ids": "⿰馬曷", + "canonical_ids": "⿰馬曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "馬" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騕", + "codepoint": "U+9A15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A15", + "status": "exact_ids", + "ids": "⿰馬要", + "canonical_ids": "⿰馬要", + "expanded_ids": "⿰馬⿱覀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "覀", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騖", + "codepoint": "U+9A16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A16", + "status": "exact_ids", + "ids": "⿱敄馬", + "canonical_ids": "⿱敄馬", + "expanded_ids": "⿱⿰矛攵馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "矛", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騗", + "codepoint": "U+9A17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A17", + "status": "exact_ids", + "ids": "⿰扁馬", + "canonical_ids": "⿰扁馬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "馬" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騘", + "codepoint": "U+9A18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A18", + "status": "exact_ids", + "ids": "⿰馬怱", + "canonical_ids": "⿰馬怱", + "expanded_ids": "⿰馬⿱⿻勿丶心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "勿", + "心", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騙", + "codepoint": "U+9A19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A19", + "status": "exact_ids", + "ids": "⿰馬扁", + "canonical_ids": "⿰馬扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "馬" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騚", + "codepoint": "U+9A1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A1A", + "status": "exact_ids", + "ids": "⿰馬前", + "canonical_ids": "⿰馬前", + "expanded_ids": "⿰馬⿱止⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "月", + "止", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騛", + "codepoint": "U+9A1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A1B", + "status": "exact_ids", + "ids": "⿰馬飛", + "canonical_ids": "⿰馬飛", + "expanded_ids": "⿰馬飛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "飛", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騜", + "codepoint": "U+9A1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A1C", + "status": "exact_ids", + "ids": "⿰馬皇", + "canonical_ids": "⿰馬皇", + "expanded_ids": "⿰馬⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "王", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騝", + "codepoint": "U+9A1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A1D", + "status": "exact_ids", + "ids": "⿰馬建", + "canonical_ids": "⿰馬建", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廴", + "馬" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騞", + "codepoint": "U+9A1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A1E", + "status": "exact_ids", + "ids": "⿰馬砉", + "canonical_ids": "⿰馬砉", + "expanded_ids": "⿰馬⿱丰石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "石", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騟", + "codepoint": "U+9A1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A1F", + "status": "exact_ids", + "ids": "⿰馬俞", + "canonical_ids": "⿰馬俞", + "expanded_ids": "⿰馬⿱⿱人一⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "刂", + "月", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騠", + "codepoint": "U+9A20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A20", + "status": "exact_ids", + "ids": "⿰馬是", + "canonical_ids": "⿰馬是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "馬" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騡", + "codepoint": "U+9A21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A21", + "status": "exact_ids", + "ids": "⿰馬泉", + "canonical_ids": "⿰馬泉", + "expanded_ids": "⿰馬⿱⿻日丶水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "水", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騢", + "codepoint": "U+9A22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A22", + "status": "exact_ids", + "ids": "⿰馬叚", + "canonical_ids": "⿰馬叚", + "expanded_ids": "⿰馬叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騣", + "codepoint": "U+9A23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A23", + "status": "exact_ids", + "ids": "⿰馬㚇", + "canonical_ids": "⿰馬㚇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "夊", + "馬" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騤", + "codepoint": "U+9A24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A24", + "status": "exact_ids", + "ids": "⿰馬癸", + "canonical_ids": "⿰馬癸", + "expanded_ids": "⿰馬⿱癶⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "癶", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騥", + "codepoint": "U+9A25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A25", + "status": "exact_ids", + "ids": "⿰馬柔", + "canonical_ids": "⿰馬柔", + "expanded_ids": "⿰馬⿱矛木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "矛", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騦", + "codepoint": "U+9A26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A26", + "status": "exact_ids", + "ids": "⿰馬思", + "canonical_ids": "⿰馬思", + "expanded_ids": "⿰馬⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "田", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騧", + "codepoint": "U+9A27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A27", + "status": "exact_ids", + "ids": "⿰馬咼", + "canonical_ids": "⿰馬咼", + "expanded_ids": "⿰馬⿱冎口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騨", + "codepoint": "U+9A28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A28", + "status": "exact_ids", + "ids": "⿰馬単", + "canonical_ids": "⿰馬単", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "単" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騩", + "codepoint": "U+9A29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A29", + "status": "exact_ids", + "ids": "⿰馬鬼", + "canonical_ids": "⿰馬鬼", + "expanded_ids": "⿰馬鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騪", + "codepoint": "U+9A2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A2A", + "status": "exact_ids", + "ids": "⿰馬叟", + "canonical_ids": "⿰馬叟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "馬" + ], + "unresolved_leaves": [ + "𦥔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騫", + "codepoint": "U+9A2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A2B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騬", + "codepoint": "U+9A2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A2C", + "status": "exact_ids", + "ids": "⿰馬乘", + "canonical_ids": "⿰馬乘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "馬" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騭", + "codepoint": "U+9A2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A2D", + "status": "exact_ids", + "ids": "⿱陟馬", + "canonical_ids": "⿱陟馬", + "expanded_ids": "⿱⿰阝⿱止𣥂馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止", + "阝", + "馬", + "𣥂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 156, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騮", + "codepoint": "U+9A2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A2E", + "status": "exact_ids", + "ids": "⿰馬留", + "canonical_ids": "⿰馬留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騯", + "codepoint": "U+9A2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A2F", + "status": "exact_ids", + "ids": "⿰馬旁", + "canonical_ids": "⿰馬旁", + "expanded_ids": "⿰馬⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "方", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騰", + "codepoint": "U+9A30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A30", + "status": "exact_ids", + "ids": "⿰月駦", + "canonical_ids": "⿰月駦", + "expanded_ids": "⿰月⿱⿱丷⿻一大馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "月", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [ + "腾" + ] + }, + { + "character": "騱", + "codepoint": "U+9A31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A31", + "status": "exact_ids", + "ids": "⿰馬奚", + "canonical_ids": "⿰馬奚", + "expanded_ids": "⿰馬⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "幺", + "爪", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騲", + "codepoint": "U+9A32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A32", + "status": "exact_ids", + "ids": "⿰馬草", + "canonical_ids": "⿰馬草", + "expanded_ids": "⿰馬⿱艹⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "艹", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騳", + "codepoint": "U+9A33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A33", + "status": "exact_ids", + "ids": "⿰馬馬", + "canonical_ids": "⿰馬馬", + "expanded_ids": "⿰馬馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騴", + "codepoint": "U+9A34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A34", + "status": "exact_ids", + "ids": "⿰馬晏", + "canonical_ids": "⿰馬晏", + "expanded_ids": "⿰馬⿱日⿱宀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "日", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騵", + "codepoint": "U+9A35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A35", + "status": "exact_ids", + "ids": "⿰馬原", + "canonical_ids": "⿰馬原", + "expanded_ids": "⿰馬⿱厂⿱⿻日丶小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "小", + "日", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騶", + "codepoint": "U+9A36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A36", + "status": "exact_ids", + "ids": "⿰馬芻", + "canonical_ids": "⿰馬芻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "芻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騷", + "codepoint": "U+9A37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A37", + "status": "exact_ids", + "ids": "⿰馬蚤", + "canonical_ids": "⿰馬蚤", + "expanded_ids": "⿰馬⿱⿻又丶虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "又", + "虫", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騸", + "codepoint": "U+9A38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A38", + "status": "exact_ids", + "ids": "⿰馬扇", + "canonical_ids": "⿰馬扇", + "expanded_ids": "⿰馬⿱⿻一尸⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "尸", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騹", + "codepoint": "U+9A39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A39", + "status": "exact_ids", + "ids": "⿰馬堇", + "canonical_ids": "⿰馬堇", + "expanded_ids": "⿰馬堇", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "堇", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騺", + "codepoint": "U+9A3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A3A", + "status": "exact_ids", + "ids": "⿱執馬", + "canonical_ids": "⿱執馬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "土", + "馬" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騻", + "codepoint": "U+9A3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A3B", + "status": "exact_ids", + "ids": "⿰馬爽", + "canonical_ids": "⿰馬爽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "馬" + ], + "unresolved_leaves": [ + "㸚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騼", + "codepoint": "U+9A3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A3C", + "status": "exact_ids", + "ids": "⿰馬鹿", + "canonical_ids": "⿰馬鹿", + "expanded_ids": "⿰馬鹿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騽", + "codepoint": "U+9A3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A3D", + "status": "exact_ids", + "ids": "⿰馬習", + "canonical_ids": "⿰馬習", + "expanded_ids": "⿰馬⿱⿰习习⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "习", + "日", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騾", + "codepoint": "U+9A3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A3E", + "status": "exact_ids", + "ids": "⿰馬累", + "canonical_ids": "⿰馬累", + "expanded_ids": "⿰馬⿱田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "田", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "騿", + "codepoint": "U+9A3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A3F", + "status": "exact_ids", + "ids": "⿰馬章", + "canonical_ids": "⿰馬章", + "expanded_ids": "⿰馬⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "立", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驀", + "codepoint": "U+9A40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A40", + "status": "exact_ids", + "ids": "⿱莫馬", + "canonical_ids": "⿱莫馬", + "expanded_ids": "⿱⿱艹⿱日大馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "日", + "艹", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驁", + "codepoint": "U+9A41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A41", + "status": "exact_ids", + "ids": "⿱敖馬", + "canonical_ids": "⿱敖馬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驂", + "codepoint": "U+9A42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A42", + "status": "exact_ids", + "ids": "⿰馬參", + "canonical_ids": "⿰馬參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驃", + "codepoint": "U+9A43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A43", + "status": "exact_ids", + "ids": "⿰馬票", + "canonical_ids": "⿰馬票", + "expanded_ids": "⿰馬⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "覀", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驄", + "codepoint": "U+9A44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A44", + "status": "exact_ids", + "ids": "⿰馬悤", + "canonical_ids": "⿰馬悤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "馬" + ], + "unresolved_leaves": [ + "囱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驅", + "codepoint": "U+9A45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A45", + "status": "exact_ids", + "ids": "⿰馬區", + "canonical_ids": "⿰馬區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驆", + "codepoint": "U+9A46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A46", + "status": "exact_ids", + "ids": "⿰馬畢", + "canonical_ids": "⿰馬畢", + "expanded_ids": "⿰馬畢", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "畢", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驇", + "codepoint": "U+9A47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A47", + "status": "exact_ids", + "ids": "⿱埶馬", + "canonical_ids": "⿱埶馬", + "expanded_ids": "⿱⿰⿱⿱土儿土⿻九丶馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "儿", + "土", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驈", + "codepoint": "U+9A48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A48", + "status": "exact_ids", + "ids": "⿰馬矞", + "canonical_ids": "⿰馬矞", + "expanded_ids": "⿰馬⿱矛⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "矛", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驉", + "codepoint": "U+9A49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A49", + "status": "exact_ids", + "ids": "⿰馬虚", + "canonical_ids": "⿰馬虚", + "expanded_ids": "⿰馬⿱虍业", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "虍", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驊", + "codepoint": "U+9A4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A4A", + "status": "exact_ids", + "ids": "⿰馬華", + "canonical_ids": "⿰馬華", + "expanded_ids": "⿰馬⿱艹𠦒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "馬", + "𠦒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 118, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驋", + "codepoint": "U+9A4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A4B", + "status": "exact_ids", + "ids": "⿰馬發", + "canonical_ids": "⿰馬發", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "發" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驌", + "codepoint": "U+9A4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A4C", + "status": "exact_ids", + "ids": "⿰馬肅", + "canonical_ids": "⿰馬肅", + "expanded_ids": "⿰馬⿻肀𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "肀", + "馬", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 118, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驍", + "codepoint": "U+9A4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A4D", + "status": "exact_ids", + "ids": "⿰馬堯", + "canonical_ids": "⿰馬堯", + "expanded_ids": "⿰馬⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驎", + "codepoint": "U+9A4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A4E", + "status": "exact_ids", + "ids": "⿰馬粦", + "canonical_ids": "⿰馬粦", + "expanded_ids": "⿰馬⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "木", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驏", + "codepoint": "U+9A4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A4F", + "status": "exact_ids", + "ids": "⿰馬孱", + "canonical_ids": "⿰馬孱", + "expanded_ids": "⿰馬⿱尸⿱子⿰子子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "尸", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驐", + "codepoint": "U+9A50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A50", + "status": "exact_ids", + "ids": "⿰馬敦", + "canonical_ids": "⿰馬敦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "馬" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驑", + "codepoint": "U+9A51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A51", + "status": "exact_ids", + "ids": "⿰馬畱", + "canonical_ids": "⿰馬畱", + "expanded_ids": "⿰馬⿱丣田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丣", + "田", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驒", + "codepoint": "U+9A52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A52", + "status": "exact_ids", + "ids": "⿰馬單", + "canonical_ids": "⿰馬單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驓", + "codepoint": "U+9A53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A53", + "status": "exact_ids", + "ids": "⿰馬曾", + "canonical_ids": "⿰馬曾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驔", + "codepoint": "U+9A54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A54", + "status": "exact_ids", + "ids": "⿰馬覃", + "canonical_ids": "⿰馬覃", + "expanded_ids": "⿰馬⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "襾", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驕", + "codepoint": "U+9A55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A55", + "status": "exact_ids", + "ids": "⿰馬喬", + "canonical_ids": "⿰馬喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "馬" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驖", + "codepoint": "U+9A56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A56", + "status": "exact_ids", + "ids": "⿰馬𢧜", + "canonical_ids": "⿰馬𢧜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "𢧜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驗", + "codepoint": "U+9A57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A57", + "status": "exact_ids", + "ids": "⿰馬僉", + "canonical_ids": "⿰馬僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驘", + "codepoint": "U+9A58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A58", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驙", + "codepoint": "U+9A59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A59", + "status": "exact_ids", + "ids": "⿰馬亶", + "canonical_ids": "⿰馬亶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "日", + "馬" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驚", + "codepoint": "U+9A5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A5A", + "status": "exact_ids", + "ids": "⿱敬馬", + "canonical_ids": "⿱敬馬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "艹", + "馬" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驛", + "codepoint": "U+9A5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A5B", + "status": "exact_ids", + "ids": "⿰馬睪", + "canonical_ids": "⿰馬睪", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "罒", + "馬" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驜", + "codepoint": "U+9A5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A5C", + "status": "exact_ids", + "ids": "⿰馬業", + "canonical_ids": "⿰馬業", + "expanded_ids": "⿰馬⿱业⿻羊八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "八", + "羊", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驝", + "codepoint": "U+9A5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A5D", + "status": "exact_ids", + "ids": "⿰馬槖", + "canonical_ids": "⿰馬槖", + "expanded_ids": "⿰馬⿳士冖⿱石木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "士", + "木", + "石", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驞", + "codepoint": "U+9A5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A5E", + "status": "exact_ids", + "ids": "⿰馬賓", + "canonical_ids": "⿰馬賓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驟", + "codepoint": "U+9A5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A5F", + "status": "exact_ids", + "ids": "⿰馬聚", + "canonical_ids": "⿰馬聚", + "expanded_ids": "⿰馬⿱⿰耳又乑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乑", + "又", + "耳", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驠", + "codepoint": "U+9A60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A60", + "status": "exact_ids", + "ids": "⿰馬燕", + "canonical_ids": "⿰馬燕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "燕" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驡", + "codepoint": "U+9A61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A61", + "status": "exact_ids", + "ids": "⿱龍馬", + "canonical_ids": "⿱龍馬", + "expanded_ids": "⿱龍馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驢", + "codepoint": "U+9A62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A62", + "status": "exact_ids", + "ids": "⿰馬盧", + "canonical_ids": "⿰馬盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "馬" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驣", + "codepoint": "U+9A63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A63", + "status": "exact_ids", + "ids": "⿰馬駦", + "canonical_ids": "⿰馬駦", + "expanded_ids": "⿰馬⿱⿱丷⿻一大馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驤", + "codepoint": "U+9A64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A64", + "status": "exact_ids", + "ids": "⿰馬襄", + "canonical_ids": "⿰馬襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驥", + "codepoint": "U+9A65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A65", + "status": "exact_ids", + "ids": "⿰馬冀", + "canonical_ids": "⿰馬冀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "田", + "馬" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驦", + "codepoint": "U+9A66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A66", + "status": "exact_ids", + "ids": "⿰馬霜", + "canonical_ids": "⿰馬霜", + "expanded_ids": "⿰馬⿱雨⿰木目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "目", + "雨", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驧", + "codepoint": "U+9A67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A67", + "status": "exact_ids", + "ids": "⿰馬鞠", + "canonical_ids": "⿰馬鞠", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "革", + "馬" + ], + "unresolved_leaves": [ + "匊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驨", + "codepoint": "U+9A68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A68", + "status": "exact_ids", + "ids": "⿰馬巂", + "canonical_ids": "⿰馬巂", + "expanded_ids": "⿰馬⿱⿱山隹⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "山", + "隹", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驩", + "codepoint": "U+9A69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A69", + "status": "exact_ids", + "ids": "⿰馬雚", + "canonical_ids": "⿰馬雚", + "expanded_ids": "⿰馬⿱艹⿱⿰口口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艹", + "隹", + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驪", + "codepoint": "U+9A6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A6A", + "status": "exact_ids", + "ids": "⿰馬麗", + "canonical_ids": "⿰馬麗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬", + "鹿" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驫", + "codepoint": "U+9A6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A6B", + "status": "exact_ids", + "ids": "⿱馬⿰馬馬", + "canonical_ids": "⿱馬⿰馬馬", + "expanded_ids": "⿱馬⿰馬馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "马", + "codepoint": "U+9A6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A6C", + "status": "leaf_self_fallback", + "ids": "马", + "canonical_ids": "马", + "expanded_ids": "马", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驭", + "codepoint": "U+9A6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A6D", + "status": "exact_ids", + "ids": "⿰马又", + "canonical_ids": "⿰马又", + "expanded_ids": "⿰马又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驮", + "codepoint": "U+9A6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A6E", + "status": "exact_ids", + "ids": "⿰马大", + "canonical_ids": "⿰马大", + "expanded_ids": "⿰马大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驯", + "codepoint": "U+9A6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A6F", + "status": "exact_ids", + "ids": "⿰马川", + "canonical_ids": "⿰马川", + "expanded_ids": "⿰马川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "川", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驰", + "codepoint": "U+9A70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A70", + "status": "exact_ids", + "ids": "⿰马也", + "canonical_ids": "⿰马也", + "expanded_ids": "⿰马⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驱", + "codepoint": "U+9A71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A71", + "status": "exact_ids", + "ids": "⿰马区", + "canonical_ids": "⿰马区", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "马" + ], + "unresolved_leaves": [ + "区" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驲", + "codepoint": "U+9A72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A72", + "status": "exact_ids", + "ids": "⿰马日", + "canonical_ids": "⿰马日", + "expanded_ids": "⿰马日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驳", + "codepoint": "U+9A73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A73", + "status": "exact_ids", + "ids": "⿰马爻", + "canonical_ids": "⿰马爻", + "expanded_ids": "⿰马⿱乂乂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驴", + "codepoint": "U+9A74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A74", + "status": "exact_ids", + "ids": "⿰马户", + "canonical_ids": "⿰马户", + "expanded_ids": "⿰马⿻丶尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "尸", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驵", + "codepoint": "U+9A75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A75", + "status": "exact_ids", + "ids": "⿰马且", + "canonical_ids": "⿰马且", + "expanded_ids": "⿰马且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驶", + "codepoint": "U+9A76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A76", + "status": "exact_ids", + "ids": "⿰马史", + "canonical_ids": "⿰马史", + "expanded_ids": "⿰马⿻口乂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "口", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驷", + "codepoint": "U+9A77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A77", + "status": "exact_ids", + "ids": "⿰马四", + "canonical_ids": "⿰马四", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "马" + ], + "unresolved_leaves": [ + "四" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驸", + "codepoint": "U+9A78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A78", + "status": "exact_ids", + "ids": "⿰马付", + "canonical_ids": "⿰马付", + "expanded_ids": "⿰马⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驹", + "codepoint": "U+9A79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A79", + "status": "exact_ids", + "ids": "⿰马句", + "canonical_ids": "⿰马句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "马" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驺", + "codepoint": "U+9A7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A7A", + "status": "exact_ids", + "ids": "⿰马刍", + "canonical_ids": "⿰马刍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "马" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驻", + "codepoint": "U+9A7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A7B", + "status": "exact_ids", + "ids": "⿰马主", + "canonical_ids": "⿰马主", + "expanded_ids": "⿰马⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驼", + "codepoint": "U+9A7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A7C", + "status": "exact_ids", + "ids": "⿰马它", + "canonical_ids": "⿰马它", + "expanded_ids": "⿰马⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驽", + "codepoint": "U+9A7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A7D", + "status": "exact_ids", + "ids": "⿱奴马", + "canonical_ids": "⿱奴马", + "expanded_ids": "⿱⿰女又马", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "女", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驾", + "codepoint": "U+9A7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A7E", + "status": "exact_ids", + "ids": "⿱加马", + "canonical_ids": "⿱加马", + "expanded_ids": "⿱⿰力口马", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "驿", + "codepoint": "U+9A7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A7F", + "status": "exact_ids", + "ids": "⿰马夅", + "canonical_ids": "⿰马夅", + "expanded_ids": "⿰马⿱夂⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "二", + "夂", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骀", + "codepoint": "U+9A80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A80", + "status": "exact_ids", + "ids": "⿰马台", + "canonical_ids": "⿰马台", + "expanded_ids": "⿰马⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骁", + "codepoint": "U+9A81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A81", + "status": "exact_ids", + "ids": "⿰马尧", + "canonical_ids": "⿰马尧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "马" + ], + "unresolved_leaves": [ + "尧" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骂", + "codepoint": "U+9A82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A82", + "status": "exact_ids", + "ids": "⿱⿰口口马", + "canonical_ids": "⿱⿰口口马", + "expanded_ids": "⿱⿰口口马", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骃", + "codepoint": "U+9A83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A83", + "status": "exact_ids", + "ids": "⿰马因", + "canonical_ids": "⿰马因", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "马" + ], + "unresolved_leaves": [ + "因" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骄", + "codepoint": "U+9A84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A84", + "status": "exact_ids", + "ids": "⿰马乔", + "canonical_ids": "⿰马乔", + "expanded_ids": "⿰马⿱丿⿱大儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "大", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骅", + "codepoint": "U+9A85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A85", + "status": "exact_ids", + "ids": "⿰马华", + "canonical_ids": "⿰马华", + "expanded_ids": "⿰马⿱⿰亻匕十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "十", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骆", + "codepoint": "U+9A86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A86", + "status": "exact_ids", + "ids": "⿰马各", + "canonical_ids": "⿰马各", + "expanded_ids": "⿰马⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骇", + "codepoint": "U+9A87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A87", + "status": "exact_ids", + "ids": "⿰马亥", + "canonical_ids": "⿰马亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "马" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骈", + "codepoint": "U+9A88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A88", + "status": "exact_ids", + "ids": "⿰马并", + "canonical_ids": "⿰马并", + "expanded_ids": "⿰马⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骉", + "codepoint": "U+9A89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A89", + "status": "exact_ids", + "ids": "⿱马⿰马马", + "canonical_ids": "⿱马⿰马马", + "expanded_ids": "⿱马⿰马马", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骊", + "codepoint": "U+9A8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A8A", + "status": "exact_ids", + "ids": "⿰马丽", + "canonical_ids": "⿰马丽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "马" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骋", + "codepoint": "U+9A8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A8B", + "status": "exact_ids", + "ids": "⿰马甹", + "canonical_ids": "⿰马甹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "马" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "验", + "codepoint": "U+9A8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A8C", + "status": "exact_ids", + "ids": "⿰马佥", + "canonical_ids": "⿰马佥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "马" + ], + "unresolved_leaves": [ + "佥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骍", + "codepoint": "U+9A8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A8D", + "status": "exact_ids", + "ids": "⿰马辛", + "canonical_ids": "⿰马辛", + "expanded_ids": "⿰马⿱立十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骎", + "codepoint": "U+9A8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A8E", + "status": "exact_ids", + "ids": "⿰马𠬶", + "canonical_ids": "⿰马𠬶", + "expanded_ids": "⿰马⿳彐冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "又", + "彐", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骏", + "codepoint": "U+9A8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A8F", + "status": "exact_ids", + "ids": "⿰马夋", + "canonical_ids": "⿰马夋", + "expanded_ids": "⿰马⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骐", + "codepoint": "U+9A90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A90", + "status": "exact_ids", + "ids": "⿰马其", + "canonical_ids": "⿰马其", + "expanded_ids": "⿰马其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骑", + "codepoint": "U+9A91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A91", + "status": "exact_ids", + "ids": "⿰马奇", + "canonical_ids": "⿰马奇", + "expanded_ids": "⿰马⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骒", + "codepoint": "U+9A92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A92", + "status": "exact_ids", + "ids": "⿰马果", + "canonical_ids": "⿰马果", + "expanded_ids": "⿰马⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "田", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骓", + "codepoint": "U+9A93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A93", + "status": "exact_ids", + "ids": "⿰马隹", + "canonical_ids": "⿰马隹", + "expanded_ids": "⿰马隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "隹", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骔", + "codepoint": "U+9A94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A94", + "status": "exact_ids", + "ids": "⿰马宗", + "canonical_ids": "⿰马宗", + "expanded_ids": "⿰马⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骕", + "codepoint": "U+9A95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A95", + "status": "exact_ids", + "ids": "⿰马肃", + "canonical_ids": "⿰马肃", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "马" + ], + "unresolved_leaves": [ + "肃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骖", + "codepoint": "U+9A96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A96", + "status": "exact_ids", + "ids": "⿰马参", + "canonical_ids": "⿰马参", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "马" + ], + "unresolved_leaves": [ + "参" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骗", + "codepoint": "U+9A97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A97", + "status": "exact_ids", + "ids": "⿰马扁", + "canonical_ids": "⿰马扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "马" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骘", + "codepoint": "U+9A98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A98", + "status": "exact_ids", + "ids": "⿱陟马", + "canonical_ids": "⿱陟马", + "expanded_ids": "⿱⿰阝⿱止𣥂马", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "止", + "阝", + "马", + "𣥂" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 156, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骙", + "codepoint": "U+9A99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A99", + "status": "exact_ids", + "ids": "⿰马癸", + "canonical_ids": "⿰马癸", + "expanded_ids": "⿰马⿱癶⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "癶", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骚", + "codepoint": "U+9A9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A9A", + "status": "exact_ids", + "ids": "⿰马蚤", + "canonical_ids": "⿰马蚤", + "expanded_ids": "⿰马⿱⿻又丶虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "又", + "虫", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骛", + "codepoint": "U+9A9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A9B", + "status": "exact_ids", + "ids": "⿱敄马", + "canonical_ids": "⿱敄马", + "expanded_ids": "⿱⿰矛攵马", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "矛", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骜", + "codepoint": "U+9A9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A9C", + "status": "exact_ids", + "ids": "⿱敖马", + "canonical_ids": "⿱敖马", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "马" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骝", + "codepoint": "U+9A9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A9D", + "status": "exact_ids", + "ids": "⿰马留", + "canonical_ids": "⿰马留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "马" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骞", + "codepoint": "U+9A9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A9E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骟", + "codepoint": "U+9A9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9A9F", + "status": "exact_ids", + "ids": "⿰马扇", + "canonical_ids": "⿰马扇", + "expanded_ids": "⿰马⿱⿻一尸⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "习", + "尸", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骠", + "codepoint": "U+9AA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AA0", + "status": "exact_ids", + "ids": "⿰马票", + "canonical_ids": "⿰马票", + "expanded_ids": "⿰马⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "覀", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骡", + "codepoint": "U+9AA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AA1", + "status": "exact_ids", + "ids": "⿰马累", + "canonical_ids": "⿰马累", + "expanded_ids": "⿰马⿱田⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "田", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骢", + "codepoint": "U+9AA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AA2", + "status": "exact_ids", + "ids": "⿰马悤", + "canonical_ids": "⿰马悤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "马" + ], + "unresolved_leaves": [ + "囱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骣", + "codepoint": "U+9AA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AA3", + "status": "exact_ids", + "ids": "⿰马孱", + "canonical_ids": "⿰马孱", + "expanded_ids": "⿰马⿱尸⿱子⿰子子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "尸", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骤", + "codepoint": "U+9AA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AA4", + "status": "exact_ids", + "ids": "⿰马聚", + "canonical_ids": "⿰马聚", + "expanded_ids": "⿰马⿱⿰耳又乑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乑", + "又", + "耳", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骥", + "codepoint": "U+9AA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AA5", + "status": "exact_ids", + "ids": "⿰马冀", + "canonical_ids": "⿰马冀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "田", + "马" + ], + "unresolved_leaves": [ + "北" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骦", + "codepoint": "U+9AA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AA6", + "status": "exact_ids", + "ids": "⿰马霜", + "canonical_ids": "⿰马霜", + "expanded_ids": "⿰马⿱雨⿰木目", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "目", + "雨", + "马" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骧", + "codepoint": "U+9AA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AA7", + "status": "exact_ids", + "ids": "⿰马襄", + "canonical_ids": "⿰马襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "马" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骨", + "codepoint": "U+9AA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AA8", + "status": "exact_ids", + "ids": "⿱冎月", + "canonical_ids": "⿱冎月", + "expanded_ids": "⿱冎月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 70, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骩", + "codepoint": "U+9AA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AA9", + "status": "exact_ids", + "ids": "⿰骨九", + "canonical_ids": "⿰骨九", + "expanded_ids": "⿰⿱冎月九", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "冎", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骪", + "codepoint": "U+9AAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AAA", + "status": "exact_ids", + "ids": "⿰骨凡", + "canonical_ids": "⿰骨凡", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月" + ], + "unresolved_leaves": [ + "凡" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骫", + "codepoint": "U+9AAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AAB", + "status": "exact_ids", + "ids": "⿰骨丸", + "canonical_ids": "⿰骨丸", + "expanded_ids": "⿰⿱冎月⿻九丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "冎", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骬", + "codepoint": "U+9AAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AAC", + "status": "exact_ids", + "ids": "⿰骨于", + "canonical_ids": "⿰骨于", + "expanded_ids": "⿰⿱冎月⿻二亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亅", + "二", + "冎", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骭", + "codepoint": "U+9AAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AAD", + "status": "exact_ids", + "ids": "⿰骨干", + "canonical_ids": "⿰骨干", + "expanded_ids": "⿰⿱冎月⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冎", + "十", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骮", + "codepoint": "U+9AAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AAE", + "status": "exact_ids", + "ids": "⿰骨弋", + "canonical_ids": "⿰骨弋", + "expanded_ids": "⿰⿱冎月弋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "弋", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骯", + "codepoint": "U+9AAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AAF", + "status": "exact_ids", + "ids": "⿰骨亢", + "canonical_ids": "⿰骨亢", + "expanded_ids": "⿰⿱冎月⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "冎", + "几", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骰", + "codepoint": "U+9AB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AB0", + "status": "exact_ids", + "ids": "⿰骨殳", + "canonical_ids": "⿰骨殳", + "expanded_ids": "⿰⿱冎月⿱几又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "几", + "又", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骱", + "codepoint": "U+9AB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AB1", + "status": "exact_ids", + "ids": "⿰骨介", + "canonical_ids": "⿰骨介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骲", + "codepoint": "U+9AB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AB2", + "status": "exact_ids", + "ids": "⿰骨包", + "canonical_ids": "⿰骨包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骳", + "codepoint": "U+9AB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AB3", + "status": "exact_ids", + "ids": "⿰骨皮", + "canonical_ids": "⿰骨皮", + "expanded_ids": "⿰⿱冎月皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骴", + "codepoint": "U+9AB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AB4", + "status": "exact_ids", + "ids": "⿰骨此", + "canonical_ids": "⿰骨此", + "expanded_ids": "⿰⿱冎月⿰止匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "匕", + "月", + "止" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骵", + "codepoint": "U+9AB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AB5", + "status": "exact_ids", + "ids": "⿰骨本", + "canonical_ids": "⿰骨本", + "expanded_ids": "⿰⿱冎月⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冎", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骶", + "codepoint": "U+9AB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AB6", + "status": "exact_ids", + "ids": "⿰骨氐", + "canonical_ids": "⿰骨氐", + "expanded_ids": "⿰⿱冎月⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "冎", + "月", + "氏" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骷", + "codepoint": "U+9AB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AB7", + "status": "exact_ids", + "ids": "⿰骨古", + "canonical_ids": "⿰骨古", + "expanded_ids": "⿰⿱冎月⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "十", + "口", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骸", + "codepoint": "U+9AB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AB8", + "status": "exact_ids", + "ids": "⿰骨亥", + "canonical_ids": "⿰骨亥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月" + ], + "unresolved_leaves": [ + "亥" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骹", + "codepoint": "U+9AB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AB9", + "status": "exact_ids", + "ids": "⿰骨交", + "canonical_ids": "⿰骨交", + "expanded_ids": "⿰⿱冎月⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "冎", + "月", + "父" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骺", + "codepoint": "U+9ABA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ABA", + "status": "exact_ids", + "ids": "⿰骨后", + "canonical_ids": "⿰骨后", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月" + ], + "unresolved_leaves": [ + "后" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骻", + "codepoint": "U+9ABB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ABB", + "status": "exact_ids", + "ids": "⿰骨夸", + "canonical_ids": "⿰骨夸", + "expanded_ids": "⿰⿱冎月⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "冎", + "大", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骼", + "codepoint": "U+9ABC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ABC", + "status": "exact_ids", + "ids": "⿰骨各", + "canonical_ids": "⿰骨各", + "expanded_ids": "⿰⿱冎月⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "夂", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骽", + "codepoint": "U+9ABD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ABD", + "status": "exact_ids", + "ids": "⿰骨妥", + "canonical_ids": "⿰骨妥", + "expanded_ids": "⿰⿱冎月⿱爫女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "女", + "月", + "爫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骾", + "codepoint": "U+9ABE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ABE", + "status": "exact_ids", + "ids": "⿰骨更", + "canonical_ids": "⿰骨更", + "expanded_ids": "⿰⿱冎月更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "更", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "骿", + "codepoint": "U+9ABF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ABF", + "status": "exact_ids", + "ids": "⿰骨并", + "canonical_ids": "⿰骨并", + "expanded_ids": "⿰⿱冎月⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "冎", + "廾", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髀", + "codepoint": "U+9AC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AC0", + "status": "exact_ids", + "ids": "⿰骨卑", + "canonical_ids": "⿰骨卑", + "expanded_ids": "⿰⿱冎月卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "卑", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髁", + "codepoint": "U+9AC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AC1", + "status": "exact_ids", + "ids": "⿰骨果", + "canonical_ids": "⿰骨果", + "expanded_ids": "⿰⿱冎月⿻田木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月", + "木", + "田" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髂", + "codepoint": "U+9AC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AC2", + "status": "exact_ids", + "ids": "⿰骨客", + "canonical_ids": "⿰骨客", + "expanded_ids": "⿰⿱冎月⿱宀⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "口", + "夂", + "宀", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髃", + "codepoint": "U+9AC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AC3", + "status": "exact_ids", + "ids": "⿰骨禺", + "canonical_ids": "⿰骨禺", + "expanded_ids": "⿰⿱冎月⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月", + "田", + "禸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髄", + "codepoint": "U+9AC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AC4", + "status": "exact_ids", + "ids": "⿰骨迶", + "canonical_ids": "⿰骨迶", + "expanded_ids": "⿰⿱冎月⿰辶⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "冎", + "月", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髅", + "codepoint": "U+9AC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AC5", + "status": "exact_ids", + "ids": "⿰骨娄", + "canonical_ids": "⿰骨娄", + "expanded_ids": "⿰⿱冎月⿱⿻木丷女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "冎", + "女", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髆", + "codepoint": "U+9AC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AC6", + "status": "exact_ids", + "ids": "⿰骨尃", + "canonical_ids": "⿰骨尃", + "expanded_ids": "⿰⿱冎月⿱甫寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "寸", + "月", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髇", + "codepoint": "U+9AC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AC7", + "status": "exact_ids", + "ids": "⿰骨高", + "canonical_ids": "⿰骨高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髈", + "codepoint": "U+9AC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AC8", + "status": "exact_ids", + "ids": "⿰骨旁", + "canonical_ids": "⿰骨旁", + "expanded_ids": "⿰⿱冎月⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冎", + "冖", + "方", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 213, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髉", + "codepoint": "U+9AC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AC9", + "status": "exact_ids", + "ids": "⿰骨隺", + "canonical_ids": "⿰骨隺", + "expanded_ids": "⿰⿱冎月⿻冖隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "冖", + "月", + "隹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髊", + "codepoint": "U+9ACA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ACA", + "status": "exact_ids", + "ids": "⿰骨差", + "canonical_ids": "⿰骨差", + "expanded_ids": "⿰⿱冎月⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "工", + "月", + "羊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髋", + "codepoint": "U+9ACB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ACB", + "status": "exact_ids", + "ids": "⿰骨宽", + "canonical_ids": "⿰骨宽", + "expanded_ids": "⿰⿱冎月⿱宀⿱艹⿻冂儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冂", + "冎", + "宀", + "月", + "艹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髌", + "codepoint": "U+9ACC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ACC", + "status": "exact_ids", + "ids": "⿰骨宾", + "canonical_ids": "⿰骨宾", + "expanded_ids": "⿰⿱冎月⿱宀⿱丘八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "八", + "冎", + "宀", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髍", + "codepoint": "U+9ACD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ACD", + "status": "exact_ids", + "ids": "⿰骨麻", + "canonical_ids": "⿰骨麻", + "expanded_ids": "⿰⿱冎月⿱广⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "广", + "月", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髎", + "codepoint": "U+9ACE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ACE", + "status": "exact_ids", + "ids": "⿰骨翏", + "canonical_ids": "⿰骨翏", + "expanded_ids": "⿰⿱冎月⿱⿰习习⿱人彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "冎", + "彡", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髏", + "codepoint": "U+9ACF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ACF", + "status": "exact_ids", + "ids": "⿰骨婁", + "canonical_ids": "⿰骨婁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髐", + "codepoint": "U+9AD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AD0", + "status": "exact_ids", + "ids": "⿰骨堯", + "canonical_ids": "⿰骨堯", + "expanded_ids": "⿰⿱冎月⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "冎", + "土", + "月" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髑", + "codepoint": "U+9AD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AD1", + "status": "exact_ids", + "ids": "⿰骨蜀", + "canonical_ids": "⿰骨蜀", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月", + "罒" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髒", + "codepoint": "U+9AD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AD2", + "status": "exact_ids", + "ids": "⿰骨葬", + "canonical_ids": "⿰骨葬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月" + ], + "unresolved_leaves": [ + "葬" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髓", + "codepoint": "U+9AD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AD3", + "status": "exact_ids", + "ids": "⿰骨遀", + "canonical_ids": "⿰骨遀", + "expanded_ids": "⿰⿱冎月⿰辶⿱⿱牛一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "冎", + "月", + "牛", + "辶" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "體", + "codepoint": "U+9AD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AD4", + "status": "exact_ids", + "ids": "⿰骨豊", + "canonical_ids": "⿰骨豊", + "expanded_ids": "⿰⿱冎月⿱曲豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "曲", + "月", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髕", + "codepoint": "U+9AD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AD5", + "status": "exact_ids", + "ids": "⿰骨賓", + "canonical_ids": "⿰骨賓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髖", + "codepoint": "U+9AD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AD6", + "status": "exact_ids", + "ids": "⿰骨寬", + "canonical_ids": "⿰骨寬", + "expanded_ids": "⿰⿱冎月⿱宀萈", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "宀", + "月", + "萈" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髗", + "codepoint": "U+9AD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AD7", + "status": "exact_ids", + "ids": "⿰骨盧", + "canonical_ids": "⿰骨盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月", + "皿" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "高", + "codepoint": "U+9AD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AD8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髙", + "codepoint": "U+9AD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AD9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髚", + "codepoint": "U+9ADA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ADA", + "status": "exact_ids", + "ids": "⿰高亢", + "canonical_ids": "⿰高亢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髛", + "codepoint": "U+9ADB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ADB", + "status": "exact_ids", + "ids": "⿰高尻", + "canonical_ids": "⿰高尻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "尸" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髜", + "codepoint": "U+9ADC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ADC", + "status": "exact_ids", + "ids": "⿰高昇", + "canonical_ids": "⿰高昇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "升", + "日" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髝", + "codepoint": "U+9ADD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ADD", + "status": "exact_ids", + "ids": "⿰高勞", + "canonical_ids": "⿰高勞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "力", + "火" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髞", + "codepoint": "U+9ADE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ADE", + "status": "exact_ids", + "ids": "⿰高喿", + "canonical_ids": "⿰高喿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髟", + "codepoint": "U+9ADF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ADF", + "status": "exact_ids", + "ids": "⿰镸彡", + "canonical_ids": "⿰镸彡", + "expanded_ids": "⿰镸彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髠", + "codepoint": "U+9AE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AE0", + "status": "exact_ids", + "ids": "⿱髟几", + "canonical_ids": "⿱髟几", + "expanded_ids": "⿱⿰镸彡几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髡", + "codepoint": "U+9AE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AE1", + "status": "exact_ids", + "ids": "⿱髟兀", + "canonical_ids": "⿱髟兀", + "expanded_ids": "⿱⿰镸彡⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髢", + "codepoint": "U+9AE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AE2", + "status": "exact_ids", + "ids": "⿱髟也", + "canonical_ids": "⿱髟也", + "expanded_ids": "⿱⿰镸彡⿻乜丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "乜", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髣", + "codepoint": "U+9AE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AE3", + "status": "exact_ids", + "ids": "⿱髟方", + "canonical_ids": "⿱髟方", + "expanded_ids": "⿱⿰镸彡方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "方", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髤", + "codepoint": "U+9AE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AE4", + "status": "exact_ids", + "ids": "⿱髟木", + "canonical_ids": "⿱髟木", + "expanded_ids": "⿱⿰镸彡木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "木", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髥", + "codepoint": "U+9AE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AE5", + "status": "exact_ids", + "ids": "⿱髟冄", + "canonical_ids": "⿱髟冄", + "expanded_ids": "⿱⿰镸彡⿻冂二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "冂", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髦", + "codepoint": "U+9AE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AE6", + "status": "exact_ids", + "ids": "⿱髟毛", + "canonical_ids": "⿱髟毛", + "expanded_ids": "⿱⿰镸彡毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "毛", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髧", + "codepoint": "U+9AE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AE7", + "status": "exact_ids", + "ids": "⿱髟冘", + "canonical_ids": "⿱髟冘", + "expanded_ids": "⿱⿰镸彡⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髨", + "codepoint": "U+9AE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AE8", + "status": "exact_ids", + "ids": "⿱髟元", + "canonical_ids": "⿱髟元", + "expanded_ids": "⿱⿰镸彡⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髩", + "codepoint": "U+9AE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AE9", + "status": "exact_ids", + "ids": "⿱髟丏", + "canonical_ids": "⿱髟丏", + "expanded_ids": "⿱⿰镸彡丏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丏", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髪", + "codepoint": "U+9AEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AEA", + "status": "exact_ids", + "ids": "⿱髟友", + "canonical_ids": "⿱髟友", + "expanded_ids": "⿱⿰镸彡⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髫", + "codepoint": "U+9AEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AEB", + "status": "exact_ids", + "ids": "⿱髟召", + "canonical_ids": "⿱髟召", + "expanded_ids": "⿱⿰镸彡⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髬", + "codepoint": "U+9AEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AEC", + "status": "exact_ids", + "ids": "⿱髟丕", + "canonical_ids": "⿱髟丕", + "expanded_ids": "⿱⿰镸彡⿱不一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髭", + "codepoint": "U+9AED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AED", + "status": "exact_ids", + "ids": "⿱髟此", + "canonical_ids": "⿱髟此", + "expanded_ids": "⿱⿰镸彡⿰止匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "彡", + "止", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髮", + "codepoint": "U+9AEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AEE", + "status": "exact_ids", + "ids": "⿱髟犮", + "canonical_ids": "⿱髟犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "镸" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髯", + "codepoint": "U+9AEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AEF", + "status": "exact_ids", + "ids": "⿱髟冉", + "canonical_ids": "⿱髟冉", + "expanded_ids": "⿱⿰镸彡⿻冂土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "土", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髰", + "codepoint": "U+9AF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AF0", + "status": "exact_ids", + "ids": "⿱髟世", + "canonical_ids": "⿱髟世", + "expanded_ids": "⿱⿰镸彡世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髱", + "codepoint": "U+9AF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AF1", + "status": "exact_ids", + "ids": "⿱髟包", + "canonical_ids": "⿱髟包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "镸" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髲", + "codepoint": "U+9AF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AF2", + "status": "exact_ids", + "ids": "⿱髟皮", + "canonical_ids": "⿱髟皮", + "expanded_ids": "⿱⿰镸彡皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "皮", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髳", + "codepoint": "U+9AF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AF3", + "status": "exact_ids", + "ids": "⿱髟矛", + "canonical_ids": "⿱髟矛", + "expanded_ids": "⿱⿰镸彡矛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "矛", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髴", + "codepoint": "U+9AF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AF4", + "status": "exact_ids", + "ids": "⿱髟弗", + "canonical_ids": "⿱髟弗", + "expanded_ids": "⿱⿰镸彡⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "弓", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髵", + "codepoint": "U+9AF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AF5", + "status": "exact_ids", + "ids": "⿱髟而", + "canonical_ids": "⿱髟而", + "expanded_ids": "⿱⿰镸彡而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "而", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髶", + "codepoint": "U+9AF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AF6", + "status": "exact_ids", + "ids": "⿱髟耳", + "canonical_ids": "⿱髟耳", + "expanded_ids": "⿱⿰镸彡耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "耳", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髷", + "codepoint": "U+9AF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AF7", + "status": "exact_ids", + "ids": "⿱髟曲", + "canonical_ids": "⿱髟曲", + "expanded_ids": "⿱⿰镸彡曲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "曲", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髸", + "codepoint": "U+9AF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AF8", + "status": "exact_ids", + "ids": "⿱髟共", + "canonical_ids": "⿱髟共", + "expanded_ids": "⿱⿰镸彡⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髹", + "codepoint": "U+9AF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AF9", + "status": "exact_ids", + "ids": "⿱髟休", + "canonical_ids": "⿱髟休", + "expanded_ids": "⿱⿰镸彡⿰亻木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "彡", + "木", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髺", + "codepoint": "U+9AFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AFA", + "status": "exact_ids", + "ids": "⿱髟舌", + "canonical_ids": "⿱髟舌", + "expanded_ids": "⿱⿰镸彡⿱⿱丿十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髻", + "codepoint": "U+9AFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AFB", + "status": "exact_ids", + "ids": "⿱髟吉", + "canonical_ids": "⿱髟吉", + "expanded_ids": "⿱⿰镸彡⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髼", + "codepoint": "U+9AFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AFC", + "status": "exact_ids", + "ids": "⿱髟夆", + "canonical_ids": "⿱髟夆", + "expanded_ids": "⿱⿰镸彡⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髽", + "codepoint": "U+9AFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AFD", + "status": "exact_ids", + "ids": "⿱髟坐", + "canonical_ids": "⿱髟坐", + "expanded_ids": "⿱⿰镸彡⿱⿰人人土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "土", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髾", + "codepoint": "U+9AFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AFE", + "status": "exact_ids", + "ids": "⿱髟肖", + "canonical_ids": "⿱髟肖", + "expanded_ids": "⿱⿰镸彡⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "彡", + "月", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "髿", + "codepoint": "U+9AFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9AFF", + "status": "exact_ids", + "ids": "⿱髟沙", + "canonical_ids": "⿱髟沙", + "expanded_ids": "⿱⿰镸彡⿰氵⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "彡", + "氵", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬀", + "codepoint": "U+9B00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B00", + "status": "exact_ids", + "ids": "⿱髟弟", + "canonical_ids": "⿱髟弟", + "expanded_ids": "⿱⿰镸彡⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬁", + "codepoint": "U+9B01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B01", + "status": "exact_ids", + "ids": "⿱髟利", + "canonical_ids": "⿱髟利", + "expanded_ids": "⿱⿰镸彡⿰⿻丿木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "彡", + "木", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬂", + "codepoint": "U+9B02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B02", + "status": "exact_ids", + "ids": "⿱髟兵", + "canonical_ids": "⿱髟兵", + "expanded_ids": "⿱⿰镸彡⿱丘八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "八", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬃", + "codepoint": "U+9B03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B03", + "status": "exact_ids", + "ids": "⿱髟宗", + "canonical_ids": "⿱髟宗", + "expanded_ids": "⿱⿰镸彡⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬄", + "codepoint": "U+9B04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B04", + "status": "exact_ids", + "ids": "⿱髟易", + "canonical_ids": "⿱髟易", + "expanded_ids": "⿱⿰镸彡⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "彡", + "日", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬅", + "codepoint": "U+9B05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B05", + "status": "exact_ids", + "ids": "⿱髟朋", + "canonical_ids": "⿱髟朋", + "expanded_ids": "⿱⿰镸彡⿰月月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "月", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬆", + "codepoint": "U+9B06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B06", + "status": "exact_ids", + "ids": "⿱髟松", + "canonical_ids": "⿱髟松", + "expanded_ids": "⿱⿰镸彡⿰木⿱八厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "厶", + "彡", + "木", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬇", + "codepoint": "U+9B07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B07", + "status": "exact_ids", + "ids": "⿱髟争", + "canonical_ids": "⿱髟争", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "镸" + ], + "unresolved_leaves": [ + "争" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬈", + "codepoint": "U+9B08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B08", + "status": "exact_ids", + "ids": "⿱髟卷", + "canonical_ids": "⿱髟卷", + "expanded_ids": "⿱⿰镸彡⿱龹卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "彡", + "镸", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬉", + "codepoint": "U+9B09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B09", + "status": "exact_ids", + "ids": "⿱髟㚇", + "canonical_ids": "⿱髟㚇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "夊", + "彡", + "镸" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬊", + "codepoint": "U+9B0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B0A", + "status": "exact_ids", + "ids": "⿱髟春", + "canonical_ids": "⿱髟春", + "expanded_ids": "⿱⿰镸彡⿱𡗗日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "日", + "镸", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 154, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬋", + "codepoint": "U+9B0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B0B", + "status": "exact_ids", + "ids": "⿱髟前", + "canonical_ids": "⿱髟前", + "expanded_ids": "⿱⿰镸彡⿱止⿰月刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "彡", + "月", + "止", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬌", + "codepoint": "U+9B0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B0C", + "status": "exact_ids", + "ids": "⿱髟𤯝", + "canonical_ids": "⿱髟𤯝", + "expanded_ids": "⿱⿰镸彡⿱⿱牛一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "彡", + "月", + "牛", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬍", + "codepoint": "U+9B0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B0D", + "status": "exact_ids", + "ids": "⿱髟胡", + "canonical_ids": "⿱髟胡", + "expanded_ids": "⿱⿰镸彡⿰⿻十口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "彡", + "月", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬎", + "codepoint": "U+9B0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B0E", + "status": "exact_ids", + "ids": "⿱髟剌", + "canonical_ids": "⿱髟剌", + "expanded_ids": "⿱⿰镸彡⿰⿻木口刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "口", + "彡", + "木", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬏", + "codepoint": "U+9B0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B0F", + "status": "exact_ids", + "ids": "⿱髟秋", + "canonical_ids": "⿱髟秋", + "expanded_ids": "⿱⿰镸彡⿰⿻丿木火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "彡", + "木", + "火", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬐", + "codepoint": "U+9B10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B10", + "status": "exact_ids", + "ids": "⿱髟耆", + "canonical_ids": "⿱髟耆", + "expanded_ids": "⿱⿰镸彡⿱⿱⿻土丿匕日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "彡", + "日", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬑", + "codepoint": "U+9B11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B11", + "status": "exact_ids", + "ids": "⿱髟兼", + "canonical_ids": "⿱髟兼", + "expanded_ids": "⿱⿰镸彡兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬒", + "codepoint": "U+9B12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B12", + "status": "exact_ids", + "ids": "⿱髟真", + "canonical_ids": "⿱髟真", + "expanded_ids": "⿱⿰镸彡⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "彡", + "目", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬓", + "codepoint": "U+9B13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B13", + "status": "exact_ids", + "ids": "⿱髟宾", + "canonical_ids": "⿱髟宾", + "expanded_ids": "⿱⿰镸彡⿱宀⿱丘八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丘", + "八", + "宀", + "彡", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬔", + "codepoint": "U+9B14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B14", + "status": "exact_ids", + "ids": "⿱髟逢", + "canonical_ids": "⿱髟逢", + "expanded_ids": "⿱⿰镸彡⿰辶⿱夂丰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "夂", + "彡", + "辶", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬕", + "codepoint": "U+9B15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B15", + "status": "exact_ids", + "ids": "⿱髟莫", + "canonical_ids": "⿱髟莫", + "expanded_ids": "⿱⿰镸彡⿱艹⿱日大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "彡", + "日", + "艹", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬖", + "codepoint": "U+9B16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B16", + "status": "exact_ids", + "ids": "⿱髟參", + "canonical_ids": "⿱髟參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "镸" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬗", + "codepoint": "U+9B17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B17", + "status": "exact_ids", + "ids": "⿱髟㒼", + "canonical_ids": "⿱髟㒼", + "expanded_ids": "⿱⿰镸彡⿱艹⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "彡", + "艹", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 302, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬘", + "codepoint": "U+9B18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B18", + "status": "exact_ids", + "ids": "⿱髟曼", + "canonical_ids": "⿱髟曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "镸" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬙", + "codepoint": "U+9B19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B19", + "status": "exact_ids", + "ids": "⿱髟曾", + "canonical_ids": "⿱髟曾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "镸" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬚", + "codepoint": "U+9B1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B1A", + "status": "exact_ids", + "ids": "⿱髟須", + "canonical_ids": "⿱髟須", + "expanded_ids": "⿱⿰镸彡⿰彡⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "彡", + "目", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬛", + "codepoint": "U+9B1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B1B", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬜", + "codepoint": "U+9B1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B1C", + "status": "exact_ids", + "ids": "⿱髟閒", + "canonical_ids": "⿱髟閒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "镸" + ], + "unresolved_leaves": [ + "閒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬝", + "codepoint": "U+9B1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B1D", + "status": "exact_ids", + "ids": "⿱髟間", + "canonical_ids": "⿱髟間", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "镸" + ], + "unresolved_leaves": [ + "間" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬞", + "codepoint": "U+9B1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B1E", + "status": "exact_ids", + "ids": "⿱髟農", + "canonical_ids": "⿱髟農", + "expanded_ids": "⿱⿰镸彡⿱曲辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "曲", + "辰", + "镸" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬟", + "codepoint": "U+9B1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B1F", + "status": "exact_ids", + "ids": "⿱髟睘", + "canonical_ids": "⿱髟睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "镸" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬠", + "codepoint": "U+9B20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B20", + "status": "exact_ids", + "ids": "⿱髟會", + "canonical_ids": "⿱髟會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "曰", + "镸" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬡", + "codepoint": "U+9B21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B21", + "status": "exact_ids", + "ids": "⿱髟寧", + "canonical_ids": "⿱髟寧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "彡", + "镸" + ], + "unresolved_leaves": [ + "寍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬢", + "codepoint": "U+9B22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B22", + "status": "exact_ids", + "ids": "⿱髟賓", + "canonical_ids": "⿱髟賓", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "镸" + ], + "unresolved_leaves": [ + "賓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬣", + "codepoint": "U+9B23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B23", + "status": "exact_ids", + "ids": "⿱髟巤", + "canonical_ids": "⿱髟巤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "镸" + ], + "unresolved_leaves": [ + "巤" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬤", + "codepoint": "U+9B24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B24", + "status": "exact_ids", + "ids": "⿱髟襄", + "canonical_ids": "⿱髟襄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "镸" + ], + "unresolved_leaves": [ + "襄" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬥", + "codepoint": "U+9B25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B25", + "status": "leaf_self_fallback", + "ids": "鬥", + "canonical_ids": "鬥", + "expanded_ids": "鬥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鬥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬦", + "codepoint": "U+9B26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B26", + "status": "exact_ids", + "ids": "⿱鬥斗", + "canonical_ids": "⿱鬥斗", + "expanded_ids": "⿱鬥斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斗", + "鬥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬧", + "codepoint": "U+9B27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B27", + "status": "exact_ids", + "ids": "⿱鬥市", + "canonical_ids": "⿱鬥市", + "expanded_ids": "⿱鬥⿱亠⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "冂", + "鬥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬨", + "codepoint": "U+9B28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B28", + "status": "exact_ids", + "ids": "⿱鬥共", + "canonical_ids": "⿱鬥共", + "expanded_ids": "⿱鬥⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "鬥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬩", + "codepoint": "U+9B29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B29", + "status": "exact_ids", + "ids": "⿱鬥兒", + "canonical_ids": "⿱鬥兒", + "expanded_ids": "⿱鬥⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "臼", + "鬥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬪", + "codepoint": "U+9B2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B2A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬫", + "codepoint": "U+9B2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B2B", + "status": "exact_ids", + "ids": "⿱鬥敢", + "canonical_ids": "⿱鬥敢", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鬥" + ], + "unresolved_leaves": [ + "敢" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬬", + "codepoint": "U+9B2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B2C", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬭", + "codepoint": "U+9B2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B2D", + "status": "exact_ids", + "ids": "⿱鬥斲", + "canonical_ids": "⿱鬥斲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鬥" + ], + "unresolved_leaves": [ + "斲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬮", + "codepoint": "U+9B2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B2E", + "status": "exact_ids", + "ids": "⿱鬥龜", + "canonical_ids": "⿱鬥龜", + "expanded_ids": "⿱鬥龜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鬥", + "龜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬯", + "codepoint": "U+9B2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B2F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬰", + "codepoint": "U+9B30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B30", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬱", + "codepoint": "U+9B31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B31", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬲", + "codepoint": "U+9B32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B32", + "status": "leaf_self_fallback", + "ids": "鬲", + "canonical_ids": "鬲", + "expanded_ids": "鬲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬳", + "codepoint": "U+9B33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B33", + "status": "exact_ids", + "ids": "⿱虍鬲", + "canonical_ids": "⿱虍鬲", + "expanded_ids": "⿱虍鬲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "虍", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬴", + "codepoint": "U+9B34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B34", + "status": "exact_ids", + "ids": "⿰鬲甫", + "canonical_ids": "⿰鬲甫", + "expanded_ids": "⿰鬲甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甫", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬵", + "codepoint": "U+9B35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B35", + "status": "exact_ids", + "ids": "⿱⿰旡旡鬲", + "canonical_ids": "⿱⿰旡旡鬲", + "expanded_ids": "⿱⿰旡旡鬲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "旡", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬶", + "codepoint": "U+9B36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B36", + "status": "exact_ids", + "ids": "⿱规鬲", + "canonical_ids": "⿱规鬲", + "expanded_ids": "⿱⿰⿻一大⿻冂儿鬲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "冂", + "大", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬷", + "codepoint": "U+9B37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B37", + "status": "exact_ids", + "ids": "⿰鬲㚇", + "canonical_ids": "⿰鬲㚇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "夊", + "鬲" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬸", + "codepoint": "U+9B38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B38", + "status": "exact_ids", + "ids": "⿰鬲留", + "canonical_ids": "⿰鬲留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鬲" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬹", + "codepoint": "U+9B39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B39", + "status": "exact_ids", + "ids": "⿱規鬲", + "canonical_ids": "⿱規鬲", + "expanded_ids": "⿱⿰⿻一大⿱目儿鬲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "大", + "目", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬺", + "codepoint": "U+9B3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B3A", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬻", + "codepoint": "U+9B3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B3B", + "status": "exact_ids", + "ids": "⿱粥鬲", + "canonical_ids": "⿱粥鬲", + "expanded_ids": "⿱⿲弓⿻木丷弓鬲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "弓", + "木", + "鬲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬼", + "codepoint": "U+9B3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B3C", + "status": "leaf_self_fallback", + "ids": "鬼", + "canonical_ids": "鬼", + "expanded_ids": "鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬽", + "codepoint": "U+9B3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B3D", + "status": "exact_ids", + "ids": "⿰鬼彡", + "canonical_ids": "⿰鬼彡", + "expanded_ids": "⿰鬼彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彡", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬾", + "codepoint": "U+9B3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B3E", + "status": "exact_ids", + "ids": "⿰鬼支", + "canonical_ids": "⿰鬼支", + "expanded_ids": "⿰鬼⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鬿", + "codepoint": "U+9B3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B3F", + "status": "exact_ids", + "ids": "⿰鬼斤", + "canonical_ids": "⿰鬼斤", + "expanded_ids": "⿰鬼斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魀", + "codepoint": "U+9B40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B40", + "status": "exact_ids", + "ids": "⿰鬼介", + "canonical_ids": "⿰鬼介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鬼" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魁", + "codepoint": "U+9B41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B41", + "status": "exact_ids", + "ids": "⿰鬼斗", + "canonical_ids": "⿰鬼斗", + "expanded_ids": "⿰鬼斗", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斗", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魂", + "codepoint": "U+9B42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B42", + "status": "exact_ids", + "ids": "⿰云鬼", + "canonical_ids": "⿰云鬼", + "expanded_ids": "⿰⿱二厶鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "厶", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魃", + "codepoint": "U+9B43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B43", + "status": "exact_ids", + "ids": "⿰鬼犮", + "canonical_ids": "⿰鬼犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鬼" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魄", + "codepoint": "U+9B44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B44", + "status": "exact_ids", + "ids": "⿰白鬼", + "canonical_ids": "⿰白鬼", + "expanded_ids": "⿰⿻日丶鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魅", + "codepoint": "U+9B45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B45", + "status": "exact_ids", + "ids": "⿰鬼未", + "canonical_ids": "⿰鬼未", + "expanded_ids": "⿰鬼⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魆", + "codepoint": "U+9B46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B46", + "status": "exact_ids", + "ids": "⿰鬼戉", + "canonical_ids": "⿰鬼戉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "鬼" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魇", + "codepoint": "U+9B47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B47", + "status": "exact_ids", + "ids": "⿱厌鬼", + "canonical_ids": "⿱厌鬼", + "expanded_ids": "⿱⿱厂⿻大丶鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "大", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魈", + "codepoint": "U+9B48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B48", + "status": "exact_ids", + "ids": "⿰鬼肖", + "canonical_ids": "⿰鬼肖", + "expanded_ids": "⿰鬼⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魉", + "codepoint": "U+9B49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B49", + "status": "exact_ids", + "ids": "⿰鬼两", + "canonical_ids": "⿰鬼两", + "expanded_ids": "⿰鬼两", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "两", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魊", + "codepoint": "U+9B4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B4A", + "status": "exact_ids", + "ids": "⿰鬼或", + "canonical_ids": "⿰鬼或", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鬼" + ], + "unresolved_leaves": [ + "或" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魋", + "codepoint": "U+9B4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B4B", + "status": "exact_ids", + "ids": "⿰鬼隹", + "canonical_ids": "⿰鬼隹", + "expanded_ids": "⿰鬼隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "隹", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魌", + "codepoint": "U+9B4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B4C", + "status": "exact_ids", + "ids": "⿰鬼其", + "canonical_ids": "⿰鬼其", + "expanded_ids": "⿰鬼其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魍", + "codepoint": "U+9B4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B4D", + "status": "exact_ids", + "ids": "⿰鬼罔", + "canonical_ids": "⿰鬼罔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鬼" + ], + "unresolved_leaves": [ + "罔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魎", + "codepoint": "U+9B4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B4E", + "status": "exact_ids", + "ids": "⿰鬼兩", + "canonical_ids": "⿰鬼兩", + "expanded_ids": "⿰鬼⿻⿱一⿻冂丨⿰入入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "入", + "冂", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魏", + "codepoint": "U+9B4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B4F", + "status": "exact_ids", + "ids": "⿰委鬼", + "canonical_ids": "⿰委鬼", + "expanded_ids": "⿰⿱⿻丿木女鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "木", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魐", + "codepoint": "U+9B50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B50", + "status": "exact_ids", + "ids": "⿰鬼兼", + "canonical_ids": "⿰鬼兼", + "expanded_ids": "⿰鬼兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魑", + "codepoint": "U+9B51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B51", + "status": "exact_ids", + "ids": "⿰鬼离", + "canonical_ids": "⿰鬼离", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "禸", + "鬼" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魒", + "codepoint": "U+9B52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B52", + "status": "exact_ids", + "ids": "⿰鬼票", + "canonical_ids": "⿰鬼票", + "expanded_ids": "⿰鬼⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "覀", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魓", + "codepoint": "U+9B53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B53", + "status": "exact_ids", + "ids": "⿰鬼畢", + "canonical_ids": "⿰鬼畢", + "expanded_ids": "⿰鬼畢", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "畢", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魔", + "codepoint": "U+9B54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B54", + "status": "exact_ids", + "ids": "⿱麻鬼", + "canonical_ids": "⿱麻鬼", + "expanded_ids": "⿱⿱广⿰木木鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "木", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魕", + "codepoint": "U+9B55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B55", + "status": "exact_ids", + "ids": "⿰鬼幾", + "canonical_ids": "⿰鬼幾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "鬼" + ], + "unresolved_leaves": [ + "戍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魖", + "codepoint": "U+9B56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B56", + "status": "exact_ids", + "ids": "⿰鬼虚", + "canonical_ids": "⿰鬼虚", + "expanded_ids": "⿰鬼⿱虍业", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "虍", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魗", + "codepoint": "U+9B57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B57", + "status": "exact_ids", + "ids": "⿰壽鬼", + "canonical_ids": "⿰壽鬼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鬼" + ], + "unresolved_leaves": [ + "壽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魘", + "codepoint": "U+9B58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B58", + "status": "exact_ids", + "ids": "⿱厭鬼", + "canonical_ids": "⿱厭鬼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "大", + "月", + "鬼" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魙", + "codepoint": "U+9B59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B59", + "status": "exact_ids", + "ids": "⿱漸鬼", + "canonical_ids": "⿱漸鬼", + "expanded_ids": "⿱⿰氵⿰車斤鬼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "氵", + "車", + "鬼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魚", + "codepoint": "U+9B5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B5A", + "status": "leaf_self_fallback", + "ids": "魚", + "canonical_ids": "魚", + "expanded_ids": "魚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魛", + "codepoint": "U+9B5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B5B", + "status": "exact_ids", + "ids": "⿰魚刀", + "canonical_ids": "⿰魚刀", + "expanded_ids": "⿰魚刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魜", + "codepoint": "U+9B5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B5C", + "status": "exact_ids", + "ids": "⿰魚人", + "canonical_ids": "⿰魚人", + "expanded_ids": "⿰魚人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魝", + "codepoint": "U+9B5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B5D", + "status": "exact_ids", + "ids": "⿰魚刂", + "canonical_ids": "⿰魚刂", + "expanded_ids": "⿰魚刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魞", + "codepoint": "U+9B5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B5E", + "status": "exact_ids", + "ids": "⿰魚入", + "canonical_ids": "⿰魚入", + "expanded_ids": "⿰魚入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魟", + "codepoint": "U+9B5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B5F", + "status": "exact_ids", + "ids": "⿰魚工", + "canonical_ids": "⿰魚工", + "expanded_ids": "⿰魚工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魠", + "codepoint": "U+9B60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B60", + "status": "exact_ids", + "ids": "⿰魚乇", + "canonical_ids": "⿰魚乇", + "expanded_ids": "⿰魚⿱丿七", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "七", + "丿", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魡", + "codepoint": "U+9B61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B61", + "status": "exact_ids", + "ids": "⿰魚勺", + "canonical_ids": "⿰魚勺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "勺" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魢", + "codepoint": "U+9B62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B62", + "status": "exact_ids", + "ids": "⿰魚己", + "canonical_ids": "⿰魚己", + "expanded_ids": "⿰魚己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魣", + "codepoint": "U+9B63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B63", + "status": "exact_ids", + "ids": "⿰魚予", + "canonical_ids": "⿰魚予", + "expanded_ids": "⿰魚⿱龴⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "魚", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魤", + "codepoint": "U+9B64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B64", + "status": "exact_ids", + "ids": "⿰魚化", + "canonical_ids": "⿰魚化", + "expanded_ids": "⿰魚⿰亻匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "匕", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魥", + "codepoint": "U+9B65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B65", + "status": "exact_ids", + "ids": "⿰魚及", + "canonical_ids": "⿰魚及", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "魚" + ], + "unresolved_leaves": [ + "㇏" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魦", + "codepoint": "U+9B66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B66", + "status": "exact_ids", + "ids": "⿰魚少", + "canonical_ids": "⿰魚少", + "expanded_ids": "⿰魚⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魧", + "codepoint": "U+9B67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B67", + "status": "exact_ids", + "ids": "⿰魚亢", + "canonical_ids": "⿰魚亢", + "expanded_ids": "⿰魚⿱亠几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "几", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魨", + "codepoint": "U+9B68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B68", + "status": "exact_ids", + "ids": "⿰魚屯", + "canonical_ids": "⿰魚屯", + "expanded_ids": "⿰魚屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魩", + "codepoint": "U+9B69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B69", + "status": "exact_ids", + "ids": "⿰魚勿", + "canonical_ids": "⿰魚勿", + "expanded_ids": "⿰魚勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魪", + "codepoint": "U+9B6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B6A", + "status": "exact_ids", + "ids": "⿰魚介", + "canonical_ids": "⿰魚介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魫", + "codepoint": "U+9B6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B6B", + "status": "exact_ids", + "ids": "⿰魚冘", + "canonical_ids": "⿰魚冘", + "expanded_ids": "⿰魚⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魬", + "codepoint": "U+9B6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B6C", + "status": "exact_ids", + "ids": "⿰魚反", + "canonical_ids": "⿰魚反", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "反" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魭", + "codepoint": "U+9B6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B6D", + "status": "exact_ids", + "ids": "⿰魚元", + "canonical_ids": "⿰魚元", + "expanded_ids": "⿰魚⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魮", + "codepoint": "U+9B6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B6E", + "status": "exact_ids", + "ids": "⿰魚比", + "canonical_ids": "⿰魚比", + "expanded_ids": "⿰魚⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魯", + "codepoint": "U+9B6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B6F", + "status": "exact_ids", + "ids": "⿱魚日", + "canonical_ids": "⿱魚日", + "expanded_ids": "⿱魚日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魰", + "codepoint": "U+9B70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B70", + "status": "exact_ids", + "ids": "⿰魚文", + "canonical_ids": "⿰魚文", + "expanded_ids": "⿰魚文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魱", + "codepoint": "U+9B71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B71", + "status": "exact_ids", + "ids": "⿰魚互", + "canonical_ids": "⿰魚互", + "expanded_ids": "⿰魚⿱一彑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "彑", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魲", + "codepoint": "U+9B72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B72", + "status": "exact_ids", + "ids": "⿰魚戸", + "canonical_ids": "⿰魚戸", + "expanded_ids": "⿰魚⿻一尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魳", + "codepoint": "U+9B73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B73", + "status": "exact_ids", + "ids": "⿰魚帀", + "canonical_ids": "⿰魚帀", + "expanded_ids": "⿰魚⿱一⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魴", + "codepoint": "U+9B74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B74", + "status": "exact_ids", + "ids": "⿰魚方", + "canonical_ids": "⿰魚方", + "expanded_ids": "⿰魚方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魵", + "codepoint": "U+9B75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B75", + "status": "exact_ids", + "ids": "⿰魚分", + "canonical_ids": "⿰魚分", + "expanded_ids": "⿰魚⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魶", + "codepoint": "U+9B76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B76", + "status": "exact_ids", + "ids": "⿰魚內", + "canonical_ids": "⿰魚內", + "expanded_ids": "⿰魚⿻冂入", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "冂", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魷", + "codepoint": "U+9B77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B77", + "status": "exact_ids", + "ids": "⿰魚尤", + "canonical_ids": "⿰魚尤", + "expanded_ids": "⿰魚尤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魸", + "codepoint": "U+9B78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B78", + "status": "exact_ids", + "ids": "⿰魚片", + "canonical_ids": "⿰魚片", + "expanded_ids": "⿰魚片", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "片", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魹", + "codepoint": "U+9B79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B79", + "status": "exact_ids", + "ids": "⿰魚毛", + "canonical_ids": "⿰魚毛", + "expanded_ids": "⿰魚毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "毛", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魺", + "codepoint": "U+9B7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B7A", + "status": "exact_ids", + "ids": "⿰魚可", + "canonical_ids": "⿰魚可", + "expanded_ids": "⿰魚⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魻", + "codepoint": "U+9B7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B7B", + "status": "exact_ids", + "ids": "⿰魚甲", + "canonical_ids": "⿰魚甲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "甲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魼", + "codepoint": "U+9B7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B7C", + "status": "exact_ids", + "ids": "⿰魚去", + "canonical_ids": "⿰魚去", + "expanded_ids": "⿰魚⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魽", + "codepoint": "U+9B7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B7D", + "status": "exact_ids", + "ids": "⿰魚甘", + "canonical_ids": "⿰魚甘", + "expanded_ids": "⿰魚甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甘", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魾", + "codepoint": "U+9B7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B7E", + "status": "exact_ids", + "ids": "⿰魚丕", + "canonical_ids": "⿰魚丕", + "expanded_ids": "⿰魚⿱不一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "不", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "魿", + "codepoint": "U+9B7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B7F", + "status": "exact_ids", + "ids": "⿰魚令", + "canonical_ids": "⿰魚令", + "expanded_ids": "⿰魚⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "魚", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮀", + "codepoint": "U+9B80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B80", + "status": "exact_ids", + "ids": "⿰魚它", + "canonical_ids": "⿰魚它", + "expanded_ids": "⿰魚⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮁", + "codepoint": "U+9B81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B81", + "status": "exact_ids", + "ids": "⿰魚犮", + "canonical_ids": "⿰魚犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮂", + "codepoint": "U+9B82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B82", + "status": "exact_ids", + "ids": "⿰魚囚", + "canonical_ids": "⿰魚囚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮃", + "codepoint": "U+9B83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B83", + "status": "exact_ids", + "ids": "⿰魚平", + "canonical_ids": "⿰魚平", + "expanded_ids": "⿰魚⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "十", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮄", + "codepoint": "U+9B84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B84", + "status": "exact_ids", + "ids": "⿰魚弗", + "canonical_ids": "⿰魚弗", + "expanded_ids": "⿰魚⿻弓刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "弓", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮅", + "codepoint": "U+9B85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B85", + "status": "exact_ids", + "ids": "⿰魚必", + "canonical_ids": "⿰魚必", + "expanded_ids": "⿰魚⿻心丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮆", + "codepoint": "U+9B86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B86", + "status": "exact_ids", + "ids": "⿱此魚", + "canonical_ids": "⿱此魚", + "expanded_ids": "⿱⿰止匕魚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "止", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮇", + "codepoint": "U+9B87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B87", + "status": "exact_ids", + "ids": "⿰魚未", + "canonical_ids": "⿰魚未", + "expanded_ids": "⿰魚⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "木", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮈", + "codepoint": "U+9B88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B88", + "status": "exact_ids", + "ids": "⿰魚句", + "canonical_ids": "⿰魚句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮉", + "codepoint": "U+9B89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B89", + "status": "exact_ids", + "ids": "⿰魚召", + "canonical_ids": "⿰魚召", + "expanded_ids": "⿰魚⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮊", + "codepoint": "U+9B8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B8A", + "status": "exact_ids", + "ids": "⿰魚白", + "canonical_ids": "⿰魚白", + "expanded_ids": "⿰魚⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮋", + "codepoint": "U+9B8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B8B", + "status": "exact_ids", + "ids": "⿰魚由", + "canonical_ids": "⿰魚由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮌", + "codepoint": "U+9B8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B8C", + "status": "exact_ids", + "ids": "⿰魚玄", + "canonical_ids": "⿰魚玄", + "expanded_ids": "⿰魚⿱亠幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "幺", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮍", + "codepoint": "U+9B8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B8D", + "status": "exact_ids", + "ids": "⿰魚皮", + "canonical_ids": "⿰魚皮", + "expanded_ids": "⿰魚皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皮", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮎", + "codepoint": "U+9B8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B8E", + "status": "exact_ids", + "ids": "⿰魚占", + "canonical_ids": "⿰魚占", + "expanded_ids": "⿰魚⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮏", + "codepoint": "U+9B8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B8F", + "status": "exact_ids", + "ids": "⿰魚生", + "canonical_ids": "⿰魚生", + "expanded_ids": "⿰魚⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "牛", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮐", + "codepoint": "U+9B90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B90", + "status": "exact_ids", + "ids": "⿰魚台", + "canonical_ids": "⿰魚台", + "expanded_ids": "⿰魚⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮑", + "codepoint": "U+9B91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B91", + "status": "exact_ids", + "ids": "⿰魚包", + "canonical_ids": "⿰魚包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮒", + "codepoint": "U+9B92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B92", + "status": "exact_ids", + "ids": "⿰魚付", + "canonical_ids": "⿰魚付", + "expanded_ids": "⿰魚⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮓", + "codepoint": "U+9B93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B93", + "status": "exact_ids", + "ids": "⿰魚乍", + "canonical_ids": "⿰魚乍", + "expanded_ids": "⿰魚乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮔", + "codepoint": "U+9B94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B94", + "status": "exact_ids", + "ids": "⿰魚巨", + "canonical_ids": "⿰魚巨", + "expanded_ids": "⿰魚巨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巨", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮕", + "codepoint": "U+9B95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B95", + "status": "exact_ids", + "ids": "⿰魚古", + "canonical_ids": "⿰魚古", + "expanded_ids": "⿰魚⿻十口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮖", + "codepoint": "U+9B96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B96", + "status": "exact_ids", + "ids": "⿰魚石", + "canonical_ids": "⿰魚石", + "expanded_ids": "⿰魚石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮗", + "codepoint": "U+9B97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B97", + "status": "exact_ids", + "ids": "⿰魚冬", + "canonical_ids": "⿰魚冬", + "expanded_ids": "⿰魚⿱夂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "夂", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮘", + "codepoint": "U+9B98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B98", + "status": "exact_ids", + "ids": "⿰魚代", + "canonical_ids": "⿰魚代", + "expanded_ids": "⿰魚⿰亻弋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "弋", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮙", + "codepoint": "U+9B99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B99", + "status": "exact_ids", + "ids": "⿰魚羽", + "canonical_ids": "⿰魚羽", + "expanded_ids": "⿰魚⿰习习", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮚", + "codepoint": "U+9B9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B9A", + "status": "exact_ids", + "ids": "⿰魚吉", + "canonical_ids": "⿰魚吉", + "expanded_ids": "⿰魚⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮛", + "codepoint": "U+9B9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B9B", + "status": "exact_ids", + "ids": "⿰魚尗", + "canonical_ids": "⿰魚尗", + "expanded_ids": "⿰魚⿱上小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "上", + "小", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮜", + "codepoint": "U+9B9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B9C", + "status": "exact_ids", + "ids": "⿰魚后", + "canonical_ids": "⿰魚后", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "后" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮝", + "codepoint": "U+9B9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B9D", + "status": "exact_ids", + "ids": "⿱关魚", + "canonical_ids": "⿱关魚", + "expanded_ids": "⿱⿱丷⿻一大魚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮞", + "codepoint": "U+9B9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B9E", + "status": "exact_ids", + "ids": "⿰魚而", + "canonical_ids": "⿰魚而", + "expanded_ids": "⿰魚而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "而", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮟", + "codepoint": "U+9B9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9B9F", + "status": "exact_ids", + "ids": "⿰魚安", + "canonical_ids": "⿰魚安", + "expanded_ids": "⿰魚⿱宀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮠", + "codepoint": "U+9BA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BA0", + "status": "exact_ids", + "ids": "⿰魚危", + "canonical_ids": "⿰魚危", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "厂", + "魚" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮡", + "codepoint": "U+9BA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BA1", + "status": "exact_ids", + "ids": "⿰魚兆", + "canonical_ids": "⿰魚兆", + "expanded_ids": "⿰魚兆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮢", + "codepoint": "U+9BA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BA2", + "status": "exact_ids", + "ids": "⿰魚朱", + "canonical_ids": "⿰魚朱", + "expanded_ids": "⿰魚⿻丿⿻木一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮣", + "codepoint": "U+9BA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BA3", + "status": "exact_ids", + "ids": "⿰魚印", + "canonical_ids": "⿰魚印", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "印" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮤", + "codepoint": "U+9BA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BA4", + "status": "exact_ids", + "ids": "⿱列魚", + "canonical_ids": "⿱列魚", + "expanded_ids": "⿱⿰⿻夕一刂魚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "夕", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮥", + "codepoint": "U+9BA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BA5", + "status": "exact_ids", + "ids": "⿰魚各", + "canonical_ids": "⿰魚各", + "expanded_ids": "⿰魚⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮦", + "codepoint": "U+9BA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BA6", + "status": "exact_ids", + "ids": "⿰魚同", + "canonical_ids": "⿰魚同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮧", + "codepoint": "U+9BA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BA7", + "status": "exact_ids", + "ids": "⿰魚夷", + "canonical_ids": "⿰魚夷", + "expanded_ids": "⿰魚⿻大弓", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "弓", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮨", + "codepoint": "U+9BA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BA8", + "status": "exact_ids", + "ids": "⿰魚旨", + "canonical_ids": "⿰魚旨", + "expanded_ids": "⿰魚⿱匕日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮩", + "codepoint": "U+9BA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BA9", + "status": "exact_ids", + "ids": "⿰魚并", + "canonical_ids": "⿰魚并", + "expanded_ids": "⿰魚⿱丷⿱一廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮪", + "codepoint": "U+9BAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BAA", + "status": "exact_ids", + "ids": "⿰魚有", + "canonical_ids": "⿰魚有", + "expanded_ids": "⿰魚⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "月", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮫", + "codepoint": "U+9BAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BAB", + "status": "exact_ids", + "ids": "⿰魚交", + "canonical_ids": "⿰魚交", + "expanded_ids": "⿰魚⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "父", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮬", + "codepoint": "U+9BAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BAC", + "status": "exact_ids", + "ids": "⿰魚夸", + "canonical_ids": "⿰魚夸", + "expanded_ids": "⿰魚⿱大⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮭", + "codepoint": "U+9BAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BAD", + "status": "exact_ids", + "ids": "⿰魚圭", + "canonical_ids": "⿰魚圭", + "expanded_ids": "⿰魚⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮮", + "codepoint": "U+9BAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BAE", + "status": "exact_ids", + "ids": "⿰魚羊", + "canonical_ids": "⿰魚羊", + "expanded_ids": "⿰魚羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "羊", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮯", + "codepoint": "U+9BAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BAF", + "status": "exact_ids", + "ids": "⿰魚合", + "canonical_ids": "⿰魚合", + "expanded_ids": "⿰魚⿱⿱人一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮰", + "codepoint": "U+9BB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BB0", + "status": "exact_ids", + "ids": "⿰魚回", + "canonical_ids": "⿰魚回", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮱", + "codepoint": "U+9BB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BB1", + "status": "exact_ids", + "ids": "⿰魚老", + "canonical_ids": "⿰魚老", + "expanded_ids": "⿰魚⿱⿻土丿匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮲", + "codepoint": "U+9BB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BB2", + "status": "exact_ids", + "ids": "⿰魚伏", + "canonical_ids": "⿰魚伏", + "expanded_ids": "⿰魚⿰亻⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "亻", + "大", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮳", + "codepoint": "U+9BB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BB3", + "status": "exact_ids", + "ids": "⿰魚考", + "canonical_ids": "⿰魚考", + "expanded_ids": "⿰魚⿱⿻土丿丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "丿", + "土", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮴", + "codepoint": "U+9BB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BB4", + "status": "exact_ids", + "ids": "⿰魚休", + "canonical_ids": "⿰魚休", + "expanded_ids": "⿰魚⿰亻木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "木", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮵", + "codepoint": "U+9BB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BB5", + "status": "exact_ids", + "ids": "⿰魚兌", + "canonical_ids": "⿰魚兌", + "expanded_ids": "⿰魚⿱八⿱口儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "八", + "口", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮶", + "codepoint": "U+9BB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BB6", + "status": "exact_ids", + "ids": "⿰魚君", + "canonical_ids": "⿰魚君", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "魚" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮷", + "codepoint": "U+9BB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BB7", + "status": "exact_ids", + "ids": "⿰魚弟", + "canonical_ids": "⿰魚弟", + "expanded_ids": "⿰魚⿱丷⿻⿻弓丨丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮸", + "codepoint": "U+9BB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BB8", + "status": "exact_ids", + "ids": "⿰魚免", + "canonical_ids": "⿰魚免", + "expanded_ids": "⿰魚免", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "免", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮹", + "codepoint": "U+9BB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BB9", + "status": "exact_ids", + "ids": "⿰魚肖", + "canonical_ids": "⿰魚肖", + "expanded_ids": "⿰魚⿱小月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "月", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮺", + "codepoint": "U+9BBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BBA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮻", + "codepoint": "U+9BBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BBB", + "status": "exact_ids", + "ids": "⿰魚夋", + "canonical_ids": "⿰魚夋", + "expanded_ids": "⿰魚⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮼", + "codepoint": "U+9BBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BBC", + "status": "exact_ids", + "ids": "⿰魚𠬶", + "canonical_ids": "⿰魚𠬶", + "expanded_ids": "⿰魚⿳彐冖又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "又", + "彐", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮽", + "codepoint": "U+9BBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BBD", + "status": "exact_ids", + "ids": "⿰魚余", + "canonical_ids": "⿰魚余", + "expanded_ids": "⿰魚⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮾", + "codepoint": "U+9BBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BBE", + "status": "exact_ids", + "ids": "⿰魚妥", + "canonical_ids": "⿰魚妥", + "expanded_ids": "⿰魚⿱爫女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "爫", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鮿", + "codepoint": "U+9BBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BBF", + "status": "exact_ids", + "ids": "⿰魚耴", + "canonical_ids": "⿰魚耴", + "expanded_ids": "⿰魚⿰耳乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "耳", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯀", + "codepoint": "U+9BC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BC0", + "status": "exact_ids", + "ids": "⿰魚系", + "canonical_ids": "⿰魚系", + "expanded_ids": "⿰魚⿱丿⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "幺", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯁", + "codepoint": "U+9BC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BC1", + "status": "exact_ids", + "ids": "⿰魚更", + "canonical_ids": "⿰魚更", + "expanded_ids": "⿰魚更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "更", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯂", + "codepoint": "U+9BC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BC2", + "status": "exact_ids", + "ids": "⿰魚酉", + "canonical_ids": "⿰魚酉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯃", + "codepoint": "U+9BC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BC3", + "status": "exact_ids", + "ids": "⿰魚吾", + "canonical_ids": "⿰魚吾", + "expanded_ids": "⿰魚⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯄", + "codepoint": "U+9BC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BC4", + "status": "exact_ids", + "ids": "⿰魚求", + "canonical_ids": "⿰魚求", + "expanded_ids": "⿰魚求", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "求", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯅", + "codepoint": "U+9BC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BC5", + "status": "exact_ids", + "ids": "⿰魚延", + "canonical_ids": "⿰魚延", + "expanded_ids": "⿰魚⿰廴⿱一止", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廴", + "止", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯆", + "codepoint": "U+9BC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BC6", + "status": "exact_ids", + "ids": "⿰魚甫", + "canonical_ids": "⿰魚甫", + "expanded_ids": "⿰魚甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甫", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯇", + "codepoint": "U+9BC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BC7", + "status": "exact_ids", + "ids": "⿰魚完", + "canonical_ids": "⿰魚完", + "expanded_ids": "⿰魚⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "宀", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯈", + "codepoint": "U+9BC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BC8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯉", + "codepoint": "U+9BC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BC9", + "status": "exact_ids", + "ids": "⿰魚里", + "canonical_ids": "⿰魚里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯊", + "codepoint": "U+9BCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BCA", + "status": "exact_ids", + "ids": "⿱沙魚", + "canonical_ids": "⿱沙魚", + "expanded_ids": "⿱⿰氵⿱小丿魚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "氵", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯋", + "codepoint": "U+9BCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BCB", + "status": "exact_ids", + "ids": "⿰魚沙", + "canonical_ids": "⿰魚沙", + "expanded_ids": "⿰魚⿰氵⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "氵", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯌", + "codepoint": "U+9BCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BCC", + "status": "exact_ids", + "ids": "⿰魚告", + "canonical_ids": "⿰魚告", + "expanded_ids": "⿰魚⿱牛口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯍", + "codepoint": "U+9BCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BCD", + "status": "exact_ids", + "ids": "⿰魚㐬", + "canonical_ids": "⿰魚㐬", + "expanded_ids": "⿰魚⿱亠⿱厶川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "厶", + "川", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯎", + "codepoint": "U+9BCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BCE", + "status": "exact_ids", + "ids": "⿰魚成", + "canonical_ids": "⿰魚成", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "成" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯏", + "codepoint": "U+9BCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BCF", + "status": "exact_ids", + "ids": "⿰魚利", + "canonical_ids": "⿰魚利", + "expanded_ids": "⿰魚⿰⿻丿木刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "刂", + "木", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯐", + "codepoint": "U+9BD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BD0", + "status": "exact_ids", + "ids": "⿰魚走", + "canonical_ids": "⿰魚走", + "expanded_ids": "⿰魚⿱土龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "魚", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯑", + "codepoint": "U+9BD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BD1", + "status": "exact_ids", + "ids": "⿰魚希", + "canonical_ids": "⿰魚希", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "魚" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯒", + "codepoint": "U+9BD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BD2", + "status": "exact_ids", + "ids": "⿰魚甬", + "canonical_ids": "⿰魚甬", + "expanded_ids": "⿰魚⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "魚", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯓", + "codepoint": "U+9BD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BD3", + "status": "exact_ids", + "ids": "⿰魚身", + "canonical_ids": "⿰魚身", + "expanded_ids": "⿰魚身", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "身", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯔", + "codepoint": "U+9BD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BD4", + "status": "exact_ids", + "ids": "⿰魚甾", + "canonical_ids": "⿰魚甾", + "expanded_ids": "⿰魚⿱巛田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "田", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯕", + "codepoint": "U+9BD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BD5", + "status": "exact_ids", + "ids": "⿰魚其", + "canonical_ids": "⿰魚其", + "expanded_ids": "⿰魚其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯖", + "codepoint": "U+9BD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BD6", + "status": "exact_ids", + "ids": "⿰魚青", + "canonical_ids": "⿰魚青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "魚" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯗", + "codepoint": "U+9BD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BD7", + "status": "exact_ids", + "ids": "⿱羌魚", + "canonical_ids": "⿱羌魚", + "expanded_ids": "⿱⿱羊儿魚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "羊", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯘", + "codepoint": "U+9BD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BD8", + "status": "exact_ids", + "ids": "⿰魚委", + "canonical_ids": "⿰魚委", + "expanded_ids": "⿰魚⿱⿻丿木女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "女", + "木", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯙", + "codepoint": "U+9BD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BD9", + "status": "exact_ids", + "ids": "⿰魚享", + "canonical_ids": "⿰魚享", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯚", + "codepoint": "U+9BDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BDA", + "status": "exact_ids", + "ids": "⿰魚季", + "canonical_ids": "⿰魚季", + "expanded_ids": "⿰魚⿱⿻丿木子", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "子", + "木", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯛", + "codepoint": "U+9BDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BDB", + "status": "exact_ids", + "ids": "⿰魚周", + "canonical_ids": "⿰魚周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯜", + "codepoint": "U+9BDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BDC", + "status": "exact_ids", + "ids": "⿰魚妾", + "canonical_ids": "⿰魚妾", + "expanded_ids": "⿰魚⿱立女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "立", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯝", + "codepoint": "U+9BDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BDD", + "status": "exact_ids", + "ids": "⿰魚固", + "canonical_ids": "⿰魚固", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "固" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯞", + "codepoint": "U+9BDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BDE", + "status": "exact_ids", + "ids": "⿰魚帚", + "canonical_ids": "⿰魚帚", + "expanded_ids": "⿰魚⿳彐冖⿻冂丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "冂", + "冖", + "彐", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯟", + "codepoint": "U+9BDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BDF", + "status": "exact_ids", + "ids": "⿰魚東", + "canonical_ids": "⿰魚東", + "expanded_ids": "⿰魚⿻木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯠", + "codepoint": "U+9BE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BE0", + "status": "exact_ids", + "ids": "⿰魚來", + "canonical_ids": "⿰魚來", + "expanded_ids": "⿰魚⿻木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "木", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯡", + "codepoint": "U+9BE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BE1", + "status": "exact_ids", + "ids": "⿰魚非", + "canonical_ids": "⿰魚非", + "expanded_ids": "⿰魚非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "非", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯢", + "codepoint": "U+9BE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BE2", + "status": "exact_ids", + "ids": "⿰魚兒", + "canonical_ids": "⿰魚兒", + "expanded_ids": "⿰魚⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "臼", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯣", + "codepoint": "U+9BE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BE3", + "status": "exact_ids", + "ids": "⿰魚易", + "canonical_ids": "⿰魚易", + "expanded_ids": "⿰魚⿱日勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "日", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯤", + "codepoint": "U+9BE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BE4", + "status": "exact_ids", + "ids": "⿰魚昆", + "canonical_ids": "⿰魚昆", + "expanded_ids": "⿰魚⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯥", + "codepoint": "U+9BE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BE5", + "status": "exact_ids", + "ids": "⿰魚坴", + "canonical_ids": "⿰魚坴", + "expanded_ids": "⿰魚⿱⿱土儿土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯦", + "codepoint": "U+9BE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BE6", + "status": "exact_ids", + "ids": "⿰魚咎", + "canonical_ids": "⿰魚咎", + "expanded_ids": "⿰魚⿱⿰夂卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "夂", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯧", + "codepoint": "U+9BE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BE7", + "status": "exact_ids", + "ids": "⿰魚昌", + "canonical_ids": "⿰魚昌", + "expanded_ids": "⿰魚⿱日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯨", + "codepoint": "U+9BE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BE8", + "status": "exact_ids", + "ids": "⿰魚京", + "canonical_ids": "⿰魚京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯩", + "codepoint": "U+9BE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BE9", + "status": "exact_ids", + "ids": "⿰魚侖", + "canonical_ids": "⿰魚侖", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "魚" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯪", + "codepoint": "U+9BEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BEA", + "status": "exact_ids", + "ids": "⿰魚夌", + "canonical_ids": "⿰魚夌", + "expanded_ids": "⿰魚⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯫", + "codepoint": "U+9BEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BEB", + "status": "exact_ids", + "ids": "⿰魚取", + "canonical_ids": "⿰魚取", + "expanded_ids": "⿰魚⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "耳", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯬", + "codepoint": "U+9BEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BEC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯭", + "codepoint": "U+9BED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BED", + "status": "exact_ids", + "ids": "⿰魚孟", + "canonical_ids": "⿰魚孟", + "expanded_ids": "⿰魚⿱子皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "子", + "皿", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯮", + "codepoint": "U+9BEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BEE", + "status": "exact_ids", + "ids": "⿰魚宗", + "canonical_ids": "⿰魚宗", + "expanded_ids": "⿰魚⿱宀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯯", + "codepoint": "U+9BEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BEF", + "status": "exact_ids", + "ids": "⿰魚制", + "canonical_ids": "⿰魚制", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "制" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯰", + "codepoint": "U+9BF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BF0", + "status": "exact_ids", + "ids": "⿰魚念", + "canonical_ids": "⿰魚念", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "心", + "魚" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯱", + "codepoint": "U+9BF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BF1", + "status": "exact_ids", + "ids": "⿰魚虎", + "canonical_ids": "⿰魚虎", + "expanded_ids": "⿰魚⿱虍儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "虍", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯲", + "codepoint": "U+9BF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BF2", + "status": "exact_ids", + "ids": "⿰魚於", + "canonical_ids": "⿰魚於", + "expanded_ids": "⿰魚⿰方⿱人冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冫", + "方", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯳", + "codepoint": "U+9BF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BF3", + "status": "exact_ids", + "ids": "⿰魚底", + "canonical_ids": "⿰魚底", + "expanded_ids": "⿰魚⿱广⿻氏丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "广", + "氏", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯴", + "codepoint": "U+9BF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BF4", + "status": "exact_ids", + "ids": "⿰魚虱", + "canonical_ids": "⿰魚虱", + "expanded_ids": "⿰魚⿱乁⿱丿虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乁", + "虫", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯵", + "codepoint": "U+9BF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BF5", + "status": "exact_ids", + "ids": "⿰魚参", + "canonical_ids": "⿰魚参", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "参" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯶", + "codepoint": "U+9BF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BF6", + "status": "exact_ids", + "ids": "⿰魚軍", + "canonical_ids": "⿰魚軍", + "expanded_ids": "⿰魚⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "車", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯷", + "codepoint": "U+9BF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BF7", + "status": "exact_ids", + "ids": "⿰魚是", + "canonical_ids": "⿰魚是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "魚" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯸", + "codepoint": "U+9BF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BF8", + "status": "exact_ids", + "ids": "⿰魚侯", + "canonical_ids": "⿰魚侯", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "侯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯹", + "codepoint": "U+9BF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BF9", + "status": "exact_ids", + "ids": "⿰魚星", + "canonical_ids": "⿰魚星", + "expanded_ids": "⿰魚⿱日⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "牛", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯺", + "codepoint": "U+9BFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BFA", + "status": "exact_ids", + "ids": "⿰魚者", + "canonical_ids": "⿰魚者", + "expanded_ids": "⿰魚⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯻", + "codepoint": "U+9BFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BFB", + "status": "exact_ids", + "ids": "⿰魚剌", + "canonical_ids": "⿰魚剌", + "expanded_ids": "⿰魚⿰⿻木口刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "口", + "木", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯼", + "codepoint": "U+9BFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BFC", + "status": "exact_ids", + "ids": "⿰魚㚇", + "canonical_ids": "⿰魚㚇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "夊", + "魚" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯽", + "codepoint": "U+9BFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BFD", + "status": "exact_ids", + "ids": "⿰魚即", + "canonical_ids": "⿰魚即", + "expanded_ids": "⿰魚⿰艮卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "艮", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯾", + "codepoint": "U+9BFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BFE", + "status": "exact_ids", + "ids": "⿰魚便", + "canonical_ids": "⿰魚便", + "expanded_ids": "⿰魚⿰亻更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "更", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鯿", + "codepoint": "U+9BFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9BFF", + "status": "exact_ids", + "ids": "⿰魚扁", + "canonical_ids": "⿰魚扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "魚" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰀", + "codepoint": "U+9C00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C00", + "status": "exact_ids", + "ids": "⿰魚爰", + "canonical_ids": "⿰魚爰", + "expanded_ids": "⿰魚⿱爫⿱丿⿱⿻丿一又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "爫", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰁", + "codepoint": "U+9C01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C01", + "status": "exact_ids", + "ids": "⿰魚泉", + "canonical_ids": "⿰魚泉", + "expanded_ids": "⿰魚⿱⿻日丶水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "水", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰂", + "codepoint": "U+9C02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C02", + "status": "exact_ids", + "ids": "⿰魚則", + "canonical_ids": "⿰魚則", + "expanded_ids": "⿰魚⿰⿱目八刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刂", + "目", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰃", + "codepoint": "U+9C03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C03", + "status": "exact_ids", + "ids": "⿰魚畏", + "canonical_ids": "⿰魚畏", + "expanded_ids": "⿰魚⿱田氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氏", + "田", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰄", + "codepoint": "U+9C04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C04", + "status": "exact_ids", + "ids": "⿰魚威", + "canonical_ids": "⿰魚威", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "威" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰅", + "codepoint": "U+9C05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C05", + "status": "exact_ids", + "ids": "⿰魚禺", + "canonical_ids": "⿰魚禺", + "expanded_ids": "⿰魚⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "禸", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰆", + "codepoint": "U+9C06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C06", + "status": "exact_ids", + "ids": "⿰魚春", + "canonical_ids": "⿰魚春", + "expanded_ids": "⿰魚⿱𡗗日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "魚", + "𡗗" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰇", + "codepoint": "U+9C07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C07", + "status": "exact_ids", + "ids": "⿰魚柔", + "canonical_ids": "⿰魚柔", + "expanded_ids": "⿰魚⿱矛木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "矛", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰈", + "codepoint": "U+9C08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C08", + "status": "exact_ids", + "ids": "⿰魚枼", + "canonical_ids": "⿰魚枼", + "expanded_ids": "⿰魚⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰉", + "codepoint": "U+9C09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C09", + "status": "exact_ids", + "ids": "⿰魚皇", + "canonical_ids": "⿰魚皇", + "expanded_ids": "⿰魚⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "王", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰊", + "codepoint": "U+9C0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C0A", + "status": "exact_ids", + "ids": "⿰魚柬", + "canonical_ids": "⿰魚柬", + "expanded_ids": "⿰魚柬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "柬", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰋", + "codepoint": "U+9C0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C0B", + "status": "exact_ids", + "ids": "⿰魚匽", + "canonical_ids": "⿰魚匽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "匽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰌", + "codepoint": "U+9C0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C0C", + "status": "exact_ids", + "ids": "⿰魚酋", + "canonical_ids": "⿰魚酋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "魚" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰍", + "codepoint": "U+9C0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C0D", + "status": "exact_ids", + "ids": "⿰魚秋", + "canonical_ids": "⿰魚秋", + "expanded_ids": "⿰魚⿰⿻丿木火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "火", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰎", + "codepoint": "U+9C0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C0E", + "status": "exact_ids", + "ids": "⿰魚建", + "canonical_ids": "⿰魚建", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廴", + "魚" + ], + "unresolved_leaves": [ + "聿" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰏", + "codepoint": "U+9C0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C0F", + "status": "exact_ids", + "ids": "⿰魚畐", + "canonical_ids": "⿰魚畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰐", + "codepoint": "U+9C10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C10", + "status": "exact_ids", + "ids": "⿰魚咢", + "canonical_ids": "⿰魚咢", + "expanded_ids": "⿰魚⿱⿰口口⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "口", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰑", + "codepoint": "U+9C11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C11", + "status": "exact_ids", + "ids": "⿰魚昜", + "canonical_ids": "⿰魚昜", + "expanded_ids": "⿰魚⿱⿱日一勿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰒", + "codepoint": "U+9C12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C12", + "status": "exact_ids", + "ids": "⿰魚复", + "canonical_ids": "⿰魚复", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "复" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰓", + "codepoint": "U+9C13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C13", + "status": "exact_ids", + "ids": "⿰魚思", + "canonical_ids": "⿰魚思", + "expanded_ids": "⿰魚⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "田", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰔", + "codepoint": "U+9C14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C14", + "status": "exact_ids", + "ids": "⿰魚咸", + "canonical_ids": "⿰魚咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰕", + "codepoint": "U+9C15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C15", + "status": "exact_ids", + "ids": "⿰魚叚", + "canonical_ids": "⿰魚叚", + "expanded_ids": "⿰魚叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰖", + "codepoint": "U+9C16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C16", + "status": "exact_ids", + "ids": "⿰魚𤯝", + "canonical_ids": "⿰魚𤯝", + "expanded_ids": "⿰魚⿱⿱牛一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "月", + "牛", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰗", + "codepoint": "U+9C17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C17", + "status": "exact_ids", + "ids": "⿰魚胡", + "canonical_ids": "⿰魚胡", + "expanded_ids": "⿰魚⿰⿻十口月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "月", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰘", + "codepoint": "U+9C18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C18", + "status": "exact_ids", + "ids": "⿰魚室", + "canonical_ids": "⿰魚室", + "expanded_ids": "⿰魚⿱宀⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "宀", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰙", + "codepoint": "U+9C19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C19", + "status": "exact_ids", + "ids": "⿰魚若", + "canonical_ids": "⿰魚若", + "expanded_ids": "⿰魚⿱艹⿱⿻丿一口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "艹", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰚", + "codepoint": "U+9C1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C1A", + "status": "exact_ids", + "ids": "⿰魚宣", + "canonical_ids": "⿰魚宣", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "宀", + "魚" + ], + "unresolved_leaves": [ + "亘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰛", + "codepoint": "U+9C1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C1B", + "status": "exact_ids", + "ids": "⿰魚昷", + "canonical_ids": "⿰魚昷", + "expanded_ids": "⿰魚⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "皿", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰜", + "codepoint": "U+9C1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C1C", + "status": "exact_ids", + "ids": "⿰魚兼", + "canonical_ids": "⿰魚兼", + "expanded_ids": "⿰魚兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰝", + "codepoint": "U+9C1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C1D", + "status": "exact_ids", + "ids": "⿰魚高", + "canonical_ids": "⿰魚高", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰞", + "codepoint": "U+9C1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C1E", + "status": "exact_ids", + "ids": "⿰魚烏", + "canonical_ids": "⿰魚烏", + "expanded_ids": "⿰魚烏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "烏", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰟", + "codepoint": "U+9C1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C1F", + "status": "exact_ids", + "ids": "⿰魚旁", + "canonical_ids": "⿰魚旁", + "expanded_ids": "⿰魚⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "方", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰠", + "codepoint": "U+9C20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C20", + "status": "exact_ids", + "ids": "⿰魚蚤", + "canonical_ids": "⿰魚蚤", + "expanded_ids": "⿰魚⿱⿻又丶虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "又", + "虫", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰡", + "codepoint": "U+9C21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C21", + "status": "exact_ids", + "ids": "⿰魚留", + "canonical_ids": "⿰魚留", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰢", + "codepoint": "U+9C22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C22", + "status": "exact_ids", + "ids": "⿰魚馬", + "canonical_ids": "⿰魚馬", + "expanded_ids": "⿰魚馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰣", + "codepoint": "U+9C23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C23", + "status": "exact_ids", + "ids": "⿰魚時", + "canonical_ids": "⿰魚時", + "expanded_ids": "⿰魚⿰日⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "日", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰤", + "codepoint": "U+9C24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C24", + "status": "exact_ids", + "ids": "⿰魚師", + "canonical_ids": "⿰魚師", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "師" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰥", + "codepoint": "U+9C25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C25", + "status": "exact_ids", + "ids": "⿰魚眔", + "canonical_ids": "⿰魚眔", + "expanded_ids": "⿰魚⿱罒氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氺", + "罒", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰦", + "codepoint": "U+9C26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C26", + "status": "exact_ids", + "ids": "⿰魚兹", + "canonical_ids": "⿰魚兹", + "expanded_ids": "⿰魚⿱䒑⿰幺幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "幺", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰧", + "codepoint": "U+9C27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C27", + "status": "exact_ids", + "ids": "⿰月鮝", + "canonical_ids": "⿰月鮝", + "expanded_ids": "⿰月⿱⿱丷⿻一大魚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "月", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰨", + "codepoint": "U+9C28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C28", + "status": "exact_ids", + "ids": "⿰魚𦐇", + "canonical_ids": "⿰魚𦐇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "魚" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰩", + "codepoint": "U+9C29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C29", + "status": "exact_ids", + "ids": "⿰魚䍃", + "canonical_ids": "⿰魚䍃", + "expanded_ids": "⿰魚⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爪", + "缶", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰪", + "codepoint": "U+9C2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C2A", + "status": "exact_ids", + "ids": "⿰魚盍", + "canonical_ids": "⿰魚盍", + "expanded_ids": "⿰魚⿱⿱土厶皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "皿", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰫", + "codepoint": "U+9C2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C2B", + "status": "exact_ids", + "ids": "⿰魚容", + "canonical_ids": "⿰魚容", + "expanded_ids": "⿰魚⿱宀⿱八⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "宀", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰬", + "codepoint": "U+9C2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C2C", + "status": "exact_ids", + "ids": "⿰魚虔", + "canonical_ids": "⿰魚虔", + "expanded_ids": "⿰魚⿱虍文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "虍", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰭", + "codepoint": "U+9C2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C2D", + "status": "exact_ids", + "ids": "⿰魚耆", + "canonical_ids": "⿰魚耆", + "expanded_ids": "⿰魚⿱⿱⿻土丿匕日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "日", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰮", + "codepoint": "U+9C2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C2E", + "status": "exact_ids", + "ids": "⿰魚𥁕", + "canonical_ids": "⿰魚𥁕", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "魚" + ], + "unresolved_leaves": [ + "囚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰯", + "codepoint": "U+9C2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C2F", + "status": "exact_ids", + "ids": "⿰魚弱", + "canonical_ids": "⿰魚弱", + "expanded_ids": "⿰魚⿰⿱弓二⿱弓二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "弓", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰰", + "codepoint": "U+9C30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C30", + "status": "exact_ids", + "ids": "⿰魚神", + "canonical_ids": "⿰魚神", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "礻", + "魚" + ], + "unresolved_leaves": [ + "申" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰱", + "codepoint": "U+9C31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C31", + "status": "exact_ids", + "ids": "⿰魚連", + "canonical_ids": "⿰魚連", + "expanded_ids": "⿰魚⿰辶車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "車", + "辶", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰲", + "codepoint": "U+9C32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C32", + "status": "exact_ids", + "ids": "⿱敖魚", + "canonical_ids": "⿱敖魚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰳", + "codepoint": "U+9C33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C33", + "status": "exact_ids", + "ids": "⿰魚勒", + "canonical_ids": "⿰魚勒", + "expanded_ids": "⿰魚⿰革力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "革", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰴", + "codepoint": "U+9C34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C34", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰵", + "codepoint": "U+9C35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C35", + "status": "exact_ids", + "ids": "⿱敏魚", + "canonical_ids": "⿱敏魚", + "expanded_ids": "⿱⿰⿱⿻丿一母攵魚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "攵", + "母", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰶", + "codepoint": "U+9C36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C36", + "status": "exact_ids", + "ids": "⿰魚祭", + "canonical_ids": "⿰魚祭", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "祭" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰷", + "codepoint": "U+9C37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C37", + "status": "exact_ids", + "ids": "⿰魚條", + "canonical_ids": "⿰魚條", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "條" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰸", + "codepoint": "U+9C38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C38", + "status": "exact_ids", + "ids": "⿰魚區", + "canonical_ids": "⿰魚區", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰹", + "codepoint": "U+9C39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C39", + "status": "exact_ids", + "ids": "⿰魚堅", + "canonical_ids": "⿰魚堅", + "expanded_ids": "⿰魚⿱⿰臣又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "土", + "臣", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰺", + "codepoint": "U+9C3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C3A", + "status": "exact_ids", + "ids": "⿰魚參", + "canonical_ids": "⿰魚參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰻", + "codepoint": "U+9C3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C3B", + "status": "exact_ids", + "ids": "⿰魚曼", + "canonical_ids": "⿰魚曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰼", + "codepoint": "U+9C3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C3C", + "status": "exact_ids", + "ids": "⿰魚習", + "canonical_ids": "⿰魚習", + "expanded_ids": "⿰魚⿱⿰习习⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "习", + "日", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰽", + "codepoint": "U+9C3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C3D", + "status": "exact_ids", + "ids": "⿰魚曹", + "canonical_ids": "⿰魚曹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "曹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰾", + "codepoint": "U+9C3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C3E", + "status": "exact_ids", + "ids": "⿰魚票", + "canonical_ids": "⿰魚票", + "expanded_ids": "⿰魚⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "覀", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鰿", + "codepoint": "U+9C3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C3F", + "status": "exact_ids", + "ids": "⿰魚責", + "canonical_ids": "⿰魚責", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "魚" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱀", + "codepoint": "U+9C40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C40", + "status": "exact_ids", + "ids": "⿱既魚", + "canonical_ids": "⿱既魚", + "expanded_ids": "⿱⿰艮旡魚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "旡", + "艮", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱁", + "codepoint": "U+9C41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C41", + "status": "exact_ids", + "ids": "⿰魚逐", + "canonical_ids": "⿰魚逐", + "expanded_ids": "⿰魚⿰辶豕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "豕", + "辶", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱂", + "codepoint": "U+9C42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C42", + "status": "exact_ids", + "ids": "⿰魚將", + "canonical_ids": "⿰魚將", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "將" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱃", + "codepoint": "U+9C43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C43", + "status": "exact_ids", + "ids": "⿰魚羞", + "canonical_ids": "⿰魚羞", + "expanded_ids": "⿰魚⿱羊丑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丑", + "羊", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱄", + "codepoint": "U+9C44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C44", + "status": "exact_ids", + "ids": "⿰魚專", + "canonical_ids": "⿰魚專", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "寸", + "魚" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱅", + "codepoint": "U+9C45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C45", + "status": "exact_ids", + "ids": "⿰魚庸", + "canonical_ids": "⿰魚庸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "庸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱆", + "codepoint": "U+9C46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C46", + "status": "exact_ids", + "ids": "⿰魚章", + "canonical_ids": "⿰魚章", + "expanded_ids": "⿰魚⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "立", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱇", + "codepoint": "U+9C47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C47", + "status": "exact_ids", + "ids": "⿰魚康", + "canonical_ids": "⿰魚康", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "魚" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱈", + "codepoint": "U+9C48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C48", + "status": "exact_ids", + "ids": "⿰魚雪", + "canonical_ids": "⿰魚雪", + "expanded_ids": "⿰魚⿱雨彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "雨", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱉", + "codepoint": "U+9C49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C49", + "status": "exact_ids", + "ids": "⿱敝魚", + "canonical_ids": "⿱敝魚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "魚" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱊", + "codepoint": "U+9C4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C4A", + "status": "exact_ids", + "ids": "⿰魚矞", + "canonical_ids": "⿰魚矞", + "expanded_ids": "⿰魚⿱矛⿱冂⿱八口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "矛", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱋", + "codepoint": "U+9C4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C4B", + "status": "exact_ids", + "ids": "⿰魚虚", + "canonical_ids": "⿰魚虚", + "expanded_ids": "⿰魚⿱虍业", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "虍", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱌", + "codepoint": "U+9C4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C4C", + "status": "exact_ids", + "ids": "⿰魚象", + "canonical_ids": "⿰魚象", + "expanded_ids": "⿰魚象", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "象", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱍", + "codepoint": "U+9C4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C4D", + "status": "exact_ids", + "ids": "⿰魚發", + "canonical_ids": "⿰魚發", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "發" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱎", + "codepoint": "U+9C4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C4E", + "status": "exact_ids", + "ids": "⿰魚喬", + "canonical_ids": "⿰魚喬", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "魚" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱏", + "codepoint": "U+9C4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C4F", + "status": "exact_ids", + "ids": "⿰魚覃", + "canonical_ids": "⿰魚覃", + "expanded_ids": "⿰魚⿱襾⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "襾", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱐", + "codepoint": "U+9C50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C50", + "status": "exact_ids", + "ids": "⿰魚肅", + "canonical_ids": "⿰魚肅", + "expanded_ids": "⿰魚⿻肀𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "肀", + "魚", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 118, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱑", + "codepoint": "U+9C51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C51", + "status": "exact_ids", + "ids": "⿰魚黄", + "canonical_ids": "⿰魚黄", + "expanded_ids": "⿰魚黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱒", + "codepoint": "U+9C52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C52", + "status": "exact_ids", + "ids": "⿰魚尊", + "canonical_ids": "⿰魚尊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "寸", + "魚" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱓", + "codepoint": "U+9C53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C53", + "status": "exact_ids", + "ids": "⿰魚單", + "canonical_ids": "⿰魚單", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱔", + "codepoint": "U+9C54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C54", + "status": "exact_ids", + "ids": "⿰魚善", + "canonical_ids": "⿰魚善", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "善" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱕", + "codepoint": "U+9C55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C55", + "status": "exact_ids", + "ids": "⿰魚番", + "canonical_ids": "⿰魚番", + "expanded_ids": "⿰魚⿱⿱丿⿻木丷田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "木", + "田", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱖", + "codepoint": "U+9C56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C56", + "status": "exact_ids", + "ids": "⿰魚厥", + "canonical_ids": "⿰魚厥", + "expanded_ids": "⿰魚⿱厂⿰⿱䒑屮欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "厂", + "屮", + "欠", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱗", + "codepoint": "U+9C57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C57", + "status": "exact_ids", + "ids": "⿰魚粦", + "canonical_ids": "⿰魚粦", + "expanded_ids": "⿰魚⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "木", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱘", + "codepoint": "U+9C58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C58", + "status": "exact_ids", + "ids": "⿰魚尋", + "canonical_ids": "⿰魚尋", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "尋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱙", + "codepoint": "U+9C59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C59", + "status": "exact_ids", + "ids": "⿰魚堯", + "canonical_ids": "⿰魚堯", + "expanded_ids": "⿰魚⿱⿱土⿰土土⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "土", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱚", + "codepoint": "U+9C5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C5A", + "status": "exact_ids", + "ids": "⿰魚喜", + "canonical_ids": "⿰魚喜", + "expanded_ids": "⿰魚⿱⿱十豆口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "豆", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱛", + "codepoint": "U+9C5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C5B", + "status": "exact_ids", + "ids": "⿰魚曾", + "canonical_ids": "⿰魚曾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱜", + "codepoint": "U+9C5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C5C", + "status": "exact_ids", + "ids": "⿰魚鄉", + "canonical_ids": "⿰魚鄉", + "expanded_ids": "⿰魚⿰乡⿰⿻丶艮阝", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "乡", + "艮", + "阝", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱝", + "codepoint": "U+9C5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C5D", + "status": "exact_ids", + "ids": "⿰魚賁", + "canonical_ids": "⿰魚賁", + "expanded_ids": "⿰魚⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "廾", + "目", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱞", + "codepoint": "U+9C5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C5E", + "status": "exact_ids", + "ids": "⿰魚睘", + "canonical_ids": "⿰魚睘", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱟", + "codepoint": "U+9C5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C5F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱠", + "codepoint": "U+9C60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C60", + "status": "exact_ids", + "ids": "⿰魚會", + "canonical_ids": "⿰魚會", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "魚" + ], + "unresolved_leaves": [ + "曾" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱡", + "codepoint": "U+9C61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C61", + "status": "exact_ids", + "ids": "⿰魚賊", + "canonical_ids": "⿰魚賊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目", + "魚" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱢", + "codepoint": "U+9C62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C62", + "status": "exact_ids", + "ids": "⿰魚喿", + "canonical_ids": "⿰魚喿", + "expanded_ids": "⿰魚⿱⿱口⿰口口木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱣", + "codepoint": "U+9C63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C63", + "status": "exact_ids", + "ids": "⿰魚亶", + "canonical_ids": "⿰魚亶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "日", + "魚" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱤", + "codepoint": "U+9C64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C64", + "status": "exact_ids", + "ids": "⿰魚感", + "canonical_ids": "⿰魚感", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "魚" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱥", + "codepoint": "U+9C65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C65", + "status": "exact_ids", + "ids": "⿰魚歲", + "canonical_ids": "⿰魚歲", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "歲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱦", + "codepoint": "U+9C66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C66", + "status": "exact_ids", + "ids": "⿰魚黽", + "canonical_ids": "⿰魚黽", + "expanded_ids": "⿰魚黽", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚", + "黽" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱧", + "codepoint": "U+9C67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C67", + "status": "exact_ids", + "ids": "⿰魚豊", + "canonical_ids": "⿰魚豊", + "expanded_ids": "⿰魚⿱曲豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "豆", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱨", + "codepoint": "U+9C68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C68", + "status": "exact_ids", + "ids": "⿰魚嘗", + "canonical_ids": "⿰魚嘗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "小", + "日", + "魚" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱩", + "codepoint": "U+9C69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C69", + "status": "exact_ids", + "ids": "⿰魚雷", + "canonical_ids": "⿰魚雷", + "expanded_ids": "⿰魚⿱雨田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "雨", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱪", + "codepoint": "U+9C6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C6A", + "status": "exact_ids", + "ids": "⿰魚暑", + "canonical_ids": "⿰魚暑", + "expanded_ids": "⿰魚⿱日⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱫", + "codepoint": "U+9C6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C6B", + "status": "exact_ids", + "ids": "⿰魚愛", + "canonical_ids": "⿰魚愛", + "expanded_ids": "⿰魚⿳爫冖⿱心夊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "夊", + "心", + "爫", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱬", + "codepoint": "U+9C6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C6C", + "status": "exact_ids", + "ids": "⿰魚需", + "canonical_ids": "⿰魚需", + "expanded_ids": "⿰魚⿱雨而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "而", + "雨", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱭", + "codepoint": "U+9C6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C6D", + "status": "exact_ids", + "ids": "⿰魚齊", + "canonical_ids": "⿰魚齊", + "expanded_ids": "⿰魚齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱮", + "codepoint": "U+9C6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C6E", + "status": "exact_ids", + "ids": "⿰魚與", + "canonical_ids": "⿰魚與", + "expanded_ids": "⿰魚與", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "與", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱯", + "codepoint": "U+9C6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C6F", + "status": "exact_ids", + "ids": "⿰魚蒦", + "canonical_ids": "⿰魚蒦", + "expanded_ids": "⿰魚⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "艹", + "隹", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱰", + "codepoint": "U+9C70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C70", + "status": "exact_ids", + "ids": "⿰魚署", + "canonical_ids": "⿰魚署", + "expanded_ids": "⿰魚⿱罒⿱⿻土丿日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "日", + "罒", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱱", + "codepoint": "U+9C71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C71", + "status": "exact_ids", + "ids": "⿰魚厲", + "canonical_ids": "⿰魚厲", + "expanded_ids": "⿰魚⿱厂⿱艹⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "田", + "禸", + "艹", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱲", + "codepoint": "U+9C72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C72", + "status": "exact_ids", + "ids": "⿰魚巤", + "canonical_ids": "⿰魚巤", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "巤" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱳", + "codepoint": "U+9C73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C73", + "status": "exact_ids", + "ids": "⿰魚樂", + "canonical_ids": "⿰魚樂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "樂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱴", + "codepoint": "U+9C74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C74", + "status": "exact_ids", + "ids": "⿰魚蔑", + "canonical_ids": "⿰魚蔑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "艹", + "魚" + ], + "unresolved_leaves": [ + "戌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱵", + "codepoint": "U+9C75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C75", + "status": "exact_ids", + "ids": "⿰魚箴", + "canonical_ids": "⿰魚箴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "亇", + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱶", + "codepoint": "U+9C76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C76", + "status": "exact_ids", + "ids": "⿰魚養", + "canonical_ids": "⿰魚養", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [ + "養" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱷", + "codepoint": "U+9C77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C77", + "status": "exact_ids", + "ids": "⿰魚噩", + "canonical_ids": "⿰魚噩", + "expanded_ids": "⿰魚⿻王⿰⿱口口⿱口口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "王", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱸", + "codepoint": "U+9C78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C78", + "status": "exact_ids", + "ids": "⿰魚盧", + "canonical_ids": "⿰魚盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "魚" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱹", + "codepoint": "U+9C79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C79", + "status": "exact_ids", + "ids": "⿰魚雚", + "canonical_ids": "⿰魚雚", + "expanded_ids": "⿰魚⿱艹⿱⿰口口隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艹", + "隹", + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱺", + "codepoint": "U+9C7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C7A", + "status": "exact_ids", + "ids": "⿰魚麗", + "canonical_ids": "⿰魚麗", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚", + "鹿" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱻", + "codepoint": "U+9C7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C7B", + "status": "exact_ids", + "ids": "⿱魚⿰魚魚", + "canonical_ids": "⿱魚⿰魚魚", + "expanded_ids": "⿱魚⿰魚魚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱼", + "codepoint": "U+9C7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C7C", + "status": "leaf_self_fallback", + "ids": "鱼", + "canonical_ids": "鱼", + "expanded_ids": "鱼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱽", + "codepoint": "U+9C7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C7D", + "status": "exact_ids", + "ids": "⿰鱼刀", + "canonical_ids": "⿰鱼刀", + "expanded_ids": "⿰鱼刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱾", + "codepoint": "U+9C7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C7E", + "status": "exact_ids", + "ids": "⿰鱼己", + "canonical_ids": "⿰鱼己", + "expanded_ids": "⿰鱼己", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鱿", + "codepoint": "U+9C7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C7F", + "status": "exact_ids", + "ids": "⿰鱼尤", + "canonical_ids": "⿰鱼尤", + "expanded_ids": "⿰鱼尤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲀", + "codepoint": "U+9C80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C80", + "status": "exact_ids", + "ids": "⿰鱼屯", + "canonical_ids": "⿰鱼屯", + "expanded_ids": "⿰鱼屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲁", + "codepoint": "U+9C81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C81", + "status": "exact_ids", + "ids": "⿱鱼日", + "canonical_ids": "⿱鱼日", + "expanded_ids": "⿱鱼日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲂", + "codepoint": "U+9C82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C82", + "status": "exact_ids", + "ids": "⿰鱼方", + "canonical_ids": "⿰鱼方", + "expanded_ids": "⿰鱼方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲃", + "codepoint": "U+9C83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C83", + "status": "exact_ids", + "ids": "⿰鱼巴", + "canonical_ids": "⿰鱼巴", + "expanded_ids": "⿰鱼巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巴", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲄", + "codepoint": "U+9C84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C84", + "status": "exact_ids", + "ids": "⿰鱼可", + "canonical_ids": "⿰鱼可", + "expanded_ids": "⿰鱼⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲅", + "codepoint": "U+9C85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C85", + "status": "exact_ids", + "ids": "⿰鱼犮", + "canonical_ids": "⿰鱼犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲆", + "codepoint": "U+9C86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C86", + "status": "exact_ids", + "ids": "⿰鱼平", + "canonical_ids": "⿰鱼平", + "expanded_ids": "⿰鱼⿻⿱一十丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "十", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲇", + "codepoint": "U+9C87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C87", + "status": "exact_ids", + "ids": "⿰鱼占", + "canonical_ids": "⿰鱼占", + "expanded_ids": "⿰鱼⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲈", + "codepoint": "U+9C88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C88", + "status": "exact_ids", + "ids": "⿰鱼卢", + "canonical_ids": "⿰鱼卢", + "expanded_ids": "⿰鱼⿱卜尸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "尸", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲉", + "codepoint": "U+9C89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C89", + "status": "exact_ids", + "ids": "⿰鱼由", + "canonical_ids": "⿰鱼由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲊", + "codepoint": "U+9C8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C8A", + "status": "exact_ids", + "ids": "⿰鱼乍", + "canonical_ids": "⿰鱼乍", + "expanded_ids": "⿰鱼乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲋", + "codepoint": "U+9C8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C8B", + "status": "exact_ids", + "ids": "⿰鱼付", + "canonical_ids": "⿰鱼付", + "expanded_ids": "⿰鱼⿰亻寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "寸", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲌", + "codepoint": "U+9C8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C8C", + "status": "exact_ids", + "ids": "⿰鱼白", + "canonical_ids": "⿰鱼白", + "expanded_ids": "⿰鱼⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲍", + "codepoint": "U+9C8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C8D", + "status": "exact_ids", + "ids": "⿰鱼包", + "canonical_ids": "⿰鱼包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲎", + "codepoint": "U+9C8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C8E", + "status": "exact_ids", + "ids": "⿳小冖鱼", + "canonical_ids": "⿳小冖鱼", + "expanded_ids": "⿳小冖鱼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "小", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 101, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲏", + "codepoint": "U+9C8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C8F", + "status": "exact_ids", + "ids": "⿰鱼皮", + "canonical_ids": "⿰鱼皮", + "expanded_ids": "⿰鱼皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皮", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲐", + "codepoint": "U+9C90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C90", + "status": "exact_ids", + "ids": "⿰鱼台", + "canonical_ids": "⿰鱼台", + "expanded_ids": "⿰鱼⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲑", + "codepoint": "U+9C91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C91", + "status": "exact_ids", + "ids": "⿰鱼圭", + "canonical_ids": "⿰鱼圭", + "expanded_ids": "⿰鱼⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲒", + "codepoint": "U+9C92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C92", + "status": "exact_ids", + "ids": "⿰鱼吉", + "canonical_ids": "⿰鱼吉", + "expanded_ids": "⿰鱼⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲓", + "codepoint": "U+9C93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C93", + "status": "exact_ids", + "ids": "⿰鱼考", + "canonical_ids": "⿰鱼考", + "expanded_ids": "⿰鱼⿱⿻土丿丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "丿", + "土", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲔", + "codepoint": "U+9C94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C94", + "status": "exact_ids", + "ids": "⿰鱼有", + "canonical_ids": "⿰鱼有", + "expanded_ids": "⿰鱼⿱⿻丿一月", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "月", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲕", + "codepoint": "U+9C95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C95", + "status": "exact_ids", + "ids": "⿰鱼而", + "canonical_ids": "⿰鱼而", + "expanded_ids": "⿰鱼而", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "而", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲖", + "codepoint": "U+9C96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C96", + "status": "exact_ids", + "ids": "⿰鱼同", + "canonical_ids": "⿰鱼同", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼" + ], + "unresolved_leaves": [ + "同" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲗", + "codepoint": "U+9C97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C97", + "status": "exact_ids", + "ids": "⿰鱼则", + "canonical_ids": "⿰鱼则", + "expanded_ids": "⿰鱼⿰⿻冂人刂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "刂", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲘", + "codepoint": "U+9C98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C98", + "status": "exact_ids", + "ids": "⿰鱼后", + "canonical_ids": "⿰鱼后", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼" + ], + "unresolved_leaves": [ + "后" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲙", + "codepoint": "U+9C99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C99", + "status": "exact_ids", + "ids": "⿰鱼会", + "canonical_ids": "⿰鱼会", + "expanded_ids": "⿰鱼⿱⿱人一⿱一厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "厶", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲚", + "codepoint": "U+9C9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C9A", + "status": "exact_ids", + "ids": "⿰鱼齐", + "canonical_ids": "⿰鱼齐", + "expanded_ids": "⿰鱼齐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼", + "齐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲛", + "codepoint": "U+9C9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C9B", + "status": "exact_ids", + "ids": "⿰鱼交", + "canonical_ids": "⿰鱼交", + "expanded_ids": "⿰鱼⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "父", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲜", + "codepoint": "U+9C9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C9C", + "status": "exact_ids", + "ids": "⿰鱼羊", + "canonical_ids": "⿰鱼羊", + "expanded_ids": "⿰鱼羊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "羊", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲝", + "codepoint": "U+9C9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C9D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲞", + "codepoint": "U+9C9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C9E", + "status": "exact_ids", + "ids": "⿱关鱼", + "canonical_ids": "⿱关鱼", + "expanded_ids": "⿱⿱丷⿻一大鱼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "大", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲟", + "codepoint": "U+9C9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9C9F", + "status": "exact_ids", + "ids": "⿰鱼寻", + "canonical_ids": "⿰鱼寻", + "expanded_ids": "⿰鱼⿱彐寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "彐", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲠", + "codepoint": "U+9CA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CA0", + "status": "exact_ids", + "ids": "⿰鱼更", + "canonical_ids": "⿰鱼更", + "expanded_ids": "⿰鱼更", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "更", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲡", + "codepoint": "U+9CA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CA1", + "status": "exact_ids", + "ids": "⿰鱼丽", + "canonical_ids": "⿰鱼丽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲢", + "codepoint": "U+9CA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CA2", + "status": "exact_ids", + "ids": "⿰鱼连", + "canonical_ids": "⿰鱼连", + "expanded_ids": "⿰鱼⿰辶车", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "车", + "辶", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲣", + "codepoint": "U+9CA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CA3", + "status": "exact_ids", + "ids": "⿰鱼坚", + "canonical_ids": "⿰鱼坚", + "expanded_ids": "⿰鱼⿱⿰⿰丨丨又土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "又", + "土", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲤", + "codepoint": "U+9CA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CA4", + "status": "exact_ids", + "ids": "⿰鱼里", + "canonical_ids": "⿰鱼里", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼" + ], + "unresolved_leaves": [ + "里" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲥", + "codepoint": "U+9CA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CA5", + "status": "exact_ids", + "ids": "⿰鱼时", + "canonical_ids": "⿰鱼时", + "expanded_ids": "⿰鱼⿰日寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "日", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲦", + "codepoint": "U+9CA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CA6", + "status": "exact_ids", + "ids": "⿰鱼条", + "canonical_ids": "⿰鱼条", + "expanded_ids": "⿰鱼⿱夂木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夂", + "木", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲧", + "codepoint": "U+9CA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CA7", + "status": "exact_ids", + "ids": "⿰鱼系", + "canonical_ids": "⿰鱼系", + "expanded_ids": "⿰鱼⿱丿⿱幺小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "幺", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲨", + "codepoint": "U+9CA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CA8", + "status": "exact_ids", + "ids": "⿱沙鱼", + "canonical_ids": "⿱沙鱼", + "expanded_ids": "⿱⿰氵⿱小丿鱼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "小", + "氵", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲩", + "codepoint": "U+9CA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CA9", + "status": "exact_ids", + "ids": "⿰鱼完", + "canonical_ids": "⿰鱼完", + "expanded_ids": "⿰鱼⿱宀⿱一⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "宀", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲪", + "codepoint": "U+9CAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CAA", + "status": "exact_ids", + "ids": "⿰鱼君", + "canonical_ids": "⿰鱼君", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "鱼" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲫", + "codepoint": "U+9CAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CAB", + "status": "exact_ids", + "ids": "⿰鱼即", + "canonical_ids": "⿰鱼即", + "expanded_ids": "⿰鱼⿰艮卩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "艮", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲬", + "codepoint": "U+9CAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CAC", + "status": "exact_ids", + "ids": "⿰鱼甬", + "canonical_ids": "⿰鱼甬", + "expanded_ids": "⿰鱼⿱龴⿻月丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "鱼", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲭", + "codepoint": "U+9CAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CAD", + "status": "exact_ids", + "ids": "⿰鱼青", + "canonical_ids": "⿰鱼青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "鱼" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲮", + "codepoint": "U+9CAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CAE", + "status": "exact_ids", + "ids": "⿰鱼夌", + "canonical_ids": "⿰鱼夌", + "expanded_ids": "⿰鱼⿱⿱土儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "夂", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲯", + "codepoint": "U+9CAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CAF", + "status": "exact_ids", + "ids": "⿰鱼其", + "canonical_ids": "⿰鱼其", + "expanded_ids": "⿰鱼其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲰", + "codepoint": "U+9CB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CB0", + "status": "exact_ids", + "ids": "⿰鱼取", + "canonical_ids": "⿰鱼取", + "expanded_ids": "⿰鱼⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "耳", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲱", + "codepoint": "U+9CB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CB1", + "status": "exact_ids", + "ids": "⿰鱼非", + "canonical_ids": "⿰鱼非", + "expanded_ids": "⿰鱼非", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "非", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲲", + "codepoint": "U+9CB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CB2", + "status": "exact_ids", + "ids": "⿰鱼昆", + "canonical_ids": "⿰鱼昆", + "expanded_ids": "⿰鱼⿱日⿰匕匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲳", + "codepoint": "U+9CB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CB3", + "status": "exact_ids", + "ids": "⿰鱼昌", + "canonical_ids": "⿰鱼昌", + "expanded_ids": "⿰鱼⿱日日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲴", + "codepoint": "U+9CB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CB4", + "status": "exact_ids", + "ids": "⿰鱼固", + "canonical_ids": "⿰鱼固", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼" + ], + "unresolved_leaves": [ + "固" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲵", + "codepoint": "U+9CB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CB5", + "status": "exact_ids", + "ids": "⿰鱼兒", + "canonical_ids": "⿰鱼兒", + "expanded_ids": "⿰鱼⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "臼", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲶", + "codepoint": "U+9CB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CB6", + "status": "exact_ids", + "ids": "⿰鱼念", + "canonical_ids": "⿰鱼念", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "心", + "鱼" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲷", + "codepoint": "U+9CB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CB7", + "status": "exact_ids", + "ids": "⿰鱼周", + "canonical_ids": "⿰鱼周", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲸", + "codepoint": "U+9CB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CB8", + "status": "exact_ids", + "ids": "⿰鱼京", + "canonical_ids": "⿰鱼京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲹", + "codepoint": "U+9CB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CB9", + "status": "exact_ids", + "ids": "⿰鱼参", + "canonical_ids": "⿰鱼参", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼" + ], + "unresolved_leaves": [ + "参" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲺", + "codepoint": "U+9CBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CBA", + "status": "exact_ids", + "ids": "⿰鱼虱", + "canonical_ids": "⿰鱼虱", + "expanded_ids": "⿰鱼⿱乁⿱丿虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "乁", + "虫", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲻", + "codepoint": "U+9CBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CBB", + "status": "exact_ids", + "ids": "⿰鱼甾", + "canonical_ids": "⿰鱼甾", + "expanded_ids": "⿰鱼⿱巛田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "田", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲼", + "codepoint": "U+9CBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CBC", + "status": "exact_ids", + "ids": "⿰鱼贲", + "canonical_ids": "⿰鱼贲", + "expanded_ids": "⿰鱼⿱⿱十廾⿻冂人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "十", + "廾", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲽", + "codepoint": "U+9CBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CBD", + "status": "exact_ids", + "ids": "⿰鱼枼", + "canonical_ids": "⿰鱼枼", + "expanded_ids": "⿰鱼⿱世木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "木", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲾", + "codepoint": "U+9CBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CBE", + "status": "exact_ids", + "ids": "⿰鱼畐", + "canonical_ids": "⿰鱼畐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鲿", + "codepoint": "U+9CBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CBF", + "status": "exact_ids", + "ids": "⿰鱼尝", + "canonical_ids": "⿰鱼尝", + "expanded_ids": "⿰鱼⿳小冖⿱二厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "冖", + "厶", + "小", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳀", + "codepoint": "U+9CC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CC0", + "status": "exact_ids", + "ids": "⿰鱼是", + "canonical_ids": "⿰鱼是", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "鱼" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳁", + "codepoint": "U+9CC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CC1", + "status": "exact_ids", + "ids": "⿰鱼昷", + "canonical_ids": "⿰鱼昷", + "expanded_ids": "⿰鱼⿱日皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "皿", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳂", + "codepoint": "U+9CC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CC2", + "status": "exact_ids", + "ids": "⿰鱼畏", + "canonical_ids": "⿰鱼畏", + "expanded_ids": "⿰鱼⿱田氏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氏", + "田", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳃", + "codepoint": "U+9CC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CC3", + "status": "exact_ids", + "ids": "⿰鱼思", + "canonical_ids": "⿰鱼思", + "expanded_ids": "⿰鱼⿱田心", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "田", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳄", + "codepoint": "U+9CC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CC4", + "status": "exact_ids", + "ids": "⿰鱼咢", + "canonical_ids": "⿰鱼咢", + "expanded_ids": "⿰鱼⿱⿰口口⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "口", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳅", + "codepoint": "U+9CC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CC5", + "status": "exact_ids", + "ids": "⿰鱼秋", + "canonical_ids": "⿰鱼秋", + "expanded_ids": "⿰鱼⿰⿻丿木火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "火", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳆", + "codepoint": "U+9CC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CC6", + "status": "exact_ids", + "ids": "⿰鱼复", + "canonical_ids": "⿰鱼复", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼" + ], + "unresolved_leaves": [ + "复" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳇", + "codepoint": "U+9CC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CC7", + "status": "exact_ids", + "ids": "⿰鱼皇", + "canonical_ids": "⿰鱼皇", + "expanded_ids": "⿰鱼⿱⿻日丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "王", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳈", + "codepoint": "U+9CC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CC8", + "status": "exact_ids", + "ids": "⿰鱼泉", + "canonical_ids": "⿰鱼泉", + "expanded_ids": "⿰鱼⿱⿻日丶水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "日", + "水", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳉", + "codepoint": "U+9CC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CC9", + "status": "exact_ids", + "ids": "⿰鱼将", + "canonical_ids": "⿰鱼将", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼" + ], + "unresolved_leaves": [ + "将" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳊", + "codepoint": "U+9CCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CCA", + "status": "exact_ids", + "ids": "⿰鱼扁", + "canonical_ids": "⿰鱼扁", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "鱼" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳋", + "codepoint": "U+9CCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CCB", + "status": "exact_ids", + "ids": "⿰鱼蚤", + "canonical_ids": "⿰鱼蚤", + "expanded_ids": "⿰鱼⿱⿻又丶虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "又", + "虫", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳌", + "codepoint": "U+9CCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CCC", + "status": "exact_ids", + "ids": "⿱敖鱼", + "canonical_ids": "⿱敖鱼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳍", + "codepoint": "U+9CCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CCD", + "status": "exact_ids", + "ids": "⿰鱼耆", + "canonical_ids": "⿰鱼耆", + "expanded_ids": "⿰鱼⿱⿱⿻土丿匕日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "匕", + "土", + "日", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳎", + "codepoint": "U+9CCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CCE", + "status": "exact_ids", + "ids": "⿰鱼𦐇", + "canonical_ids": "⿰鱼𦐇", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "鱼" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳏", + "codepoint": "U+9CCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CCF", + "status": "exact_ids", + "ids": "⿰鱼眔", + "canonical_ids": "⿰鱼眔", + "expanded_ids": "⿰鱼⿱罒氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "氺", + "罒", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳐", + "codepoint": "U+9CD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CD0", + "status": "exact_ids", + "ids": "⿰鱼䍃", + "canonical_ids": "⿰鱼䍃", + "expanded_ids": "⿰鱼⿱爪缶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爪", + "缶", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳑", + "codepoint": "U+9CD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CD1", + "status": "exact_ids", + "ids": "⿰鱼旁", + "canonical_ids": "⿰鱼旁", + "expanded_ids": "⿰鱼⿳⿱亠八冖方", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "方", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 177, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳒", + "codepoint": "U+9CD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CD2", + "status": "exact_ids", + "ids": "⿰鱼兼", + "canonical_ids": "⿰鱼兼", + "expanded_ids": "⿰鱼兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳓", + "codepoint": "U+9CD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CD3", + "status": "exact_ids", + "ids": "⿰鱼勒", + "canonical_ids": "⿰鱼勒", + "expanded_ids": "⿰鱼⿰革力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "革", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳔", + "codepoint": "U+9CD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CD4", + "status": "exact_ids", + "ids": "⿰鱼票", + "canonical_ids": "⿰鱼票", + "expanded_ids": "⿰鱼⿱覀⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "覀", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳕", + "codepoint": "U+9CD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CD5", + "status": "exact_ids", + "ids": "⿰鱼雪", + "canonical_ids": "⿰鱼雪", + "expanded_ids": "⿰鱼⿱雨彐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "雨", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳖", + "codepoint": "U+9CD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CD6", + "status": "exact_ids", + "ids": "⿱敝鱼", + "canonical_ids": "⿱敝鱼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "鱼" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳗", + "codepoint": "U+9CD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CD7", + "status": "exact_ids", + "ids": "⿰鱼曼", + "canonical_ids": "⿰鱼曼", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼" + ], + "unresolved_leaves": [ + "曼" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳘", + "codepoint": "U+9CD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CD8", + "status": "exact_ids", + "ids": "⿱敏鱼", + "canonical_ids": "⿱敏鱼", + "expanded_ids": "⿱⿰⿱⿻丿一母攵鱼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "攵", + "母", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳙", + "codepoint": "U+9CD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CD9", + "status": "exact_ids", + "ids": "⿰鱼庸", + "canonical_ids": "⿰鱼庸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼" + ], + "unresolved_leaves": [ + "庸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳚", + "codepoint": "U+9CDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CDA", + "status": "exact_ids", + "ids": "⿰鱼尉", + "canonical_ids": "⿰鱼尉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼" + ], + "unresolved_leaves": [ + "尉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳛", + "codepoint": "U+9CDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CDB", + "status": "exact_ids", + "ids": "⿰鱼習", + "canonical_ids": "⿰鱼習", + "expanded_ids": "⿰鱼⿱⿰习习⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "习", + "日", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳜", + "codepoint": "U+9CDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CDC", + "status": "exact_ids", + "ids": "⿰鱼厥", + "canonical_ids": "⿰鱼厥", + "expanded_ids": "⿰鱼⿱厂⿰⿱䒑屮欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "厂", + "屮", + "欠", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳝", + "codepoint": "U+9CDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CDD", + "status": "exact_ids", + "ids": "⿰鱼善", + "canonical_ids": "⿰鱼善", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鱼" + ], + "unresolved_leaves": [ + "善" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳞", + "codepoint": "U+9CDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CDE", + "status": "exact_ids", + "ids": "⿰鱼粦", + "canonical_ids": "⿰鱼粦", + "expanded_ids": "⿰鱼⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "木", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳟", + "codepoint": "U+9CDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CDF", + "status": "exact_ids", + "ids": "⿰鱼尊", + "canonical_ids": "⿰鱼尊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "寸", + "鱼" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳠", + "codepoint": "U+9CE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CE0", + "status": "exact_ids", + "ids": "⿰鱼蒦", + "canonical_ids": "⿰鱼蒦", + "expanded_ids": "⿰鱼⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "艹", + "隹", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳡", + "codepoint": "U+9CE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CE1", + "status": "exact_ids", + "ids": "⿰鱼感", + "canonical_ids": "⿰鱼感", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "鱼" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳢", + "codepoint": "U+9CE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CE2", + "status": "exact_ids", + "ids": "⿰鱼豊", + "canonical_ids": "⿰鱼豊", + "expanded_ids": "⿰鱼⿱曲豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曲", + "豆", + "鱼" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳣", + "codepoint": "U+9CE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CE3", + "status": "exact_ids", + "ids": "⿰鱼亶", + "canonical_ids": "⿰鱼亶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "日", + "鱼" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳤", + "codepoint": "U+9CE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CE4", + "status": "exact_ids", + "ids": "⿰鱼管", + "canonical_ids": "⿰鱼管", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㠯", + "宀", + "鱼" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳥", + "codepoint": "U+9CE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CE5", + "status": "leaf_self_fallback", + "ids": "鳥", + "canonical_ids": "鳥", + "expanded_ids": "鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳦", + "codepoint": "U+9CE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CE6", + "status": "exact_ids", + "ids": "⿰鳥乙", + "canonical_ids": "⿰鳥乙", + "expanded_ids": "⿰鳥乙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乙", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳧", + "codepoint": "U+9CE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CE7", + "status": "exact_ids", + "ids": "⿱鳥几", + "canonical_ids": "⿱鳥几", + "expanded_ids": "⿱鳥几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳨", + "codepoint": "U+9CE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CE8", + "status": "exact_ids", + "ids": "⿰鳥力", + "canonical_ids": "⿰鳥力", + "expanded_ids": "⿰鳥力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳩", + "codepoint": "U+9CE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CE9", + "status": "exact_ids", + "ids": "⿰九鳥", + "canonical_ids": "⿰九鳥", + "expanded_ids": "⿰九鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳪", + "codepoint": "U+9CEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CEA", + "status": "exact_ids", + "ids": "⿰卜鳥", + "canonical_ids": "⿰卜鳥", + "expanded_ids": "⿰卜鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳫", + "codepoint": "U+9CEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CEB", + "status": "exact_ids", + "ids": "⿱厂鳥", + "canonical_ids": "⿱厂鳥", + "expanded_ids": "⿱厂鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳬", + "codepoint": "U+9CEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CEC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳭", + "codepoint": "U+9CED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CED", + "status": "exact_ids", + "ids": "⿰刀鳥", + "canonical_ids": "⿰刀鳥", + "expanded_ids": "⿰刀鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳮", + "codepoint": "U+9CEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CEE", + "status": "exact_ids", + "ids": "⿰又鳥", + "canonical_ids": "⿰又鳥", + "expanded_ids": "⿰又鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳯", + "codepoint": "U+9CEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CEF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳰", + "codepoint": "U+9CF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CF0", + "status": "exact_ids", + "ids": "⿰入鳥", + "canonical_ids": "⿰入鳥", + "expanded_ids": "⿰入鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "入", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳱", + "codepoint": "U+9CF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CF1", + "status": "exact_ids", + "ids": "⿰干鳥", + "canonical_ids": "⿰干鳥", + "expanded_ids": "⿰⿱一十鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳲", + "codepoint": "U+9CF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CF2", + "status": "exact_ids", + "ids": "⿰尸鳥", + "canonical_ids": "⿰尸鳥", + "expanded_ids": "⿰尸鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳳", + "codepoint": "U+9CF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CF3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳴", + "codepoint": "U+9CF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CF4", + "status": "exact_ids", + "ids": "⿰口鳥", + "canonical_ids": "⿰口鳥", + "expanded_ids": "⿰口鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳵", + "codepoint": "U+9CF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CF5", + "status": "exact_ids", + "ids": "⿰卂鳥", + "canonical_ids": "⿰卂鳥", + "expanded_ids": "⿰⿱乁十鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乁", + "十", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳶", + "codepoint": "U+9CF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CF6", + "status": "exact_ids", + "ids": "⿱弋鳥", + "canonical_ids": "⿱弋鳥", + "expanded_ids": "⿱弋鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弋", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳷", + "codepoint": "U+9CF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CF7", + "status": "exact_ids", + "ids": "⿰支鳥", + "canonical_ids": "⿰支鳥", + "expanded_ids": "⿰⿱十又鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳸", + "codepoint": "U+9CF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CF8", + "status": "exact_ids", + "ids": "⿱户鳥", + "canonical_ids": "⿱户鳥", + "expanded_ids": "⿱⿻丶尸鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "尸", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳹", + "codepoint": "U+9CF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CF9", + "status": "exact_ids", + "ids": "⿰今鳥", + "canonical_ids": "⿰今鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "鳥" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳺", + "codepoint": "U+9CFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CFA", + "status": "exact_ids", + "ids": "⿰夫鳥", + "canonical_ids": "⿰夫鳥", + "expanded_ids": "⿰⿻一大鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳻", + "codepoint": "U+9CFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CFB", + "status": "exact_ids", + "ids": "⿰分鳥", + "canonical_ids": "⿰分鳥", + "expanded_ids": "⿰⿱八刀鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳼", + "codepoint": "U+9CFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CFC", + "status": "exact_ids", + "ids": "⿰文鳥", + "canonical_ids": "⿰文鳥", + "expanded_ids": "⿰文鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳽", + "codepoint": "U+9CFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CFD", + "status": "exact_ids", + "ids": "⿰开鳥", + "canonical_ids": "⿰开鳥", + "expanded_ids": "⿰⿱一廾鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "廾", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳾", + "codepoint": "U+9CFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CFE", + "status": "exact_ids", + "ids": "⿰帀鳥", + "canonical_ids": "⿰帀鳥", + "expanded_ids": "⿰⿱一⿻冂丨鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丨", + "冂", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鳿", + "codepoint": "U+9CFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9CFF", + "status": "exact_ids", + "ids": "⿰王鳥", + "canonical_ids": "⿰王鳥", + "expanded_ids": "⿰王鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "王", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴀", + "codepoint": "U+9D00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D00", + "status": "exact_ids", + "ids": "⿰不鳥", + "canonical_ids": "⿰不鳥", + "expanded_ids": "⿰不鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "不", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴁", + "codepoint": "U+9D01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D01", + "status": "exact_ids", + "ids": "⿰夭鳥", + "canonical_ids": "⿰夭鳥", + "expanded_ids": "⿰⿱丿大鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "大", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴂", + "codepoint": "U+9D02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D02", + "status": "exact_ids", + "ids": "⿰夬鳥", + "canonical_ids": "⿰夬鳥", + "expanded_ids": "⿰⿻大乛鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "大", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴃", + "codepoint": "U+9D03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D03", + "status": "exact_ids", + "ids": "⿰鳥夬", + "canonical_ids": "⿰鳥夬", + "expanded_ids": "⿰鳥⿻大乛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "大", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴄", + "codepoint": "U+9D04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D04", + "status": "exact_ids", + "ids": "⿰匹鳥", + "canonical_ids": "⿰匹鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴅", + "codepoint": "U+9D05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D05", + "status": "exact_ids", + "ids": "⿰丹鳥", + "canonical_ids": "⿰丹鳥", + "expanded_ids": "⿰丹鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丹", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴆", + "codepoint": "U+9D06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D06", + "status": "exact_ids", + "ids": "⿰冘鳥", + "canonical_ids": "⿰冘鳥", + "expanded_ids": "⿰⿻冖儿鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴇", + "codepoint": "U+9D07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D07", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴈", + "codepoint": "U+9D08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D08", + "status": "exact_ids", + "ids": "⿱厂𠌵", + "canonical_ids": "⿱厂𠌵", + "expanded_ids": "⿱厂⿰亻鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "厂", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴉", + "codepoint": "U+9D09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D09", + "status": "exact_ids", + "ids": "⿰牙鳥", + "canonical_ids": "⿰牙鳥", + "expanded_ids": "⿰牙鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴊", + "codepoint": "U+9D0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D0A", + "status": "exact_ids", + "ids": "⿰正鳥", + "canonical_ids": "⿰正鳥", + "expanded_ids": "⿰⿱一止鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "止", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴋", + "codepoint": "U+9D0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D0B", + "status": "exact_ids", + "ids": "⿰方鳥", + "canonical_ids": "⿰方鳥", + "expanded_ids": "⿰方鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "方", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴌", + "codepoint": "U+9D0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D0C", + "status": "exact_ids", + "ids": "⿱天鳥", + "canonical_ids": "⿱天鳥", + "expanded_ids": "⿱⿻一大鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴍", + "codepoint": "U+9D0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D0D", + "status": "exact_ids", + "ids": "⿱文鳥", + "canonical_ids": "⿱文鳥", + "expanded_ids": "⿱文鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴎", + "codepoint": "U+9D0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D0E", + "status": "exact_ids", + "ids": "⿰区鳥", + "canonical_ids": "⿰区鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "区" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴏", + "codepoint": "U+9D0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D0F", + "status": "exact_ids", + "ids": "⿰鳥代", + "canonical_ids": "⿰鳥代", + "expanded_ids": "⿰鳥⿰亻弋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "弋", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴐", + "codepoint": "U+9D10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D10", + "status": "exact_ids", + "ids": "⿱加鳥", + "canonical_ids": "⿱加鳥", + "expanded_ids": "⿱⿰力口鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "口", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴑", + "codepoint": "U+9D11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D11", + "status": "exact_ids", + "ids": "⿱奴鳥", + "canonical_ids": "⿱奴鳥", + "expanded_ids": "⿱⿰女又鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "女", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴒", + "codepoint": "U+9D12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D12", + "status": "exact_ids", + "ids": "⿰令鳥", + "canonical_ids": "⿰令鳥", + "expanded_ids": "⿰⿱⿱人一龴鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "鳥", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴓", + "codepoint": "U+9D13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D13", + "status": "exact_ids", + "ids": "⿰必鳥", + "canonical_ids": "⿰必鳥", + "expanded_ids": "⿰⿻心丿鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "心", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴔", + "codepoint": "U+9D14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D14", + "status": "exact_ids", + "ids": "⿰乏鳥", + "canonical_ids": "⿰乏鳥", + "expanded_ids": "⿰⿱丿之鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "之", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴕", + "codepoint": "U+9D15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D15", + "status": "exact_ids", + "ids": "⿰鳥它", + "canonical_ids": "⿰鳥它", + "expanded_ids": "⿰鳥⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴖", + "codepoint": "U+9D16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D16", + "status": "exact_ids", + "ids": "⿰民鳥", + "canonical_ids": "⿰民鳥", + "expanded_ids": "⿰民鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "民", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴗", + "codepoint": "U+9D17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D17", + "status": "exact_ids", + "ids": "⿰立鳥", + "canonical_ids": "⿰立鳥", + "expanded_ids": "⿰立鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴘", + "codepoint": "U+9D18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D18", + "status": "exact_ids", + "ids": "⿰弁鳥", + "canonical_ids": "⿰弁鳥", + "expanded_ids": "⿰⿱厶廾鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "廾", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴙", + "codepoint": "U+9D19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D19", + "status": "exact_ids", + "ids": "⿰矢鳥", + "canonical_ids": "⿰矢鳥", + "expanded_ids": "⿰⿱⿻丿一大鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴚", + "codepoint": "U+9D1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D1A", + "status": "exact_ids", + "ids": "⿰鳥可", + "canonical_ids": "⿰鳥可", + "expanded_ids": "⿰鳥⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴛", + "codepoint": "U+9D1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D1B", + "status": "exact_ids", + "ids": "⿱夗鳥", + "canonical_ids": "⿱夗鳥", + "expanded_ids": "⿱⿰夕㔾鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴜", + "codepoint": "U+9D1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D1C", + "status": "exact_ids", + "ids": "⿱此鳥", + "canonical_ids": "⿱此鳥", + "expanded_ids": "⿱⿰止匕鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "止", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴝", + "codepoint": "U+9D1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D1D", + "status": "exact_ids", + "ids": "⿰句鳥", + "canonical_ids": "⿰句鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴞", + "codepoint": "U+9D1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D1E", + "status": "exact_ids", + "ids": "⿰号鳥", + "canonical_ids": "⿰号鳥", + "expanded_ids": "⿰⿱口丂鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "口", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴟", + "codepoint": "U+9D1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D1F", + "status": "exact_ids", + "ids": "⿰氐鳥", + "canonical_ids": "⿰氐鳥", + "expanded_ids": "⿰⿻氏丶鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氏", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴠", + "codepoint": "U+9D20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D20", + "status": "exact_ids", + "ids": "⿰旦鳥", + "canonical_ids": "⿰旦鳥", + "expanded_ids": "⿰⿱日一鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴡", + "codepoint": "U+9D21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D21", + "status": "exact_ids", + "ids": "⿰且鳥", + "canonical_ids": "⿰且鳥", + "expanded_ids": "⿰且鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴢", + "codepoint": "U+9D22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D22", + "status": "exact_ids", + "ids": "⿰幼鳥", + "canonical_ids": "⿰幼鳥", + "expanded_ids": "⿰⿰幺力鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "幺", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴣", + "codepoint": "U+9D23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D23", + "status": "exact_ids", + "ids": "⿰古鳥", + "canonical_ids": "⿰古鳥", + "expanded_ids": "⿰⿻十口鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴤", + "codepoint": "U+9D24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D24", + "status": "exact_ids", + "ids": "⿰鳥冬", + "canonical_ids": "⿰鳥冬", + "expanded_ids": "⿰鳥⿱夂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "夂", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴥", + "codepoint": "U+9D25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D25", + "status": "exact_ids", + "ids": "⿰鳥穴", + "canonical_ids": "⿰鳥穴", + "expanded_ids": "⿰鳥⿱宀八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴦", + "codepoint": "U+9D26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D26", + "status": "exact_ids", + "ids": "⿱央鳥", + "canonical_ids": "⿱央鳥", + "expanded_ids": "⿱⿻冂大鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴧", + "codepoint": "U+9D27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D27", + "status": "exact_ids", + "ids": "⿰穴鳥", + "canonical_ids": "⿰穴鳥", + "expanded_ids": "⿰⿱宀八鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "鴪" + ] + }, + { + "character": "鴨", + "codepoint": "U+9D28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D28", + "status": "exact_ids", + "ids": "⿰甲鳥", + "canonical_ids": "⿰甲鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "甲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴩", + "codepoint": "U+9D29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D29", + "status": "exact_ids", + "ids": "⿰失鳥", + "canonical_ids": "⿰失鳥", + "expanded_ids": "⿰⿻丿⿻一大鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "大", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴪", + "codepoint": "U+9D2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D2A", + "status": "exact_ids", + "ids": "⿰穴鳥", + "canonical_ids": "⿰穴鳥", + "expanded_ids": "⿰⿱宀八鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [ + "鴧" + ] + }, + { + "character": "鴫", + "codepoint": "U+9D2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D2B", + "status": "exact_ids", + "ids": "⿰田鳥", + "canonical_ids": "⿰田鳥", + "expanded_ids": "⿰田鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴬", + "codepoint": "U+9D2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D2C", + "status": "exact_ids", + "ids": "⿳小冖鳥", + "canonical_ids": "⿳小冖鳥", + "expanded_ids": "⿳小冖鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "小", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 101, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴭", + "codepoint": "U+9D2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D2D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴮", + "codepoint": "U+9D2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D2E", + "status": "exact_ids", + "ids": "⿰夸鳥", + "canonical_ids": "⿰夸鳥", + "expanded_ids": "⿰⿱大⿱一丂鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "大", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴯", + "codepoint": "U+9D2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D2F", + "status": "exact_ids", + "ids": "⿰而鳥", + "canonical_ids": "⿰而鳥", + "expanded_ids": "⿰而鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "而", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴰", + "codepoint": "U+9D30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D30", + "status": "exact_ids", + "ids": "⿰舌鳥", + "canonical_ids": "⿰舌鳥", + "expanded_ids": "⿰⿱⿱丿十口鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴱", + "codepoint": "U+9D31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D31", + "status": "exact_ids", + "ids": "⿰艾鳥", + "canonical_ids": "⿰艾鳥", + "expanded_ids": "⿰⿱艹乂鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "艹", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴲", + "codepoint": "U+9D32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D32", + "status": "exact_ids", + "ids": "⿰旨鳥", + "canonical_ids": "⿰旨鳥", + "expanded_ids": "⿰⿱匕日鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴳", + "codepoint": "U+9D33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D33", + "status": "exact_ids", + "ids": "⿰安鳥", + "canonical_ids": "⿰安鳥", + "expanded_ids": "⿰⿱宀女鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴴", + "codepoint": "U+9D34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D34", + "status": "exact_ids", + "ids": "⿰行鳥", + "canonical_ids": "⿰行鳥", + "expanded_ids": "⿰⿰彳彳鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴵", + "codepoint": "U+9D35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D35", + "status": "exact_ids", + "ids": "⿰兆鳥", + "canonical_ids": "⿰兆鳥", + "expanded_ids": "⿰兆鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴶", + "codepoint": "U+9D36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D36", + "status": "exact_ids", + "ids": "⿰吉鳥", + "canonical_ids": "⿰吉鳥", + "expanded_ids": "⿰⿱士口鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴷", + "codepoint": "U+9D37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D37", + "status": "exact_ids", + "ids": "⿱列鳥", + "canonical_ids": "⿱列鳥", + "expanded_ids": "⿱⿰⿻夕一刂鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "刂", + "夕", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴸", + "codepoint": "U+9D38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D38", + "status": "exact_ids", + "ids": "⿰朱鳥", + "canonical_ids": "⿰朱鳥", + "expanded_ids": "⿰⿻丿⿻木一鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴹", + "codepoint": "U+9D39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D39", + "status": "exact_ids", + "ids": "⿰羊鳥", + "canonical_ids": "⿰羊鳥", + "expanded_ids": "⿰羊鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "羊", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴺", + "codepoint": "U+9D3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D3A", + "status": "exact_ids", + "ids": "⿰夷鳥", + "canonical_ids": "⿰夷鳥", + "expanded_ids": "⿰⿻大弓鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "弓", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴻", + "codepoint": "U+9D3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D3B", + "status": "exact_ids", + "ids": "⿰江鳥", + "canonical_ids": "⿰江鳥", + "expanded_ids": "⿰⿰氵工鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "氵", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴼", + "codepoint": "U+9D3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D3C", + "status": "exact_ids", + "ids": "⿰鳥各", + "canonical_ids": "⿰鳥各", + "expanded_ids": "⿰鳥⿱夂口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴽", + "codepoint": "U+9D3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D3D", + "status": "exact_ids", + "ids": "⿱如鳥", + "canonical_ids": "⿱如鳥", + "expanded_ids": "⿱⿰女口鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "女", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴾", + "codepoint": "U+9D3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D3E", + "status": "exact_ids", + "ids": "⿰牟鳥", + "canonical_ids": "⿰牟鳥", + "expanded_ids": "⿰⿱厶牛鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "牛", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鴿", + "codepoint": "U+9D3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D3F", + "status": "exact_ids", + "ids": "⿰合鳥", + "canonical_ids": "⿰合鳥", + "expanded_ids": "⿰⿱⿱人一口鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵀", + "codepoint": "U+9D40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D40", + "status": "exact_ids", + "ids": "⿱任鳥", + "canonical_ids": "⿱任鳥", + "expanded_ids": "⿱⿰亻⿱丿士鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亻", + "士", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵁", + "codepoint": "U+9D41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D41", + "status": "exact_ids", + "ids": "⿰交鳥", + "canonical_ids": "⿰交鳥", + "expanded_ids": "⿰⿱亠父鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "父", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵂", + "codepoint": "U+9D42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D42", + "status": "exact_ids", + "ids": "⿰休鳥", + "canonical_ids": "⿰休鳥", + "expanded_ids": "⿰⿰亻木鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "木", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵃", + "codepoint": "U+9D43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D43", + "status": "exact_ids", + "ids": "⿰舟鳥", + "canonical_ids": "⿰舟鳥", + "expanded_ids": "⿰舟鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵄", + "codepoint": "U+9D44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D44", + "status": "exact_ids", + "ids": "⿰至鳥", + "canonical_ids": "⿰至鳥", + "expanded_ids": "⿰⿱⿱一厶土鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵅", + "codepoint": "U+9D45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D45", + "status": "exact_ids", + "ids": "⿰各鳥", + "canonical_ids": "⿰各鳥", + "expanded_ids": "⿰⿱夂口鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵆", + "codepoint": "U+9D46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D46", + "status": "exact_ids", + "ids": "⿲彳鳥彳", + "canonical_ids": "⿲彳鳥彳", + "expanded_ids": "⿲彳鳥彳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 101, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵇", + "codepoint": "U+9D47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D47", + "status": "exact_ids", + "ids": "⿰年鳥", + "canonical_ids": "⿰年鳥", + "expanded_ids": "⿰年鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "年", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵈", + "codepoint": "U+9D48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D48", + "status": "exact_ids", + "ids": "⿰耳鳥", + "canonical_ids": "⿰耳鳥", + "expanded_ids": "⿰耳鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "耳", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵉", + "codepoint": "U+9D49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D49", + "status": "exact_ids", + "ids": "⿱亦鳥", + "canonical_ids": "⿱亦鳥", + "expanded_ids": "⿱亦鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵊", + "codepoint": "U+9D4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D4A", + "status": "exact_ids", + "ids": "⿰夾鳥", + "canonical_ids": "⿰夾鳥", + "expanded_ids": "⿰⿻大⿰人人鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "大", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵋", + "codepoint": "U+9D4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D4B", + "status": "exact_ids", + "ids": "⿰忌鳥", + "canonical_ids": "⿰忌鳥", + "expanded_ids": "⿰⿱己心鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "己", + "心", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵌", + "codepoint": "U+9D4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D4C", + "status": "exact_ids", + "ids": "⿰鳥余", + "canonical_ids": "⿰鳥余", + "expanded_ids": "⿰鳥⿱⿱人一朩", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵍", + "codepoint": "U+9D4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D4D", + "status": "exact_ids", + "ids": "⿰完鳥", + "canonical_ids": "⿰完鳥", + "expanded_ids": "⿰⿱宀⿱一⿱一儿鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "宀", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵎", + "codepoint": "U+9D4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D4E", + "status": "exact_ids", + "ids": "⿰妥鳥", + "canonical_ids": "⿰妥鳥", + "expanded_ids": "⿰⿱爫女鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "爫", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵏", + "codepoint": "U+9D4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D4F", + "status": "exact_ids", + "ids": "⿰甫鳥", + "canonical_ids": "⿰甫鳥", + "expanded_ids": "⿰甫鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甫", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵐", + "codepoint": "U+9D50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D50", + "status": "exact_ids", + "ids": "⿰巫鳥", + "canonical_ids": "⿰巫鳥", + "expanded_ids": "⿰⿻工⿰人人鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "工", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵑", + "codepoint": "U+9D51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D51", + "status": "exact_ids", + "ids": "⿰肙鳥", + "canonical_ids": "⿰肙鳥", + "expanded_ids": "⿰⿱口月鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵒", + "codepoint": "U+9D52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D52", + "status": "exact_ids", + "ids": "⿰谷鳥", + "canonical_ids": "⿰谷鳥", + "expanded_ids": "⿰⿱八⿱八口鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵓", + "codepoint": "U+9D53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D53", + "status": "exact_ids", + "ids": "⿰孛鳥", + "canonical_ids": "⿰孛鳥", + "expanded_ids": "⿰⿳十冖子鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "子", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵔", + "codepoint": "U+9D54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D54", + "status": "exact_ids", + "ids": "⿰鳥夋", + "canonical_ids": "⿰鳥夋", + "expanded_ids": "⿰鳥⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵕", + "codepoint": "U+9D55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D55", + "status": "exact_ids", + "ids": "⿰夋鳥", + "canonical_ids": "⿰夋鳥", + "expanded_ids": "⿰⿱⿱厶儿夂鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵖", + "codepoint": "U+9D56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D56", + "status": "exact_ids", + "ids": "⿰皀鳥", + "canonical_ids": "⿰皀鳥", + "expanded_ids": "⿰⿱⿻日丶匕鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "日", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵗", + "codepoint": "U+9D57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D57", + "status": "exact_ids", + "ids": "⿰希鳥", + "canonical_ids": "⿰希鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乂", + "鳥" + ], + "unresolved_leaves": [ + "布" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵘", + "codepoint": "U+9D58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D58", + "status": "exact_ids", + "ids": "⿰君鳥", + "canonical_ids": "⿰君鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "鳥" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵙", + "codepoint": "U+9D59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D59", + "status": "exact_ids", + "ids": "⿰貝鳥", + "canonical_ids": "⿰貝鳥", + "expanded_ids": "⿰⿱目八鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵚", + "codepoint": "U+9D5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D5A", + "status": "exact_ids", + "ids": "⿰禿鳥", + "canonical_ids": "⿰禿鳥", + "expanded_ids": "⿰⿱⿻丿木儿鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "儿", + "木", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵛", + "codepoint": "U+9D5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D5B", + "status": "exact_ids", + "ids": "⿰巠鳥", + "canonical_ids": "⿰巠鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "巠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵜", + "codepoint": "U+9D5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D5C", + "status": "exact_ids", + "ids": "⿰弟鳥", + "canonical_ids": "⿰弟鳥", + "expanded_ids": "⿰⿱丷⿻⿻弓丨丿鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵝", + "codepoint": "U+9D5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D5D", + "status": "exact_ids", + "ids": "⿰我鳥", + "canonical_ids": "⿰我鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "鳥" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵞", + "codepoint": "U+9D5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D5E", + "status": "exact_ids", + "ids": "⿱我鳥", + "canonical_ids": "⿱我鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "鳥" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵟", + "codepoint": "U+9D5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D5F", + "status": "exact_ids", + "ids": "⿱狂鳥", + "canonical_ids": "⿱狂鳥", + "expanded_ids": "⿱⿰犭王鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "犭", + "王", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵠", + "codepoint": "U+9D60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D60", + "status": "exact_ids", + "ids": "⿰告鳥", + "canonical_ids": "⿰告鳥", + "expanded_ids": "⿰⿱牛口鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵡", + "codepoint": "U+9D61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D61", + "status": "exact_ids", + "ids": "⿰武鳥", + "canonical_ids": "⿰武鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "武" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵢", + "codepoint": "U+9D62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D62", + "status": "exact_ids", + "ids": "⿰身鳥", + "canonical_ids": "⿰身鳥", + "expanded_ids": "⿰身鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "身", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵣", + "codepoint": "U+9D63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D63", + "status": "exact_ids", + "ids": "⿰束鳥", + "canonical_ids": "⿰束鳥", + "expanded_ids": "⿰⿻木口鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "木", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵤", + "codepoint": "U+9D64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D64", + "status": "exact_ids", + "ids": "⿰角鳥", + "canonical_ids": "⿰角鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "月", + "鳥" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵥", + "codepoint": "U+9D65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D65", + "status": "exact_ids", + "ids": "⿱判鳥", + "canonical_ids": "⿱判鳥", + "expanded_ids": "⿱⿰半刂鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刂", + "半", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵦", + "codepoint": "U+9D66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D66", + "status": "exact_ids", + "ids": "⿰鳥录", + "canonical_ids": "⿰鳥录", + "expanded_ids": "⿰鳥⿱彐氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "氺", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵧", + "codepoint": "U+9D67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D67", + "status": "exact_ids", + "ids": "⿰并鳥", + "canonical_ids": "⿰并鳥", + "expanded_ids": "⿰⿱丷⿱一廾鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丷", + "廾", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵨", + "codepoint": "U+9D68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D68", + "status": "exact_ids", + "ids": "⿰舍鳥", + "canonical_ids": "⿰舍鳥", + "expanded_ids": "⿰⿱⿱人一⿻十口鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "十", + "口", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵩", + "codepoint": "U+9D69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D69", + "status": "exact_ids", + "ids": "⿰服鳥", + "canonical_ids": "⿰服鳥", + "expanded_ids": "⿰⿰月⿻卩又鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卩", + "又", + "月", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵪", + "codepoint": "U+9D6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D6A", + "status": "exact_ids", + "ids": "⿰奄鳥", + "canonical_ids": "⿰奄鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "鳥" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵫", + "codepoint": "U+9D6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D6B", + "status": "exact_ids", + "ids": "⿰卓鳥", + "canonical_ids": "⿰卓鳥", + "expanded_ids": "⿰⿱卜⿱日十鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "日", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵬", + "codepoint": "U+9D6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D6C", + "status": "exact_ids", + "ids": "⿰朋鳥", + "canonical_ids": "⿰朋鳥", + "expanded_ids": "⿰⿰月月鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵭", + "codepoint": "U+9D6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D6D", + "status": "exact_ids", + "ids": "⿰金鳥", + "canonical_ids": "⿰金鳥", + "expanded_ids": "⿰金鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "金", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵮", + "codepoint": "U+9D6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D6E", + "status": "exact_ids", + "ids": "⿰臽鳥", + "canonical_ids": "⿰臽鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "臼", + "鳥" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵯", + "codepoint": "U+9D6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D6F", + "status": "exact_ids", + "ids": "⿰卑鳥", + "canonical_ids": "⿰卑鳥", + "expanded_ids": "⿰卑鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵰", + "codepoint": "U+9D70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D70", + "status": "exact_ids", + "ids": "⿰周鳥", + "canonical_ids": "⿰周鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "周" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵱", + "codepoint": "U+9D71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D71", + "status": "exact_ids", + "ids": "⿰坴鳥", + "canonical_ids": "⿰坴鳥", + "expanded_ids": "⿰⿱⿱土儿土鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵲", + "codepoint": "U+9D72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D72", + "status": "exact_ids", + "ids": "⿰昔鳥", + "canonical_ids": "⿰昔鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "鳥" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵳", + "codepoint": "U+9D73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D73", + "status": "exact_ids", + "ids": "⿰肩鳥", + "canonical_ids": "⿰肩鳥", + "expanded_ids": "⿰⿱⿻一尸月鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "月", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵴", + "codepoint": "U+9D74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D74", + "status": "exact_ids", + "ids": "⿰匊鳥", + "canonical_ids": "⿰匊鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "匊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵵", + "codepoint": "U+9D75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D75", + "status": "exact_ids", + "ids": "⿰兔鳥", + "canonical_ids": "⿰兔鳥", + "expanded_ids": "⿰⿻免丶鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "免", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵶", + "codepoint": "U+9D76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D76", + "status": "exact_ids", + "ids": "⿰亞鳥", + "canonical_ids": "⿰亞鳥", + "expanded_ids": "⿰亞鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亞", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵷", + "codepoint": "U+9D77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D77", + "status": "exact_ids", + "ids": "⿰宛鳥", + "canonical_ids": "⿰宛鳥", + "expanded_ids": "⿰⿱宀⿰夕㔾鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵸", + "codepoint": "U+9D78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D78", + "status": "exact_ids", + "ids": "⿰奇鳥", + "canonical_ids": "⿰奇鳥", + "expanded_ids": "⿰⿱大⿰口⿱一亅鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵹", + "codepoint": "U+9D79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D79", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵺", + "codepoint": "U+9D7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D7A", + "status": "exact_ids", + "ids": "⿰夜鳥", + "canonical_ids": "⿰夜鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "夜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵻", + "codepoint": "U+9D7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D7B", + "status": "exact_ids", + "ids": "⿰鳥隹", + "canonical_ids": "⿰鳥隹", + "expanded_ids": "⿰鳥隹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "隹", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵼", + "codepoint": "U+9D7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D7C", + "status": "exact_ids", + "ids": "⿰空鳥", + "canonical_ids": "⿰空鳥", + "expanded_ids": "⿰⿱⿱宀八工鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "宀", + "工", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵽", + "codepoint": "U+9D7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D7D", + "status": "exact_ids", + "ids": "⿰叕鳥", + "canonical_ids": "⿰叕鳥", + "expanded_ids": "⿰⿱⿰又又⿰又又鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵾", + "codepoint": "U+9D7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D7E", + "status": "exact_ids", + "ids": "⿰昆鳥", + "canonical_ids": "⿰昆鳥", + "expanded_ids": "⿰⿱日⿰匕匕鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鵿", + "codepoint": "U+9D7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D7F", + "status": "exact_ids", + "ids": "⿰鳥昇", + "canonical_ids": "⿰鳥昇", + "expanded_ids": "⿰鳥⿱日升", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "升", + "日", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶀", + "codepoint": "U+9D80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D80", + "status": "exact_ids", + "ids": "⿰鳥其", + "canonical_ids": "⿰鳥其", + "expanded_ids": "⿰鳥其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶁", + "codepoint": "U+9D81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D81", + "status": "exact_ids", + "ids": "⿰京鳥", + "canonical_ids": "⿰京鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶂", + "codepoint": "U+9D82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D82", + "status": "exact_ids", + "ids": "⿰兒鳥", + "canonical_ids": "⿰兒鳥", + "expanded_ids": "⿰⿱臼儿鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "臼", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶃", + "codepoint": "U+9D83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D83", + "status": "exact_ids", + "ids": "⿰鳥兒", + "canonical_ids": "⿰鳥兒", + "expanded_ids": "⿰鳥⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "臼", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶄", + "codepoint": "U+9D84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D84", + "status": "exact_ids", + "ids": "⿰青鳥", + "canonical_ids": "⿰青鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "鳥" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶅", + "codepoint": "U+9D85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D85", + "status": "exact_ids", + "ids": "⿰甾鳥", + "canonical_ids": "⿰甾鳥", + "expanded_ids": "⿰⿱巛田鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "巛", + "田", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶆", + "codepoint": "U+9D86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D86", + "status": "exact_ids", + "ids": "⿰來鳥", + "canonical_ids": "⿰來鳥", + "expanded_ids": "⿰⿻木⿰人人鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "木", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶇", + "codepoint": "U+9D87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D87", + "status": "exact_ids", + "ids": "⿰東鳥", + "canonical_ids": "⿰東鳥", + "expanded_ids": "⿰⿻木日鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "木", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶈", + "codepoint": "U+9D88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D88", + "status": "exact_ids", + "ids": "⿰妻鳥", + "canonical_ids": "⿰妻鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "妻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶉", + "codepoint": "U+9D89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D89", + "status": "exact_ids", + "ids": "⿰享鳥", + "canonical_ids": "⿰享鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶊", + "codepoint": "U+9D8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D8A", + "status": "exact_ids", + "ids": "⿰庚鳥", + "canonical_ids": "⿰庚鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "庚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶋", + "codepoint": "U+9D8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D8B", + "status": "exact_ids", + "ids": "⿰居鳥", + "canonical_ids": "⿰居鳥", + "expanded_ids": "⿰⿱尸⿻十口鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "尸", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶌", + "codepoint": "U+9D8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D8C", + "status": "exact_ids", + "ids": "⿰屈鳥", + "canonical_ids": "⿰屈鳥", + "expanded_ids": "⿰⿱尸⿻屮凵鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "尸", + "屮", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶍", + "codepoint": "U+9D8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D8D", + "status": "exact_ids", + "ids": "⿰易鳥", + "canonical_ids": "⿰易鳥", + "expanded_ids": "⿰⿱日勿鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "勿", + "日", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶎", + "codepoint": "U+9D8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D8E", + "status": "exact_ids", + "ids": "⿰宗鳥", + "canonical_ids": "⿰宗鳥", + "expanded_ids": "⿰⿱宀⿱二小鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "宀", + "小", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶏", + "codepoint": "U+9D8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D8F", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶐", + "codepoint": "U+9D90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D90", + "status": "exact_ids", + "ids": "⿰述鳥", + "canonical_ids": "⿰述鳥", + "expanded_ids": "⿰⿰辶⿻木丶鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "木", + "辶", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶑", + "codepoint": "U+9D91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D91", + "status": "exact_ids", + "ids": "⿱⿰火火鳥", + "canonical_ids": "⿱⿰火火鳥", + "expanded_ids": "⿱⿰火火鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶒", + "codepoint": "U+9D92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D92", + "status": "exact_ids", + "ids": "⿰束鳭", + "canonical_ids": "⿰束鳭", + "expanded_ids": "⿰⿻木口⿰刀鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "木", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶓", + "codepoint": "U+9D93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D93", + "status": "exact_ids", + "ids": "⿰苗鳥", + "canonical_ids": "⿰苗鳥", + "expanded_ids": "⿰⿱艹田鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "艹", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶔", + "codepoint": "U+9D94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D94", + "status": "exact_ids", + "ids": "⿰柔鳥", + "canonical_ids": "⿰柔鳥", + "expanded_ids": "⿰⿱矛木鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "矛", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶕", + "codepoint": "U+9D95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D95", + "status": "exact_ids", + "ids": "⿰音鳥", + "canonical_ids": "⿰音鳥", + "expanded_ids": "⿰⿱立日鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "立", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶖", + "codepoint": "U+9D96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D96", + "status": "exact_ids", + "ids": "⿱秋鳥", + "canonical_ids": "⿱秋鳥", + "expanded_ids": "⿱⿰⿻丿木火鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "火", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶗", + "codepoint": "U+9D97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D97", + "status": "exact_ids", + "ids": "⿰是鳥", + "canonical_ids": "⿰是鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "鳥" + ], + "unresolved_leaves": [ + "𤴓" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶘", + "codepoint": "U+9D98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D98", + "status": "exact_ids", + "ids": "⿰胡鳥", + "canonical_ids": "⿰胡鳥", + "expanded_ids": "⿰⿰⿻十口月鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "月", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶙", + "codepoint": "U+9D99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D99", + "status": "exact_ids", + "ids": "⿰帝鳥", + "canonical_ids": "⿰帝鳥", + "expanded_ids": "⿰⿳⿱亠八冖⿻冂丨鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "亠", + "八", + "冂", + "冖", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 215, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶚", + "codepoint": "U+9D9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D9A", + "status": "exact_ids", + "ids": "⿰咢鳥", + "canonical_ids": "⿰咢鳥", + "expanded_ids": "⿰⿱⿰口口⿱一丂鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "口", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶛", + "codepoint": "U+9D9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D9B", + "status": "exact_ids", + "ids": "⿰皆鳥", + "canonical_ids": "⿰皆鳥", + "expanded_ids": "⿰⿱⿰匕匕⿻日丶鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "日", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶜", + "codepoint": "U+9D9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D9C", + "status": "exact_ids", + "ids": "⿰茅鳥", + "canonical_ids": "⿰茅鳥", + "expanded_ids": "⿰⿱艹矛鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "矛", + "艹", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶝", + "codepoint": "U+9D9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D9D", + "status": "exact_ids", + "ids": "⿰畐鳥", + "canonical_ids": "⿰畐鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "畐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶞", + "codepoint": "U+9D9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D9E", + "status": "exact_ids", + "ids": "⿰盾鳥", + "canonical_ids": "⿰盾鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "目", + "鳥" + ], + "unresolved_leaves": [ + "⺁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶟", + "codepoint": "U+9D9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9D9F", + "status": "exact_ids", + "ids": "⿰突鳥", + "canonical_ids": "⿰突鳥", + "expanded_ids": "⿰⿱⿱宀八⿻大丶鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "八", + "大", + "宀", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶠", + "codepoint": "U+9DA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DA0", + "status": "exact_ids", + "ids": "⿰匽鳥", + "canonical_ids": "⿰匽鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "匽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶡", + "codepoint": "U+9DA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DA1", + "status": "exact_ids", + "ids": "⿰曷鳥", + "canonical_ids": "⿰曷鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "鳥" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶢", + "codepoint": "U+9DA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DA2", + "status": "exact_ids", + "ids": "⿰爰鳥", + "canonical_ids": "⿰爰鳥", + "expanded_ids": "⿰⿱爫⿱丿⿱⿻丿一又鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "又", + "爫", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶣", + "codepoint": "U+9DA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DA3", + "status": "exact_ids", + "ids": "⿰扁鳥", + "canonical_ids": "⿰扁鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "鳥" + ], + "unresolved_leaves": [ + "𠕁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶤", + "codepoint": "U+9DA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DA4", + "status": "exact_ids", + "ids": "⿰軍鳥", + "canonical_ids": "⿰軍鳥", + "expanded_ids": "⿰⿱冖車鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "車", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶥", + "codepoint": "U+9DA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DA5", + "status": "exact_ids", + "ids": "⿰眉鳥", + "canonical_ids": "⿰眉鳥", + "expanded_ids": "⿰⿱⿻尸丨目鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "尸", + "目", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶦", + "codepoint": "U+9DA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DA6", + "status": "exact_ids", + "ids": "⿱胡鳥", + "canonical_ids": "⿱胡鳥", + "expanded_ids": "⿱⿰⿻十口月鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "月", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶧", + "codepoint": "U+9DA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DA7", + "status": "exact_ids", + "ids": "⿰英鳥", + "canonical_ids": "⿰英鳥", + "expanded_ids": "⿰⿱艹⿻冂大鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "艹", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶨", + "codepoint": "U+9DA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DA8", + "status": "exact_ids", + "ids": "⿰彖鳥", + "canonical_ids": "⿰彖鳥", + "expanded_ids": "⿰⿱彑𧰨鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彑", + "鳥", + "𧰨" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 116, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶩", + "codepoint": "U+9DA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DA9", + "status": "exact_ids", + "ids": "⿱敄鳥", + "canonical_ids": "⿱敄鳥", + "expanded_ids": "⿱⿰矛攵鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "矛", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶪", + "codepoint": "U+9DAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DAA", + "status": "exact_ids", + "ids": "⿰狊鳥", + "canonical_ids": "⿰狊鳥", + "expanded_ids": "⿰⿱目⿻大丶鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "目", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶫", + "codepoint": "U+9DAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DAB", + "status": "exact_ids", + "ids": "⿰柬鳥", + "canonical_ids": "⿰柬鳥", + "expanded_ids": "⿰柬鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "柬", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶬", + "codepoint": "U+9DAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DAC", + "status": "exact_ids", + "ids": "⿰倉鳥", + "canonical_ids": "⿰倉鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "倉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶭", + "codepoint": "U+9DAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DAD", + "status": "exact_ids", + "ids": "⿱紡鳥", + "canonical_ids": "⿱紡鳥", + "expanded_ids": "⿱⿰⿻幺小方鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "方", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶮", + "codepoint": "U+9DAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DAE", + "status": "exact_ids", + "ids": "⿰高鳥", + "canonical_ids": "⿰高鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "高" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶯", + "codepoint": "U+9DAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DAF", + "status": "exact_ids", + "ids": "⿳炏冖鳥", + "canonical_ids": "⿳炏冖鳥", + "expanded_ids": "⿳⿰火火冖鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "火", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶰", + "codepoint": "U+9DB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DB0", + "status": "exact_ids", + "ids": "⿰員鳥", + "canonical_ids": "⿰員鳥", + "expanded_ids": "⿰⿱口⿱目八鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "目", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶱", + "codepoint": "U+9DB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DB1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶲", + "codepoint": "U+9DB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DB2", + "status": "exact_ids", + "ids": "⿰翁鳥", + "canonical_ids": "⿰翁鳥", + "expanded_ids": "⿰⿱⿱八厶⿰习习鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "八", + "厶", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶳", + "codepoint": "U+9DB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DB3", + "status": "exact_ids", + "ids": "⿰鳥師", + "canonical_ids": "⿰鳥師", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "師" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶴", + "codepoint": "U+9DB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DB4", + "status": "exact_ids", + "ids": "⿰隺鳥", + "canonical_ids": "⿰隺鳥", + "expanded_ids": "⿰⿻冖隹鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "隹", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶵", + "codepoint": "U+9DB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DB5", + "status": "exact_ids", + "ids": "⿰芻鳥", + "canonical_ids": "⿰芻鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "芻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶶", + "codepoint": "U+9DB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DB6", + "status": "exact_ids", + "ids": "⿰唐鳥", + "canonical_ids": "⿰唐鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "唐" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶷", + "codepoint": "U+9DB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DB7", + "status": "exact_ids", + "ids": "⿰害鳥", + "canonical_ids": "⿰害鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "害" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶸", + "codepoint": "U+9DB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DB8", + "status": "exact_ids", + "ids": "⿰弱鳥", + "canonical_ids": "⿰弱鳥", + "expanded_ids": "⿰⿰⿱弓二⿱弓二鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "弓", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶹", + "codepoint": "U+9DB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DB9", + "status": "exact_ids", + "ids": "⿰留鳥", + "canonical_ids": "⿰留鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶺", + "codepoint": "U+9DBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DBA", + "status": "exact_ids", + "ids": "⿰脊鳥", + "canonical_ids": "⿰脊鳥", + "expanded_ids": "⿰⿱兆月鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "月", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶻", + "codepoint": "U+9DBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DBB", + "status": "exact_ids", + "ids": "⿰骨鳥", + "canonical_ids": "⿰骨鳥", + "expanded_ids": "⿰⿱冎月鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶼", + "codepoint": "U+9DBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DBC", + "status": "exact_ids", + "ids": "⿰兼鳥", + "canonical_ids": "⿰兼鳥", + "expanded_ids": "⿰兼鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶽", + "codepoint": "U+9DBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DBD", + "status": "exact_ids", + "ids": "⿰隼鳥", + "canonical_ids": "⿰隼鳥", + "expanded_ids": "⿰⿱隹十鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "隹", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶾", + "codepoint": "U+9DBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DBE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鶿", + "codepoint": "U+9DBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DBF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷀", + "codepoint": "U+9DC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DC0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷁", + "codepoint": "U+9DC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DC1", + "status": "exact_ids", + "ids": "⿰益鳥", + "canonical_ids": "⿰益鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷂", + "codepoint": "U+9DC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DC2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷃", + "codepoint": "U+9DC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DC3", + "status": "exact_ids", + "ids": "⿰晏鳥", + "canonical_ids": "⿰晏鳥", + "expanded_ids": "⿰⿱日⿱宀女鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "日", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷄", + "codepoint": "U+9DC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DC4", + "status": "exact_ids", + "ids": "⿰奚鳥", + "canonical_ids": "⿰奚鳥", + "expanded_ids": "⿰⿱爪⿱幺大鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "幺", + "爪", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷅", + "codepoint": "U+9DC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DC5", + "status": "exact_ids", + "ids": "⿰栗鳥", + "canonical_ids": "⿰栗鳥", + "expanded_ids": "⿰⿱覀木鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "覀", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷆", + "codepoint": "U+9DC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DC6", + "status": "exact_ids", + "ids": "⿰眞鳥", + "canonical_ids": "⿰眞鳥", + "expanded_ids": "⿰⿻匕⿱⿱一儿目鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "匕", + "目", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷇", + "codepoint": "U+9DC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DC7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷈", + "codepoint": "U+9DC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DC8", + "status": "exact_ids", + "ids": "⿰鳥虒", + "canonical_ids": "⿰鳥虒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "虒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷉", + "codepoint": "U+9DC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DC9", + "status": "exact_ids", + "ids": "⿰虒鳥", + "canonical_ids": "⿰虒鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "虒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷊", + "codepoint": "U+9DCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DCA", + "status": "exact_ids", + "ids": "⿰鬲鳥", + "canonical_ids": "⿰鬲鳥", + "expanded_ids": "⿰鬲鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鬲", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷋", + "codepoint": "U+9DCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DCB", + "status": "exact_ids", + "ids": "⿰荼鳥", + "canonical_ids": "⿰荼鳥", + "expanded_ids": "⿰⿱艹⿱⿱人一朩鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "朩", + "艹", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷌", + "codepoint": "U+9DCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DCC", + "status": "exact_ids", + "ids": "⿰鳥馬", + "canonical_ids": "⿰鳥馬", + "expanded_ids": "⿰鳥馬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "馬", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷍", + "codepoint": "U+9DCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DCD", + "status": "exact_ids", + "ids": "⿰臬鳥", + "canonical_ids": "⿰臬鳥", + "expanded_ids": "⿰⿱⿻目丶木鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "木", + "目", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷎", + "codepoint": "U+9DCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DCE", + "status": "exact_ids", + "ids": "⿰皋鳥", + "canonical_ids": "⿰皋鳥", + "expanded_ids": "⿰⿱⿻日丶⿱大十鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "十", + "大", + "日", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷏", + "codepoint": "U+9DCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DCF", + "status": "exact_ids", + "ids": "⿰真鳥", + "canonical_ids": "⿰真鳥", + "expanded_ids": "⿰⿱十⿻⿱目八一鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "目", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷐", + "codepoint": "U+9DD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DD0", + "status": "exact_ids", + "ids": "⿰晨鳥", + "canonical_ids": "⿰晨鳥", + "expanded_ids": "⿰⿱日辰鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "辰", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷑", + "codepoint": "U+9DD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DD1", + "status": "exact_ids", + "ids": "⿰笠鳥", + "canonical_ids": "⿰笠鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "立", + "鳥" + ], + "unresolved_leaves": [ + "亇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷒", + "codepoint": "U+9DD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DD2", + "status": "exact_ids", + "ids": "⿰專鳥", + "canonical_ids": "⿰專鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "寸", + "鳥" + ], + "unresolved_leaves": [ + "𤰔" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷓", + "codepoint": "U+9DD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DD3", + "status": "exact_ids", + "ids": "⿰庶鳥", + "canonical_ids": "⿰庶鳥", + "expanded_ids": "⿰⿱广⿱廿火鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "廿", + "火", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷔", + "codepoint": "U+9DD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DD4", + "status": "exact_ids", + "ids": "⿱敖鳥", + "canonical_ids": "⿱敖鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷕", + "codepoint": "U+9DD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DD5", + "status": "exact_ids", + "ids": "⿱唯鳥", + "canonical_ids": "⿱唯鳥", + "expanded_ids": "⿱⿰口隹鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "隹", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷖", + "codepoint": "U+9DD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DD6", + "status": "exact_ids", + "ids": "⿱殹鳥", + "canonical_ids": "⿱殹鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "鳥" + ], + "unresolved_leaves": [ + "医" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷗", + "codepoint": "U+9DD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DD7", + "status": "exact_ids", + "ids": "⿰區鳥", + "canonical_ids": "⿰區鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "區" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷘", + "codepoint": "U+9DD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DD8", + "status": "exact_ids", + "ids": "⿱敕鳥", + "canonical_ids": "⿱敕鳥", + "expanded_ids": "⿱⿰⿻木口攵鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "攵", + "木", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷙", + "codepoint": "U+9DD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DD9", + "status": "exact_ids", + "ids": "⿱執鳥", + "canonical_ids": "⿱執鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "土", + "鳥" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷚", + "codepoint": "U+9DDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DDA", + "status": "exact_ids", + "ids": "⿰翏鳥", + "canonical_ids": "⿰翏鳥", + "expanded_ids": "⿰⿱⿰习习⿱人彡鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷛", + "codepoint": "U+9DDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DDB", + "status": "exact_ids", + "ids": "⿰庸鳥", + "canonical_ids": "⿰庸鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "庸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷜", + "codepoint": "U+9DDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DDC", + "status": "exact_ids", + "ids": "⿰婁鳥", + "canonical_ids": "⿰婁鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "婁" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷝", + "codepoint": "U+9DDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DDD", + "status": "exact_ids", + "ids": "⿰畢鳥", + "canonical_ids": "⿰畢鳥", + "expanded_ids": "⿰畢鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "畢", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷞", + "codepoint": "U+9DDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DDE", + "status": "exact_ids", + "ids": "⿰爽鳥", + "canonical_ids": "⿰爽鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "鳥" + ], + "unresolved_leaves": [ + "㸚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷟", + "codepoint": "U+9DDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DDF", + "status": "exact_ids", + "ids": "⿱族鳥", + "canonical_ids": "⿱族鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "族" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷠", + "codepoint": "U+9DE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DE0", + "status": "exact_ids", + "ids": "⿰魚鳥", + "canonical_ids": "⿰魚鳥", + "expanded_ids": "⿰魚鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "魚", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷡", + "codepoint": "U+9DE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DE1", + "status": "exact_ids", + "ids": "⿰無鳥", + "canonical_ids": "⿰無鳥", + "expanded_ids": "⿰無鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "無", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷢", + "codepoint": "U+9DE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DE2", + "status": "exact_ids", + "ids": "⿱厥鳥", + "canonical_ids": "⿱厥鳥", + "expanded_ids": "⿱⿱厂⿰⿱䒑屮欠鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "厂", + "屮", + "欠", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷣", + "codepoint": "U+9DE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DE3", + "status": "exact_ids", + "ids": "⿰覃鳥", + "canonical_ids": "⿰覃鳥", + "expanded_ids": "⿰⿱襾⿱日十鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "襾", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷤", + "codepoint": "U+9DE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DE4", + "status": "exact_ids", + "ids": "⿰單鳥", + "canonical_ids": "⿰單鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "單" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷥", + "codepoint": "U+9DE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DE5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷦", + "codepoint": "U+9DE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DE6", + "status": "exact_ids", + "ids": "⿰焦鳥", + "canonical_ids": "⿰焦鳥", + "expanded_ids": "⿰⿱隹灬鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬", + "隹", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷧", + "codepoint": "U+9DE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DE7", + "status": "exact_ids", + "ids": "⿰壹鳥", + "canonical_ids": "⿰壹鳥", + "expanded_ids": "⿰⿳土冖豆鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "土", + "豆", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 141, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷨", + "codepoint": "U+9DE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DE8", + "status": "exact_ids", + "ids": "⿰華鳥", + "canonical_ids": "⿰華鳥", + "expanded_ids": "⿰⿱艹𠦒鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "鳥", + "𠦒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 118, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷩", + "codepoint": "U+9DE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DE9", + "status": "exact_ids", + "ids": "⿱敝鳥", + "canonical_ids": "⿱敝鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "鳥" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷪", + "codepoint": "U+9DEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DEA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷫", + "codepoint": "U+9DEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DEB", + "status": "exact_ids", + "ids": "⿰肅鳥", + "canonical_ids": "⿰肅鳥", + "expanded_ids": "⿰⿻肀𣶒鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "肀", + "鳥", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 118, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷬", + "codepoint": "U+9DEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DEC", + "status": "exact_ids", + "ids": "⿰黄鳥", + "canonical_ids": "⿰黄鳥", + "expanded_ids": "⿰黄鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷭", + "codepoint": "U+9DED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DED", + "status": "exact_ids", + "ids": "⿰番鳥", + "canonical_ids": "⿰番鳥", + "expanded_ids": "⿰⿱⿱丿⿻木丷田鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "丿", + "木", + "田", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷮", + "codepoint": "U+9DEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DEE", + "status": "exact_ids", + "ids": "⿰喬鳥", + "canonical_ids": "⿰喬鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "口", + "大", + "鳥" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷯", + "codepoint": "U+9DEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DEF", + "status": "exact_ids", + "ids": "⿰尞鳥", + "canonical_ids": "⿰尞鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "鳥" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷰", + "codepoint": "U+9DF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DF0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷱", + "codepoint": "U+9DF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DF1", + "status": "exact_ids", + "ids": "⿰臯鳥", + "canonical_ids": "⿰臯鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "臯" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷲", + "codepoint": "U+9DF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DF2", + "status": "exact_ids", + "ids": "⿱就鳥", + "canonical_ids": "⿱就鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "鳥" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷳", + "codepoint": "U+9DF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DF3", + "status": "exact_ids", + "ids": "⿰閒鳥", + "canonical_ids": "⿰閒鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "閒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷴", + "codepoint": "U+9DF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DF4", + "status": "exact_ids", + "ids": "⿰閑鳥", + "canonical_ids": "⿰閑鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "閑" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷵", + "codepoint": "U+9DF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DF5", + "status": "exact_ids", + "ids": "⿰屠鳥", + "canonical_ids": "⿰屠鳥", + "expanded_ids": "⿰⿱尸⿱⿻土丿日鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "土", + "尸", + "日", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷶", + "codepoint": "U+9DF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DF6", + "status": "exact_ids", + "ids": "⿰買鳥", + "canonical_ids": "⿰買鳥", + "expanded_ids": "⿰⿱罒⿱目八鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "罒", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷷", + "codepoint": "U+9DF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DF7", + "status": "exact_ids", + "ids": "⿰尊鳥", + "canonical_ids": "⿰尊鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "寸", + "鳥" + ], + "unresolved_leaves": [ + "酉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷸", + "codepoint": "U+9DF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DF8", + "status": "exact_ids", + "ids": "⿰矞鳥", + "canonical_ids": "⿰矞鳥", + "expanded_ids": "⿰⿱矛⿱冂⿱八口鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "矛", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷹", + "codepoint": "U+9DF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DF9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷺", + "codepoint": "U+9DFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DFA", + "status": "exact_ids", + "ids": "⿱路鳥", + "canonical_ids": "⿱路鳥", + "expanded_ids": "⿱⿰⿱口龰⿱夂口鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "鳥", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷻", + "codepoint": "U+9DFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DFB", + "status": "exact_ids", + "ids": "⿰鳥敦", + "canonical_ids": "⿰鳥敦", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "鳥" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷼", + "codepoint": "U+9DFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DFC", + "status": "exact_ids", + "ids": "⿰間鳥", + "canonical_ids": "⿰間鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "間" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷽", + "codepoint": "U+9DFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DFD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷾", + "codepoint": "U+9DFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DFE", + "status": "exact_ids", + "ids": "⿰意鳥", + "canonical_ids": "⿰意鳥", + "expanded_ids": "⿰⿱⿱立日心鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "心", + "日", + "立", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鷿", + "codepoint": "U+9DFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9DFF", + "status": "exact_ids", + "ids": "⿱辟鳥", + "canonical_ids": "⿱辟鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立", + "鳥" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸀", + "codepoint": "U+9E00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E00", + "status": "exact_ids", + "ids": "⿰蜀鳥", + "canonical_ids": "⿰蜀鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "罒", + "鳥" + ], + "unresolved_leaves": [ + "𠣜" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸁", + "codepoint": "U+9E01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E01", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸂", + "codepoint": "U+9E02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E02", + "status": "exact_ids", + "ids": "⿰溪鳥", + "canonical_ids": "⿰溪鳥", + "expanded_ids": "⿰⿰氵⿱爪⿱幺大鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "幺", + "氵", + "爪", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸃", + "codepoint": "U+9E03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E03", + "status": "exact_ids", + "ids": "⿰鳥義", + "canonical_ids": "⿰鳥義", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "義" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸄", + "codepoint": "U+9E04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E04", + "status": "exact_ids", + "ids": "⿱敫鳥", + "canonical_ids": "⿱敫鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥" + ], + "unresolved_leaves": [ + "敫" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸅", + "codepoint": "U+9E05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E05", + "status": "exact_ids", + "ids": "⿰睪鳥", + "canonical_ids": "⿰睪鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "罒", + "鳥" + ], + "unresolved_leaves": [ + "𢆉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸆", + "codepoint": "U+9E06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E06", + "status": "exact_ids", + "ids": "⿰虞鳥", + "canonical_ids": "⿰虞鳥", + "expanded_ids": "⿰⿱虍⿱口⿻大乛鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "口", + "大", + "虍", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸇", + "codepoint": "U+9E07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E07", + "status": "exact_ids", + "ids": "⿰亶鳥", + "canonical_ids": "⿰亶鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "日", + "鳥" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸈", + "codepoint": "U+9E08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E08", + "status": "exact_ids", + "ids": "⿰業鳥", + "canonical_ids": "⿰業鳥", + "expanded_ids": "⿰⿱业⿻羊八鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "业", + "八", + "羊", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸉", + "codepoint": "U+9E09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E09", + "status": "exact_ids", + "ids": "⿱楊鳥", + "canonical_ids": "⿱楊鳥", + "expanded_ids": "⿱⿰木⿱⿱日一勿鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "勿", + "日", + "木", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸊", + "codepoint": "U+9E0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E0A", + "status": "exact_ids", + "ids": "⿰辟鳥", + "canonical_ids": "⿰辟鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立", + "鳥" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸋", + "codepoint": "U+9E0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E0B", + "status": "exact_ids", + "ids": "⿰寧鳥", + "canonical_ids": "⿰寧鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "鳥" + ], + "unresolved_leaves": [ + "寍" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸌", + "codepoint": "U+9E0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E0C", + "status": "exact_ids", + "ids": "⿰鳥蒦", + "canonical_ids": "⿰鳥蒦", + "expanded_ids": "⿰鳥⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "艹", + "隹", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸍", + "codepoint": "U+9E0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E0D", + "status": "exact_ids", + "ids": "⿰爾鳥", + "canonical_ids": "⿰爾鳥", + "expanded_ids": "⿰爾鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "爾", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸎", + "codepoint": "U+9E0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E0E", + "status": "exact_ids", + "ids": "⿱⿰貝貝鳥", + "canonical_ids": "⿱⿰貝貝鳥", + "expanded_ids": "⿱⿰⿱目八⿱目八鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸏", + "codepoint": "U+9E0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E0F", + "status": "exact_ids", + "ids": "⿰蒙鳥", + "canonical_ids": "⿰蒙鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "鳥", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸐", + "codepoint": "U+9E10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E10", + "status": "exact_ids", + "ids": "⿰翟鳥", + "canonical_ids": "⿰翟鳥", + "expanded_ids": "⿰⿱⿰习习隹鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "隹", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸑", + "codepoint": "U+9E11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E11", + "status": "exact_ids", + "ids": "⿱獄鳥", + "canonical_ids": "⿱獄鳥", + "expanded_ids": "⿱⿰犭⿰言尤鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "犭", + "言", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸒", + "codepoint": "U+9E12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E12", + "status": "exact_ids", + "ids": "⿱與鳥", + "canonical_ids": "⿱與鳥", + "expanded_ids": "⿱與鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "與", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸓", + "codepoint": "U+9E13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E13", + "status": "exact_ids", + "ids": "⿰畾鳥", + "canonical_ids": "⿰畾鳥", + "expanded_ids": "⿰⿱田⿰田田鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸔", + "codepoint": "U+9E14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E14", + "status": "exact_ids", + "ids": "⿰鳥暴", + "canonical_ids": "⿰鳥暴", + "expanded_ids": "⿰鳥⿱日⿱⿱廿廾氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "日", + "氺", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸕", + "codepoint": "U+9E15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E15", + "status": "exact_ids", + "ids": "⿰盧鳥", + "canonical_ids": "⿰盧鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "鳥" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸖", + "codepoint": "U+9E16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E16", + "status": "exact_ids", + "ids": "⿰霍鳥", + "canonical_ids": "⿰霍鳥", + "expanded_ids": "⿰⿱雨隹鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "隹", + "雨", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸗", + "codepoint": "U+9E17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E17", + "status": "exact_ids", + "ids": "⿱龍鳥", + "canonical_ids": "⿱龍鳥", + "expanded_ids": "⿱龍鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸘", + "codepoint": "U+9E18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E18", + "status": "exact_ids", + "ids": "⿰霜鳥", + "canonical_ids": "⿰霜鳥", + "expanded_ids": "⿰⿱雨⿰木目鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "目", + "雨", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸙", + "codepoint": "U+9E19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E19", + "status": "exact_ids", + "ids": "⿰龠鳥", + "canonical_ids": "⿰龠鳥", + "expanded_ids": "⿰龠鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥", + "龠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸚", + "codepoint": "U+9E1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E1A", + "status": "exact_ids", + "ids": "⿰嬰鳥", + "canonical_ids": "⿰嬰鳥", + "expanded_ids": "⿰⿱⿰⿱目八⿱目八女鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "女", + "目", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸛", + "codepoint": "U+9E1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E1B", + "status": "exact_ids", + "ids": "⿰雚鳥", + "canonical_ids": "⿰雚鳥", + "expanded_ids": "⿰⿱艹⿱⿰口口隹鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艹", + "隹", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸜", + "codepoint": "U+9E1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E1C", + "status": "exact_ids", + "ids": "⿰瞿鳥", + "canonical_ids": "⿰瞿鳥", + "expanded_ids": "⿰⿱⿰目目隹鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "目", + "隹", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸝", + "codepoint": "U+9E1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E1D", + "status": "exact_ids", + "ids": "⿰麗鳥", + "canonical_ids": "⿰麗鳥", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鳥", + "鹿" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸞", + "codepoint": "U+9E1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E1E", + "status": "exact_ids", + "ids": "⿱䜌鳥", + "canonical_ids": "⿱䜌鳥", + "expanded_ids": "⿱⿲⿱幺小言⿱幺小鳥", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "幺", + "言", + "鳥" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 217, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸟", + "codepoint": "U+9E1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E1F", + "status": "leaf_self_fallback", + "ids": "鸟", + "canonical_ids": "鸟", + "expanded_ids": "鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸠", + "codepoint": "U+9E20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E20", + "status": "exact_ids", + "ids": "⿰九鸟", + "canonical_ids": "⿰九鸟", + "expanded_ids": "⿰九鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "九", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸡", + "codepoint": "U+9E21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E21", + "status": "exact_ids", + "ids": "⿰又鸟", + "canonical_ids": "⿰又鸟", + "expanded_ids": "⿰又鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸢", + "codepoint": "U+9E22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E22", + "status": "exact_ids", + "ids": "⿱弋鸟", + "canonical_ids": "⿱弋鸟", + "expanded_ids": "⿱弋鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弋", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸣", + "codepoint": "U+9E23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E23", + "status": "exact_ids", + "ids": "⿰口鸟", + "canonical_ids": "⿰口鸟", + "expanded_ids": "⿰口鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸤", + "codepoint": "U+9E24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E24", + "status": "exact_ids", + "ids": "⿰尸鸟", + "canonical_ids": "⿰尸鸟", + "expanded_ids": "⿰尸鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尸", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸥", + "codepoint": "U+9E25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E25", + "status": "exact_ids", + "ids": "⿰区鸟", + "canonical_ids": "⿰区鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鸟" + ], + "unresolved_leaves": [ + "区" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸦", + "codepoint": "U+9E26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E26", + "status": "exact_ids", + "ids": "⿰牙鸟", + "canonical_ids": "⿰牙鸟", + "expanded_ids": "⿰牙鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸧", + "codepoint": "U+9E27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E27", + "status": "exact_ids", + "ids": "⿰仓鸟", + "canonical_ids": "⿰仓鸟", + "expanded_ids": "⿰⿱人㔾鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "人", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸨", + "codepoint": "U+9E28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E28", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸩", + "codepoint": "U+9E29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E29", + "status": "exact_ids", + "ids": "⿰冘鸟", + "canonical_ids": "⿰冘鸟", + "expanded_ids": "⿰⿻冖儿鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸪", + "codepoint": "U+9E2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E2A", + "status": "exact_ids", + "ids": "⿰古鸟", + "canonical_ids": "⿰古鸟", + "expanded_ids": "⿰⿻十口鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸫", + "codepoint": "U+9E2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E2B", + "status": "exact_ids", + "ids": "⿰东鸟", + "canonical_ids": "⿰东鸟", + "expanded_ids": "⿰东鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "东", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸬", + "codepoint": "U+9E2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E2C", + "status": "exact_ids", + "ids": "⿰卢鸟", + "canonical_ids": "⿰卢鸟", + "expanded_ids": "⿰⿱卜尸鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "尸", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸭", + "codepoint": "U+9E2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E2D", + "status": "exact_ids", + "ids": "⿰甲鸟", + "canonical_ids": "⿰甲鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鸟" + ], + "unresolved_leaves": [ + "甲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸮", + "codepoint": "U+9E2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E2E", + "status": "exact_ids", + "ids": "⿰号鸟", + "canonical_ids": "⿰号鸟", + "expanded_ids": "⿰⿱口丂鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丂", + "口", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸯", + "codepoint": "U+9E2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E2F", + "status": "exact_ids", + "ids": "⿱央鸟", + "canonical_ids": "⿱央鸟", + "expanded_ids": "⿱⿻冂大鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冂", + "大", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸰", + "codepoint": "U+9E30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E30", + "status": "exact_ids", + "ids": "⿰令鸟", + "canonical_ids": "⿰令鸟", + "expanded_ids": "⿰⿱⿱人一龴鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "鸟", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸱", + "codepoint": "U+9E31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E31", + "status": "exact_ids", + "ids": "⿰氐鸟", + "canonical_ids": "⿰氐鸟", + "expanded_ids": "⿰⿻氏丶鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "氏", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸲", + "codepoint": "U+9E32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E32", + "status": "exact_ids", + "ids": "⿰句鸟", + "canonical_ids": "⿰句鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鸟" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸳", + "codepoint": "U+9E33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E33", + "status": "exact_ids", + "ids": "⿱夗鸟", + "canonical_ids": "⿱夗鸟", + "expanded_ids": "⿱⿰夕㔾鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸴", + "codepoint": "U+9E34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E34", + "status": "exact_ids", + "ids": "⿳小冖鸟", + "canonical_ids": "⿳小冖鸟", + "expanded_ids": "⿳小冖鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "小", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 101, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸵", + "codepoint": "U+9E35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E35", + "status": "exact_ids", + "ids": "⿰鸟它", + "canonical_ids": "⿰鸟它", + "expanded_ids": "⿰鸟⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸶", + "codepoint": "U+9E36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E36", + "status": "exact_ids", + "ids": "⿱丝鸟", + "canonical_ids": "⿱丝鸟", + "expanded_ids": "⿱丝鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丝", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸷", + "codepoint": "U+9E37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E37", + "status": "exact_ids", + "ids": "⿱执鸟", + "canonical_ids": "⿱执鸟", + "expanded_ids": "⿱⿰扌⿻九丶鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "九", + "扌", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸸", + "codepoint": "U+9E38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E38", + "status": "exact_ids", + "ids": "⿰而鸟", + "canonical_ids": "⿰而鸟", + "expanded_ids": "⿰而鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "而", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸹", + "codepoint": "U+9E39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E39", + "status": "exact_ids", + "ids": "⿰舌鸟", + "canonical_ids": "⿰舌鸟", + "expanded_ids": "⿰⿱⿱丿十口鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "口", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸺", + "codepoint": "U+9E3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E3A", + "status": "exact_ids", + "ids": "⿰休鸟", + "canonical_ids": "⿰休鸟", + "expanded_ids": "⿰⿰亻木鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "木", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸻", + "codepoint": "U+9E3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E3B", + "status": "exact_ids", + "ids": "⿰行鸟", + "canonical_ids": "⿰行鸟", + "expanded_ids": "⿰⿰彳彳鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彳", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸼", + "codepoint": "U+9E3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E3C", + "status": "exact_ids", + "ids": "⿰舟鸟", + "canonical_ids": "⿰舟鸟", + "expanded_ids": "⿰舟鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "舟", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸽", + "codepoint": "U+9E3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E3D", + "status": "exact_ids", + "ids": "⿰合鸟", + "canonical_ids": "⿰合鸟", + "expanded_ids": "⿰⿱⿱人一口鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸾", + "codepoint": "U+9E3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E3E", + "status": "exact_ids", + "ids": "⿱亦鸟", + "canonical_ids": "⿱亦鸟", + "expanded_ids": "⿱亦鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亦", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鸿", + "codepoint": "U+9E3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E3F", + "status": "exact_ids", + "ids": "⿰江鸟", + "canonical_ids": "⿰江鸟", + "expanded_ids": "⿰⿰氵工鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "氵", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹀", + "codepoint": "U+9E40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E40", + "status": "exact_ids", + "ids": "⿰巫鸟", + "canonical_ids": "⿰巫鸟", + "expanded_ids": "⿰⿻工⿰人人鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "工", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹁", + "codepoint": "U+9E41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E41", + "status": "exact_ids", + "ids": "⿰孛鸟", + "canonical_ids": "⿰孛鸟", + "expanded_ids": "⿰⿳十冖子鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "十", + "子", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 139, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹂", + "codepoint": "U+9E42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E42", + "status": "exact_ids", + "ids": "⿰丽鸟", + "canonical_ids": "⿰丽鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鸟" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹃", + "codepoint": "U+9E43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E43", + "status": "exact_ids", + "ids": "⿰肙鸟", + "canonical_ids": "⿰肙鸟", + "expanded_ids": "⿰⿱口月鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "月", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹄", + "codepoint": "U+9E44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E44", + "status": "exact_ids", + "ids": "⿰告鸟", + "canonical_ids": "⿰告鸟", + "expanded_ids": "⿰⿱牛口鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "牛", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹅", + "codepoint": "U+9E45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E45", + "status": "exact_ids", + "ids": "⿰我鸟", + "canonical_ids": "⿰我鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "十", + "鸟" + ], + "unresolved_leaves": [ + "戈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹆", + "codepoint": "U+9E46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E46", + "status": "exact_ids", + "ids": "⿰谷鸟", + "canonical_ids": "⿰谷鸟", + "expanded_ids": "⿰⿱八⿱八口鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹇", + "codepoint": "U+9E47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E47", + "status": "exact_ids", + "ids": "⿰闲鸟", + "canonical_ids": "⿰闲鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鸟" + ], + "unresolved_leaves": [ + "闲" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹈", + "codepoint": "U+9E48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E48", + "status": "exact_ids", + "ids": "⿰弟鸟", + "canonical_ids": "⿰弟鸟", + "expanded_ids": "⿰⿱丷⿻⿻弓丨丿鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "丿", + "弓", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹉", + "codepoint": "U+9E49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E49", + "status": "exact_ids", + "ids": "⿰武鸟", + "canonical_ids": "⿰武鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鸟" + ], + "unresolved_leaves": [ + "武" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹊", + "codepoint": "U+9E4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E4A", + "status": "exact_ids", + "ids": "⿰昔鸟", + "canonical_ids": "⿰昔鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "鸟" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹋", + "codepoint": "U+9E4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E4B", + "status": "exact_ids", + "ids": "⿰苗鸟", + "canonical_ids": "⿰苗鸟", + "expanded_ids": "⿰⿱艹田鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "艹", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹌", + "codepoint": "U+9E4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E4C", + "status": "exact_ids", + "ids": "⿰奄鸟", + "canonical_ids": "⿰奄鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "鸟" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹍", + "codepoint": "U+9E4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E4D", + "status": "exact_ids", + "ids": "⿰昆鸟", + "canonical_ids": "⿰昆鸟", + "expanded_ids": "⿰⿱日⿰匕匕鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "日", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹎", + "codepoint": "U+9E4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E4E", + "status": "exact_ids", + "ids": "⿰卑鸟", + "canonical_ids": "⿰卑鸟", + "expanded_ids": "⿰卑鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卑", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹏", + "codepoint": "U+9E4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E4F", + "status": "exact_ids", + "ids": "⿰朋鸟", + "canonical_ids": "⿰朋鸟", + "expanded_ids": "⿰⿰月月鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹐", + "codepoint": "U+9E50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E50", + "status": "exact_ids", + "ids": "⿰臽鸟", + "canonical_ids": "⿰臽鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "臼", + "鸟" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹑", + "codepoint": "U+9E51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E51", + "status": "exact_ids", + "ids": "⿰享鸟", + "canonical_ids": "⿰享鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鸟" + ], + "unresolved_leaves": [ + "享" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹒", + "codepoint": "U+9E52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E52", + "status": "exact_ids", + "ids": "⿰庚鸟", + "canonical_ids": "⿰庚鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鸟" + ], + "unresolved_leaves": [ + "庚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹓", + "codepoint": "U+9E53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E53", + "status": "exact_ids", + "ids": "⿰宛鸟", + "canonical_ids": "⿰宛鸟", + "expanded_ids": "⿰⿱宀⿰夕㔾鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹔", + "codepoint": "U+9E54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E54", + "status": "exact_ids", + "ids": "⿰肃鸟", + "canonical_ids": "⿰肃鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鸟" + ], + "unresolved_leaves": [ + "肃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹕", + "codepoint": "U+9E55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E55", + "status": "exact_ids", + "ids": "⿰胡鸟", + "canonical_ids": "⿰胡鸟", + "expanded_ids": "⿰⿰⿻十口月鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "口", + "月", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹖", + "codepoint": "U+9E56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E56", + "status": "exact_ids", + "ids": "⿰曷鸟", + "canonical_ids": "⿰曷鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曰", + "鸟" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹗", + "codepoint": "U+9E57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E57", + "status": "exact_ids", + "ids": "⿰咢鸟", + "canonical_ids": "⿰咢鸟", + "expanded_ids": "⿰⿱⿰口口⿱一丂鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "口", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹘", + "codepoint": "U+9E58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E58", + "status": "exact_ids", + "ids": "⿰骨鸟", + "canonical_ids": "⿰骨鸟", + "expanded_ids": "⿰⿱冎月鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冎", + "月", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹙", + "codepoint": "U+9E59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E59", + "status": "exact_ids", + "ids": "⿱秋鸟", + "canonical_ids": "⿱秋鸟", + "expanded_ids": "⿱⿰⿻丿木火鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "火", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹚", + "codepoint": "U+9E5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E5A", + "status": "exact_ids", + "ids": "⿰兹鸟", + "canonical_ids": "⿰兹鸟", + "expanded_ids": "⿰⿱䒑⿰幺幺鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "䒑", + "幺", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹛", + "codepoint": "U+9E5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E5B", + "status": "exact_ids", + "ids": "⿰眉鸟", + "canonical_ids": "⿰眉鸟", + "expanded_ids": "⿰⿱⿻尸丨目鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "尸", + "目", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹜", + "codepoint": "U+9E5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E5C", + "status": "exact_ids", + "ids": "⿱敄鸟", + "canonical_ids": "⿱敄鸟", + "expanded_ids": "⿱⿰矛攵鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "矛", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹝", + "codepoint": "U+9E5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E5D", + "status": "exact_ids", + "ids": "⿰鬲鸟", + "canonical_ids": "⿰鬲鸟", + "expanded_ids": "⿰鬲鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鬲", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹞", + "codepoint": "U+9E5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E5E", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹟", + "codepoint": "U+9E5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E5F", + "status": "exact_ids", + "ids": "⿰翁鸟", + "canonical_ids": "⿰翁鸟", + "expanded_ids": "⿰⿱⿱八厶⿰习习鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "八", + "厶", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹠", + "codepoint": "U+9E60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E60", + "status": "exact_ids", + "ids": "⿰留鸟", + "canonical_ids": "⿰留鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鸟" + ], + "unresolved_leaves": [ + "留" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹡", + "codepoint": "U+9E61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E61", + "status": "exact_ids", + "ids": "⿰脊鸟", + "canonical_ids": "⿰脊鸟", + "expanded_ids": "⿰⿱兆月鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "月", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹢", + "codepoint": "U+9E62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E62", + "status": "exact_ids", + "ids": "⿰益鸟", + "canonical_ids": "⿰益鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鸟" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹣", + "codepoint": "U+9E63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E63", + "status": "exact_ids", + "ids": "⿰兼鸟", + "canonical_ids": "⿰兼鸟", + "expanded_ids": "⿰兼鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹤", + "codepoint": "U+9E64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E64", + "status": "exact_ids", + "ids": "⿰隺鸟", + "canonical_ids": "⿰隺鸟", + "expanded_ids": "⿰⿻冖隹鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "隹", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹥", + "codepoint": "U+9E65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E65", + "status": "exact_ids", + "ids": "⿱殹鸟", + "canonical_ids": "⿱殹鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "鸟" + ], + "unresolved_leaves": [ + "医" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹦", + "codepoint": "U+9E66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E66", + "status": "exact_ids", + "ids": "⿰婴鸟", + "canonical_ids": "⿰婴鸟", + "expanded_ids": "⿰⿱⿰⿻冂人⿻冂人女鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "冂", + "女", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹧", + "codepoint": "U+9E67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E67", + "status": "exact_ids", + "ids": "⿰庶鸟", + "canonical_ids": "⿰庶鸟", + "expanded_ids": "⿰⿱广⿱廿火鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "廿", + "火", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹨", + "codepoint": "U+9E68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E68", + "status": "exact_ids", + "ids": "⿰翏鸟", + "canonical_ids": "⿰翏鸟", + "expanded_ids": "⿰⿱⿰习习⿱人彡鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "习", + "人", + "彡", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹩", + "codepoint": "U+9E69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E69", + "status": "exact_ids", + "ids": "⿰尞鸟", + "canonical_ids": "⿰尞鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "鸟" + ], + "unresolved_leaves": [ + "昚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹪", + "codepoint": "U+9E6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E6A", + "status": "exact_ids", + "ids": "⿰焦鸟", + "canonical_ids": "⿰焦鸟", + "expanded_ids": "⿰⿱隹灬鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬", + "隹", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹫", + "codepoint": "U+9E6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E6B", + "status": "exact_ids", + "ids": "⿱就鸟", + "canonical_ids": "⿱就鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "尤", + "鸟" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹬", + "codepoint": "U+9E6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E6C", + "status": "exact_ids", + "ids": "⿰矞鸟", + "canonical_ids": "⿰矞鸟", + "expanded_ids": "⿰⿱矛⿱冂⿱八口鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "冂", + "口", + "矛", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹭", + "codepoint": "U+9E6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E6D", + "status": "exact_ids", + "ids": "⿱路鸟", + "canonical_ids": "⿱路鸟", + "expanded_ids": "⿱⿰⿱口龰⿱夂口鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "夂", + "鸟", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹮", + "codepoint": "U+9E6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E6E", + "status": "exact_ids", + "ids": "⿰睘鸟", + "canonical_ids": "⿰睘鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鸟" + ], + "unresolved_leaves": [ + "睘" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹯", + "codepoint": "U+9E6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E6F", + "status": "exact_ids", + "ids": "⿰亶鸟", + "canonical_ids": "⿰亶鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亠", + "日", + "鸟" + ], + "unresolved_leaves": [ + "回" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹰", + "codepoint": "U+9E70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E70", + "status": "exact_ids", + "ids": "⿱䧹鸟", + "canonical_ids": "⿱䧹鸟", + "expanded_ids": "⿱⿱广⿰亻隹鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "广", + "隹", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹱", + "codepoint": "U+9E71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E71", + "status": "exact_ids", + "ids": "⿰鸟蒦", + "canonical_ids": "⿰鸟蒦", + "expanded_ids": "⿰鸟⿱艹⿱隹又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "艹", + "隹", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 152, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹲", + "codepoint": "U+9E72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E72", + "status": "exact_ids", + "ids": "⿰蒙鸟", + "canonical_ids": "⿰蒙鸟", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艹", + "鸟", + "𧰨" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹳", + "codepoint": "U+9E73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E73", + "status": "exact_ids", + "ids": "⿰雚鸟", + "canonical_ids": "⿰雚鸟", + "expanded_ids": "⿰⿱艹⿱⿰口口隹鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "艹", + "隹", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹴", + "codepoint": "U+9E74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E74", + "status": "exact_ids", + "ids": "⿰霜鸟", + "canonical_ids": "⿰霜鸟", + "expanded_ids": "⿰⿱雨⿰木目鸟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "目", + "雨", + "鸟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹵", + "codepoint": "U+9E75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E75", + "status": "leaf_self_fallback", + "ids": "鹵", + "canonical_ids": "鹵", + "expanded_ids": "鹵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鹵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹶", + "codepoint": "U+9E76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E76", + "status": "exact_ids", + "ids": "⿰鹵今", + "canonical_ids": "⿰鹵今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "鹵" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹷", + "codepoint": "U+9E77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E77", + "status": "exact_ids", + "ids": "⿰鹵令", + "canonical_ids": "⿰鹵令", + "expanded_ids": "⿰鹵⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "鹵", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹸", + "codepoint": "U+9E78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E78", + "status": "exact_ids", + "ids": "⿰鹵㑒", + "canonical_ids": "⿰鹵㑒", + "expanded_ids": "⿰鹵⿻⿱⿱人一口人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "鹵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹹", + "codepoint": "U+9E79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E79", + "status": "exact_ids", + "ids": "⿰鹵咸", + "canonical_ids": "⿰鹵咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鹵" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹺", + "codepoint": "U+9E7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E7A", + "status": "exact_ids", + "ids": "⿰鹵差", + "canonical_ids": "⿰鹵差", + "expanded_ids": "⿰鹵⿱羊工", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "羊", + "鹵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹻", + "codepoint": "U+9E7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E7B", + "status": "exact_ids", + "ids": "⿰鹵兼", + "canonical_ids": "⿰鹵兼", + "expanded_ids": "⿰鹵兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "鹵" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹼", + "codepoint": "U+9E7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E7C", + "status": "exact_ids", + "ids": "⿰鹵僉", + "canonical_ids": "⿰鹵僉", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鹵" + ], + "unresolved_leaves": [ + "僉" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹽", + "codepoint": "U+9E7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E7D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹾", + "codepoint": "U+9E7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E7E", + "status": "exact_ids", + "ids": "⿰卤差", + "canonical_ids": "⿰卤差", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "工", + "羊" + ], + "unresolved_leaves": [ + "龱" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鹿", + "codepoint": "U+9E7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E7F", + "status": "leaf_self_fallback", + "ids": "鹿", + "canonical_ids": "鹿", + "expanded_ids": "鹿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麀", + "codepoint": "U+9E80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E80", + "status": "exact_ids", + "ids": "⿱鹿匕", + "canonical_ids": "⿱鹿匕", + "expanded_ids": "⿱鹿匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麁", + "codepoint": "U+9E81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E81", + "status": "exact_ids", + "ids": "⿱⺈鹿", + "canonical_ids": "⿱⺈鹿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鹿" + ], + "unresolved_leaves": [ + "⺈" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麂", + "codepoint": "U+9E82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E82", + "status": "exact_ids", + "ids": "⿱鹿几", + "canonical_ids": "⿱鹿几", + "expanded_ids": "⿱鹿几", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麃", + "codepoint": "U+9E83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E83", + "status": "exact_ids", + "ids": "⿱鹿灬", + "canonical_ids": "⿱鹿灬", + "expanded_ids": "⿱鹿灬", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "灬", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麄", + "codepoint": "U+9E84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E84", + "status": "exact_ids", + "ids": "⿱分鹿", + "canonical_ids": "⿱分鹿", + "expanded_ids": "⿱⿱八刀鹿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麅", + "codepoint": "U+9E85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E85", + "status": "exact_ids", + "ids": "⿱鹿包", + "canonical_ids": "⿱鹿包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鹿" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麆", + "codepoint": "U+9E86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E86", + "status": "exact_ids", + "ids": "⿱鹿且", + "canonical_ids": "⿱鹿且", + "expanded_ids": "⿱鹿且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麇", + "codepoint": "U+9E87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E87", + "status": "exact_ids", + "ids": "⿱鹿禾", + "canonical_ids": "⿱鹿禾", + "expanded_ids": "⿱鹿⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麈", + "codepoint": "U+9E88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E88", + "status": "exact_ids", + "ids": "⿱鹿主", + "canonical_ids": "⿱鹿主", + "expanded_ids": "⿱鹿⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麉", + "codepoint": "U+9E89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E89", + "status": "exact_ids", + "ids": "⿱⿰干干鹿", + "canonical_ids": "⿱⿰干干鹿", + "expanded_ids": "⿱⿰⿱一十⿱一十鹿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "十", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麊", + "codepoint": "U+9E8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E8A", + "status": "exact_ids", + "ids": "⿱米鹿", + "canonical_ids": "⿱米鹿", + "expanded_ids": "⿱⿻木丷鹿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麋", + "codepoint": "U+9E8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E8B", + "status": "exact_ids", + "ids": "⿱鹿米", + "canonical_ids": "⿱鹿米", + "expanded_ids": "⿱鹿⿻木丷", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丷", + "木", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麌", + "codepoint": "U+9E8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E8C", + "status": "exact_ids", + "ids": "⿱鹿吴", + "canonical_ids": "⿱鹿吴", + "expanded_ids": "⿱鹿⿱口⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "大", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麍", + "codepoint": "U+9E8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E8D", + "status": "exact_ids", + "ids": "⿱鹿㐬", + "canonical_ids": "⿱鹿㐬", + "expanded_ids": "⿱鹿⿱亠⿱厶川", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "厶", + "川", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麎", + "codepoint": "U+9E8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E8E", + "status": "exact_ids", + "ids": "⿱鹿辰", + "canonical_ids": "⿱鹿辰", + "expanded_ids": "⿱鹿辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "辰", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麏", + "codepoint": "U+9E8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E8F", + "status": "exact_ids", + "ids": "⿱鹿君", + "canonical_ids": "⿱鹿君", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "鹿" + ], + "unresolved_leaves": [ + "尹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麐", + "codepoint": "U+9E90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E90", + "status": "exact_ids", + "ids": "⿱鹿吝", + "canonical_ids": "⿱鹿吝", + "expanded_ids": "⿱鹿⿱文口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "文", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麑", + "codepoint": "U+9E91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E91", + "status": "exact_ids", + "ids": "⿱鹿兒", + "canonical_ids": "⿱鹿兒", + "expanded_ids": "⿱鹿⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "臼", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麒", + "codepoint": "U+9E92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E92", + "status": "exact_ids", + "ids": "⿰鹿其", + "canonical_ids": "⿰鹿其", + "expanded_ids": "⿰鹿其", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "其", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麓", + "codepoint": "U+9E93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E93", + "status": "exact_ids", + "ids": "⿱林鹿", + "canonical_ids": "⿱林鹿", + "expanded_ids": "⿱⿰木木鹿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麔", + "codepoint": "U+9E94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E94", + "status": "exact_ids", + "ids": "⿱鹿咎", + "canonical_ids": "⿱鹿咎", + "expanded_ids": "⿱鹿⿱⿰夂卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "夂", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麕", + "codepoint": "U+9E95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E95", + "status": "exact_ids", + "ids": "⿱鹿囷", + "canonical_ids": "⿱鹿囷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鹿" + ], + "unresolved_leaves": [ + "囷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麖", + "codepoint": "U+9E96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E96", + "status": "exact_ids", + "ids": "⿱鹿京", + "canonical_ids": "⿱鹿京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鹿" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麗", + "codepoint": "U+9E97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E97", + "status": "exact_ids", + "ids": "⿱丽鹿", + "canonical_ids": "⿱丽鹿", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鹿" + ], + "unresolved_leaves": [ + "丽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麘", + "codepoint": "U+9E98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E98", + "status": "exact_ids", + "ids": "⿱鹿香", + "canonical_ids": "⿱鹿香", + "expanded_ids": "⿱鹿⿱⿻丿木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "日", + "木", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麙", + "codepoint": "U+9E99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E99", + "status": "exact_ids", + "ids": "⿱鹿咸", + "canonical_ids": "⿱鹿咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鹿" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麚", + "codepoint": "U+9E9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E9A", + "status": "exact_ids", + "ids": "⿱鹿叚", + "canonical_ids": "⿱鹿叚", + "expanded_ids": "⿱鹿叚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "叚", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麛", + "codepoint": "U+9E9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E9B", + "status": "exact_ids", + "ids": "⿱鹿弭", + "canonical_ids": "⿱鹿弭", + "expanded_ids": "⿱鹿⿰弓耳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弓", + "耳", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麜", + "codepoint": "U+9E9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E9C", + "status": "exact_ids", + "ids": "⿱鹿栗", + "canonical_ids": "⿱鹿栗", + "expanded_ids": "⿱鹿⿱覀木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "覀", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麝", + "codepoint": "U+9E9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E9D", + "status": "exact_ids", + "ids": "⿱鹿射", + "canonical_ids": "⿱鹿射", + "expanded_ids": "⿱鹿⿰身寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "寸", + "身", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麞", + "codepoint": "U+9E9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E9E", + "status": "exact_ids", + "ids": "⿱鹿章", + "canonical_ids": "⿱鹿章", + "expanded_ids": "⿱鹿⿱立⿱日十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "日", + "立", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麟", + "codepoint": "U+9E9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9E9F", + "status": "exact_ids", + "ids": "⿰鹿粦", + "canonical_ids": "⿰鹿粦", + "expanded_ids": "⿰鹿⿱⿻木丷⿰夕⿻丨二", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丨", + "丷", + "二", + "夕", + "木", + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麠", + "codepoint": "U+9EA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EA0", + "status": "exact_ids", + "ids": "⿱鹿畺", + "canonical_ids": "⿱鹿畺", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "鹿" + ], + "unresolved_leaves": [ + "三" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麡", + "codepoint": "U+9EA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EA1", + "status": "exact_ids", + "ids": "⿱鹿齊", + "canonical_ids": "⿱鹿齊", + "expanded_ids": "⿱鹿齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鹿", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麢", + "codepoint": "U+9EA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EA2", + "status": "exact_ids", + "ids": "⿱鹿霝", + "canonical_ids": "⿱鹿霝", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨", + "鹿" + ], + "unresolved_leaves": [ + "𠱠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麣", + "codepoint": "U+9EA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EA3", + "status": "exact_ids", + "ids": "⿰鹿嚴", + "canonical_ids": "⿰鹿嚴", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "鹿" + ], + "unresolved_leaves": [ + "𠪚" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麤", + "codepoint": "U+9EA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EA4", + "status": "exact_ids", + "ids": "⿱鹿⿰鹿鹿", + "canonical_ids": "⿱鹿⿰鹿鹿", + "expanded_ids": "⿱鹿⿰鹿鹿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鹿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麥", + "codepoint": "U+9EA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EA5", + "status": "exact_ids", + "ids": "⿱夾夂", + "canonical_ids": "⿱夾夂", + "expanded_ids": "⿱⿻大⿰人人夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "夂", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麦", + "codepoint": "U+9EA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EA6", + "status": "exact_ids", + "ids": "⿱龶夂", + "canonical_ids": "⿱龶夂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夂" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麧", + "codepoint": "U+9EA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EA7", + "status": "exact_ids", + "ids": "⿰麥乞", + "canonical_ids": "⿰麥乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "夂", + "大" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麨", + "codepoint": "U+9EA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EA8", + "status": "exact_ids", + "ids": "⿰麥少", + "canonical_ids": "⿰麥少", + "expanded_ids": "⿰⿱⿻大⿰人人夂⿱小丿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "人", + "夂", + "大", + "小" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麩", + "codepoint": "U+9EA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EA9", + "status": "exact_ids", + "ids": "⿰麥夫", + "canonical_ids": "⿰麥夫", + "expanded_ids": "⿰⿱⿻大⿰人人夂⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "夂", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麪", + "codepoint": "U+9EAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EAA", + "status": "exact_ids", + "ids": "⿰麥丏", + "canonical_ids": "⿰麥丏", + "expanded_ids": "⿰⿱⿻大⿰人人夂丏", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丏", + "人", + "夂", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麫", + "codepoint": "U+9EAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EAB", + "status": "exact_ids", + "ids": "⿰麥丐", + "canonical_ids": "⿰麥丐", + "expanded_ids": "⿰⿱⿻大⿰人人夂丐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丐", + "人", + "夂", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麬", + "codepoint": "U+9EAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EAC", + "status": "exact_ids", + "ids": "⿰麥皮", + "canonical_ids": "⿰麥皮", + "expanded_ids": "⿰⿱⿻大⿰人人夂皮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "夂", + "大", + "皮" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麭", + "codepoint": "U+9EAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EAD", + "status": "exact_ids", + "ids": "⿰麥包", + "canonical_ids": "⿰麥包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "夂", + "大" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麮", + "codepoint": "U+9EAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EAE", + "status": "exact_ids", + "ids": "⿰麥去", + "canonical_ids": "⿰麥去", + "expanded_ids": "⿰⿱⿻大⿰人人夂⿱土厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "厶", + "土", + "夂", + "大" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麯", + "codepoint": "U+9EAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EAF", + "status": "exact_ids", + "ids": "⿰麥曲", + "canonical_ids": "⿰麥曲", + "expanded_ids": "⿰⿱⿻大⿰人人夂曲", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "夂", + "大", + "曲" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麰", + "codepoint": "U+9EB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EB0", + "status": "exact_ids", + "ids": "⿰麥牟", + "canonical_ids": "⿰麥牟", + "expanded_ids": "⿰⿱⿻大⿰人人夂⿱厶牛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "厶", + "夂", + "大", + "牛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麱", + "codepoint": "U+9EB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EB1", + "status": "exact_ids", + "ids": "⿰麥甫", + "canonical_ids": "⿰麥甫", + "expanded_ids": "⿰⿱⿻大⿰人人夂甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "夂", + "大", + "甫" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麲", + "codepoint": "U+9EB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EB2", + "status": "exact_ids", + "ids": "⿰麥見", + "canonical_ids": "⿰麥見", + "expanded_ids": "⿰⿱⿻大⿰人人夂⿱目儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "儿", + "夂", + "大", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麳", + "codepoint": "U+9EB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EB3", + "status": "exact_ids", + "ids": "⿰麥來", + "canonical_ids": "⿰麥來", + "expanded_ids": "⿰⿱⿻大⿰人人夂⿻木⿰人人", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "夂", + "大", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麴", + "codepoint": "U+9EB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EB4", + "status": "exact_ids", + "ids": "⿰麥匊", + "canonical_ids": "⿰麥匊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "夂", + "大" + ], + "unresolved_leaves": [ + "匊" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麵", + "codepoint": "U+9EB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EB5", + "status": "exact_ids", + "ids": "⿰麥面", + "canonical_ids": "⿰麥面", + "expanded_ids": "⿰⿱⿻大⿰人人夂面", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "夂", + "大", + "面" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麶", + "codepoint": "U+9EB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EB6", + "status": "exact_ids", + "ids": "⿰麥离", + "canonical_ids": "⿰麥离", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "人", + "夂", + "大", + "禸" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麷", + "codepoint": "U+9EB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EB7", + "status": "exact_ids", + "ids": "⿰麥豐", + "canonical_ids": "⿰麥豐", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "人", + "夂", + "大", + "豆" + ], + "unresolved_leaves": [ + "𠁳" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麸", + "codepoint": "U+9EB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EB8", + "status": "exact_ids", + "ids": "⿰麦夫", + "canonical_ids": "⿰麦夫", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "夂", + "大" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麹", + "codepoint": "U+9EB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EB9", + "status": "exact_ids", + "ids": "⿰麦匊", + "canonical_ids": "⿰麦匊", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夂" + ], + "unresolved_leaves": [ + "匊", + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麺", + "codepoint": "U+9EBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EBA", + "status": "exact_ids", + "ids": "⿰麦面", + "canonical_ids": "⿰麦面", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夂", + "面" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麻", + "codepoint": "U+9EBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EBB", + "status": "exact_ids", + "ids": "⿱广林", + "canonical_ids": "⿱广林", + "expanded_ids": "⿱广⿰木木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 108, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麼", + "codepoint": "U+9EBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EBC", + "status": "exact_ids", + "ids": "⿱麻幺", + "canonical_ids": "⿱麻幺", + "expanded_ids": "⿱⿱广⿰木木幺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "幺", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麽", + "codepoint": "U+9EBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EBD", + "status": "exact_ids", + "ids": "⿱麻么", + "canonical_ids": "⿱麻么", + "expanded_ids": "⿱⿱广⿰木木⿱丿厶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "厶", + "广", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麾", + "codepoint": "U+9EBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EBE", + "status": "exact_ids", + "ids": "⿱麻毛", + "canonical_ids": "⿱麻毛", + "expanded_ids": "⿱⿱广⿰木木毛", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "木", + "毛" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "麿", + "codepoint": "U+9EBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EBF", + "status": "exact_ids", + "ids": "⿱麻呂", + "canonical_ids": "⿱麻呂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "木" + ], + "unresolved_leaves": [ + "呂" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黀", + "codepoint": "U+9EC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EC0", + "status": "exact_ids", + "ids": "⿱麻取", + "canonical_ids": "⿱麻取", + "expanded_ids": "⿱⿱广⿰木木⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "广", + "木", + "耳" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黁", + "codepoint": "U+9EC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EC1", + "status": "exact_ids", + "ids": "⿱麻香", + "canonical_ids": "⿱麻香", + "expanded_ids": "⿱⿱广⿰木木⿱⿻丿木日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "广", + "日", + "木" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黂", + "codepoint": "U+9EC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EC2", + "status": "exact_ids", + "ids": "⿱麻賁", + "canonical_ids": "⿱麻賁", + "expanded_ids": "⿱⿱广⿰木木⿱⿱十廾⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "十", + "广", + "廾", + "木", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黃", + "codepoint": "U+9EC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EC3", + "status": "leaf_self_fallback", + "ids": "黃", + "canonical_ids": "黃", + "expanded_ids": "黃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "黃" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黄", + "codepoint": "U+9EC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EC4", + "status": "leaf_self_fallback", + "ids": "黄", + "canonical_ids": "黄", + "expanded_ids": "黄", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黅", + "codepoint": "U+9EC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EC5", + "status": "exact_ids", + "ids": "⿰黄今", + "canonical_ids": "⿰黄今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "黄" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黆", + "codepoint": "U+9EC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EC6", + "status": "exact_ids", + "ids": "⿰黄冘", + "canonical_ids": "⿰黄冘", + "expanded_ids": "⿰黄⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黇", + "codepoint": "U+9EC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EC7", + "status": "exact_ids", + "ids": "⿰黄占", + "canonical_ids": "⿰黄占", + "expanded_ids": "⿰黄⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黈", + "codepoint": "U+9EC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EC8", + "status": "exact_ids", + "ids": "⿰黄主", + "canonical_ids": "⿰黄主", + "expanded_ids": "⿰黄⿻丶王", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "王", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黉", + "codepoint": "U+9EC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EC9", + "status": "exact_ids", + "ids": "⿳小冖黃", + "canonical_ids": "⿳小冖黃", + "expanded_ids": "⿳小冖黃", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "小", + "黃" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 101, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黊", + "codepoint": "U+9ECA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ECA", + "status": "exact_ids", + "ids": "⿰黄圭", + "canonical_ids": "⿰黄圭", + "expanded_ids": "⿰黄⿱土土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "黄" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黋", + "codepoint": "U+9ECB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ECB", + "status": "exact_ids", + "ids": "⿰光黄", + "canonical_ids": "⿰光黄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "黄" + ], + "unresolved_leaves": [ + "⺌" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黌", + "codepoint": "U+9ECC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ECC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黍", + "codepoint": "U+9ECD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ECD", + "status": "exact_ids", + "ids": "⿱禾汆", + "canonical_ids": "⿱禾汆", + "expanded_ids": "⿱⿻丿木⿱入水", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "入", + "木", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黎", + "codepoint": "U+9ECE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ECE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黏", + "codepoint": "U+9ECF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ECF", + "status": "exact_ids", + "ids": "⿰黍占", + "canonical_ids": "⿰黍占", + "expanded_ids": "⿰⿱⿻丿木⿱入水⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "入", + "卜", + "口", + "木", + "水" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黐", + "codepoint": "U+9ED0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ED0", + "status": "exact_ids", + "ids": "⿰黍离", + "canonical_ids": "⿰黍离", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "亠", + "入", + "木", + "水", + "禸" + ], + "unresolved_leaves": [ + "凶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黑", + "codepoint": "U+9ED1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ED1", + "status": "leaf_self_fallback", + "ids": "黑", + "canonical_ids": "黑", + "expanded_ids": "黑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黒", + "codepoint": "U+9ED2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ED2", + "status": "leaf_self_fallback", + "ids": "黒", + "canonical_ids": "黒", + "expanded_ids": "黒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "黒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黓", + "codepoint": "U+9ED3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ED3", + "status": "exact_ids", + "ids": "⿰黑弋", + "canonical_ids": "⿰黑弋", + "expanded_ids": "⿰黑弋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "弋", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黔", + "codepoint": "U+9ED4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ED4", + "status": "exact_ids", + "ids": "⿰黑今", + "canonical_ids": "⿰黑今", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "黑" + ], + "unresolved_leaves": [ + "㇇" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黕", + "codepoint": "U+9ED5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ED5", + "status": "exact_ids", + "ids": "⿰黑冘", + "canonical_ids": "⿰黑冘", + "expanded_ids": "⿰黑⿻冖儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "冖", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黖", + "codepoint": "U+9ED6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ED6", + "status": "exact_ids", + "ids": "⿰黑旡", + "canonical_ids": "⿰黑旡", + "expanded_ids": "⿰黑旡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "旡", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黗", + "codepoint": "U+9ED7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ED7", + "status": "exact_ids", + "ids": "⿰黑屯", + "canonical_ids": "⿰黑屯", + "expanded_ids": "⿰黑屯", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "屯", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "默", + "codepoint": "U+9ED8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ED8", + "status": "exact_ids", + "ids": "⿰黑犬", + "canonical_ids": "⿰黑犬", + "expanded_ids": "⿰黑⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黙", + "codepoint": "U+9ED9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9ED9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黚", + "codepoint": "U+9EDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EDA", + "status": "exact_ids", + "ids": "⿰黑甘", + "canonical_ids": "⿰黑甘", + "expanded_ids": "⿰黑甘", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甘", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黛", + "codepoint": "U+9EDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EDB", + "status": "exact_ids", + "ids": "⿱代黑", + "canonical_ids": "⿱代黑", + "expanded_ids": "⿱⿰亻弋黑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亻", + "弋", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黜", + "codepoint": "U+9EDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EDC", + "status": "exact_ids", + "ids": "⿰黑出", + "canonical_ids": "⿰黑出", + "expanded_ids": "⿰黑⿻屮凵", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "凵", + "屮", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黝", + "codepoint": "U+9EDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EDD", + "status": "exact_ids", + "ids": "⿰黑幼", + "canonical_ids": "⿰黑幼", + "expanded_ids": "⿰黑⿰幺力", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "力", + "幺", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "點", + "codepoint": "U+9EDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EDE", + "status": "exact_ids", + "ids": "⿰黑占", + "canonical_ids": "⿰黑占", + "expanded_ids": "⿰黑⿱卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "口", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黟", + "codepoint": "U+9EDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EDF", + "status": "exact_ids", + "ids": "⿰黑多", + "canonical_ids": "⿰黑多", + "expanded_ids": "⿰黑⿱夕夕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "夕", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黠", + "codepoint": "U+9EE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EE0", + "status": "exact_ids", + "ids": "⿰黑吉", + "canonical_ids": "⿰黑吉", + "expanded_ids": "⿰黑⿱士口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "士", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黡", + "codepoint": "U+9EE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EE1", + "status": "exact_ids", + "ids": "⿱厌黑", + "canonical_ids": "⿱厌黑", + "expanded_ids": "⿱⿱厂⿻大丶黑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "大", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黢", + "codepoint": "U+9EE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EE2", + "status": "exact_ids", + "ids": "⿰黑夋", + "canonical_ids": "⿰黑夋", + "expanded_ids": "⿰黑⿱⿱厶儿夂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "厶", + "夂", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黣", + "codepoint": "U+9EE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EE3", + "status": "exact_ids", + "ids": "⿰黑每", + "canonical_ids": "⿰黑每", + "expanded_ids": "⿰黑⿱⿻丿一母", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "母", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黤", + "codepoint": "U+9EE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EE4", + "status": "exact_ids", + "ids": "⿰黑奄", + "canonical_ids": "⿰黑奄", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "黑" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黥", + "codepoint": "U+9EE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EE5", + "status": "exact_ids", + "ids": "⿰黑京", + "canonical_ids": "⿰黑京", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "黑" + ], + "unresolved_leaves": [ + "京" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黦", + "codepoint": "U+9EE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EE6", + "status": "exact_ids", + "ids": "⿰黑宛", + "canonical_ids": "⿰黑宛", + "expanded_ids": "⿰黑⿱宀⿰夕㔾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "㔾", + "夕", + "宀", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黧", + "codepoint": "U+9EE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EE7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黨", + "codepoint": "U+9EE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EE8", + "status": "exact_ids", + "ids": "⿱尚黑", + "canonical_ids": "⿱尚黑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "黑" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黩", + "codepoint": "U+9EE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EE9", + "status": "exact_ids", + "ids": "⿰黑卖", + "canonical_ids": "⿰黑卖", + "expanded_ids": "⿰黑⿱十⿱乛⿻大冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乛", + "冫", + "十", + "大", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黪", + "codepoint": "U+9EEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EEA", + "status": "exact_ids", + "ids": "⿰黑参", + "canonical_ids": "⿰黑参", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "黑" + ], + "unresolved_leaves": [ + "参" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黫", + "codepoint": "U+9EEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EEB", + "status": "exact_ids", + "ids": "⿰黑垔", + "canonical_ids": "⿰黑垔", + "expanded_ids": "⿰黑⿱覀土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "覀", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黬", + "codepoint": "U+9EEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EEC", + "status": "exact_ids", + "ids": "⿰黑咸", + "canonical_ids": "⿰黑咸", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "黑" + ], + "unresolved_leaves": [ + "咸" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黭", + "codepoint": "U+9EED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EED", + "status": "exact_ids", + "ids": "⿰黑弇", + "canonical_ids": "⿰黑弇", + "expanded_ids": "⿰黑⿱⿱⿱人一口廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "廾", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黮", + "codepoint": "U+9EEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EEE", + "status": "exact_ids", + "ids": "⿰黑甚", + "canonical_ids": "⿰黑甚", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甘", + "黑" + ], + "unresolved_leaves": [ + "匹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黯", + "codepoint": "U+9EEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EEF", + "status": "exact_ids", + "ids": "⿰黑音", + "canonical_ids": "⿰黑音", + "expanded_ids": "⿰黑⿱立日", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "立", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黰", + "codepoint": "U+9EF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EF0", + "status": "exact_ids", + "ids": "⿰黑真", + "canonical_ids": "⿰黑真", + "expanded_ids": "⿰黑⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "目", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黱", + "codepoint": "U+9EF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EF1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黲", + "codepoint": "U+9EF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EF2", + "status": "exact_ids", + "ids": "⿰黑參", + "canonical_ids": "⿰黑參", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "黑" + ], + "unresolved_leaves": [ + "參" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黳", + "codepoint": "U+9EF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EF3", + "status": "exact_ids", + "ids": "⿱殹黑", + "canonical_ids": "⿱殹黑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "几", + "又", + "黑" + ], + "unresolved_leaves": [ + "医" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黴", + "codepoint": "U+9EF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EF4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黵", + "codepoint": "U+9EF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EF5", + "status": "exact_ids", + "ids": "⿰黑詹", + "canonical_ids": "⿰黑詹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "黑" + ], + "unresolved_leaves": [ + "詹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黶", + "codepoint": "U+9EF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EF6", + "status": "exact_ids", + "ids": "⿱厭黑", + "canonical_ids": "⿱厭黑", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "厂", + "大", + "月", + "黑" + ], + "unresolved_leaves": [ + "冃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黷", + "codepoint": "U+9EF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EF7", + "status": "exact_ids", + "ids": "⿰黑賣", + "canonical_ids": "⿰黑賣", + "expanded_ids": "⿰黑⿱士⿱罒⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "士", + "目", + "罒", + "黑" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黸", + "codepoint": "U+9EF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EF8", + "status": "exact_ids", + "ids": "⿰黑盧", + "canonical_ids": "⿰黑盧", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "黑" + ], + "unresolved_leaves": [ + "𧆨" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黹", + "codepoint": "U+9EF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EF9", + "status": "leaf_self_fallback", + "ids": "黹", + "canonical_ids": "黹", + "expanded_ids": "黹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "黹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黺", + "codepoint": "U+9EFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EFA", + "status": "exact_ids", + "ids": "⿰黹分", + "canonical_ids": "⿰黹分", + "expanded_ids": "⿰黹⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "黹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黻", + "codepoint": "U+9EFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EFB", + "status": "exact_ids", + "ids": "⿰黹犮", + "canonical_ids": "⿰黹犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "黹" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黼", + "codepoint": "U+9EFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EFC", + "status": "exact_ids", + "ids": "⿰黹甫", + "canonical_ids": "⿰黹甫", + "expanded_ids": "⿰黹甫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "甫", + "黹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黽", + "codepoint": "U+9EFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EFD", + "status": "leaf_self_fallback", + "ids": "黽", + "canonical_ids": "黽", + "expanded_ids": "黽", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "黽" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黾", + "codepoint": "U+9EFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EFE", + "status": "exact_ids", + "ids": "⿱口电", + "canonical_ids": "⿱口电", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "黿", + "codepoint": "U+9EFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9EFF", + "status": "exact_ids", + "ids": "⿱元黽", + "canonical_ids": "⿱元黽", + "expanded_ids": "⿱⿱一⿱一儿黽", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "黽" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼀", + "codepoint": "U+9F00", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F00", + "status": "exact_ids", + "ids": "⿱圥黽", + "canonical_ids": "⿱圥黽", + "expanded_ids": "⿱⿱土儿黽", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "土", + "黽" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼁", + "codepoint": "U+9F01", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F01", + "status": "exact_ids", + "ids": "⿱去黽", + "canonical_ids": "⿱去黽", + "expanded_ids": "⿱⿱土厶黽", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "土", + "黽" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼂", + "codepoint": "U+9F02", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F02", + "status": "exact_ids", + "ids": "⿱旦黽", + "canonical_ids": "⿱旦黽", + "expanded_ids": "⿱⿱日一黽", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "日", + "黽" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼃", + "codepoint": "U+9F03", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F03", + "status": "exact_ids", + "ids": "⿱圭黽", + "canonical_ids": "⿱圭黽", + "expanded_ids": "⿱⿱土土黽", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "黽" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼄", + "codepoint": "U+9F04", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F04", + "status": "exact_ids", + "ids": "⿱朱黽", + "canonical_ids": "⿱朱黽", + "expanded_ids": "⿱⿻丿⿻木一黽", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "木", + "黽" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼅", + "codepoint": "U+9F05", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F05", + "status": "exact_ids", + "ids": "⿱知黽", + "canonical_ids": "⿱知黽", + "expanded_ids": "⿱⿰⿱⿻丿一大口黽", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "口", + "大", + "黽" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼆", + "codepoint": "U+9F06", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F06", + "status": "exact_ids", + "ids": "⿰冥黽", + "canonical_ids": "⿰冥黽", + "expanded_ids": "⿰⿱冖⿱日⿱亠八黽", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "冖", + "日", + "黽" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼇", + "codepoint": "U+9F07", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F07", + "status": "exact_ids", + "ids": "⿱敖黽", + "canonical_ids": "⿱敖黽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "黽" + ], + "unresolved_leaves": [ + "敖" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼈", + "codepoint": "U+9F08", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F08", + "status": "exact_ids", + "ids": "⿱敝黽", + "canonical_ids": "⿱敝黽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "黽" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼉", + "codepoint": "U+9F09", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F09", + "status": "leaf_self_fallback", + "ids": "鼉", + "canonical_ids": "鼉", + "expanded_ids": "鼉", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鼉" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼊", + "codepoint": "U+9F0A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F0A", + "status": "exact_ids", + "ids": "⿱辟黽", + "canonical_ids": "⿱辟黽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "立", + "黽" + ], + "unresolved_leaves": [ + "𡰪" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼋", + "codepoint": "U+9F0B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F0B", + "status": "exact_ids", + "ids": "⿱元黾", + "canonical_ids": "⿱元黾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "儿", + "口" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼌", + "codepoint": "U+9F0C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F0C", + "status": "exact_ids", + "ids": "⿱旦黾", + "canonical_ids": "⿱旦黾", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "口", + "日" + ], + "unresolved_leaves": [ + "电" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼍", + "codepoint": "U+9F0D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F0D", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼎", + "codepoint": "U+9F0E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F0E", + "status": "leaf_self_fallback", + "ids": "鼎", + "canonical_ids": "鼎", + "expanded_ids": "鼎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鼎" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼏", + "codepoint": "U+9F0F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F0F", + "status": "exact_ids", + "ids": "⿱冖鼎", + "canonical_ids": "⿱冖鼎", + "expanded_ids": "⿱冖鼎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "鼎" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼐", + "codepoint": "U+9F10", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F10", + "status": "exact_ids", + "ids": "⿱乃鼎", + "canonical_ids": "⿱乃鼎", + "expanded_ids": "⿱乃鼎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乃", + "鼎" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼑", + "codepoint": "U+9F11", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F11", + "status": "exact_ids", + "ids": "⿱卜鼎", + "canonical_ids": "⿱卜鼎", + "expanded_ids": "⿱卜鼎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "卜", + "鼎" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼒", + "codepoint": "U+9F12", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F12", + "status": "exact_ids", + "ids": "⿱才鼎", + "canonical_ids": "⿱才鼎", + "expanded_ids": "⿱才鼎", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "才", + "鼎" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼓", + "codepoint": "U+9F13", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F13", + "status": "exact_ids", + "ids": "⿰壴支", + "canonical_ids": "⿰壴支", + "expanded_ids": "⿰⿱十豆⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼔", + "codepoint": "U+9F14", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F14", + "status": "exact_ids", + "ids": "⿰壴攴", + "canonical_ids": "⿰壴攴", + "expanded_ids": "⿰⿱十豆⿱卜又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "又", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼕", + "codepoint": "U+9F15", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F15", + "status": "exact_ids", + "ids": "⿱鼓冬", + "canonical_ids": "⿱鼓冬", + "expanded_ids": "⿱⿰⿱十豆⿱十又⿱夂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "十", + "又", + "夂", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼖", + "codepoint": "U+9F16", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F16", + "status": "exact_ids", + "ids": "⿱卉鼓", + "canonical_ids": "⿱卉鼓", + "expanded_ids": "⿱⿱十廾⿰⿱十豆⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "廾", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼗", + "codepoint": "U+9F17", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F17", + "status": "exact_ids", + "ids": "⿱兆鼓", + "canonical_ids": "⿱兆鼓", + "expanded_ids": "⿱兆⿰⿱十豆⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兆", + "十", + "又", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼘", + "codepoint": "U+9F18", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F18", + "status": "exact_ids", + "ids": "⿱鼓𣶒", + "canonical_ids": "⿱鼓𣶒", + "expanded_ids": "⿱⿰⿱十豆⿱十又𣶒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "豆", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 192, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼙", + "codepoint": "U+9F19", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F19", + "status": "exact_ids", + "ids": "⿱鼓卑", + "canonical_ids": "⿱鼓卑", + "expanded_ids": "⿱⿰⿱十豆⿱十又卑", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卑", + "又", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼚", + "codepoint": "U+9F1A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F1A", + "status": "exact_ids", + "ids": "⿱鼓長", + "canonical_ids": "⿱鼓長", + "expanded_ids": "⿱⿰⿱十豆⿱十又長", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "豆", + "長" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 188, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼛", + "codepoint": "U+9F1B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F1B", + "status": "exact_ids", + "ids": "⿱鼓咎", + "canonical_ids": "⿱鼓咎", + "expanded_ids": "⿱⿰⿱十豆⿱十又⿱⿰夂卜口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "卜", + "又", + "口", + "夂", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 262, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼜", + "codepoint": "U+9F1C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F1C", + "status": "exact_ids", + "ids": "⿱鼓蚤", + "canonical_ids": "⿱鼓蚤", + "expanded_ids": "⿱⿰⿱十豆⿱十又⿱⿻又丶虫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "十", + "又", + "虫", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 264, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼝", + "codepoint": "U+9F1D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F1D", + "status": "exact_ids", + "ids": "⿱淵鼓", + "canonical_ids": "⿱淵鼓", + "expanded_ids": "⿱⿰氵𣶒⿰⿱十豆⿱十又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "氵", + "豆", + "𣶒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 230, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼞", + "codepoint": "U+9F1E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F1E", + "status": "exact_ids", + "ids": "⿱鼓堂", + "canonical_ids": "⿱鼓堂", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "土", + "小", + "豆" + ], + "unresolved_leaves": [ + "冋" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼟", + "codepoint": "U+9F1F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F1F", + "status": "exact_ids", + "ids": "⿱鼓登", + "canonical_ids": "⿱鼓登", + "expanded_ids": "⿱⿰⿱十豆⿱十又⿱癶豆", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "十", + "又", + "癶", + "豆" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 226, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼠", + "codepoint": "U+9F20", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F20", + "status": "leaf_self_fallback", + "ids": "鼠", + "canonical_ids": "鼠", + "expanded_ids": "鼠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼡", + "codepoint": "U+9F21", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F21", + "status": "leaf_self_fallback", + "ids": "鼡", + "canonical_ids": "鼡", + "expanded_ids": "鼡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鼡" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼢", + "codepoint": "U+9F22", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F22", + "status": "exact_ids", + "ids": "⿰鼠分", + "canonical_ids": "⿰鼠分", + "expanded_ids": "⿰鼠⿱八刀", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "刀", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼣", + "codepoint": "U+9F23", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F23", + "status": "exact_ids", + "ids": "⿰鼠犬", + "canonical_ids": "⿰鼠犬", + "expanded_ids": "⿰鼠⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼤", + "codepoint": "U+9F24", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F24", + "status": "exact_ids", + "ids": "⿰鼠文", + "canonical_ids": "⿰鼠文", + "expanded_ids": "⿰鼠文", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "文", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼥", + "codepoint": "U+9F25", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F25", + "status": "exact_ids", + "ids": "⿰鼠犮", + "canonical_ids": "⿰鼠犮", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鼠" + ], + "unresolved_leaves": [ + "犮" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼦", + "codepoint": "U+9F26", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F26", + "status": "exact_ids", + "ids": "⿰鼠召", + "canonical_ids": "⿰鼠召", + "expanded_ids": "⿰鼠⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼧", + "codepoint": "U+9F27", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F27", + "status": "exact_ids", + "ids": "⿰鼠它", + "canonical_ids": "⿰鼠它", + "expanded_ids": "⿰鼠⿱宀匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "宀", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼨", + "codepoint": "U+9F28", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F28", + "status": "exact_ids", + "ids": "⿰鼠冬", + "canonical_ids": "⿰鼠冬", + "expanded_ids": "⿰鼠⿱夂冫", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冫", + "夂", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼩", + "codepoint": "U+9F29", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F29", + "status": "exact_ids", + "ids": "⿰鼠句", + "canonical_ids": "⿰鼠句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鼠" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼪", + "codepoint": "U+9F2A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F2A", + "status": "exact_ids", + "ids": "⿰鼠生", + "canonical_ids": "⿰鼠生", + "expanded_ids": "⿰鼠⿱牛一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "牛", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼫", + "codepoint": "U+9F2B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F2B", + "status": "exact_ids", + "ids": "⿰鼠石", + "canonical_ids": "⿰鼠石", + "expanded_ids": "⿰鼠石", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "石", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼬", + "codepoint": "U+9F2C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F2C", + "status": "exact_ids", + "ids": "⿰鼠由", + "canonical_ids": "⿰鼠由", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鼠" + ], + "unresolved_leaves": [ + "由" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼭", + "codepoint": "U+9F2D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F2D", + "status": "exact_ids", + "ids": "⿰鼠寺", + "canonical_ids": "⿰鼠寺", + "expanded_ids": "⿰鼠⿱土寸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "土", + "寸", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼮", + "codepoint": "U+9F2E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F2E", + "status": "exact_ids", + "ids": "⿰鼠廷", + "canonical_ids": "⿰鼠廷", + "expanded_ids": "⿰鼠⿰廴⿱丿士", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "士", + "廴", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼯", + "codepoint": "U+9F2F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F2F", + "status": "exact_ids", + "ids": "⿰鼠吾", + "canonical_ids": "⿰鼠吾", + "expanded_ids": "⿰鼠⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼰", + "codepoint": "U+9F30", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F30", + "status": "exact_ids", + "ids": "⿰鼠貝", + "canonical_ids": "⿰鼠貝", + "expanded_ids": "⿰鼠⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼱", + "codepoint": "U+9F31", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F31", + "status": "exact_ids", + "ids": "⿰鼠青", + "canonical_ids": "⿰鼠青", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "月", + "鼠" + ], + "unresolved_leaves": [ + "龶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼲", + "codepoint": "U+9F32", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F32", + "status": "exact_ids", + "ids": "⿰鼠軍", + "canonical_ids": "⿰鼠軍", + "expanded_ids": "⿰鼠⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "車", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼳", + "codepoint": "U+9F33", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F33", + "status": "exact_ids", + "ids": "⿰鼠狊", + "canonical_ids": "⿰鼠狊", + "expanded_ids": "⿰鼠⿱目⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "目", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼴", + "codepoint": "U+9F34", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F34", + "status": "exact_ids", + "ids": "⿰鼠匽", + "canonical_ids": "⿰鼠匽", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鼠" + ], + "unresolved_leaves": [ + "匽" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼵", + "codepoint": "U+9F35", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F35", + "status": "exact_ids", + "ids": "⿰鼠突", + "canonical_ids": "⿰鼠突", + "expanded_ids": "⿰鼠⿱⿱宀八⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "八", + "大", + "宀", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼶", + "codepoint": "U+9F36", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F36", + "status": "exact_ids", + "ids": "⿰鼠虒", + "canonical_ids": "⿰鼠虒", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "鼠" + ], + "unresolved_leaves": [ + "虒" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼷", + "codepoint": "U+9F37", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F37", + "status": "exact_ids", + "ids": "⿰鼠奚", + "canonical_ids": "⿰鼠奚", + "expanded_ids": "⿰鼠⿱爪⿱幺大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "大", + "幺", + "爪", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼸", + "codepoint": "U+9F38", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F38", + "status": "exact_ids", + "ids": "⿰鼠兼", + "canonical_ids": "⿰鼠兼", + "expanded_ids": "⿰鼠兼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "兼", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼹", + "codepoint": "U+9F39", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F39", + "status": "exact_ids", + "ids": "⿰鼠晏", + "canonical_ids": "⿰鼠晏", + "expanded_ids": "⿰鼠⿱日⿱宀女", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "女", + "宀", + "日", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼺", + "codepoint": "U+9F3A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F3A", + "status": "exact_ids", + "ids": "⿰鼠畾", + "canonical_ids": "⿰鼠畾", + "expanded_ids": "⿰鼠⿱田⿰田田", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "鼠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼻", + "codepoint": "U+9F3B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F3B", + "status": "exact_ids", + "ids": "⿱自畀", + "canonical_ids": "⿱自畀", + "expanded_ids": "⿱⿻目丶⿱田丌", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "丶", + "田", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 146, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼼", + "codepoint": "U+9F3C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F3C", + "status": "exact_ids", + "ids": "⿰鼻丩", + "canonical_ids": "⿰鼻丩", + "expanded_ids": "⿰⿱⿻目丶⿱田丌⿰丨丨", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "丨", + "丶", + "田", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼽", + "codepoint": "U+9F3D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F3D", + "status": "exact_ids", + "ids": "⿰鼻九", + "canonical_ids": "⿰鼻九", + "expanded_ids": "⿰⿱⿻目丶⿱田丌九", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "丶", + "九", + "田", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼾", + "codepoint": "U+9F3E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F3E", + "status": "exact_ids", + "ids": "⿰鼻干", + "canonical_ids": "⿰鼻干", + "expanded_ids": "⿰⿱⿻目丶⿱田丌⿱一十", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丌", + "丶", + "十", + "田", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鼿", + "codepoint": "U+9F3F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F3F", + "status": "exact_ids", + "ids": "⿰鼻兀", + "canonical_ids": "⿰鼻兀", + "expanded_ids": "⿰⿱⿻目丶⿱田丌⿱一儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丌", + "丶", + "儿", + "田", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 222, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齀", + "codepoint": "U+9F40", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F40", + "status": "exact_ids", + "ids": "⿰鼻瓦", + "canonical_ids": "⿰鼻瓦", + "expanded_ids": "⿰⿱⿻目丶⿱田丌瓦", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "丶", + "瓦", + "田", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齁", + "codepoint": "U+9F41", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F41", + "status": "exact_ids", + "ids": "⿰鼻句", + "canonical_ids": "⿰鼻句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "丶", + "田", + "目" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齂", + "codepoint": "U+9F42", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F42", + "status": "exact_ids", + "ids": "⿰鼻隶", + "canonical_ids": "⿰鼻隶", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "丶", + "田", + "目" + ], + "unresolved_leaves": [ + "隶" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齃", + "codepoint": "U+9F43", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F43", + "status": "exact_ids", + "ids": "⿰鼻曷", + "canonical_ids": "⿰鼻曷", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "丶", + "曰", + "田", + "目" + ], + "unresolved_leaves": [ + "匃" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齄", + "codepoint": "U+9F44", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F44", + "status": "exact_ids", + "ids": "⿰鼻查", + "canonical_ids": "⿰鼻查", + "expanded_ids": "⿰⿱⿻目丶⿱田丌⿱木⿱日一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丌", + "丶", + "日", + "木", + "田", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齅", + "codepoint": "U+9F45", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F45", + "status": "exact_ids", + "ids": "⿰鼻臭", + "canonical_ids": "⿰鼻臭", + "expanded_ids": "⿰⿱⿻目丶⿱田丌⿱⿻目丶⿻大丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "丶", + "大", + "田", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 298, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齆", + "codepoint": "U+9F46", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F46", + "status": "exact_ids", + "ids": "⿰鼻邕", + "canonical_ids": "⿰鼻邕", + "expanded_ids": "⿰⿱⿻目丶⿱田丌⿱巛⿱口巴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "丶", + "口", + "巛", + "巴", + "田", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 260, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齇", + "codepoint": "U+9F47", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F47", + "status": "exact_ids", + "ids": "⿰鼻虘", + "canonical_ids": "⿰鼻虘", + "expanded_ids": "⿰⿱⿻目丶⿱田丌⿱虍且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "且", + "丶", + "田", + "目", + "虍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齈", + "codepoint": "U+9F48", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F48", + "status": "exact_ids", + "ids": "⿰鼻農", + "canonical_ids": "⿰鼻農", + "expanded_ids": "⿰⿱⿻目丶⿱田丌⿱曲辰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "丶", + "曲", + "田", + "目", + "辰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 224, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齉", + "codepoint": "U+9F49", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F49", + "status": "exact_ids", + "ids": "⿰鼻囊", + "canonical_ids": "⿰鼻囊", + "expanded_ids": "⿰⿱⿻目丶⿱田丌囊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丌", + "丶", + "囊", + "田", + "目" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 184, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齊", + "codepoint": "U+9F4A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F4A", + "status": "leaf_self_fallback", + "ids": "齊", + "canonical_ids": "齊", + "expanded_ids": "齊", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齋", + "codepoint": "U+9F4B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F4B", + "status": "exact_ids", + "ids": "⿱齊小", + "canonical_ids": "⿱齊小", + "expanded_ids": "⿱齊小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "小", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齌", + "codepoint": "U+9F4C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F4C", + "status": "exact_ids", + "ids": "⿱齊火", + "canonical_ids": "⿱齊火", + "expanded_ids": "⿱齊火", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "火", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齍", + "codepoint": "U+9F4D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F4D", + "status": "exact_ids", + "ids": "⿱齊皿", + "canonical_ids": "⿱齊皿", + "expanded_ids": "⿱齊皿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "皿", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齎", + "codepoint": "U+9F4E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F4E", + "status": "exact_ids", + "ids": "⿱齊貝", + "canonical_ids": "⿱齊貝", + "expanded_ids": "⿱齊⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "目", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齏", + "codepoint": "U+9F4F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F4F", + "status": "exact_ids", + "ids": "⿱齊韭", + "canonical_ids": "⿱齊韭", + "expanded_ids": "⿱齊韭", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "韭", + "齊" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齐", + "codepoint": "U+9F50", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F50", + "status": "leaf_self_fallback", + "ids": "齐", + "canonical_ids": "齐", + "expanded_ids": "齐", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "齐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齑", + "codepoint": "U+9F51", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F51", + "status": "exact_ids", + "ids": "⿱齐韭", + "canonical_ids": "⿱齐韭", + "expanded_ids": "⿱齐韭", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "韭", + "齐" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齒", + "codepoint": "U+9F52", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F52", + "status": "leaf_self_fallback", + "ids": "齒", + "canonical_ids": "齒", + "expanded_ids": "齒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齓", + "codepoint": "U+9F53", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F53", + "status": "exact_ids", + "ids": "⿰齒乚", + "canonical_ids": "⿰齒乚", + "expanded_ids": "⿰齒乚", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乚", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齔", + "codepoint": "U+9F54", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F54", + "status": "exact_ids", + "ids": "⿰齒匕", + "canonical_ids": "⿰齒匕", + "expanded_ids": "⿰齒匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齕", + "codepoint": "U+9F55", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F55", + "status": "exact_ids", + "ids": "⿰齒乞", + "canonical_ids": "⿰齒乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "齒" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齖", + "codepoint": "U+9F56", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F56", + "status": "exact_ids", + "ids": "⿰齒牙", + "canonical_ids": "⿰齒牙", + "expanded_ids": "⿰齒牙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "牙", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齗", + "codepoint": "U+9F57", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F57", + "status": "exact_ids", + "ids": "⿰齒斤", + "canonical_ids": "⿰齒斤", + "expanded_ids": "⿰齒斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齘", + "codepoint": "U+9F58", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F58", + "status": "exact_ids", + "ids": "⿰齒介", + "canonical_ids": "⿰齒介", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "齒" + ], + "unresolved_leaves": [ + "介" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齙", + "codepoint": "U+9F59", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F59", + "status": "exact_ids", + "ids": "⿰齒包", + "canonical_ids": "⿰齒包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "齒" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齚", + "codepoint": "U+9F5A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F5A", + "status": "exact_ids", + "ids": "⿰齒乍", + "canonical_ids": "⿰齒乍", + "expanded_ids": "⿰齒乍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "乍", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齛", + "codepoint": "U+9F5B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F5B", + "status": "exact_ids", + "ids": "⿰齒世", + "canonical_ids": "⿰齒世", + "expanded_ids": "⿰齒世", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "世", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齜", + "codepoint": "U+9F5C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F5C", + "status": "exact_ids", + "ids": "⿰齒此", + "canonical_ids": "⿰齒此", + "expanded_ids": "⿰齒⿰止匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "止", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齝", + "codepoint": "U+9F5D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F5D", + "status": "exact_ids", + "ids": "⿰齒台", + "canonical_ids": "⿰齒台", + "expanded_ids": "⿰齒⿱厶口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厶", + "口", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齞", + "codepoint": "U+9F5E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F5E", + "status": "exact_ids", + "ids": "⿰齒只", + "canonical_ids": "⿰齒只", + "expanded_ids": "⿰齒⿱口八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "八", + "口", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齟", + "codepoint": "U+9F5F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F5F", + "status": "exact_ids", + "ids": "⿰齒且", + "canonical_ids": "⿰齒且", + "expanded_ids": "⿰齒且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齠", + "codepoint": "U+9F60", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F60", + "status": "exact_ids", + "ids": "⿰齒召", + "canonical_ids": "⿰齒召", + "expanded_ids": "⿰齒⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齡", + "codepoint": "U+9F61", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F61", + "status": "exact_ids", + "ids": "⿰齒令", + "canonical_ids": "⿰齒令", + "expanded_ids": "⿰齒⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "齒", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齢", + "codepoint": "U+9F62", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F62", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齣", + "codepoint": "U+9F63", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F63", + "status": "exact_ids", + "ids": "⿰齒句", + "canonical_ids": "⿰齒句", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "齒" + ], + "unresolved_leaves": [ + "句" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齤", + "codepoint": "U+9F64", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F64", + "status": "exact_ids", + "ids": "⿱龹齒", + "canonical_ids": "⿱龹齒", + "expanded_ids": "⿱龹齒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "齒", + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齥", + "codepoint": "U+9F65", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F65", + "status": "exact_ids", + "ids": "⿰齒曳", + "canonical_ids": "⿰齒曳", + "expanded_ids": "⿰齒曳", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "曳", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齦", + "codepoint": "U+9F66", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F66", + "status": "exact_ids", + "ids": "⿰齒艮", + "canonical_ids": "⿰齒艮", + "expanded_ids": "⿰齒艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艮", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齧", + "codepoint": "U+9F67", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F67", + "status": "exact_ids", + "ids": "⿱㓞齒", + "canonical_ids": "⿱㓞齒", + "expanded_ids": "⿱⿰丰刀齒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丰", + "刀", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齨", + "codepoint": "U+9F68", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F68", + "status": "exact_ids", + "ids": "⿰齒臼", + "canonical_ids": "⿰齒臼", + "expanded_ids": "⿰齒臼", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "臼", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齩", + "codepoint": "U+9F69", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F69", + "status": "exact_ids", + "ids": "⿰齒交", + "canonical_ids": "⿰齒交", + "expanded_ids": "⿰齒⿱亠父", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "父", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齪", + "codepoint": "U+9F6A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F6A", + "status": "exact_ids", + "ids": "⿰齒足", + "canonical_ids": "⿰齒足", + "expanded_ids": "⿰齒⿱口龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "齒", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齫", + "codepoint": "U+9F6B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F6B", + "status": "exact_ids", + "ids": "⿰齒困", + "canonical_ids": "⿰齒困", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "齒" + ], + "unresolved_leaves": [ + "困" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齬", + "codepoint": "U+9F6C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F6C", + "status": "exact_ids", + "ids": "⿰齒吾", + "canonical_ids": "⿰齒吾", + "expanded_ids": "⿰齒⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齭", + "codepoint": "U+9F6D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F6D", + "status": "exact_ids", + "ids": "⿰齒所", + "canonical_ids": "⿰齒所", + "expanded_ids": "⿰齒⿰⿻一尸斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "尸", + "斤", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齮", + "codepoint": "U+9F6E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F6E", + "status": "exact_ids", + "ids": "⿰齒奇", + "canonical_ids": "⿰齒奇", + "expanded_ids": "⿰齒⿱大⿰口⿱一亅", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "亅", + "口", + "大", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齯", + "codepoint": "U+9F6F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F6F", + "status": "exact_ids", + "ids": "⿰齒兒", + "canonical_ids": "⿰齒兒", + "expanded_ids": "⿰齒⿱臼儿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "儿", + "臼", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齰", + "codepoint": "U+9F70", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F70", + "status": "exact_ids", + "ids": "⿰齒昔", + "canonical_ids": "⿰齒昔", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "日", + "齒" + ], + "unresolved_leaves": [ + "龷" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齱", + "codepoint": "U+9F71", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F71", + "status": "exact_ids", + "ids": "⿰齒取", + "canonical_ids": "⿰齒取", + "expanded_ids": "⿰齒⿰耳又", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "又", + "耳", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齲", + "codepoint": "U+9F72", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F72", + "status": "exact_ids", + "ids": "⿰齒禹", + "canonical_ids": "⿰齒禹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "齒" + ], + "unresolved_leaves": [ + "禹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齳", + "codepoint": "U+9F73", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F73", + "status": "exact_ids", + "ids": "⿰齒軍", + "canonical_ids": "⿰齒軍", + "expanded_ids": "⿰齒⿱冖車", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "冖", + "車", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齴", + "codepoint": "U+9F74", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F74", + "status": "exact_ids", + "ids": "⿰齒彦", + "canonical_ids": "⿰齒彦", + "expanded_ids": "⿰齒⿱⿱⿱亠八厂彡", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "亠", + "八", + "厂", + "彡", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齵", + "codepoint": "U+9F75", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F75", + "status": "exact_ids", + "ids": "⿰齒禺", + "canonical_ids": "⿰齒禺", + "expanded_ids": "⿰齒⿻田禸", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "田", + "禸", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齶", + "codepoint": "U+9F76", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F76", + "status": "exact_ids", + "ids": "⿰齒咢", + "canonical_ids": "⿰齒咢", + "expanded_ids": "⿰齒⿱⿰口口⿱一丂", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丂", + "口", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齷", + "codepoint": "U+9F77", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F77", + "status": "exact_ids", + "ids": "⿰齒屋", + "canonical_ids": "⿰齒屋", + "expanded_ids": "⿰齒⿱尸⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "尸", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齸", + "codepoint": "U+9F78", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F78", + "status": "exact_ids", + "ids": "⿰齒益", + "canonical_ids": "⿰齒益", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "齒" + ], + "unresolved_leaves": [ + "益" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齹", + "codepoint": "U+9F79", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F79", + "status": "exact_ids", + "ids": "⿱差齒", + "canonical_ids": "⿱差齒", + "expanded_ids": "⿱⿱羊工齒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "工", + "羊", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齺", + "codepoint": "U+9F7A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F7A", + "status": "exact_ids", + "ids": "⿰齒芻", + "canonical_ids": "⿰齒芻", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "齒" + ], + "unresolved_leaves": [ + "芻" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齻", + "codepoint": "U+9F7B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F7B", + "status": "exact_ids", + "ids": "⿰齒真", + "canonical_ids": "⿰齒真", + "expanded_ids": "⿰齒⿱十⿻⿱目八一", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "八", + "十", + "目", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齼", + "codepoint": "U+9F7C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F7C", + "status": "exact_ids", + "ids": "⿰齒楚", + "canonical_ids": "⿰齒楚", + "expanded_ids": "⿰齒⿱⿰木木疋", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "木", + "疋", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齽", + "codepoint": "U+9F7D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F7D", + "status": "exact_ids", + "ids": "⿰齒禁", + "canonical_ids": "⿰齒禁", + "expanded_ids": "⿰齒⿱⿰木木⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "木", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齾", + "codepoint": "U+9F7E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F7E", + "status": "exact_ids", + "ids": "⿱獻齒", + "canonical_ids": "⿱獻齒", + "expanded_ids": "⿱⿰⿱虍鬲⿻大丶齒", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "大", + "虍", + "鬲", + "齒" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 190, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "齿", + "codepoint": "U+9F7F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F7F", + "status": "leaf_self_fallback", + "ids": "齿", + "canonical_ids": "齿", + "expanded_ids": "齿", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "齿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龀", + "codepoint": "U+9F80", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F80", + "status": "exact_ids", + "ids": "⿰齿匕", + "canonical_ids": "⿰齿匕", + "expanded_ids": "⿰齿匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "齿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龁", + "codepoint": "U+9F81", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F81", + "status": "exact_ids", + "ids": "⿰齿乞", + "canonical_ids": "⿰齿乞", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "齿" + ], + "unresolved_leaves": [ + "乞" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龂", + "codepoint": "U+9F82", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F82", + "status": "exact_ids", + "ids": "⿰齿斤", + "canonical_ids": "⿰齿斤", + "expanded_ids": "⿰齿斤", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "斤", + "齿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龃", + "codepoint": "U+9F83", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F83", + "status": "exact_ids", + "ids": "⿰齿且", + "canonical_ids": "⿰齿且", + "expanded_ids": "⿰齿且", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "且", + "齿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龄", + "codepoint": "U+9F84", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F84", + "status": "exact_ids", + "ids": "⿰齿令", + "canonical_ids": "⿰齿令", + "expanded_ids": "⿰齿⿱⿱人一龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "齿", + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 150, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龅", + "codepoint": "U+9F85", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F85", + "status": "exact_ids", + "ids": "⿰齿包", + "canonical_ids": "⿰齿包", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "齿" + ], + "unresolved_leaves": [ + "包" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龆", + "codepoint": "U+9F86", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F86", + "status": "exact_ids", + "ids": "⿰齿召", + "canonical_ids": "⿰齿召", + "expanded_ids": "⿰齿⿱刀口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "刀", + "口", + "齿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龇", + "codepoint": "U+9F87", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F87", + "status": "exact_ids", + "ids": "⿰齿此", + "canonical_ids": "⿰齿此", + "expanded_ids": "⿰齿⿰止匕", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "匕", + "止", + "齿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龈", + "codepoint": "U+9F88", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F88", + "status": "exact_ids", + "ids": "⿰齿艮", + "canonical_ids": "⿰齿艮", + "expanded_ids": "⿰齿艮", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "艮", + "齿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龉", + "codepoint": "U+9F89", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F89", + "status": "exact_ids", + "ids": "⿰齿吾", + "canonical_ids": "⿰齿吾", + "expanded_ids": "⿰齿⿱五口", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "五", + "口", + "齿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龊", + "codepoint": "U+9F8A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F8A", + "status": "exact_ids", + "ids": "⿰齿足", + "canonical_ids": "⿰齿足", + "expanded_ids": "⿰齿⿱口龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "口", + "齿", + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 112, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龋", + "codepoint": "U+9F8B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F8B", + "status": "exact_ids", + "ids": "⿰齿禹", + "canonical_ids": "⿰齿禹", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "齿" + ], + "unresolved_leaves": [ + "禹" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龌", + "codepoint": "U+9F8C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F8C", + "status": "exact_ids", + "ids": "⿰齿屋", + "canonical_ids": "⿰齿屋", + "expanded_ids": "⿰齿⿱尸⿱⿱一厶土", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "厶", + "土", + "尸", + "齿" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龍", + "codepoint": "U+9F8D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F8D", + "status": "leaf_self_fallback", + "ids": "龍", + "canonical_ids": "龍", + "expanded_ids": "龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龎", + "codepoint": "U+9F8E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F8E", + "status": "exact_ids", + "ids": "⿱厂龍", + "canonical_ids": "⿱厂龍", + "expanded_ids": "⿱厂龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "厂", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龏", + "codepoint": "U+9F8F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F8F", + "status": "exact_ids", + "ids": "⿱龍廾", + "canonical_ids": "⿱龍廾", + "expanded_ids": "⿱龍廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龐", + "codepoint": "U+9F90", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F90", + "status": "exact_ids", + "ids": "⿱广龍", + "canonical_ids": "⿱广龍", + "expanded_ids": "⿱广龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "广", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龑", + "codepoint": "U+9F91", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F91", + "status": "exact_ids", + "ids": "⿱龍天", + "canonical_ids": "⿱龍天", + "expanded_ids": "⿱龍⿻一大", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "大", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龒", + "codepoint": "U+9F92", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F92", + "status": "exact_ids", + "ids": "⿱龍示", + "canonical_ids": "⿱龍示", + "expanded_ids": "⿱龍⿱二小", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "二", + "小", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龓", + "codepoint": "U+9F93", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F93", + "status": "exact_ids", + "ids": "⿰有龍", + "canonical_ids": "⿰有龍", + "expanded_ids": "⿰⿱⿻丿一月龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "月", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龔", + "codepoint": "U+9F94", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F94", + "status": "exact_ids", + "ids": "⿱龍共", + "canonical_ids": "⿱龍共", + "expanded_ids": "⿱龍⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龕", + "codepoint": "U+9F95", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F95", + "status": "exact_ids", + "ids": "⿱合龍", + "canonical_ids": "⿱合龍", + "expanded_ids": "⿱⿱⿱人一口龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龖", + "codepoint": "U+9F96", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F96", + "status": "exact_ids", + "ids": "⿰龍龍", + "canonical_ids": "⿰龍龍", + "expanded_ids": "⿰龍龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 74, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龗", + "codepoint": "U+9F97", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F97", + "status": "exact_ids", + "ids": "⿱霝龍", + "canonical_ids": "⿱霝龍", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "雨", + "龍" + ], + "unresolved_leaves": [ + "𠱠" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龘", + "codepoint": "U+9F98", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F98", + "status": "exact_ids", + "ids": "⿱龍⿰龍龍", + "canonical_ids": "⿱龍⿰龍龍", + "expanded_ids": "⿱龍⿰龍龍", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "龍" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 114, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龙", + "codepoint": "U+9F99", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F99", + "status": "leaf_self_fallback", + "ids": "龙", + "canonical_ids": "龙", + "expanded_ids": "龙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龚", + "codepoint": "U+9F9A", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F9A", + "status": "exact_ids", + "ids": "⿱龙共", + "canonical_ids": "⿱龙共", + "expanded_ids": "⿱龙⿱廿廾", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "廾", + "廿", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龛", + "codepoint": "U+9F9B", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F9B", + "status": "exact_ids", + "ids": "⿱合龙", + "canonical_ids": "⿱合龙", + "expanded_ids": "⿱⿱⿱人一口龙", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "人", + "口", + "龙" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 148, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龜", + "codepoint": "U+9F9C", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F9C", + "status": "leaf_self_fallback", + "ids": "龜", + "canonical_ids": "龜", + "expanded_ids": "龜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "龜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龝", + "codepoint": "U+9F9D", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F9D", + "status": "exact_ids", + "ids": "⿰禾龜", + "canonical_ids": "⿰禾龜", + "expanded_ids": "⿰⿻丿木龜", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "龜" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龞", + "codepoint": "U+9F9E", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F9E", + "status": "exact_ids", + "ids": "⿱敝龜", + "canonical_ids": "⿱敝龜", + "expanded_ids": null, + "has_exact_ids": true, + "recursively_expandable": false, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "攵", + "龜" + ], + "unresolved_leaves": [ + "㡀" + ], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龟", + "codepoint": "U+9F9F", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9F9F", + "status": "leaf_self_fallback", + "ids": "龟", + "canonical_ids": "龟", + "expanded_ids": "龟", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "龟" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龠", + "codepoint": "U+9FA0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FA0", + "status": "leaf_self_fallback", + "ids": "龠", + "canonical_ids": "龠", + "expanded_ids": "龠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "龠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龡", + "codepoint": "U+9FA1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FA1", + "status": "exact_ids", + "ids": "⿰龠欠", + "canonical_ids": "⿰龠欠", + "expanded_ids": "⿰龠欠", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "欠", + "龠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 72, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龢", + "codepoint": "U+9FA2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FA2", + "status": "exact_ids", + "ids": "⿰龠禾", + "canonical_ids": "⿰龠禾", + "expanded_ids": "⿰龠⿻丿木", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丿", + "木", + "龠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龣", + "codepoint": "U+9FA3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FA3", + "status": "exact_ids", + "ids": "⿰龠录", + "canonical_ids": "⿰龠录", + "expanded_ids": "⿰龠⿱彐氺", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "彐", + "氺", + "龠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 110, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龤", + "codepoint": "U+9FA4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FA4", + "status": "exact_ids", + "ids": "⿰龠皆", + "canonical_ids": "⿰龠皆", + "expanded_ids": "⿰龠⿱⿰匕匕⿻日丶", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "丶", + "匕", + "日", + "龠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龥", + "codepoint": "U+9FA5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FA5", + "status": "exact_ids", + "ids": "⿰龠頁", + "canonical_ids": "⿰龠頁", + "expanded_ids": "⿰龠⿱⿱一丿⿱目八", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "一", + "丿", + "八", + "目", + "龠" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 186, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龦", + "codepoint": "U+9FA6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FA6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龧", + "codepoint": "U+9FA7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FA7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龨", + "codepoint": "U+9FA8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FA8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龩", + "codepoint": "U+9FA9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FA9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龪", + "codepoint": "U+9FAA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FAA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龫", + "codepoint": "U+9FAB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FAB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龬", + "codepoint": "U+9FAC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FAC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龭", + "codepoint": "U+9FAD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FAD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龮", + "codepoint": "U+9FAE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FAE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龯", + "codepoint": "U+9FAF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FAF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龰", + "codepoint": "U+9FB0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FB0", + "status": "leaf_self_fallback", + "ids": "龰", + "canonical_ids": "龰", + "expanded_ids": "龰", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "龰" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龱", + "codepoint": "U+9FB1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FB1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龲", + "codepoint": "U+9FB2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FB2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龳", + "codepoint": "U+9FB3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FB3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龴", + "codepoint": "U+9FB4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FB4", + "status": "leaf_self_fallback", + "ids": "龴", + "canonical_ids": "龴", + "expanded_ids": "龴", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "龴" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龵", + "codepoint": "U+9FB5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FB5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龶", + "codepoint": "U+9FB6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FB6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龷", + "codepoint": "U+9FB7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FB7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龸", + "codepoint": "U+9FB8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FB8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龹", + "codepoint": "U+9FB9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FB9", + "status": "leaf_self_fallback", + "ids": "龹", + "canonical_ids": "龹", + "expanded_ids": "龹", + "has_exact_ids": true, + "recursively_expandable": true, + "uses_leaf_fallback": true, + "fallback_leaves": [ + "龹" + ], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": true, + "payload_bits": 34, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龺", + "codepoint": "U+9FBA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FBA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龻", + "codepoint": "U+9FBB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FBB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龼", + "codepoint": "U+9FBC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FBC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龽", + "codepoint": "U+9FBD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FBD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龾", + "codepoint": "U+9FBE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FBE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "龿", + "codepoint": "U+9FBF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FBF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿀", + "codepoint": "U+9FC0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FC0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿁", + "codepoint": "U+9FC1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FC1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿂", + "codepoint": "U+9FC2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FC2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿃", + "codepoint": "U+9FC3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FC3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿄", + "codepoint": "U+9FC4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FC4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿅", + "codepoint": "U+9FC5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FC5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿆", + "codepoint": "U+9FC6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FC6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿇", + "codepoint": "U+9FC7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FC7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿈", + "codepoint": "U+9FC8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FC8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿉", + "codepoint": "U+9FC9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FC9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿊", + "codepoint": "U+9FCA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FCA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿋", + "codepoint": "U+9FCB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FCB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿌", + "codepoint": "U+9FCC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FCC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿍", + "codepoint": "U+9FCD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FCD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿎", + "codepoint": "U+9FCE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FCE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿏", + "codepoint": "U+9FCF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FCF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿐", + "codepoint": "U+9FD0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FD0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿑", + "codepoint": "U+9FD1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FD1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿒", + "codepoint": "U+9FD2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FD2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿓", + "codepoint": "U+9FD3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FD3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿔", + "codepoint": "U+9FD4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FD4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿕", + "codepoint": "U+9FD5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FD5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿖", + "codepoint": "U+9FD6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FD6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿗", + "codepoint": "U+9FD7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FD7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿘", + "codepoint": "U+9FD8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FD8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿙", + "codepoint": "U+9FD9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FD9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿚", + "codepoint": "U+9FDA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FDA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿛", + "codepoint": "U+9FDB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FDB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿜", + "codepoint": "U+9FDC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FDC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿝", + "codepoint": "U+9FDD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FDD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿞", + "codepoint": "U+9FDE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FDE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿟", + "codepoint": "U+9FDF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FDF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿠", + "codepoint": "U+9FE0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FE0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿡", + "codepoint": "U+9FE1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FE1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿢", + "codepoint": "U+9FE2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FE2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿣", + "codepoint": "U+9FE3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FE3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿤", + "codepoint": "U+9FE4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FE4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿥", + "codepoint": "U+9FE5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FE5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿦", + "codepoint": "U+9FE6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FE6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿧", + "codepoint": "U+9FE7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FE7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿨", + "codepoint": "U+9FE8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FE8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿩", + "codepoint": "U+9FE9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FE9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿪", + "codepoint": "U+9FEA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FEA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿫", + "codepoint": "U+9FEB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FEB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿬", + "codepoint": "U+9FEC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FEC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿭", + "codepoint": "U+9FED", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FED", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿮", + "codepoint": "U+9FEE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FEE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿯", + "codepoint": "U+9FEF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FEF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿰", + "codepoint": "U+9FF0", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FF0", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿱", + "codepoint": "U+9FF1", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FF1", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿲", + "codepoint": "U+9FF2", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FF2", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿳", + "codepoint": "U+9FF3", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FF3", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿴", + "codepoint": "U+9FF4", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FF4", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿵", + "codepoint": "U+9FF5", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FF5", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿶", + "codepoint": "U+9FF6", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FF6", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿷", + "codepoint": "U+9FF7", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FF7", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿸", + "codepoint": "U+9FF8", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FF8", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿹", + "codepoint": "U+9FF9", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FF9", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿺", + "codepoint": "U+9FFA", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FFA", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿻", + "codepoint": "U+9FFB", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FFB", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿼", + "codepoint": "U+9FFC", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FFC", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿽", + "codepoint": "U+9FFD", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FFD", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿾", + "codepoint": "U+9FFE", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FFE", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + }, + { + "character": "鿿", + "codepoint": "U+9FFF", + "unicode_name": "CJK UNIFIED IDEOGRAPH-9FFF", + "status": "missing", + "ids": null, + "canonical_ids": null, + "expanded_ids": null, + "has_exact_ids": false, + "recursively_expandable": false, + "uses_leaf_fallback": false, + "fallback_leaves": [], + "unresolved_leaves": [], + "cycle": [], + "error": null, + "binary_roundtrip": null, + "payload_bits": null, + "binary_error": null, + "reverse_collision_with": [] + } + ] +} diff --git a/data/hanzi_factor/hanzi-factor-utils-0.3.0/artifacts/uncovered_ccd_u4e00_u9fff_bijective.tsv b/data/hanzi_factor/hanzi-factor-utils-0.3.0/artifacts/uncovered_ccd_u4e00_u9fff_bijective.tsv new file mode 100644 index 0000000000..e43bc08c21 --- /dev/null +++ b/data/hanzi_factor/hanzi-factor-utils-0.3.0/artifacts/uncovered_ccd_u4e00_u9fff_bijective.tsv @@ -0,0 +1,7254 @@ +codepoint character status reason ids +U+4E09 三 missing missing +U+4E20 丠 exact_ids unresolved components: 北 ⿱北一 +U+4E34 临 missing missing +U+4E35 丵 exact_ids unresolved components: 𢆉 ⿱业𢆉 +U+4E3A 为 exact_ids structural collision: 办 ⿻力丷 +U+4E3D 丽 missing missing +U+4E55 乕 missing missing +U+4E56 乖 exact_ids unresolved components: 北 ⿻千北 +U+4E58 乘 exact_ids unresolved components: 北 ⿻禾北 +U+4E5E 乞 missing missing +U+4E6E 乮 exact_ids unresolved components: 卯 ⿱卯乙 +U+4E79 乹 missing missing +U+4E7E 乾 exact_ids unresolved components: 乞 ⿰車乞 +U+4E7F 乿 missing missing +U+4E81 亁 missing missing +U+4E82 亂 exact_ids unresolved components: 𤔔 ⿰𤔔乚 +U+4E87 亇 missing missing +U+4E89 争 missing missing +U+4E8A 亊 missing missing +U+4E93 亓 missing missing +U+4E98 亘 missing missing +U+4E99 亙 missing missing +U+4E9F 亟 missing missing +U+4EA3 亣 missing missing +U+4EA5 亥 missing missing +U+4EA8 亨 missing missing +U+4EAB 享 missing missing +U+4EAC 京 missing missing +U+4EAD 亭 missing missing +U+4EAE 亮 missing missing +U+4EAF 亯 missing missing +U+4EB3 亳 missing missing +U+4EB4 亴 missing missing +U+4EB5 亵 missing missing +U+4EB6 亶 exact_ids unresolved components: 回 ⿱㐭旦 +U+4EB7 亷 missing missing +U+4EB8 亸 exact_ids unresolved components: 享,单 ⿰享单 +U+4EB9 亹 exact_ids unresolved components: 舋 ⿱亠舋 +U+4EBE 亾 missing missing +U+4ECA 今 exact_ids unresolved components: ㇇ ⿱亼㇇ +U+4ECB 介 missing missing +U+4EE1 仡 exact_ids unresolved components: 乞 ⿰亻乞 +U+4EE2 仢 exact_ids unresolved components: 勺 ⿰亻勺 +U+4EE8 仨 exact_ids unresolved components: 三 ⿰亻三 +U+4EEE 仮 exact_ids unresolved components: 反 ⿰亻反 +U+4EF1 仱 exact_ids unresolved components: ㇇ ⿰亻今 +U+4EF7 价 exact_ids unresolved components: 介 ⿰亻介 +U+4EFA 仺 missing missing +U+4F0A 伊 exact_ids unresolved components: 尹 ⿰亻尹 +U+4F0B 伋 exact_ids unresolved components: ㇏ ⿰亻及 +U+4F10 伐 exact_ids unresolved components: 戈 ⿰亻戈 +U+4F1B 伛 exact_ids unresolved components: 区 ⿰亻区 +U+4F1E 伞 missing missing +U+4F24 伤 missing missing +U+4F28 伨 exact_ids unresolved components: 匀 ⿰亻匀 +U+4F2C 伬 exact_ids unresolved components: ㇏ ⿰亻尺 +U+4F35 伵 exact_ids unresolved components: 四 ⿰亻四 +U+4F37 伷 exact_ids unresolved components: 由 ⿰亻由 +U+4F38 伸 exact_ids unresolved components: 申 ⿰亻申 +U+4F3A 伺 exact_ids unresolved components: 司 ⿰亻司 +U+4F45 佅 exact_ids structural collision: 体 ⿰亻未 +U+4F48 佈 exact_ids unresolved components: 布 ⿰亻布 +U+4F50 佐 exact_ids unresolved components: 左 ⿰亻左 +U+4F53 体 exact_ids structural collision: 佅 ⿰亻本 +U+4F5D 佝 exact_ids unresolved components: 句 ⿰亻句 +U+4F5E 佞 missing missing +U+4F60 你 exact_ids unresolved components: ⺈ ⿰亻尔 +U+4F65 佥 missing missing +U+4F68 佨 exact_ids unresolved components: 包 ⿰亻包 +U+4F69 佩 exact_ids unresolved components: 凧 ⿰亻凧 +U+4F6A 佪 exact_ids unresolved components: 回 ⿰亻回 +U+4F79 佹 exact_ids unresolved components: ⺈ ⿰亻危 +U+4F7F 使 exact_ids unresolved components: 吏 ⿰亻吏 +U+4F83 侃 missing missing +U+4F85 侅 exact_ids unresolved components: 亥 ⿰亻亥 +U+4F8A 侊 exact_ids unresolved components: ⺌ ⿰亻光 +U+4F8C 侌 exact_ids unresolved components: ㇇ ⿱今云 +U+4F90 侐 exact_ids unresolved components: 血 ⿰亻血 +U+4F93 侓 exact_ids unresolved components: 聿 ⿰亻聿 +U+4F96 侖 exact_ids unresolved components: 𠕁 ⿱亼𠕁 +U+4F97 侗 exact_ids unresolved components: 同 ⿰亻同 +U+4F9A 侚 exact_ids unresolved components: 旬 ⿰亻旬 +U+4F9F 侟 exact_ids unresolved components: 存 ⿰亻存 +U+4FA5 侥 exact_ids unresolved components: 尧 ⿰亻尧 +U+4FAD 侭 exact_ids unresolved components: ㇏ ⿰亻尽 +U+4FAF 侯 missing missing +U+4FB0 侰 exact_ids unresolved components: 尹 ⿰亻君 +U+4FB4 侴 missing missing +U+4FB6 侶 exact_ids unresolved components: 呂 ⿰亻呂 +U+4FB7 侷 exact_ids unresolved components: 局 ⿰亻局 +U+4FBA 侺 exact_ids unresolved components: ㇇ ⿰亻岑 +U+4FC4 俄 exact_ids unresolved components: 戈 ⿰亻我 +U+4FD3 俓 exact_ids unresolved components: 巠 ⿰亻巠 +U+4FD9 俙 exact_ids unresolved components: 布 ⿰亻希 +U+4FDA 俚 exact_ids unresolved components: 里 ⿰亻里 +U+4FDC 俜 exact_ids unresolved components: 由 ⿰亻甹 +U+4FEA 俪 exact_ids unresolved components: 丽 ⿰亻丽 +U+4FEB 俫 exact_ids unresolved components: 来 ⿰亻来 +U+4FED 俭 exact_ids unresolved components: 佥 ⿰亻佥 +U+4FEE 修 missing missing +U+4FF1 俱 exact_ids structural collision: 倶 ⿰亻具 +U+4FF4 俴 exact_ids unresolved components: 戈 ⿰亻戔 +U+4FF5 俵 exact_ids unresolved components: 表 ⿰亻表 +U+4FFA 俺 exact_ids unresolved components: 电 ⿰亻奄 +U+4FFC 俼 exact_ids unresolved components: 育 ⿰亻育 +U+5002 倂 exact_ids unresolved components: 幷 ⿰亻幷 +U+5005 倅 exact_ids unresolved components: 卒 ⿰亻卒 +U+5009 倉 missing missing +U+500B 個 exact_ids unresolved components: 固 ⿰亻固 +U+500F 倏 missing missing +U+5010 倐 missing missing +U+5016 倖 exact_ids unresolved components: 𢆉 ⿰亻幸 +U+5018 倘 exact_ids unresolved components: 冋 ⿰亻尚 +U+5019 候 exact_ids unresolved components: 侯 ⿰亻侯 +U+501C 倜 exact_ids unresolved components: 周 ⿰亻周 +U+501D 倝 missing missing +U+501E 倞 exact_ids unresolved components: 京 ⿰亻京 +U+501F 借 exact_ids unresolved components: 龷 ⿰亻昔 +U+5022 倢 exact_ids unresolved components: 疌 ⿰亻疌 +U+5024 値 exact_ids structural collision: 值 ⿰亻直 +U+5029 倩 exact_ids unresolved components: 円,龶 ⿰亻靑 +U+502B 倫 exact_ids unresolved components: 𠕁 ⿰亻侖 +U+5035 倵 exact_ids unresolved components: 武 ⿰亻武 +U+5036 倶 exact_ids structural collision: 俱 ⿰亻具 +U+503A 债 exact_ids unresolved components: 龶 ⿰亻责 +U+503C 值 exact_ids structural collision: 値 ⿰亻直 +U+5043 偃 exact_ids unresolved components: 匽 ⿰亻匽 +U+5045 偅 exact_ids unresolved components: 里 ⿰亻重 +U+5048 偈 exact_ids unresolved components: 匃 ⿰亻曷 +U+504A 偊 exact_ids unresolved components: 禹 ⿰亻禹 +U+504D 偍 exact_ids unresolved components: 𤴓 ⿰亻是 +U+504F 偏 exact_ids unresolved components: 𠕁 ⿰亻扁 +U+505C 停 exact_ids unresolved components: 亭 ⿰亻亭 +U+505D 偝 exact_ids unresolved components: 北 ⿰亻背 +U+5061 偡 exact_ids unresolved components: 匹 ⿰亻甚 +U+5064 偤 exact_ids unresolved components: 酉 ⿰亻酋 +U+5065 健 exact_ids unresolved components: 聿 ⿰亻建 +U+5069 偩 exact_ids unresolved components: ⺈ ⿰亻負 +U+506A 偪 exact_ids unresolved components: 畐 ⿰亻畐 +U+506F 偯 exact_ids unresolved components: 哀 ⿰亻哀 +U+5071 偱 exact_ids unresolved components: ⺁ ⿰亻盾 +U+5078 偸 exact_ids unresolved components: 兪 ⿰亻兪 +U+5079 偹 missing missing +U+507C 偼 exact_ids unresolved components: 疌 ⿰亻疌 +U+5081 傁 exact_ids unresolved components: 𦥔 ⿰亻叟 +U+5082 傂 exact_ids unresolved components: 虒 ⿰亻虒 +U+5083 傃 exact_ids unresolved components: 龶 ⿰亻素 +U+5084 傄 exact_ids unresolved components: 眘 ⿰亻眘 +U+508F 傏 exact_ids unresolved components: 唐 ⿰亻唐 +U+5090 傐 exact_ids unresolved components: 高 ⿰亻高 +U+5096 傖 exact_ids unresolved components: 倉 ⿰亻倉 +U+5098 傘 missing missing +U+5099 備 missing missing +U+509C 傜 missing missing +U+509D 傝 exact_ids unresolved components: 冃 ⿰亻𦐇 +U+50A4 傤 exact_ids unresolved components: 载 ⿰亻载 +U+50AA 傪 exact_ids unresolved components: 參 ⿰亻參 +U+50AD 傭 exact_ids unresolved components: 庸 ⿰亻庸 +U+50AE 傮 exact_ids unresolved components: 曹 ⿰亻曹 +U+50AF 傯 exact_ids unresolved components: 囱 ⿰亻悤 +U+50B1 傱 exact_ids unresolved components: 從 ⿰亻從 +U+50B2 傲 exact_ids unresolved components: 敖 ⿰亻敖 +U+50B3 傳 exact_ids unresolved components: 𤰔 ⿰亻專 +U+50B4 傴 exact_ids unresolved components: 區 ⿰亻區 +U+50B5 債 exact_ids unresolved components: 龶 ⿰亻責 +U+50B6 傶 exact_ids unresolved components: 戚 ⿰亻戚 +U+50B7 傷 missing missing +U+50B8 傸 exact_ids unresolved components: 㸚 ⿰亻爽 +U+50BA 傺 exact_ids unresolved components: 祭 ⿰亻祭 +U+50BB 傻 missing missing +U+50BC 傼 exact_ids unresolved components: 𦰩 ⿰亻𦰩 +U+50C2 僂 exact_ids unresolved components: 婁 ⿰亻婁 +U+50C3 僃 exact_ids unresolved components: 甸 ⿰亻䓒 +U+50C8 僈 exact_ids unresolved components: 曼 ⿰亻曼 +U+50C9 僉 missing missing +U+50CB 僋 exact_ids unresolved components: ㇇ ⿰亻貪 +U+50CD 働 exact_ids unresolved components: 里 ⿰亻動 +U+50D0 僐 exact_ids unresolved components: 善 ⿰亻善 +U+50D1 僑 exact_ids unresolved components: 冋 ⿰亻喬 +U+50D2 僒 exact_ids unresolved components: 尹 ⿰亻窘 +U+50D4 僔 exact_ids unresolved components: 酉 ⿰亻尊 +U+50D8 僘 exact_ids unresolved components: 冋 ⿰亻敞 +U+50DA 僚 exact_ids unresolved components: 昚 ⿰亻尞 +U+50DE 僞 exact_ids unresolved components: 爲 ⿰亻爲 +U+50DF 僟 exact_ids unresolved components: 戍 ⿰亻幾 +U+50E1 僡 exact_ids unresolved components: 𤰔 ⿰亻惠 +U+50E4 僤 exact_ids unresolved components: 單 ⿰亻單 +U+50E6 僦 exact_ids unresolved components: 京 ⿰亻就 +U+50E7 僧 exact_ids unresolved components: 曽 ⿰亻曽 +U+50E9 僩 exact_ids unresolved components: 閒 ⿰亻閒 +U+50EE 僮 exact_ids unresolved components: 里 ⿰亻童 +U+50F2 僲 missing missing +U+50F4 僴 exact_ids unresolved components: 間 ⿰亻間 +U+50F5 僵 exact_ids unresolved components: 三 ⿰亻畺 +U+50FB 僻 exact_ids unresolved components: 𡰪 ⿰亻辟 +U+5100 儀 exact_ids unresolved components: 義 ⿰亻義 +U+5103 儃 exact_ids unresolved components: 回 ⿰亻亶 +U+5105 儅 exact_ids unresolved components: 冋 ⿰亻當 +U+5106 儆 exact_ids unresolved components: 句 ⿰亻敬 +U+5107 儇 exact_ids unresolved components: 睘 ⿰亻睘 +U+5108 儈 exact_ids unresolved components: 曾 ⿰亻會 +U+5109 儉 exact_ids unresolved components: 僉 ⿰亻僉 +U+510B 儋 exact_ids unresolved components: 詹 ⿰亻詹 +U+510C 儌 exact_ids unresolved components: 敫 ⿰亻敫 +U+510D 儍 missing missing +U+510E 儎 exact_ids unresolved components: 載 ⿰亻載 +U+510F 儏 exact_ids unresolved components: 𣦼 ⿰亻粲 +U+5110 儐 exact_ids unresolved components: 賓 ⿰亻賓 +U+5114 儔 exact_ids unresolved components: 壽 ⿰亻壽 +U+5116 儖 exact_ids unresolved components: 監 ⿰亻監 +U+5117 儗 exact_ids unresolved components: 疑 ⿰亻疑 +U+5118 儘 exact_ids unresolved components: 盡 ⿰亻盡 +U+511A 儚 exact_ids unresolved components: 夢 ⿰亻夢 +U+511B 儛 exact_ids unresolved components: 舞 ⿰亻舞 +U+511C 儜 exact_ids unresolved components: 寍 ⿰亻寧 +U+511F 償 exact_ids unresolved components: 冋 ⿰亻賞 +U+5120 儠 exact_ids unresolved components: 巤 ⿰亻巤 +U+512B 儫 exact_ids unresolved components: 豪 ⿰亻豪 +U+512C 儬 exact_ids unresolved components: 龶 ⿰亻靚 +U+5133 儳 exact_ids unresolved components: 毚 ⿰亻毚 +U+5134 儴 exact_ids unresolved components: 襄 ⿰亻襄 +U+5135 儵 missing missing +U+5137 儷 exact_ids unresolved components: 丽 ⿰亻麗 +U+513B 儻 exact_ids unresolved components: 冋 ⿰亻黨 +U+513C 儼 exact_ids unresolved components: 𠪚 ⿰亻嚴 +U+5147 兇 exact_ids unresolved components: 凶 ⿱凶儿 +U+5149 光 exact_ids unresolved components: ⺌ ⿱⺌兀 +U+514E 兎 missing missing +U+514F 兏 missing missing +U+515C 兜 missing missing +U+5160 兠 missing missing +U+5163 兣 exact_ids unresolved components: 里 ⿰克厘 +U+5164 兤 exact_ids unresolved components: ⺌ ⿰光廣 +U+5166 兦 missing missing +U+516A 兪 missing missing +U+5170 兰 exact_ids unresolved components: 三 ⿱丷三 +U+517B 养 exact_ids unresolved components: 介,𦍌 ⿻𦍌介 +U+517D 兽 missing missing +U+517F 兿 missing missing +U+5180 冀 exact_ids unresolved components: 北 ⿱北異 +U+5181 冁 exact_ids unresolved components: 单,展 ⿰单展 +U+5183 冃 missing missing +U+5185 内 exact_ids structural collision: 贝 ⿻冂人 +U+5186 円 missing missing +U+5188 冈 missing missing +U+518B 冋 missing missing +U+5190 冐 exact_ids unresolved components: 冃 ⿱冃月 +U+5191 冑 exact_ids unresolved components: 冃,由 ⿱由冃 +U+5192 冒 exact_ids unresolved components: 冃 ⿱冃目 +U+5194 冔 exact_ids unresolved components: 冃 ⿱冃吁 +U+5195 冕 exact_ids unresolved components: 冃 ⿱冃免 +U+51A1 冡 exact_ids unresolved components: 冃 ⿱冃𧰨 +U+51A2 冢 exact_ids unresolved components: 豖 ⿱冖豖 +U+51A6 冦 missing missing +U+51A8 冨 exact_ids unresolved components: 畐 ⿱冖畐 +U+51A9 冩 exact_ids unresolved components: 灳 ⿱冖舄 +U+51B9 冹 exact_ids unresolved components: 犮 ⿰冫犮 +U+51BF 冿 exact_ids unresolved components: 聿 ⿰冫聿 +U+51C0 净 exact_ids unresolved components: 争 ⿰冫争 +U+51C4 凄 exact_ids unresolved components: 妻 ⿰冫妻 +U+51C5 凅 exact_ids unresolved components: 固 ⿰冫固 +U+51C9 凉 exact_ids unresolved components: 京 ⿰冫京 +U+51CA 凊 exact_ids unresolved components: 龶 ⿰冫青 +U+51CB 凋 exact_ids unresolved components: 周 ⿰冫周 +U+51CF 减 exact_ids unresolved components: 咸 ⿰冫咸 +U+51D4 凔 exact_ids unresolved components: 倉 ⿰冫倉 +U+51D9 凙 exact_ids unresolved components: 𢆉 ⿰冫睪 +U+51DB 凛 exact_ids unresolved components: 禀 ⿰冫禀 +U+51DC 凜 exact_ids unresolved components: 回 ⿰冫稟 +U+51DD 凝 exact_ids unresolved components: 疑 ⿰冫疑 +U+51DE 凞 exact_ids unresolved components: 熈 ⿰冫熈 +U+51E1 凡 missing missing +U+51E4 凤 missing missing +U+51E7 凧 missing missing +U+51E8 凨 missing missing +U+51E9 凩 missing missing +U+51EA 凪 missing missing +U+51EC 凬 missing missing +U+51EE 凮 missing missing +U+51F0 凰 missing missing +U+51F2 凲 missing missing +U+51F6 凶 missing missing +U+51F7 凷 missing missing +U+51FB 击 missing missing +U+51FC 凼 missing missing +U+51FF 凿 exact_ids unresolved components: 𢆉 ⿱丵凵 +U+5209 刉 exact_ids unresolved components: 乞 ⿰乞刂 +U+520D 刍 exact_ids unresolved components: ⺈ ⿱⺈彐 +U+5212 划 exact_ids unresolved components: 戈 ⿰戈刂 +U+521A 刚 exact_ids unresolved components: 冈 ⿰冈刂 +U+5228 刨 exact_ids unresolved components: 包 ⿰包刂 +U+522C 刬 exact_ids unresolved components: 戈 ⿰戋刂 +U+522D 刭 missing missing +U+522F 刯 exact_ids unresolved components: 亘 ⿰亘刂 +U+5236 制 missing missing +U+5237 刷 missing missing +U+523B 刻 exact_ids unresolved components: 亥 ⿰亥刂 +U+5244 剄 exact_ids unresolved components: 巠 ⿰巠刂 +U+524E 剎 missing missing +U+5251 剑 exact_ids unresolved components: 佥 ⿰佥刂 +U+5252 剒 exact_ids unresolved components: 龷 ⿰昔刂 +U+5253 剓 missing missing +U+5257 剗 exact_ids unresolved components: 戈 ⿰戔刂 +U+525B 剛 exact_ids unresolved components: 岡 ⿰岡刂 +U+5260 剠 exact_ids unresolved components: 京 ⿰京刂 +U+5262 剢 exact_ids unresolved components: 豖 ⿰豖刂 +U+5264 剤 exact_ids unresolved components: 斉 ⿰斉刂 +U+5266 剦 exact_ids unresolved components: 电 ⿰奄刂 +U+5269 剩 exact_ids unresolved components: 北 ⿰乘刂 +U+526B 剫 exact_ids unresolved components: 度 ⿰度刂 +U+526F 副 exact_ids unresolved components: 畐 ⿰畐刂 +U+5272 割 exact_ids unresolved components: 害 ⿰害刂 +U+5275 創 exact_ids unresolved components: 倉 ⿰倉刂 +U+5278 剸 exact_ids unresolved components: 𤰔 ⿰專刂 +U+527A 剺 missing missing +U+527C 剼 exact_ids unresolved components: 參 ⿰參刂 +U+527E 剾 exact_ids unresolved components: 區 ⿰區刂 +U+5283 劃 exact_ids unresolved components: 畫 ⿰畫刂 +U+5284 劄 exact_ids unresolved components: 亇 ⿰答刂 +U+5285 劅 exact_ids unresolved components: 𠣜 ⿰蜀刂 +U+5288 劈 exact_ids unresolved components: 𡰪 ⿱辟刀 +U+5289 劉 exact_ids unresolved components: 𨥫 ⿰𨥫刂 +U+528A 劊 exact_ids unresolved components: 曾 ⿰會刂 +U+528C 劌 exact_ids unresolved components: 歲 ⿰歲刂 +U+528D 劍 exact_ids unresolved components: 僉 ⿰僉刂 +U+528E 劎 exact_ids unresolved components: 僉 ⿰僉刀 +U+528F 劏 exact_ids unresolved components: 冋 ⿰當刂 +U+5292 劒 exact_ids unresolved components: 僉 ⿰僉刃 +U+5294 劔 exact_ids unresolved components: 僉 ⿰僉刄 +U+5296 劖 exact_ids unresolved components: 毚 ⿰毚刂 +U+529A 劚 exact_ids unresolved components: 屬 ⿰屬刂 +U+529E 办 exact_ids structural collision: 为 ⿻力丷 +U+52AC 劬 exact_ids unresolved components: 句 ⿰句力 +U+52B2 劲 missing missing +U+52B6 劶 exact_ids unresolved components: 后 ⿰后力 +U+52BB 劻 exact_ids unresolved components: 匡 ⿰匡力 +U+52BE 劾 exact_ids unresolved components: 亥 ⿰亥力 +U+52C0 勀 exact_ids structural collision: 勊 ⿰克力 +U+52C1 勁 exact_ids unresolved components: 巠 ⿰巠力 +U+52CA 勊 exact_ids structural collision: 勀 ⿰克力 +U+52CD 勍 exact_ids unresolved components: 京 ⿰京力 +U+52D5 動 exact_ids unresolved components: 里 ⿰重力 +U+52D6 勖 exact_ids unresolved components: 冃 ⿰冒力 +U+52D8 勘 exact_ids unresolved components: 匹 ⿰甚力 +U+52E3 勣 exact_ids unresolved components: 龶 ⿰責力 +U+52E7 勧 missing missing +U+52E8 勨 missing missing +U+52EA 勪 exact_ids unresolved components: 冋 ⿰喬力 +U+52ED 勭 exact_ids unresolved components: 里 ⿰童力 +U+52EF 勯 exact_ids unresolved components: 回 ⿰亶力 +U+52F2 勲 exact_ids unresolved components: 里 ⿱動灬 +U+52F3 勳 exact_ids unresolved components: 熏 ⿰熏力 +U+52F6 勶 exact_ids unresolved components: 徹 ⿱徹力 +U+52F7 勷 exact_ids unresolved components: 襄 ⿰襄力 +U+52FA 勺 missing missing +U+52FB 勻 missing missing +U+52FC 勼 missing missing +U+52FD 勽 missing missing +U+52FE 勾 missing missing +U+5300 匀 missing missing +U+5302 匂 missing missing +U+5303 匃 missing missing +U+5304 匄 missing missing +U+5305 包 missing missing +U+5307 匇 missing missing +U+5308 匈 missing missing +U+5309 匉 missing missing +U+530A 匊 missing missing +U+530B 匋 missing missing +U+530C 匌 missing missing +U+530D 匍 missing missing +U+530E 匎 missing missing +U+530F 匏 exact_ids unresolved components: 包 ⿰夸包 +U+5310 匐 missing missing +U+5311 匑 missing missing +U+5312 匒 missing missing +U+5313 匓 missing missing +U+5314 匔 missing missing +U+5317 北 missing missing +U+5318 匘 exact_ids unresolved components: 囟 ⿰匕𡿺 +U+5319 匙 exact_ids unresolved components: 𤴓 ⿰是匕 +U+531B 匛 missing missing +U+531C 匜 missing missing +U+531D 匝 missing missing +U+531E 匞 missing missing +U+531F 匟 missing missing +U+5320 匠 missing missing +U+5321 匡 missing missing +U+5322 匢 missing missing +U+5323 匣 missing missing +U+5324 匤 missing missing +U+5325 匥 missing missing +U+5326 匦 missing missing +U+5327 匧 missing missing +U+5328 匨 missing missing +U+5329 匩 missing missing +U+532A 匪 missing missing +U+532B 匫 missing missing +U+532C 匬 missing missing +U+532D 匭 missing missing +U+532E 匮 missing missing +U+532F 匯 missing missing +U+5330 匰 missing missing +U+5331 匱 missing missing +U+5332 匲 missing missing +U+5333 匳 missing missing +U+5334 匴 missing missing +U+5335 匵 missing missing +U+5336 匶 missing missing +U+5337 匷 missing missing +U+5339 匹 missing missing +U+533A 区 missing missing +U+533B 医 missing missing +U+533C 匼 missing missing +U+533D 匽 missing missing +U+533E 匾 missing missing +U+533F 匿 missing missing +U+5340 區 missing missing +U+5352 卒 missing missing +U+5355 单 missing missing +U+5357 南 missing missing +U+5358 単 missing missing +U+5359 卙 exact_ids unresolved components: 匹 ⿰甚十 +U+5364 卤 exact_ids unresolved components: 龱 ⿱卜龱 +U+5365 卥 missing missing +U+536E 卮 missing missing +U+536F 卯 missing missing +U+5370 印 missing missing +U+5371 危 exact_ids unresolved components: ⺈ ⿱⺈厄 +U+5379 卹 exact_ids unresolved components: 血 ⿰血卩 +U+537C 卼 exact_ids unresolved components: ⺈ ⿰兀危 +U+5383 厃 exact_ids unresolved components: ⺈ ⿱⺈厂 +U+5398 厘 exact_ids unresolved components: 里 ⿱厂里 +U+539D 厝 exact_ids unresolved components: 龷 ⿱厂昔 +U+53A3 厣 exact_ids unresolved components: 甲 ⿱厌甲 +U+53A6 厦 exact_ids unresolved components: 夏 ⿱厂夏 +U+53A8 厨 missing missing +U+53AB 厫 exact_ids unresolved components: 敖 ⿱厂敖 +U+53AD 厭 exact_ids unresolved components: 冃 ⿱厂猒 +U+53AF 厯 missing missing +U+53B0 厰 exact_ids unresolved components: 冋 ⿱厂敞 +U+53B1 厱 exact_ids unresolved components: 僉 ⿱厂僉 +U+53B3 厳 missing missing +U+53B4 厴 exact_ids unresolved components: 冃,甲 ⿱厭甲 +U+53B7 厷 missing missing +U+53C0 叀 exact_ids unresolved components: 𤰔 ⿱𤰔厶 +U+53C1 叁 missing missing +U+53C2 参 missing missing +U+53C3 參 missing missing +U+53C4 叄 exact_ids unresolved components: 三 ⿱𠫯三 +U+53C5 叅 exact_ids unresolved components: 㣺 ⿱𠫯㣺 +U+53C7 叇 exact_ids unresolved components: 隶 ⿰云逮 +U+53CA 及 exact_ids unresolved components: ㇏ ⿻乃㇏ +U+53CD 反 missing missing +U+53CF 叏 missing missing +U+53DB 叛 exact_ids unresolved components: 反 ⿰半反 +U+53DE 叞 missing missing +U+53DF 叟 exact_ids unresolved components: 𦥔 ⿻𦥔又 +U+53E1 叡 exact_ids unresolved components: 眘 ⿰睿又 +U+53E2 叢 missing missing +U+53E5 句 missing missing +U+53EE 叮 exact_ids structural collision: 可 ⿰口丁 +U+53EF 可 exact_ids structural collision: 叮 ⿰口丁 +U+53F8 司 missing missing +U+5403 吃 exact_ids unresolved components: 乞 ⿰口乞 +U+540C 同 missing missing +U+540E 后 missing missing +U+540F 吏 missing missing +U+5411 向 exact_ids unresolved components: 冋 ⿱丶冋 +U+541A 吚 exact_ids unresolved components: 尹 ⿰口尹 +U+541B 君 exact_ids unresolved components: 尹 ⿱尹口 +U+541F 吟 exact_ids unresolved components: ㇇ ⿰口今 +U+5420 吠 exact_ids structural collision: 呔 ⿰口犬 +U+5424 吤 exact_ids unresolved components: 介 ⿰口介 +U+542B 含 exact_ids unresolved components: ㇇ ⿱今口 +U+5430 吰 exact_ids unresolved components: 厷 ⿰口厷 +U+5438 吸 exact_ids unresolved components: ㇏ ⿰口及 +U+543F 吿 exact_ids structural collision: 告 ⿱牛口 +U+5441 呁 exact_ids unresolved components: 匀 ⿰口匀 +U+5442 呂 missing missing +U+5449 呉 missing missing +U+544A 告 exact_ids structural collision: 吿 ⿱牛口 +U+544E 呎 exact_ids unresolved components: ㇏ ⿰口尺 +U+5450 呐 exact_ids structural collision: 呗 ⿰口内 +U+5454 呔 exact_ids structural collision: 吠 ⿰口太 +U+5455 呕 exact_ids unresolved components: 区 ⿰口区 +U+5457 呗 exact_ids structural collision: 呐 ⿰口贝 +U+5458 员 exact_ids structural collision: 呙 ⿱口贝 +U+5459 呙 exact_ids structural collision: 员 ⿱口内 +U+545E 呞 exact_ids unresolved components: 司 ⿰口司 +U+5460 呠 exact_ids structural collision: 味 ⿰口本 +U+5468 周 missing missing +U+546C 呬 exact_ids unresolved components: 四 ⿰口四 +U+5473 味 exact_ids structural collision: 呠 ⿰口未 +U+5474 呴 exact_ids unresolved components: 句 ⿰口句 +U+5477 呷 exact_ids unresolved components: 甲 ⿰口甲 +U+547B 呻 exact_ids unresolved components: 申 ⿰口申 +U+5482 咂 exact_ids unresolved components: 匝 ⿰口匝 +U+5486 咆 exact_ids unresolved components: 包 ⿰口包 +U+548F 咏 exact_ids unresolved components: 永 ⿰口永 +U+5497 咗 exact_ids unresolved components: 左 ⿰口左 +U+5498 咘 exact_ids unresolved components: 布 ⿰口布 +U+54A3 咣 exact_ids unresolved components: ⺌ ⿰口光 +U+54AB 咫 exact_ids unresolved components: ㇏ ⿰尺只 +U+54B0 咰 exact_ids unresolved components: 旬 ⿰口旬 +U+54B3 咳 exact_ids unresolved components: 亥 ⿰口亥 +U+54B8 咸 missing missing +U+54BA 咺 exact_ids unresolved components: 亘 ⿰口亘 +U+54BD 咽 exact_ids unresolved components: 因 ⿰口因 +U+54BF 咿 exact_ids unresolved components: 尹 ⿰口伊 +U+54C0 哀 missing missing +U+54C3 哃 exact_ids unresolved components: 同 ⿰口同 +U+54C5 哅 exact_ids unresolved components: 匈 ⿰口匈 +U+54C9 哉 missing missing +U+54CC 哌 missing missing +U+54CD 响 exact_ids unresolved components: 冋 ⿰口向 +U+54D0 哐 exact_ids unresolved components: 匡 ⿰口匡 +U+54D3 哓 exact_ids unresolved components: 尧 ⿰口尧 +U+54DF 哟 exact_ids unresolved components: 勺 ⿰口约 +U+54E6 哦 exact_ids unresolved components: 戈 ⿰口我 +U+54E9 哩 exact_ids unresolved components: 里 ⿰口里 +U+54FC 哼 exact_ids unresolved components: 亨 ⿰口亨 +U+5503 唃 exact_ids unresolved components: ⺈ ⿰口角 +U+5505 唅 exact_ids unresolved components: ㇇ ⿰口含 +U+550F 唏 exact_ids unresolved components: 布 ⿰口希 +U+5510 唐 missing missing +U+5512 唒 exact_ids unresolved components: 酉 ⿰口酉 +U+5518 唘 missing missing +U+551B 唛 exact_ids unresolved components: 龶 ⿰口麦 +U+5522 唢 missing missing +U+5524 唤 exact_ids unresolved components: ⺈ ⿰口奂 +U+5530 唰 exact_ids unresolved components: 刷 ⿰口刷 +U+5535 唵 exact_ids unresolved components: 电 ⿰口奄 +U+5536 唶 exact_ids unresolved components: 龷 ⿰口昔 +U+5537 唷 exact_ids unresolved components: 育 ⿰口育 +U+5538 唸 exact_ids unresolved components: ㇇ ⿰口念 +U+5541 啁 exact_ids unresolved components: 周 ⿰口周 +U+5547 啇 missing missing +U+5548 啈 exact_ids unresolved components: 𢆉 ⿰口幸 +U+554D 啍 exact_ids unresolved components: 享 ⿰口享 +U+554F 問 missing missing +U+5550 啐 exact_ids unresolved components: 卒 ⿰口卒 +U+5551 啑 exact_ids unresolved components: 疌 ⿰口疌 +U+5553 啓 missing missing +U+5554 啔 missing missing +U+5555 啕 exact_ids unresolved components: 匋 ⿰口匋 +U+5557 啗 exact_ids unresolved components: ⺈ ⿰口臽 +U+555A 啚 missing missing +U+555B 啛 exact_ids unresolved components: 妻 ⿰口妻 +U+5567 啧 exact_ids unresolved components: 龶 ⿰口责 +U+5568 啨 exact_ids unresolved components: 龶 ⿰口青 +U+556C 啬 missing missing +U+556F 啯 exact_ids unresolved components: 国 ⿰口国 +U+5572 啲 exact_ids unresolved components: 勺 ⿰口的 +U+5574 啴 exact_ids unresolved components: 单 ⿰口单 +U+5576 啶 exact_ids unresolved components: 𤴓 ⿰口定 +U+5578 啸 exact_ids unresolved components: 肃 ⿰口肃 +U+557F 啿 exact_ids unresolved components: 匹 ⿰口甚 +U+5583 喃 exact_ids unresolved components: 南 ⿰口南 +U+5584 善 missing missing +U+5589 喉 exact_ids unresolved components: 侯 ⿰口侯 +U+558A 喊 exact_ids unresolved components: 咸 ⿰口咸 +U+559A 喚 exact_ids unresolved components: 奐 ⿰口奐 +U+559D 喝 exact_ids unresolved components: 匃 ⿰口曷 +U+55A0 喠 exact_ids unresolved components: 里 ⿰口重 +U+55A3 喣 exact_ids unresolved components: 句 ⿱呴灬 +U+55A5 喥 exact_ids unresolved components: 度 ⿰口度 +U+55A6 喦 exact_ids structural collision: 嵒 ⿱品山 +U+55A7 喧 exact_ids unresolved components: 亘 ⿰口宣 +U+55A8 喨 exact_ids unresolved components: 亮 ⿰口亮 +U+55A9 喩 exact_ids unresolved components: 兪 ⿰口兪 +U+55AC 喬 exact_ids unresolved components: 冋 ⿱呑冋 +U+55AE 單 missing missing +U+55B1 喱 exact_ids unresolved components: 里 ⿰口厘 +U+55B2 喲 exact_ids unresolved components: 勺 ⿰口約 +U+55B4 喴 exact_ids unresolved components: 威 ⿰口威 +U+55B6 営 exact_ids unresolved components: 呂 ⿳小冖呂 +U+55BC 喼 exact_ids unresolved components: ⺈ ⿰口急 +U+55C0 嗀 missing missing +U+55C1 嗁 exact_ids unresolved components: 虒 ⿰口虒 +U+55C3 嗃 exact_ids unresolved components: 高 ⿰口高 +U+55C4 嗄 exact_ids unresolved components: 夏 ⿰口夏 +U+55C6 嗆 exact_ids unresolved components: 倉 ⿰口倉 +U+55C7 嗇 exact_ids unresolved components: 回 ⿱夾回 +U+55C9 嗉 exact_ids unresolved components: 龶 ⿰口素 +U+55CC 嗌 exact_ids unresolved components: 益 ⿰口益 +U+55CF 嗏 exact_ids unresolved components: 茶 ⿰口茶 +U+55D0 嗐 exact_ids unresolved components: 害 ⿰口害 +U+55D6 嗖 exact_ids unresolved components: 𦥔 ⿰口叟 +U+55E2 嗢 exact_ids unresolved components: 囚 ⿰口𥁕 +U+55E3 嗣 missing missing +U+55E4 嗤 exact_ids unresolved components: 蚩 ⿰口蚩 +U+55E7 嗧 exact_ids unresolved components: 𠕁 ⿱加侖 +U+55EF 嗯 exact_ids unresolved components: 因 ⿰口恩 +U+55F0 嗰 exact_ids unresolved components: 固 ⿰口個 +U+55F7 嗷 exact_ids unresolved components: 敖 ⿰口敖 +U+55F8 嗸 exact_ids unresolved components: 敖 ⿱敖口 +U+55FE 嗾 exact_ids unresolved components: 族 ⿰口族 +U+55FF 嗿 exact_ids unresolved components: ㇇ ⿰口貪 +U+5600 嘀 exact_ids unresolved components: 啇 ⿰口啇 +U+5601 嘁 exact_ids unresolved components: 戚 ⿰口戚 +U+5603 嘃 exact_ids unresolved components: 庸 ⿰口庸 +U+5604 嘄 exact_ids unresolved components: 梟 ⿰口梟 +U+5606 嘆 exact_ids unresolved components: 𦰩 ⿰口𦰩 +U+5607 嘇 exact_ids unresolved components: 參 ⿰口參 +U+5608 嘈 exact_ids unresolved components: 曹 ⿰口曹 +U+560D 嘍 exact_ids unresolved components: 婁 ⿰口婁 +U+560E 嘎 exact_ids unresolved components: 戈 ⿰口戛 +U+5613 嘓 exact_ids unresolved components: 國 ⿰口國 +U+5614 嘔 exact_ids unresolved components: 區 ⿰口區 +U+5616 嘖 exact_ids unresolved components: 龶 ⿰口責 +U+5617 嘗 exact_ids unresolved components: 冋 ⿱尚旨 +U+561D 嘝 exact_ids unresolved components: ⺈ ⿰口斛 +U+5620 嘠 exact_ids unresolved components: 戈 ⿰口戞 +U+5621 嘡 exact_ids unresolved components: 冋 ⿰口堂 +U+5622 嘢 exact_ids unresolved components: 里 ⿰口野 +U+5628 嘨 exact_ids unresolved components: 粛 ⿰口粛 +U+5630 嘰 exact_ids unresolved components: 戍 ⿰口幾 +U+5631 嘱 exact_ids unresolved components: 禹 ⿰口属 +U+5632 嘲 exact_ids unresolved components: 朝 ⿰口朝 +U+5634 嘴 exact_ids unresolved components: ⺈ ⿰口觜 +U+5637 嘷 exact_ids unresolved components: 臯 ⿰口臯 +U+5639 嘹 exact_ids unresolved components: 昚 ⿰口尞 +U+563A 嘺 exact_ids unresolved components: 冋 ⿰口喬 +U+563D 嘽 exact_ids unresolved components: 單 ⿰口單 +U+5642 噂 exact_ids unresolved components: 酉 ⿰口尊 +U+5647 噇 exact_ids unresolved components: 里 ⿰口童 +U+5648 噈 exact_ids unresolved components: 京 ⿰口就 +U+5649 噉 exact_ids unresolved components: 敢 ⿰口敢 +U+564B 噋 exact_ids unresolved components: 享 ⿰口敦 +U+564C 噌 exact_ids unresolved components: 曽 ⿰口曽 +U+5651 噑 exact_ids unresolved components: 皐 ⿰口皐 +U+5653 噓 exact_ids unresolved components: 虛 ⿰口虛 +U+5655 噕 exact_ids unresolved components: 爲 ⿱爲口 +U+5656 噖 exact_ids unresolved components: ㇇ ⿰口琴 +U+5659 噙 exact_ids unresolved components: 凶 ⿰口禽 +U+565A 噚 exact_ids unresolved components: 尋 ⿰口尋 +U+565E 噞 exact_ids unresolved components: 僉 ⿰口僉 +U+5661 噡 exact_ids unresolved components: 詹 ⿰口詹 +U+5663 噣 exact_ids unresolved components: 𠣜 ⿰口蜀 +U+5666 噦 exact_ids unresolved components: 歲 ⿰口歲 +U+566C 噬 exact_ids unresolved components: 亇 ⿰口筮 +U+566D 噭 exact_ids unresolved components: 敫 ⿰口敫 +U+566E 噮 exact_ids unresolved components: 睘 ⿰口睘 +U+5670 噰 exact_ids unresolved components: 雍 ⿰口雍 +U+5672 噲 exact_ids unresolved components: 曾 ⿰口會 +U+5676 噶 exact_ids unresolved components: 匃 ⿰口葛 +U+5679 噹 exact_ids unresolved components: 冋 ⿰口當 +U+567C 噼 exact_ids unresolved components: 𡰪 ⿰口辟 +U+567F 噿 exact_ids unresolved components: 卒 ⿰口翠 +U+5680 嚀 exact_ids unresolved components: 寍 ⿰口寧 +U+5682 嚂 exact_ids unresolved components: 監 ⿰口監 +U+5686 嚆 exact_ids unresolved components: 高 ⿰口蒿 +U+5688 嚈 exact_ids unresolved components: 冃 ⿰口厭 +U+5689 嚉 exact_ids unresolved components: 𢆉 ⿰口對 +U+568B 嚋 exact_ids unresolved components: 壽 ⿰口壽 +U+568D 嚍 exact_ids unresolved components: 盡 ⿰口盡 +U+568E 嚎 exact_ids unresolved components: 豪 ⿰口豪 +U+568F 嚏 exact_ids unresolved components: 疐 ⿰口疐 +U+5690 嚐 exact_ids unresolved components: 冋 ⿰口嘗 +U+5691 嚑 exact_ids unresolved components: 熏 ⿰口熏 +U+5693 嚓 exact_ids unresolved components: 祭 ⿰口察 +U+5694 嚔 exact_ids unresolved components: 𤴛 ⿰口𤴡 +U+569B 嚛 exact_ids unresolved components: 樂 ⿰口樂 +U+569F 嚟 exact_ids unresolved components: 黎 ⿰口黎 +U+56A0 嚠 exact_ids unresolved components: 𨥫 ⿰口劉 +U+56A2 嚢 missing missing +U+56A3 嚣 missing missing +U+56A5 嚥 exact_ids unresolved components: 燕 ⿰口燕 +U+56A7 嚧 exact_ids unresolved components: 𧆨 ⿰口盧 +U+56AA 嚪 exact_ids unresolved components: 閻 ⿰口閻 +U+56AE 嚮 exact_ids unresolved components: 冋 ⿱鄉向 +U+56B1 嚱 exact_ids unresolved components: 䖒,戈 ⿰口戲 +U+56B2 嚲 exact_ids unresolved components: 享,單 ⿰享單 +U+56B3 嚳 missing missing +U+56B4 嚴 exact_ids unresolved components: 𠪚 ⿱⿰口口𠪚 +U+56B5 嚵 exact_ids unresolved components: 毚 ⿰口毚 +U+56B7 嚷 exact_ids unresolved components: 襄 ⿰口襄 +U+56BA 嚺 missing missing +U+56BB 嚻 exact_ids structural collision: 囂 ⿲吕頁吕 +U+56BC 嚼 exact_ids unresolved components: 爵 ⿰口爵 +U+56BD 嚽 exact_ids unresolved components: 敖 ⿰口贅 +U+56BF 嚿 exact_ids unresolved components: 舊 ⿰口舊 +U+56C0 囀 exact_ids unresolved components: 𤰔 ⿰口轉 +U+56C2 囂 exact_ids structural collision: 嚻 ⿲吕頁吕 +U+56C3 囃 exact_ids unresolved components: 雜 ⿰口雜 +U+56C4 囄 exact_ids unresolved components: 凶 ⿰口離 +U+56C5 囅 exact_ids unresolved components: 單,展 ⿰單展 +U+56C7 囇 exact_ids unresolved components: 丽 ⿰口麗 +U+56CE 囎 exact_ids unresolved components: 曽 ⿰口贈 +U+56D1 囑 exact_ids unresolved components: 屬 ⿰口屬 +U+56D2 囒 exact_ids unresolved components: 闌 ⿰口蘭 +U+56D5 囕 exact_ids unresolved components: 覽 ⿰口覽 +U+56D6 囖 exact_ids unresolved components: 亇 ⿰口籮 +U+56D8 囘 missing missing +U+56DA 囚 missing missing +U+56DB 四 missing missing +U+56DC 囜 missing missing +U+56DD 囝 missing missing +U+56DE 回 missing missing +U+56DF 囟 missing missing +U+56E0 因 missing missing +U+56E1 囡 missing missing +U+56E2 团 missing missing +U+56E3 団 missing missing +U+56E4 囤 missing missing +U+56E5 囥 missing missing +U+56E6 囦 missing missing +U+56E8 囨 missing missing +U+56E9 囩 missing missing +U+56EB 囫 missing missing +U+56EC 囬 missing missing +U+56ED 园 missing missing +U+56EE 囮 missing missing +U+56EF 囯 missing missing +U+56F0 困 missing missing +U+56F1 囱 missing missing +U+56F2 囲 missing missing +U+56F3 図 missing missing +U+56F4 围 missing missing +U+56F5 囵 missing missing +U+56F6 囶 missing missing +U+56F7 囷 missing missing +U+56F8 囸 missing missing +U+56F9 囹 missing missing +U+56FA 固 missing missing +U+56FB 囻 missing missing +U+56FC 囼 missing missing +U+56FD 国 missing missing +U+56FE 图 missing missing +U+56FF 囿 missing missing +U+5700 圀 missing missing +U+5701 圁 missing missing +U+5702 圂 missing missing +U+5703 圃 missing missing +U+5704 圄 missing missing +U+5705 圅 missing missing +U+5706 圆 missing missing +U+5707 圇 missing missing +U+5708 圈 missing missing +U+5709 圉 missing missing +U+570A 圊 missing missing +U+570B 國 missing missing +U+570C 圌 missing missing +U+570D 圍 missing missing +U+570E 圎 missing missing +U+570F 圏 missing missing +U+5710 圐 missing missing +U+5711 圑 missing missing +U+5712 園 missing missing +U+5713 圓 missing missing +U+5714 圔 missing missing +U+5715 圕 missing missing +U+5716 圖 missing missing +U+5717 圗 missing missing +U+5718 團 missing missing +U+5719 圙 missing missing +U+571A 圚 missing missing +U+571B 圛 missing missing +U+571C 圜 missing missing +U+571D 圝 missing missing +U+571E 圞 missing missing +U+572A 圪 exact_ids unresolved components: 乞 ⿰土乞 +U+5734 圴 exact_ids unresolved components: 勺 ⿰土勺 +U+573A 场 exact_ids unresolved components: 𠃓 ⿰土𠃓 +U+573E 圾 exact_ids unresolved components: ㇏ ⿰土及 +U+573F 圿 exact_ids unresolved components: 介 ⿰土介 +U+5742 坂 exact_ids unresolved components: 反 ⿰土反 +U+5745 坅 exact_ids unresolved components: ㇇ ⿰土今 +U+5747 均 exact_ids unresolved components: 匀 ⿰土匀 +U+5759 坙 missing missing +U+5764 坤 exact_ids unresolved components: 申 ⿰土申 +U+5770 坰 exact_ids unresolved components: 冋 ⿰土冋 +U+5778 坸 exact_ids unresolved components: 句 ⿰土句 +U+577A 坺 exact_ids unresolved components: 犮 ⿰土犮 +U+5789 垉 exact_ids unresolved components: 包 ⿰土包 +U+578C 垌 exact_ids unresolved components: 同 ⿰土同 +U+578F 垏 exact_ids unresolved components: 聿 ⿰土聿 +U+5793 垓 exact_ids unresolved components: 亥 ⿰土亥 +U+5795 垕 exact_ids unresolved components: 后 ⿱后土 +U+5799 垙 exact_ids unresolved components: ⺌ ⿰土光 +U+579D 垝 exact_ids unresolved components: ⺈ ⿰土危 +U+57A1 垡 exact_ids unresolved components: 戈 ⿱伐土 +U+57A2 垢 exact_ids unresolved components: 后 ⿰土后 +U+57A3 垣 exact_ids unresolved components: 亘 ⿰土亘 +U+57A7 垧 exact_ids unresolved components: 冋 ⿰土向 +U+57B4 垴 exact_ids unresolved components: 凶 ⿰土㐫 +U+57C0 埀 missing missing +U+57C1 埁 exact_ids unresolved components: ㇇ ⿰土岑 +U+57C6 埆 exact_ids unresolved components: ⺈ ⿰土角 +U+57CB 埋 exact_ids unresolved components: 里 ⿰土里 +U+57CE 城 exact_ids unresolved components: 成 ⿰土成 +U+57D1 埑 missing missing +U+57D2 埒 exact_ids structural collision: 埓 ⿰土寽 +U+57D3 埓 exact_ids structural collision: 埒 ⿰土寽 +U+57D9 埙 exact_ids structural collision: 埚 ⿰土员 +U+57DA 埚 exact_ids structural collision: 埙 ⿰土呙 +U+57DD 埝 exact_ids unresolved components: ㇇ ⿰土念 +U+57DE 埞 exact_ids unresolved components: 𤴓 ⿰土定 +U+57DF 域 exact_ids unresolved components: 或 ⿰土或 +U+57E3 埣 exact_ids unresolved components: 卒 ⿰土卒 +U+57E5 埥 exact_ids unresolved components: 龶 ⿰土青 +U+57E8 埨 exact_ids unresolved components: 𠕁 ⿰土侖 +U+57EB 埫 exact_ids unresolved components: 冋 ⿰土尚 +U+57ED 埭 exact_ids unresolved components: 隶 ⿰土隶 +U+57EF 埯 exact_ids unresolved components: 电 ⿰土奄 +U+57F3 埳 exact_ids unresolved components: ⺈ ⿰土臽 +U+57F7 執 exact_ids unresolved components: 𢆉 ⿰幸丸 +U+57FB 埻 exact_ids unresolved components: 享 ⿰土享 +U+5802 堂 exact_ids unresolved components: 冋 ⿱尚土 +U+5808 堈 exact_ids unresolved components: 岡 ⿰土岡 +U+5809 堉 exact_ids unresolved components: 育 ⿰土育 +U+580C 堌 exact_ids unresolved components: 固 ⿰土固 +U+5814 堔 exact_ids unresolved components: ⺳ ⿰土罙 +U+5816 堖 exact_ids unresolved components: 囟 ⿰土𡿺 +U+5818 堘 missing missing +U+581B 堛 exact_ids unresolved components: 畐 ⿰土畐 +U+5820 堠 exact_ids unresolved components: 侯 ⿰土侯 +U+5824 堤 exact_ids unresolved components: 𤴓 ⿰土是 +U+5828 堨 exact_ids unresolved components: 匃 ⿰土曷 +U+5829 堩 exact_ids unresolved components: 亙 ⿰土恆 +U+582A 堪 exact_ids unresolved components: 匹 ⿰土甚 +U+582B 堫 exact_ids unresolved components: 凶 ⿰土㚇 +U+5830 堰 exact_ids unresolved components: 匽 ⿰土匽 +U+5831 報 exact_ids unresolved components: 𢆉 ⿰幸𠬝 +U+5836 堶 missing missing +U+5839 堹 exact_ids unresolved components: 里 ⿰土重 +U+583A 堺 exact_ids unresolved components: 介 ⿰土界 +U+583B 堻 exact_ids unresolved components: 聿 ⿱津土 +U+583F 堿 exact_ids unresolved components: 咸 ⿰土咸 +U+5841 塁 missing missing +U+5844 塄 missing missing +U+5845 塅 exact_ids unresolved components: 段 ⿰土段 +U+5847 塇 exact_ids unresolved components: 亘 ⿰土宣 +U+584C 塌 exact_ids unresolved components: 冃 ⿰土𦐇 +U+584D 塍 missing missing +U+5850 塐 exact_ids unresolved components: 龶 ⿰土素 +U+5856 塖 exact_ids unresolved components: 北 ⿰土乘 +U+5858 塘 exact_ids unresolved components: 唐 ⿰土唐 +U+5859 塙 exact_ids unresolved components: 高 ⿰土高 +U+585A 塚 exact_ids unresolved components: 冃 ⿰土冡 +U+585C 塜 exact_ids unresolved components: 冃 ⿰土冡 +U+585F 塟 exact_ids unresolved components: 㘸 ⿱卄㘸 +U+5867 塧 exact_ids unresolved components: 益 ⿰土益 +U+5868 塨 exact_ids unresolved components: 㣺 ⿰土恭 +U+586D 塭 exact_ids unresolved components: 囚 ⿰土𥁕 +U+586F 塯 exact_ids unresolved components: 留 ⿰土留 +U+5872 塲 missing missing +U+5878 塸 exact_ids unresolved components: 區 ⿰土區 +U+587C 塼 exact_ids unresolved components: 𤰔 ⿰土專 +U+587D 塽 exact_ids unresolved components: 㸚 ⿰土爽 +U+587E 塾 exact_ids unresolved components: 享 ⿱孰土 +U+587F 塿 exact_ids unresolved components: 婁 ⿰土婁 +U+5880 墀 exact_ids unresolved components: 犀 ⿰土犀 +U+5881 墁 exact_ids unresolved components: 曼 ⿰土曼 +U+5884 墄 exact_ids unresolved components: 戚 ⿰土戚 +U+5885 墅 exact_ids unresolved components: 里 ⿱野土 +U+5888 墈 exact_ids unresolved components: 匹 ⿰土勘 +U+5889 墉 exact_ids unresolved components: 庸 ⿰土庸 +U+588A 墊 exact_ids unresolved components: 𢆉 ⿱執土 +U+588B 墋 exact_ids unresolved components: 參 ⿰土參 +U+588E 墎 exact_ids unresolved components: 享 ⿰土郭 +U+588F 墏 exact_ids unresolved components: 將 ⿱將土 +U+5891 墑 exact_ids unresolved components: 啇 ⿰土啇 +U+5897 増 exact_ids unresolved components: 曽 ⿰土曽 +U+5898 墘 exact_ids unresolved components: 乞 ⿰土乾 +U+5899 墙 exact_ids unresolved components: 啬 ⿰土啬 +U+589A 墚 exact_ids unresolved components: 梁 ⿰土梁 +U+589B 墛 exact_ids unresolved components: 尉 ⿰土尉 +U+589E 增 exact_ids unresolved components: 曾 ⿰土曾 +U+58A0 墠 exact_ids unresolved components: 單 ⿰土單 +U+58A1 墡 exact_ids unresolved components: 善 ⿰土善 +U+58A2 墢 exact_ids unresolved components: 發 ⿰土發 +U+58A5 墥 exact_ids unresolved components: 里 ⿰土童 +U+58A7 墧 exact_ids unresolved components: 冋 ⿰土喬 +U+58A9 墩 exact_ids unresolved components: 享 ⿰土敦 +U+58AA 墪 exact_ids unresolved components: 享 ⿱敦土 +U+58AB 墫 exact_ids unresolved components: 酉 ⿰土尊 +U+58AD 墭 exact_ids unresolved components: 成 ⿰土盛 +U+58B9 墹 exact_ids unresolved components: 間 ⿰土間 +U+58BB 墻 exact_ids unresolved components: 回 ⿰土嗇 +U+58BD 墽 exact_ids unresolved components: 敫 ⿰土敫 +U+58BF 墿 exact_ids unresolved components: 𢆉 ⿰土睪 +U+58C0 壀 exact_ids unresolved components: 𡰪 ⿰土辟 +U+58C1 壁 exact_ids unresolved components: 𡰪 ⿱辟土 +U+58C2 壂 exact_ids unresolved components: 殿 ⿱殿土 +U+58C3 壃 exact_ids unresolved components: 三 ⿰土畺 +U+58C5 壅 exact_ids unresolved components: 雍 ⿱雍土 +U+58C6 壆 missing missing +U+58C7 壇 exact_ids unresolved components: 回 ⿰土亶 +U+58C8 壈 exact_ids unresolved components: 回 ⿰土稟 +U+58CA 壊 missing missing +U+58CB 壋 exact_ids unresolved components: 冋 ⿰土當 +U+58CC 壌 exact_ids unresolved components: 㐮 ⿰土㐮 +U+58CE 壎 exact_ids unresolved components: 熏 ⿰土熏 +U+58CF 壏 exact_ids unresolved components: 監 ⿰土監 +U+58D1 壑 exact_ids unresolved components: 㕡 ⿱㕡土 +U+58D3 壓 exact_ids unresolved components: 冃 ⿱厭土 +U+58D4 壔 exact_ids unresolved components: 壽 ⿰土壽 +U+58D5 壕 exact_ids unresolved components: 豪 ⿰土豪 +U+58D7 壗 exact_ids unresolved components: 盡 ⿰土盡 +U+58DA 壚 exact_ids unresolved components: 𧆨 ⿰土盧 +U+58DB 壛 exact_ids unresolved components: 閻 ⿰土閻 +U+58DE 壞 exact_ids unresolved components: 褱 ⿰土褱 +U+58E1 壡 exact_ids unresolved components: 眘 ⿰睿圣 +U+58E3 壣 exact_ids unresolved components: 𢇇 ⿰土聯 +U+58E4 壤 exact_ids unresolved components: 襄 ⿰土襄 +U+58E7 壧 exact_ids unresolved components: 𠪚 ⿰土嚴 +U+58E9 壩 exact_ids unresolved components: 䩗 ⿰土霸 +U+58F7 壷 missing missing +U+58FA 壺 missing missing +U+58FD 壽 missing missing +U+58FF 壿 exact_ids unresolved components: 酉 ⿰士尊 +U+5900 夀 missing missing +U+5901 夁 exact_ids unresolved components: 䍛 ⿱士䍛 +U+590D 复 missing missing +U+590F 夏 missing missing +U+5910 夐 missing missing +U+5911 夑 missing missing +U+5912 夒 missing missing +U+5913 夓 missing missing +U+5914 夔 exact_ids unresolved components: 夒 ⿱丷夒 +U+5919 夙 missing missing +U+591C 夜 missing missing +U+591F 够 exact_ids unresolved components: 句 ⿰句多 +U+5920 夠 exact_ids unresolved components: 句 ⿰多句 +U+5922 夢 missing missing +U+5923 夣 missing missing +U+5924 夤 exact_ids unresolved components: 寅 ⿱夕寅 +U+5926 夦 exact_ids unresolved components: 匹 ⿰甚多 +U+5929 天 exact_ids structural collision: 夫 ⿻一大 +U+592A 太 exact_ids structural collision: 犬 ⿻大丶 +U+592B 夫 exact_ids structural collision: 天 ⿻一大 +U+5941 奁 exact_ids unresolved components: 区 ⿱大区 +U+5942 奂 exact_ids unresolved components: ⺈ ⿱⺈央 +U+5944 奄 exact_ids unresolved components: 电 ⿱大电 +U+5945 奅 exact_ids unresolved components: 卯 ⿱大卯 +U+5950 奐 missing missing +U+5952 奒 exact_ids unresolved components: 亥 ⿱大亥 +U+5956 奖 missing missing +U+5959 奙 exact_ids unresolved components: 电 ⿱厶奄 +U+595D 奝 exact_ids unresolved components: 周 ⿱大周 +U+5960 奠 exact_ids unresolved components: 酉 ⿱酋大 +U+5961 奡 missing missing +U+5968 奨 exact_ids unresolved components: 将 ⿱将大 +U+5969 奩 exact_ids unresolved components: 區 ⿱大區 +U+596C 奬 exact_ids unresolved components: 將 ⿱將大 +U+596F 奯 exact_ids unresolved components: 歲 ⿱大歲 +U+5970 奰 missing missing +U+5972 奲 exact_ids unresolved components: 單 ⿰奢單 +U+5981 妁 exact_ids unresolved components: 勺 ⿰女勺 +U+598E 妎 exact_ids unresolved components: 介 ⿰女介 +U+5997 妗 exact_ids unresolved components: ㇇ ⿰女今 +U+599B 妛 missing missing +U+59AA 妪 exact_ids unresolved components: 区 ⿰女区 +U+59AD 妭 exact_ids unresolved components: 犮 ⿰女犮 +U+59AF 妯 exact_ids unresolved components: 由 ⿰女由 +U+59B3 妳 exact_ids unresolved components: ⺈ ⿰女尔 +U+59B9 妹 exact_ids structural collision: 妺 ⿰女未 +U+59BA 妺 exact_ids structural collision: 妹 ⿰女末 +U+59BB 妻 missing missing +U+59BD 妽 exact_ids unresolved components: 申 ⿰女申 +U+59C1 姁 exact_ids unresolved components: 句 ⿰女句 +U+59DB 姛 exact_ids unresolved components: 同 ⿰女同 +U+59DC 姜 exact_ids unresolved components: 𦍌 ⿱𦍌女 +U+59DF 姟 exact_ids unresolved components: 亥 ⿰女亥 +U+59E0 姠 exact_ids unresolved components: 冋 ⿰女向 +U+59E4 姤 exact_ids unresolved components: 后 ⿰女后 +U+59E7 姧 missing missing +U+59EC 姬 exact_ids unresolved components: 𦣞 ⿰女𦣞 +U+59EE 姮 exact_ids unresolved components: 亘 ⿰女亘 +U+59EF 姯 exact_ids unresolved components: ⺌ ⿰女光 +U+59F0 姰 exact_ids unresolved components: 旬 ⿰女旬 +U+59F5 姵 exact_ids unresolved components: 凧 ⿰女凧 +U+59FB 姻 exact_ids unresolved components: 因 ⿰女因 +U+59FD 姽 exact_ids unresolved components: ⺈ ⿰女危 +U+5A00 娀 exact_ids unresolved components: 戈 ⿰女戎 +U+5A01 威 missing missing +U+5A06 娆 exact_ids unresolved components: 尧 ⿰女尧 +U+5A09 娉 exact_ids unresolved components: 由 ⿰女甹 +U+5A0C 娌 exact_ids unresolved components: 里 ⿰女里 +U+5A0D 娍 exact_ids unresolved components: 成 ⿰女成 +U+5A19 娙 exact_ids unresolved components: 巠 ⿰女巠 +U+5A22 娢 exact_ids unresolved components: ㇇ ⿰女含 +U+5A25 娥 exact_ids unresolved components: 戈 ⿰女我 +U+5A2C 娬 exact_ids unresolved components: 武 ⿰女武 +U+5A2F 娯 exact_ids unresolved components: 呉 ⿰女呉 +U+5A34 娴 exact_ids unresolved components: 闲 ⿰女闲 +U+5A41 婁 missing missing +U+5A45 婅 exact_ids unresolved components: 匊 ⿰女匊 +U+5A4A 婊 exact_ids unresolved components: 表 ⿰女表 +U+5A55 婕 exact_ids unresolved components: 疌 ⿰女疌 +U+5A56 婖 exact_ids unresolved components: 㣺 ⿰女忝 +U+5A59 婙 exact_ids unresolved components: 争 ⿰女争 +U+5A5B 婛 exact_ids unresolved components: 京 ⿰女京 +U+5A5D 婝 exact_ids unresolved components: 𤴓 ⿰女定 +U+5A5E 婞 exact_ids unresolved components: 𢆉 ⿰女幸 +U+5A5F 婟 exact_ids unresolved components: 固 ⿰女固 +U+5A64 婤 exact_ids unresolved components: 周 ⿰女周 +U+5A67 婧 exact_ids unresolved components: 龶 ⿰女青 +U+5A68 婨 exact_ids unresolved components: 𠕁 ⿰女侖 +U+5A6F 婯 exact_ids unresolved components: 丽 ⿱丽女 +U+5A73 婳 exact_ids unresolved components: 画 ⿰女画 +U+5A75 婵 exact_ids unresolved components: 单 ⿰女单 +U+5A76 婶 exact_ids unresolved components: 申 ⿰女审 +U+5A77 婷 exact_ids unresolved components: 亭 ⿰女亭 +U+5A7B 婻 exact_ids unresolved components: 南 ⿰女南 +U+5A7E 婾 exact_ids unresolved components: 兪 ⿰女兪 +U+5A84 媄 exact_ids unresolved components: 美 ⿰女美 +U+5A85 媅 exact_ids unresolved components: 匹 ⿰女甚 +U+5A8D 媍 exact_ids unresolved components: ⺈ ⿰女負 +U+5A90 媐 exact_ids unresolved components: 𦣞 ⿱巸女 +U+5A91 媑 exact_ids unresolved components: 里 ⿰女重 +U+5A97 媗 exact_ids unresolved components: 亘 ⿰女宣 +U+5A99 媙 exact_ids unresolved components: 威 ⿰女威 +U+5A9E 媞 exact_ids unresolved components: 𤴓 ⿰女是 +U+5AA2 媢 exact_ids unresolved components: 冃 ⿰女冒 +U+5AA5 媥 exact_ids unresolved components: 𠕁 ⿰女扁 +U+5AA8 媨 exact_ids unresolved components: 酉 ⿰女酋 +U+5AAB 媫 exact_ids unresolved components: 疌 ⿰女疌 +U+5AB0 媰 exact_ids unresolved components: 芻 ⿰女芻 +U+5AB2 媲 exact_ids unresolved components: 囟 ⿰女𣬉 +U+5AB4 媴 exact_ids unresolved components: 袁 ⿰女袁 +U+5AB5 媵 missing missing +U+5AB8 媸 exact_ids unresolved components: 蚩 ⿰女蚩 +U+5AB9 媹 exact_ids unresolved components: 留 ⿰女留 +U+5ABC 媼 exact_ids unresolved components: 囚 ⿰女𥁕 +U+5AC2 嫂 exact_ids unresolved components: 𦥔 ⿰女叟 +U+5ACA 嫊 exact_ids unresolved components: 龶 ⿰女素 +U+5AD3 嫓 missing missing +U+5AD5 嫕 exact_ids unresolved components: 医 ⿰女悘 +U+5AD7 嫗 exact_ids unresolved components: 區 ⿰女區 +U+5AD9 嫙 exact_ids unresolved components: 旋 ⿰女旋 +U+5ADA 嫚 exact_ids unresolved components: 曼 ⿰女曼 +U+5ADB 嫛 exact_ids unresolved components: 医 ⿱殹女 +U+5ADD 嫝 exact_ids unresolved components: 隶 ⿰女康 +U+5ADE 嫞 exact_ids unresolved components: 庸 ⿰女庸 +U+5ADF 嫟 exact_ids unresolved components: 匿 ⿰女匿 +U+5AE1 嫡 exact_ids unresolved components: 啇 ⿰女啇 +U+5AE5 嫥 exact_ids unresolved components: 𤰔 ⿰女專 +U+5AE7 嫧 exact_ids unresolved components: 龶 ⿰女責 +U+5AE8 嫨 exact_ids unresolved components: 𦰩 ⿰女𦰩 +U+5AEF 嫯 exact_ids unresolved components: 敖 ⿱敖女 +U+5AF1 嫱 exact_ids unresolved components: 啬 ⿰女啬 +U+5AF3 嫳 exact_ids unresolved components: 㡀 ⿱敝女 +U+5AF8 嫸 exact_ids unresolved components: 善 ⿰女善 +U+5AFA 嫺 exact_ids unresolved components: 閒 ⿰女閒 +U+5AFB 嫻 exact_ids unresolved components: 閑 ⿰女閑 +U+5AFD 嫽 exact_ids unresolved components: 昚 ⿰女尞 +U+5AFF 嫿 exact_ids unresolved components: 畫 ⿰女畫 +U+5B00 嬀 exact_ids unresolved components: 爲 ⿰女爲 +U+5B02 嬂 exact_ids unresolved components: 戈 ⿰女戠 +U+5B0A 嬊 missing missing +U+5B0B 嬋 exact_ids unresolved components: 單 ⿰女單 +U+5B0C 嬌 exact_ids unresolved components: 冋 ⿰女喬 +U+5B0D 嬍 missing missing +U+5B0E 嬎 missing missing +U+5B10 嬐 exact_ids unresolved components: 僉 ⿰女僉 +U+5B12 嬒 exact_ids unresolved components: 曾 ⿰女會 +U+5B13 嬓 exact_ids unresolved components: 敫 ⿰女敫 +U+5B14 嬔 missing missing +U+5B15 嬕 exact_ids unresolved components: 𢆉 ⿰女睪 +U+5B16 嬖 exact_ids unresolved components: 𡰪 ⿱辟女 +U+5B17 嬗 exact_ids unresolved components: 回 ⿰女亶 +U+5B19 嬙 exact_ids unresolved components: 回 ⿰女嗇 +U+5B1B 嬛 exact_ids unresolved components: 睘 ⿰女睘 +U+5B1D 嬝 exact_ids unresolved components: 裊 ⿰女裊 +U+5B1E 嬞 exact_ids unresolved components: 里 ⿰女董 +U+5B1F 嬟 exact_ids unresolved components: 義 ⿰女義 +U+5B22 嬢 exact_ids unresolved components: 㐮 ⿰女㐮 +U+5B23 嬣 exact_ids unresolved components: 寍 ⿰女寧 +U+5B26 嬦 exact_ids unresolved components: 壽 ⿰女壽 +U+5B27 嬧 exact_ids unresolved components: 盡 ⿰女盡 +U+5B2A 嬪 exact_ids unresolved components: 賓 ⿰女賓 +U+5B2E 嬮 exact_ids unresolved components: 冃 ⿱厭女 +U+5B34 嬴 missing missing +U+5B39 嬹 exact_ids unresolved components: 興 ⿰女興 +U+5B3A 嬺 exact_ids unresolved components: 匿 ⿰女慝 +U+5B3C 嬼 exact_ids unresolved components: 𨥫 ⿰女劉 +U+5B3D 嬽 exact_ids unresolved components: 𡚇 ⿰女𡚇 +U+5B3E 嬾 exact_ids unresolved components: 賴 ⿰女賴 +U+5B3F 嬿 exact_ids unresolved components: 燕 ⿰女燕 +U+5B41 孁 exact_ids unresolved components: 𠱠 ⿱霝女 +U+5B42 孂 exact_ids unresolved components: 亇 ⿰女簋 +U+5B43 孃 exact_ids unresolved components: 襄 ⿰女襄 +U+5B44 孄 exact_ids unresolved components: 闌 ⿰女闌 +U+5B45 孅 exact_ids unresolved components: 韱 ⿰女韱 +U+5B4B 孋 exact_ids unresolved components: 丽 ⿰女麗 +U+5B4D 孍 exact_ids unresolved components: 𠪚 ⿰女嚴 +U+5B4E 孎 exact_ids unresolved components: 屬 ⿰女屬 +U+5B4F 孏 exact_ids unresolved components: 闌 ⿰女蘭 +U+5B58 存 missing missing +U+5B60 孠 exact_ids unresolved components: 司 ⿱司子 +U+5B62 孢 exact_ids unresolved components: 包 ⿰子包 +U+5B69 孩 exact_ids unresolved components: 亥 ⿰子亥 +U+5B70 孰 exact_ids unresolved components: 享 ⿰享丸 +U+5B76 孶 missing missing +U+5B77 孷 missing missing +U+5B78 學 exact_ids unresolved components: 𦥯 ⿳𦥯冖子 +U+5B79 孹 exact_ids unresolved components: 𡰪 ⿱辟子 +U+5B7B 孻 exact_ids unresolved components: 盡 ⿰子盡 +U+5B7C 孼 exact_ids unresolved components: 𡴎 ⿱辥子 +U+5B7D 孽 exact_ids unresolved components: 薛 ⿱薛子 +U+5B8F 宏 exact_ids unresolved components: 厷 ⿱宀厷 +U+5B90 宐 missing missing +U+5B99 宙 exact_ids unresolved components: 由 ⿱宀由 +U+5B9A 定 exact_ids unresolved components: 𤴓 ⿱宀𤴓 +U+5BA1 审 exact_ids unresolved components: 申 ⿱宀申 +U+5BA3 宣 exact_ids unresolved components: 亘 ⿱宀亘 +U+5BA7 宧 exact_ids unresolved components: 𦣞 ⿱宀𦣞 +U+5BAC 宬 exact_ids unresolved components: 成 ⿱宀成 +U+5BAD 宭 exact_ids unresolved components: 尹 ⿱宀君 +U+5BAE 宮 exact_ids unresolved components: 呂 ⿱宀呂 +U+5BB3 害 missing missing +U+5BBB 宻 missing missing +U+5BBC 宼 missing missing +U+5BC1 寁 exact_ids unresolved components: 疌 ⿱宀疌 +U+5BC5 寅 missing missing +U+5BC7 寇 missing missing +U+5BC8 寈 exact_ids unresolved components: 龶 ⿱宀青 +U+5BCC 富 exact_ids unresolved components: 畐 ⿱宀畐 +U+5BCD 寍 missing missing +U+5BCE 寎 missing missing +U+5BCF 寏 exact_ids unresolved components: 奐 ⿱宀奐 +U+5BD0 寐 missing missing +U+5BD4 寔 exact_ids unresolved components: 𤴓 ⿱宀是 +U+5BD5 寕 missing missing +U+5BDA 寚 missing missing +U+5BDC 寜 missing missing +U+5BDD 寝 missing missing +U+5BDF 察 exact_ids unresolved components: 祭 ⿱宀祭 +U+5BE0 寠 exact_ids unresolved components: 婁 ⿱宀婁 +U+5BE1 寡 missing missing +U+5BE2 寢 missing missing +U+5BE3 寣 missing missing +U+5BE7 寧 exact_ids unresolved components: 寍 ⿱寍丁 +U+5BE8 寨 missing missing +U+5BEB 寫 exact_ids unresolved components: 灳 ⿱宀舄 +U+5BED 寭 exact_ids unresolved components: 𤰔 ⿱宀惠 +U+5BEE 寮 exact_ids unresolved components: 昚 ⿱宀尞 +U+5BF0 寰 exact_ids unresolved components: 睘 ⿱宀睘 +U+5BF1 寱 missing missing +U+5BF2 寲 exact_ids unresolved components: 疑 ⿱宀疑 +U+5BF3 寳 missing missing +U+5BF6 寶 missing missing +U+5BF7 寷 exact_ids unresolved components: 𠁳 ⿱宀豐 +U+5C02 専 exact_ids unresolved components: 𤰔 ⿱𤰔寸 +U+5C06 将 missing missing +U+5C07 將 missing missing +U+5C08 專 exact_ids unresolved components: 𤰔 ⿱叀寸 +U+5C09 尉 missing missing +U+5C0A 尊 exact_ids unresolved components: 酉 ⿱酋寸 +U+5C0B 尋 missing missing +U+5C0D 對 exact_ids unresolved components: 𢆉 ⿰丵寸 +U+5C13 尓 missing missing +U+5C14 尔 exact_ids unresolved components: ⺈ ⿱⺈小 +U+5C19 尙 exact_ids unresolved components: 冋 ⿱小冋 +U+5C1A 尚 exact_ids unresolved components: 冋 ⿱小冋 +U+5C1E 尞 exact_ids unresolved components: 昚 ⿱昚小 +U+5C1F 尟 exact_ids unresolved components: 𤴓 ⿰是少 +U+5C20 尠 exact_ids unresolved components: 匹 ⿰甚少 +U+5C21 尡 exact_ids unresolved components: ⺌ ⿰光昆 +U+5C25 尥 exact_ids unresolved components: 勺 ⿰尢勺 +U+5C26 尦 exact_ids unresolved components: 勺 ⿰尣勺 +U+5C27 尧 missing missing +U+5C2C 尬 exact_ids unresolved components: 介 ⿰尢介 +U+5C2F 尯 exact_ids unresolved components: ⺈ ⿰尢危 +U+5C30 尰 exact_ids unresolved components: 里 ⿰尢重 +U+5C31 就 exact_ids unresolved components: 京 ⿰京尤 +U+5C34 尴 exact_ids unresolved components: 监 ⿰尢监 +U+5C36 尶 exact_ids unresolved components: 監 ⿰兀監 +U+5C37 尷 exact_ids unresolved components: 監 ⿰尢監 +U+5C39 尹 missing missing +U+5C3A 尺 exact_ids unresolved components: ㇏ ⿱尸㇏ +U+5C3D 尽 exact_ids unresolved components: ㇏ ⿱尺冫 +U+5C40 局 missing missing +U+5C46 屆 exact_ids unresolved components: 𠙽 ⿱尸𠙽 +U+5C4A 届 exact_ids unresolved components: 由 ⿱尸由 +U+5C50 屐 missing missing +U+5C55 展 missing missing +U+5C5B 屛 exact_ids unresolved components: 幷 ⿱尸幷 +U+5C5C 屜 missing missing +U+5C5E 属 exact_ids unresolved components: 禹 ⿱尸禹 +U+5C62 屢 exact_ids unresolved components: 婁 ⿱尸婁 +U+5C64 層 exact_ids unresolved components: 曽 ⿱尸曽 +U+5C65 履 exact_ids unresolved components: 复 ⿱尸復 +U+5C66 屦 missing missing +U+5C67 屧 missing missing +U+5C68 屨 missing missing +U+5C69 屩 exact_ids unresolved components: 冋 ⿱尸𢕪 +U+5C6A 屪 exact_ids unresolved components: 昚 ⿱尸寮 +U+5C6B 屫 missing missing +U+5C6C 屬 missing missing +U+5C79 屹 exact_ids unresolved components: 乞 ⿰山乞 +U+5C85 岅 exact_ids unresolved components: 反 ⿰山反 +U+5C8B 岋 exact_ids unresolved components: ㇏ ⿰山及 +U+5C8C 岌 exact_ids unresolved components: ㇏ ⿱山及 +U+5C91 岑 exact_ids unresolved components: ㇇ ⿱山今 +U+5C92 岒 exact_ids unresolved components: ㇇ ⿰山今 +U+5C95 岕 exact_ids unresolved components: 介 ⿱山介 +U+5C96 岖 exact_ids unresolved components: 区 ⿰山区 +U+5C97 岗 exact_ids unresolved components: 冈 ⿱山冈 +U+5C9A 岚 exact_ids unresolved components: 风 ⿱山风 +U+5CA1 岡 missing missing +U+5CA3 岣 exact_ids unresolved components: 句 ⿰山句 +U+5CAB 岫 exact_ids unresolved components: 由 ⿰山由 +U+5CAC 岬 exact_ids unresolved components: 甲 ⿰山甲 +U+5CC0 峀 exact_ids unresolved components: 由 ⿱山由 +U+5CC1 峁 exact_ids unresolved components: 卯 ⿱山卯 +U+5CCA 峊 missing missing +U+5CCB 峋 exact_ids unresolved components: 旬 ⿰山旬 +U+5CCD 峍 exact_ids unresolved components: 聿 ⿰山聿 +U+5CD0 峐 exact_ids unresolved components: 亥 ⿰山亥 +U+5CD2 峒 exact_ids unresolved components: 同 ⿰山同 +U+5CD7 峗 exact_ids unresolved components: ⺈ ⿰山危 +U+5CD8 峘 exact_ids unresolved components: 亘 ⿰山亘 +U+5CDA 峚 missing missing +U+5CDD 峝 exact_ids unresolved components: 同 ⿱山同 +U+5CDE 峞 exact_ids unresolved components: ⺈ ⿱山危 +U+5CE3 峣 exact_ids unresolved components: 尧 ⿰山尧 +U+5CE5 峥 exact_ids unresolved components: 争 ⿰山争 +U+5CE8 峨 exact_ids unresolved components: 戈 ⿰山我 +U+5CE9 峩 exact_ids unresolved components: 戈 ⿱山我 +U+5CEE 峮 exact_ids unresolved components: 尹 ⿰山君 +U+5CF1 峱 missing missing +U+5CF3 峳 exact_ids unresolved components: 攸 ⿱山攸 +U+5CF5 峵 exact_ids unresolved components: 厷 ⿰山宏 +U+5CF6 島 missing missing +U+5CF8 峸 exact_ids unresolved components: 成 ⿰山成 +U+5D03 崃 exact_ids unresolved components: 来 ⿰山来 +U+5D04 崄 exact_ids unresolved components: 佥 ⿰山佥 +U+5D05 崅 exact_ids unresolved components: ⺈ ⿰山角 +U+5D12 崒 exact_ids unresolved components: 卒 ⿱山卒 +U+5D13 崓 exact_ids unresolved components: 固 ⿰山固 +U+5D17 崗 exact_ids unresolved components: 岡 ⿱山岡 +U+5D18 崘 exact_ids unresolved components: 𠕁 ⿰山侖 +U+5D19 崙 exact_ids unresolved components: 𠕁 ⿱山侖 +U+5D1D 崝 exact_ids unresolved components: 龶 ⿰山青 +U+5D1E 崞 exact_ids unresolved components: 享 ⿰山享 +U+5D26 崦 exact_ids unresolved components: 电 ⿰山奄 +U+5D28 崨 exact_ids unresolved components: 疌 ⿰山疌 +U+5D2A 崪 exact_ids unresolved components: 卒 ⿰山卒 +U+5D2E 崮 exact_ids unresolved components: 固 ⿱山固 +U+5D34 崴 exact_ids unresolved components: 威 ⿱山威 +U+5D37 崷 exact_ids unresolved components: 酉 ⿰山酋 +U+5D3C 崼 exact_ids unresolved components: 𤴓 ⿰山是 +U+5D41 嵁 exact_ids unresolved components: 匹 ⿰山甚 +U+5D42 嵂 exact_ids unresolved components: 聿 ⿱山律 +U+5D44 嵄 exact_ids unresolved components: 美 ⿰山美 +U+5D45 嵅 exact_ids unresolved components: 咸 ⿱山咸 +U+5D46 嵆 missing missing +U+5D47 嵇 missing missing +U+5D49 嵉 exact_ids unresolved components: 亭 ⿰山亭 +U+5D4A 嵊 exact_ids unresolved components: 北 ⿰山乘 +U+5D4F 嵏 exact_ids unresolved components: 凶 ⿱山㚇 +U+5D51 嵑 exact_ids unresolved components: 匃 ⿰山曷 +U+5D52 嵒 exact_ids structural collision: 喦 ⿱品山 +U+5D55 嵕 exact_ids unresolved components: 凶 ⿰山㚇 +U+5D57 嵗 missing missing +U+5D62 嵢 exact_ids unresolved components: 倉 ⿰山倉 +U+5D63 嵣 exact_ids unresolved components: 唐 ⿰山唐 +U+5D67 嵧 exact_ids unresolved components: 留 ⿰山留 +U+5D69 嵩 exact_ids unresolved components: 高 ⿱山高 +U+5D6A 嵪 exact_ids unresolved components: 高 ⿰山高 +U+5D77 嵷 exact_ids unresolved components: 從 ⿰山從 +U+5D78 嵸 exact_ids unresolved components: 從 ⿱山從 +U+5D7B 嵻 exact_ids unresolved components: 隶 ⿰山康 +U+5D7E 嵾 exact_ids unresolved components: 參 ⿱山參 +U+5D81 嶁 exact_ids unresolved components: 婁 ⿰山婁 +U+5D85 嶅 exact_ids unresolved components: 敖 ⿱敖山 +U+5D86 嶆 exact_ids unresolved components: 曹 ⿰山曹 +U+5D87 嶇 exact_ids unresolved components: 區 ⿰山區 +U+5D88 嶈 exact_ids unresolved components: 將 ⿱山將 +U+5D8E 嶎 exact_ids unresolved components: 尉 ⿱山尉 +U+5D8F 嶏 exact_ids unresolved components: 酉 ⿱屵配 +U+5D90 嶐 exact_ids unresolved components: 隆 ⿱山隆 +U+5D92 嶒 exact_ids unresolved components: 曾 ⿰山曾 +U+5D98 嶘 exact_ids unresolved components: 戈 ⿱山棧 +U+5D9A 嶚 exact_ids unresolved components: 昚 ⿱山尞 +U+5D9B 嶛 exact_ids unresolved components: 昚 ⿰山尞 +U+5D9F 嶟 exact_ids unresolved components: 酉 ⿰山尊 +U+5DA0 嶠 exact_ids unresolved components: 冋 ⿰山喬 +U+5DA6 嶦 exact_ids unresolved components: 詹 ⿰山詹 +U+5DA7 嶧 exact_ids unresolved components: 𢆉 ⿰山睪 +U+5DA8 嶨 missing missing +U+5DAC 嶬 exact_ids unresolved components: 義 ⿰山義 +U+5DAD 嶭 missing missing +U+5DAE 嶮 exact_ids unresolved components: 僉 ⿰山僉 +U+5DAF 嶯 exact_ids unresolved components: 戈 ⿱山戢 +U+5DB0 嶰 exact_ids unresolved components: 解 ⿰山解 +U+5DB1 嶱 exact_ids unresolved components: 匃 ⿰山葛 +U+5DB3 嶳 missing missing +U+5DB7 嶷 exact_ids unresolved components: 疑 ⿱山疑 +U+5DB9 嶹 exact_ids unresolved components: 壽 ⿰山壽 +U+5DBB 嶻 exact_ids unresolved components: 戈 ⿱山截 +U+5DBE 嶾 missing missing +U+5DC0 巀 exact_ids unresolved components: 戈 ⿱山𢧵 +U+5DC6 巆 exact_ids unresolved components: 呂 ⿰山營 +U+5DC7 巇 exact_ids unresolved components: 䖒,戈 ⿰山戲 +U+5DC8 巈 exact_ids unresolved components: 匊 ⿱山鞠 +U+5DC9 巉 exact_ids unresolved components: 毚 ⿰山毚 +U+5DCB 巋 exact_ids unresolved components: 歸 ⿱山歸 +U+5DCC 巌 exact_ids unresolved components: 厳 ⿱山厳 +U+5DCE 巎 exact_ids unresolved components: 夒 ⿰山夒 +U+5DD0 巐 exact_ids unresolved components: 高 ⿱山髜 +U+5DD5 巕 missing missing +U+5DD6 巖 exact_ids unresolved components: 𠪚 ⿱山嚴 +U+5DD7 巗 exact_ids unresolved components: 𠪚 ⿰山嚴 +U+5DD9 巙 exact_ids unresolved components: 夒 ⿰山夔 +U+5DE0 巠 missing missing +U+5DE3 巣 exact_ids unresolved components: ⺍ ⿱⺍果 +U+5DE4 巤 missing missing +U+5DE6 左 missing missing +U+5DE9 巩 exact_ids unresolved components: 凡 ⿰工凡 +U+5DEC 巬 missing missing +U+5DEF 巯 missing missing +U+5DF0 巰 exact_ids unresolved components: 巠 ⿰巠㐬 +U+5DF5 巵 missing missing +U+5DF8 巸 exact_ids unresolved components: 𦣞 ⿰𦣞巳 +U+5DFA 巺 missing missing +U+5E03 布 missing missing +U+5E06 帆 exact_ids unresolved components: 凡 ⿰巾凡 +U+5E0C 希 exact_ids unresolved components: 布 ⿱乂布 +U+5E17 帗 exact_ids unresolved components: 犮 ⿰巾犮 +U+5E25 帥 missing missing +U+5E2B 師 missing missing +U+5E2C 帬 exact_ids unresolved components: 尹 ⿱君巾 +U+5E32 帲 exact_ids unresolved components: 幷 ⿰巾幷 +U+5E34 帴 exact_ids unresolved components: 戈 ⿰巾戔 +U+5E3B 帻 exact_ids unresolved components: 龶 ⿰巾责 +U+5E3C 帼 exact_ids unresolved components: 国 ⿰巾国 +U+5E3D 帽 exact_ids unresolved components: 冃 ⿰巾冒 +U+5E3F 帿 exact_ids unresolved components: 侯 ⿰巾侯 +U+5E45 幅 exact_ids unresolved components: 畐 ⿰巾畐 +U+5E46 幆 exact_ids unresolved components: 匃 ⿰巾曷 +U+5E4C 幌 exact_ids unresolved components: ⺌ ⿰巾晃 +U+5E51 幑 missing missing +U+5E52 幒 exact_ids unresolved components: 囱 ⿰巾悤 +U+5E53 幓 exact_ids unresolved components: 參 ⿰巾參 +U+5E54 幔 exact_ids unresolved components: 曼 ⿰巾曼 +U+5E57 幗 exact_ids unresolved components: 國 ⿰巾國 +U+5E58 幘 exact_ids unresolved components: 龶 ⿰巾責 +U+5E5C 幜 exact_ids unresolved components: 京 ⿰巾景 +U+5E5D 幝 exact_ids unresolved components: 單 ⿰巾單 +U+5E5F 幟 exact_ids unresolved components: 戈 ⿰巾戠 +U+5E62 幢 exact_ids unresolved components: 里 ⿰巾童 +U+5E63 幣 exact_ids unresolved components: 㡀 ⿱敝巾 +U+5E64 幤 exact_ids unresolved components: 冋 ⿱敞巾 +U+5E65 幥 exact_ids unresolved components: 冋 ⿰巾掌 +U+5E66 幦 exact_ids unresolved components: 𡰪 ⿱辟巾 +U+5E68 幨 exact_ids unresolved components: 詹 ⿰巾詹 +U+5E6A 幪 exact_ids unresolved components: 冃 ⿰巾蒙 +U+5E6C 幬 exact_ids unresolved components: 壽 ⿰巾壽 +U+5E6D 幭 exact_ids unresolved components: 戌 ⿰巾蔑 +U+5E6F 幯 exact_ids unresolved components: 亇 ⿰巾節 +U+5E70 幰 exact_ids unresolved components: 憲 ⿰巾憲 +U+5E71 幱 exact_ids unresolved components: 闌 ⿰巾闌 +U+5E77 幷 missing missing +U+5E78 幸 exact_ids unresolved components: 𢆉 ⿱土𢆉 +U+5E79 幹 missing missing +U+5E7B 幻 exact_ids unresolved components: ㇇ ⿰幺㇇ +U+5E7E 幾 exact_ids unresolved components: 戍 ⿱𢆶戍 +U+5E88 庈 exact_ids unresolved components: ㇇ ⿱广今 +U+5E8E 庎 exact_ids unresolved components: 介 ⿱广介 +U+5E94 应 missing missing +U+5E96 庖 exact_ids unresolved components: 包 ⿱广包 +U+5E98 庘 exact_ids unresolved components: 甲 ⿱广甲 +U+5E99 庙 exact_ids unresolved components: 由 ⿱广由 +U+5E9A 庚 missing missing +U+5EA6 度 missing missing +U+5EAE 庮 exact_ids unresolved components: 酉 ⿱广酉 +U+5EB4 庴 exact_ids unresolved components: 龷 ⿱广昔 +U+5EB5 庵 exact_ids unresolved components: 电 ⿱广奄 +U+5EB7 康 exact_ids unresolved components: 隶 ⿱广隶 +U+5EB8 庸 missing missing +U+5EB9 庹 missing missing +U+5EC3 廃 exact_ids unresolved components: 発 ⿱广発 +U+5EC4 廄 missing missing +U+5EC7 廇 exact_ids unresolved components: 留 ⿱广留 +U+5EC8 廈 exact_ids unresolved components: 夏 ⿱广夏 +U+5ECB 廋 exact_ids unresolved components: 𦥔 ⿱广叟 +U+5ECF 廏 exact_ids unresolved components: 𣪘 ⿱广𣪘 +U+5ED2 廒 exact_ids unresolved components: 敖 ⿱广敖 +U+5ED3 廓 exact_ids unresolved components: 享 ⿱广郭 +U+5ED4 廔 exact_ids unresolved components: 婁 ⿱广婁 +U+5ED5 廕 exact_ids unresolved components: ㇇ ⿱广陰 +U+5EDB 廛 exact_ids unresolved components: 里,𡉀 ⿱㢆𡉀 +U+5EDF 廟 exact_ids unresolved components: 朝 ⿱广朝 +U+5EE0 廠 exact_ids unresolved components: 冋 ⿱广敞 +U+5EE2 廢 exact_ids unresolved components: 發 ⿱广發 +U+5EE5 廥 exact_ids unresolved components: 曾 ⿱广會 +U+5EE6 廦 exact_ids unresolved components: 𡰪 ⿱广辟 +U+5EE7 廧 exact_ids unresolved components: 回 ⿱广嗇 +U+5EE8 廨 exact_ids unresolved components: 解 ⿱广解 +U+5EE9 廩 exact_ids unresolved components: 回 ⿱广稟 +U+5EEA 廪 exact_ids unresolved components: 禀 ⿱广禀 +U+5EEC 廬 exact_ids unresolved components: 𧆨 ⿱广盧 +U+5EED 廭 exact_ids unresolved components: 龶 ⿱广積 +U+5EF0 廰 exact_ids unresolved components: 聴 ⿱广聴 +U+5EF2 廲 exact_ids unresolved components: 丽 ⿱广麗 +U+5EF3 廳 exact_ids unresolved components: 聽 ⿱广聽 +U+5EF8 廸 exact_ids unresolved components: 由 ⿰廴由 +U+5EFA 建 exact_ids unresolved components: 聿 ⿰廴聿 +U+5EFB 廻 exact_ids unresolved components: 回 ⿰廴回 +U+5EFD 廽 exact_ids unresolved components: 囬 ⿰廴囬 +U+5F0A 弊 exact_ids unresolved components: 㡀 ⿱敝廾 +U+5F0E 弎 exact_ids unresolved components: 三 ⿱弋三 +U+5F12 弒 exact_ids unresolved components: 朮 ⿰𣏂式 +U+5F25 弥 exact_ids unresolved components: ⺈ ⿰弓尔 +U+5F2C 弬 exact_ids unresolved components: 𦣝 ⿰弓𦣝 +U+5F33 弳 exact_ids unresolved components: 巠 ⿰弓巠 +U+5F34 弴 exact_ids unresolved components: 享 ⿰弓享 +U+5F36 弶 exact_ids unresolved components: 京 ⿰弓京 +U+5F39 弹 exact_ids unresolved components: 单 ⿰弓单 +U+5F3E 弾 exact_ids unresolved components: 単 ⿰弓単 +U+5F3F 弿 missing missing +U+5F40 彀 missing missing +U+5F44 彄 exact_ids unresolved components: 區 ⿰弓區 +U+5F46 彆 exact_ids unresolved components: 㡀 ⿱敝弓 +U+5F48 彈 exact_ids unresolved components: 單 ⿰弓單 +U+5F4A 彊 exact_ids unresolved components: 三 ⿰弓畺 +U+5F4B 彋 exact_ids unresolved components: 睘 ⿰弓睘 +U+5F58 彘 missing missing +U+5F5B 彛 missing missing +U+5F5C 彜 missing missing +U+5F5D 彝 missing missing +U+5F5E 彞 missing missing +U+5F60 彠 exact_ids unresolved components: 尋 ⿰尋蒦 +U+5F65 彥 exact_ids structural collision: 彦 ⿱产彡 +U+5F66 彦 exact_ids structural collision: 彥 ⿱产彡 +U+5F67 彧 missing missing +U+5F68 彨 exact_ids unresolved components: 丽 ⿰丽彡 +U+5F6B 彫 exact_ids unresolved components: 周 ⿰周彡 +U+5F71 影 exact_ids unresolved components: 京 ⿰景彡 +U+5F72 彲 exact_ids unresolved components: 丽 ⿰麗彡 +U+5F74 彴 exact_ids unresolved components: 勺 ⿰彳勺 +U+5F76 彶 exact_ids unresolved components: ㇏ ⿰彳及 +U+5F87 徇 exact_ids unresolved components: 旬 ⿰彳旬 +U+5F8A 徊 exact_ids unresolved components: 回 ⿰彳回 +U+5F8B 律 exact_ids unresolved components: 聿 ⿰彳聿 +U+5F8C 後 missing missing +U+5F91 徑 exact_ids unresolved components: 巠 ⿰彳巠 +U+5F93 従 missing missing +U+5F95 徕 exact_ids unresolved components: 来 ⿰彳来 +U+5F9C 徜 exact_ids unresolved components: 冋 ⿰彳尚 +U+5F9E 從 missing missing +U+5F9F 徟 exact_ids unresolved components: 周 ⿰彳周 +U+5FA2 徢 exact_ids unresolved components: 疌 ⿰彳疌 +U+5FA3 徣 exact_ids unresolved components: 龷 ⿰彳昔 +U+5FA4 徤 exact_ids unresolved components: 聿 ⿰彳建 +U+5FA5 徥 exact_ids unresolved components: 𤴓 ⿰彳是 +U+5FA7 徧 exact_ids unresolved components: 𠕁 ⿰彳扁 +U+5FA9 復 exact_ids unresolved components: 复 ⿰彳复 +U+5FAA 循 exact_ids unresolved components: ⺁ ⿰彳盾 +U+5FB0 徰 missing missing +U+5FB2 徲 exact_ids unresolved components: 犀 ⿰彳犀 +U+5FB3 徳 missing missing +U+5FB4 徴 missing missing +U+5FB5 徵 missing missing +U+5FB6 徶 exact_ids unresolved components: 㡀 ⿰彳敝 +U+5FB7 德 exact_ids unresolved components: 𢛳 ⿰彳𢛳 +U+5FB8 徸 exact_ids unresolved components: 里 ⿰彳童 +U+5FB9 徹 missing missing +U+5FBB 徻 exact_ids unresolved components: 曾 ⿰彳會 +U+5FBC 徼 exact_ids unresolved components: 敫 ⿰彳敫 +U+5FBD 徽 missing missing +U+5FBE 徾 missing missing +U+5FC0 忀 exact_ids unresolved components: 襄 ⿰彳襄 +U+5FC1 忁 missing missing +U+5FD4 忔 exact_ids unresolved components: 乞 ⿰忄乞 +U+5FDB 忛 exact_ids unresolved components: 凡 ⿰忄凡 +U+5FDD 忝 exact_ids unresolved components: 㣺 ⿱夭㣺 +U+5FE3 忣 exact_ids unresolved components: ㇏ ⿰忄及 +U+5FE6 忦 exact_ids unresolved components: 介 ⿰忄介 +U+5FF4 忴 exact_ids unresolved components: ㇇ ⿰忄今 +U+5FF5 念 exact_ids unresolved components: ㇇ ⿱今心 +U+5FF7 忷 exact_ids unresolved components: 凶 ⿰忄凶 +U+6004 怄 exact_ids unresolved components: 区 ⿰忄区 +U+6009 怉 exact_ids unresolved components: 包 ⿰忄包 +U+6010 怐 exact_ids unresolved components: 句 ⿰忄句 +U+6016 怖 exact_ids unresolved components: 布 ⿰忄布 +U+601E 怞 exact_ids unresolved components: 由 ⿰忄由 +U+6025 急 exact_ids unresolved components: ⺈ ⿱刍心 +U+602C 怬 exact_ids unresolved components: 四 ⿰忄四 +U+6034 怴 exact_ids unresolved components: 戈 ⿰忄戉 +U+6035 怵 exact_ids unresolved components: 朮 ⿰忄朮 +U+6037 怷 exact_ids unresolved components: 朮 ⿱朮心 +U+603A 怺 exact_ids unresolved components: 永 ⿰忄永 +U+603B 总 exact_ids unresolved components: 𠮦 ⿱𠮦心 +U+6042 恂 exact_ids unresolved components: 旬 ⿰忄旬 +U+6046 恆 exact_ids unresolved components: 亙 ⿰忄亙 +U+6047 恇 exact_ids unresolved components: 匡 ⿰忄匡 +U+604D 恍 exact_ids unresolved components: ⺌ ⿰忄光 +U+6050 恐 exact_ids unresolved components: 凡 ⿱巩心 +U+6051 恑 exact_ids unresolved components: ⺈ ⿰忄危 +U+6052 恒 exact_ids unresolved components: 亘 ⿰忄亘 +U+6056 恖 exact_ids unresolved components: 囟 ⿱囟心 +U+6059 恙 missing missing +U+605B 恛 exact_ids unresolved components: 回 ⿰忄回 +U+605F 恟 exact_ids unresolved components: 匈 ⿰忄匈 +U+6064 恤 exact_ids unresolved components: 血 ⿰忄血 +U+6066 恦 exact_ids unresolved components: 冋 ⿰忄向 +U+6069 恩 exact_ids unresolved components: 因 ⿱因心 +U+606B 恫 exact_ids unresolved components: 同 ⿰忄同 +U+606D 恭 exact_ids unresolved components: 㣺 ⿱共㣺 +U+6075 恵 exact_ids unresolved components: 𤰔 ⿱𤰔心 +U+607C 恼 exact_ids unresolved components: 凶 ⿰忄㐫 +U+6083 悃 exact_ids unresolved components: 困 ⿰忄困 +U+6085 悅 exact_ids structural collision: 悦 ⿰忄兌 +U+6088 悈 exact_ids unresolved components: 戈 ⿰忄戒 +U+6095 悕 exact_ids unresolved components: 布 ⿰忄希 +U+6098 悘 exact_ids unresolved components: 医 ⿱医心 +U+6099 悙 exact_ids unresolved components: 亨 ⿰忄亨 +U+609D 悝 exact_ids unresolved components: 里 ⿰忄里 +U+60A0 悠 exact_ids unresolved components: 攸 ⿱攸心 +U+60A4 悤 exact_ids unresolved components: 囱 ⿱囱心 +U+60A6 悦 exact_ids structural collision: 悅 ⿰忄兌 +U+60A8 您 exact_ids unresolved components: ⺈ ⿱你心 +U+60A9 悩 missing missing +U+60AF 悯 exact_ids unresolved components: 闵 ⿰忄闵 +U+60B3 悳 exact_ids structural collision: 惪 ⿱直心 +U+60B4 悴 exact_ids unresolved components: 卒 ⿰忄卒 +U+60B6 悶 missing missing +U+60BB 悻 exact_ids unresolved components: 𢆉 ⿰忄幸 +U+60BD 悽 exact_ids unresolved components: 妻 ⿰忄妻 +U+60BF 悿 exact_ids unresolved components: 㣺 ⿰忄忝 +U+60C0 惀 exact_ids unresolved components: 𠕁 ⿰忄侖 +U+60C2 惂 exact_ids unresolved components: ⺈ ⿰忄臽 +U+60C5 情 exact_ids unresolved components: 龶 ⿰忄青 +U+60C6 惆 exact_ids unresolved components: 周 ⿰忄周 +U+60C7 惇 exact_ids unresolved components: 享 ⿰忄享 +U+60CA 惊 exact_ids unresolved components: 京 ⿰忄京 +U+60D0 惐 exact_ids unresolved components: 或 ⿰忄或 +U+60D1 惑 exact_ids unresolved components: 或 ⿱或心 +U+60D7 惗 exact_ids unresolved components: ㇇ ⿰忄念 +U+60D8 惘 exact_ids unresolved components: 罔 ⿰忄罔 +U+60DC 惜 exact_ids unresolved components: 龷 ⿰忄昔 +U+60DD 惝 exact_ids unresolved components: 冋 ⿰忄尚 +U+60E0 惠 exact_ids unresolved components: 𤰔 ⿱叀心 +U+60E8 惨 exact_ids unresolved components: 参 ⿰忄参 +U+60EA 惪 exact_ids structural collision: 悳 ⿱直心 +U+60EC 惬 missing missing +U+60EE 惮 exact_ids unresolved components: 单 ⿰忄单 +U+60F1 惱 exact_ids unresolved components: 囟 ⿰忄𡿺 +U+60F8 惸 exact_ids unresolved components: 旬 ⿰忄㝁 +U+60FC 惼 exact_ids unresolved components: 𠕁 ⿰忄扁 +U+60FE 惾 exact_ids unresolved components: 凶 ⿰忄㚇 +U+60FF 惿 exact_ids unresolved components: 𤴓 ⿰忄是 +U+6103 愃 exact_ids unresolved components: 亘 ⿰忄宣 +U+610A 愊 exact_ids unresolved components: 畐 ⿰忄畐 +U+610C 愌 exact_ids unresolved components: 奐 ⿰忄奐 +U+610E 愎 exact_ids unresolved components: 复 ⿰忄复 +U+6112 愒 exact_ids unresolved components: 匃 ⿰忄曷 +U+6116 愖 exact_ids unresolved components: 匹 ⿰忄甚 +U+611C 愜 exact_ids unresolved components: 匧 ⿰忄匧 +U+611D 愝 exact_ids unresolved components: 匽 ⿰忄匽 +U+611F 感 exact_ids unresolved components: 咸 ⿱咸心 +U+6123 愣 missing missing +U+6128 愨 exact_ids unresolved components: 𣪊 ⿱𣪊心 +U+612B 愫 exact_ids unresolved components: 龶 ⿰忄素 +U+6130 愰 exact_ids unresolved components: ⺌ ⿰忄晃 +U+6134 愴 exact_ids unresolved components: 倉 ⿰忄倉 +U+6141 慁 exact_ids unresolved components: 圂 ⿱圂心 +U+614B 態 exact_ids unresolved components: 能 ⿱能心 +U+614D 慍 exact_ids unresolved components: 囚 ⿰忄𥁕 +U+6152 慒 exact_ids unresolved components: 曹 ⿰忄曹 +U+6155 慕 exact_ids unresolved components: 㣺 ⿱莫㣺 +U+6156 慖 exact_ids unresolved components: 國 ⿰忄國 +U+6158 慘 exact_ids unresolved components: 參 ⿰忄參 +U+615D 慝 exact_ids unresolved components: 匿 ⿱匿心 +U+615F 慟 exact_ids unresolved components: 里 ⿰忄動 +U+6160 慠 exact_ids unresolved components: 敖 ⿰忄敖 +U+6161 慡 exact_ids unresolved components: 㸚 ⿰忄爽 +U+6162 慢 exact_ids unresolved components: 曼 ⿰忄曼 +U+6164 慤 exact_ids unresolved components: 殼 ⿱殼心 +U+616A 慪 exact_ids unresolved components: 區 ⿰忄區 +U+616B 慫 exact_ids unresolved components: 從 ⿱從心 +U+616D 慭 missing missing +U+616F 慯 missing missing +U+6170 慰 exact_ids unresolved components: 尉 ⿱尉心 +U+6171 慱 exact_ids unresolved components: 𤰔 ⿰忄專 +U+6175 慵 exact_ids unresolved components: 庸 ⿰忄庸 +U+6176 慶 missing missing +U+6177 慷 exact_ids unresolved components: 隶 ⿰忄康 +U+6179 慹 exact_ids unresolved components: 𢆉 ⿱執心 +U+617A 慺 exact_ids unresolved components: 婁 ⿰忄婁 +U+617C 慼 exact_ids unresolved components: 戚 ⿱戚心 +U+617D 慽 exact_ids unresolved components: 戚 ⿰忄戚 +U+617F 慿 missing missing +U+6181 憁 exact_ids unresolved components: 囱 ⿰忄悤 +U+6185 憅 exact_ids unresolved components: 里 ⿱動心 +U+6186 憆 exact_ids unresolved components: 冋 ⿰忄堂 +U+618A 憊 exact_ids unresolved components: 備 ⿱備心 +U+618B 憋 exact_ids unresolved components: 㡀 ⿱敝心 +U+618C 憌 exact_ids unresolved components: 匀 ⿱鈞心 +U+618D 憍 exact_ids unresolved components: 冋 ⿰忄喬 +U+618E 憎 exact_ids unresolved components: 曽 ⿰忄曽 +U+618F 憏 exact_ids unresolved components: 祭 ⿰忄祭 +U+6193 憓 exact_ids unresolved components: 𤰔 ⿰忄惠 +U+6197 憗 missing missing +U+619A 憚 exact_ids unresolved components: 單 ⿰忄單 +U+619D 憝 exact_ids unresolved components: 享 ⿱敦心 +U+619E 憞 exact_ids unresolved components: 享 ⿰忄敦 +U+61A1 憡 exact_ids unresolved components: 亇 ⿰忄策 +U+61A7 憧 exact_ids unresolved components: 里 ⿰忄童 +U+61A8 憨 exact_ids unresolved components: 敢 ⿱敢心 +U+61A9 憩 missing missing +U+61AA 憪 exact_ids unresolved components: 閒 ⿰忄閒 +U+61AB 憫 exact_ids unresolved components: 閔 ⿰忄閔 +U+61AC 憬 exact_ids unresolved components: 京 ⿰忄景 +U+61AD 憭 exact_ids unresolved components: 昚 ⿰忄尞 +U+61B1 憱 exact_ids unresolved components: 京 ⿰忄就 +U+61B2 憲 missing missing +U+61B3 憳 exact_ids unresolved components: 尋 ⿰忄尋 +U+61B5 憵 exact_ids unresolved components: 𡰪 ⿱辟心 +U+61B8 憸 exact_ids unresolved components: 僉 ⿰忄僉 +U+61BA 憺 exact_ids unresolved components: 詹 ⿰忄詹 +U+61BB 憻 exact_ids unresolved components: 回 ⿰忄亶 +U+61BC 憼 exact_ids unresolved components: 句 ⿱敬心 +U+61BE 憾 exact_ids unresolved components: 咸 ⿰忄感 +U+61BF 憿 exact_ids unresolved components: 敫 ⿰忄敫 +U+61C0 懀 exact_ids unresolved components: 曾 ⿰忄會 +U+61C1 懁 exact_ids unresolved components: 睘 ⿰忄睘 +U+61C2 懂 exact_ids unresolved components: 里 ⿰忄董 +U+61C8 懈 exact_ids unresolved components: 解 ⿰忄解 +U+61C9 應 missing missing +U+61CC 懌 exact_ids unresolved components: 𢆉 ⿰忄睪 +U+61CD 懍 exact_ids unresolved components: 回 ⿰忄稟 +U+61CE 懎 exact_ids unresolved components: 回 ⿰忄嗇 +U+61D0 懐 missing missing +U+61D1 懑 exact_ids unresolved components: 满 ⿱满心 +U+61D2 懒 exact_ids unresolved components: ⺈ ⿰忄赖 +U+61D4 懔 exact_ids unresolved components: 禀 ⿰忄禀 +U+61D5 懕 exact_ids unresolved components: 冃 ⿱厭心 +U+61DA 懚 missing missing +U+61DC 懜 exact_ids unresolved components: 夢 ⿰忄夢 +U+61DD 懝 exact_ids unresolved components: 疑 ⿰忄疑 +U+61DE 懞 exact_ids unresolved components: 冃 ⿰忄蒙 +U+61DF 懟 exact_ids unresolved components: 𢆉 ⿱對心 +U+61E2 懢 exact_ids unresolved components: 監 ⿰忄監 +U+61E4 懤 exact_ids unresolved components: 壽 ⿰忄壽 +U+61E5 懥 exact_ids unresolved components: 疐 ⿰忄疐 +U+61E7 懧 exact_ids unresolved components: 寍 ⿰忄寧 +U+61E8 懨 exact_ids unresolved components: 冃 ⿰忄厭 +U+61E9 懩 exact_ids unresolved components: 養 ⿰忄養 +U+61EF 懯 exact_ids unresolved components: 敷 ⿱敷心 +U+61F0 懰 exact_ids unresolved components: 𨥫 ⿰忄劉 +U+61F1 懱 exact_ids unresolved components: 戌 ⿰忄蔑 +U+61F2 懲 exact_ids unresolved components: 徵 ⿱徵心 +U+61F4 懴 exact_ids unresolved components: 韯 ⿰忄韯 +U+61F5 懵 exact_ids unresolved components: 瞢 ⿰忄瞢 +U+61F6 懶 exact_ids unresolved components: 賴 ⿰忄賴 +U+61F7 懷 exact_ids unresolved components: 褱 ⿰忄褱 +U+61F8 懸 exact_ids unresolved components: 県 ⿱縣心 +U+61F9 懹 exact_ids unresolved components: 襄 ⿰忄襄 +U+61FA 懺 exact_ids unresolved components: 韱 ⿰忄韱 +U+61FB 懻 exact_ids unresolved components: 北 ⿰忄冀 +U+6203 戃 exact_ids unresolved components: 冋 ⿰忄黨 +U+6206 戆 exact_ids unresolved components: 赣 ⿱赣心 +U+6207 戇 exact_ids unresolved components: 贛 ⿱贛心 +U+6208 戈 missing missing +U+6209 戉 exact_ids unresolved components: 戈 ⿻乚戈 +U+620A 戊 exact_ids unresolved components: 戈 ⿻丿戈 +U+620B 戋 exact_ids unresolved components: 戈 ⿻一戈 +U+620C 戌 missing missing +U+620D 戍 missing missing +U+620E 戎 exact_ids unresolved components: 戈 ⿰𠂇戈 +U+620F 戏 exact_ids unresolved components: 戈 ⿰又戈 +U+6210 成 missing missing +U+6211 我 exact_ids unresolved components: 戈 ⿻千戈 +U+6212 戒 exact_ids unresolved components: 戈 ⿰廾戈 +U+6213 戓 exact_ids unresolved components: 戈 ⿰口戈 +U+6214 戔 exact_ids unresolved components: 戈 ⿱戈戈 +U+6215 戕 exact_ids unresolved components: 戈 ⿰爿戈 +U+6216 或 missing missing +U+6217 戗 exact_ids unresolved components: 戈 ⿰仓戈 +U+6218 战 exact_ids unresolved components: 戈 ⿰占戈 +U+6219 戙 exact_ids unresolved components: 同,戈 ⿰同戈 +U+621A 戚 missing missing +U+621B 戛 exact_ids unresolved components: 戈 ⿱𦣻戈 +U+621C 戜 exact_ids unresolved components: 戈 ⿰呈戈 +U+621D 戝 exact_ids unresolved components: 戈 ⿰貝戈 +U+621E 戞 exact_ids unresolved components: 戈 ⿳百冖戈 +U+621F 戟 missing missing +U+6220 戠 exact_ids unresolved components: 戈 ⿰音戈 +U+6221 戡 exact_ids unresolved components: 匹,戈 ⿰甚戈 +U+6222 戢 exact_ids unresolved components: 戈 ⿰咠戈 +U+6223 戣 exact_ids unresolved components: 戈 ⿰癸戈 +U+6224 戤 exact_ids unresolved components: 戈 ⿰盈戈 +U+6225 戥 exact_ids unresolved components: 戈 ⿰星戈 +U+6226 戦 exact_ids unresolved components: 単,戈 ⿰単戈 +U+6227 戧 exact_ids unresolved components: 倉,戈 ⿰倉戈 +U+6228 戨 exact_ids unresolved components: 戈 ⿰哥戈 +U+6229 戩 exact_ids unresolved components: 戈,晉 ⿰晉戈 +U+622A 截 exact_ids unresolved components: 戈 ⿰隹𢦏 +U+622B 戫 exact_ids unresolved components: 或 ⿰有或 +U+622C 戬 exact_ids unresolved components: 戈 ⿰晋戈 +U+622D 戭 exact_ids unresolved components: 寅,戈 ⿰寅戈 +U+622E 戮 exact_ids unresolved components: 戈 ⿰翏戈 +U+622F 戯 exact_ids unresolved components: 戈 ⿰虚戈 +U+6230 戰 exact_ids unresolved components: 單,戈 ⿰單戈 +U+6231 戱 exact_ids unresolved components: 戈,虛 ⿰虛戈 +U+6232 戲 exact_ids unresolved components: 䖒,戈 ⿰䖒戈 +U+6233 戳 exact_ids unresolved components: 戈 ⿰翟戈 +U+6234 戴 missing missing +U+6235 戵 exact_ids unresolved components: 戈 ⿰瞿戈 +U+6241 扁 exact_ids unresolved components: 𠕁 ⿱戸𠕁 +U+6243 扃 exact_ids unresolved components: 冋 ⿱戶冋 +U+6244 扄 exact_ids unresolved components: 冋 ⿱户向 +U+625A 扚 exact_ids unresolved components: 勺 ⿰扌勺 +U+6262 扢 exact_ids unresolved components: 乞 ⿰扌乞 +U+6265 扥 missing missing +U+626C 扬 exact_ids unresolved components: 𠃓 ⿰扌𠃓 +U+6271 扱 exact_ids unresolved components: ㇏ ⿰扌及 +U+6272 扲 exact_ids unresolved components: ㇇ ⿰扌今 +U+6273 扳 exact_ids unresolved components: 反 ⿰扌反 +U+6274 扴 exact_ids unresolved components: 介 ⿰扌介 +U+627E 找 exact_ids unresolved components: 戈 ⿰扌戈 +U+6285 抅 exact_ids unresolved components: 勾 ⿰扌勾 +U+629B 抛 exact_ids unresolved components: 𠠵 ⿰扌𠠵 +U+629D 抝 exact_ids unresolved components: ㇇ ⿰扌幻 +U+629E 択 exact_ids unresolved components: ㇏ ⿰扌尺 +U+62A0 抠 exact_ids unresolved components: 区 ⿰扌区 +U+62A3 抣 exact_ids unresolved components: 匀 ⿰扌匀 +U+62AA 抪 exact_ids unresolved components: 布 ⿰扌布 +U+62AD 抭 missing missing +U+62B1 抱 exact_ids unresolved components: 包 ⿰扌包 +U+62B9 抹 exact_ids structural collision: 抺 ⿰扌末 +U+62BA 抺 exact_ids structural collision: 抹 ⿰扌未 +U+62BB 抻 exact_ids unresolved components: 申 ⿰扌申 +U+62BC 押 exact_ids unresolved components: 甲 ⿰扌甲 +U+62BD 抽 exact_ids unresolved components: 由 ⿰扌由 +U+62CB 拋 exact_ids unresolved components: 𡯄 ⿰扌𡯄 +U+62D4 拔 exact_ids unresolved components: 犮 ⿰扌犮 +U+62D8 拘 exact_ids unresolved components: 句 ⿰扌句 +U+62DC 拜 missing missing +U+62DD 拝 missing missing +U+62E3 拣 exact_ids unresolved components: 𫠣 ⿰扌𫠣 +U+62E6 拦 exact_ids unresolved components: 三 ⿰扌兰 +U+62F5 拵 exact_ids unresolved components: 存 ⿰扌存 +U+6300 挀 missing missing +U+6304 挄 exact_ids unresolved components: ⺌ ⿰扌光 +U+630F 挏 exact_ids unresolved components: 同 ⿰扌同 +U+6320 挠 exact_ids unresolved components: 尧 ⿰扌尧 +U+6323 挣 exact_ids unresolved components: 争 ⿰扌争 +U+6329 挩 exact_ids structural collision: 捝 ⿰扌兌 +U+6333 挳 exact_ids unresolved components: 巠 ⿰扌巠 +U+6336 挶 exact_ids unresolved components: 局 ⿰扌局 +U+633F 挿 exact_ids unresolved components: 甲 ⿰扌𢆍 +U+6343 捃 exact_ids unresolved components: 尹 ⿰扌君 +U+6346 捆 exact_ids unresolved components: 困 ⿰扌困 +U+6351 捑 missing missing +U+6354 捔 exact_ids unresolved components: ⺈ ⿰扌角 +U+635A 捚 exact_ids unresolved components: 里 ⿰扌里 +U+635C 捜 missing missing +U+635D 捝 exact_ids structural collision: 挩 ⿰扌兌 +U+6361 捡 exact_ids unresolved components: 佥 ⿰扌佥 +U+6362 换 exact_ids unresolved components: ⺈ ⿰扌奂 +U+6377 捷 exact_ids unresolved components: 疌 ⿰扌疌 +U+6378 捸 exact_ids unresolved components: 隶 ⿰扌隶 +U+637B 捻 exact_ids unresolved components: ㇇ ⿰扌念 +U+637D 捽 exact_ids unresolved components: 卒 ⿰扌卒 +U+637F 捿 exact_ids unresolved components: 妻 ⿰扌妻 +U+6384 掄 exact_ids unresolved components: 𠕁 ⿰扌侖 +U+6385 掅 exact_ids unresolved components: 龶 ⿰扌青 +U+6386 掆 exact_ids unresolved components: 岡 ⿰扌岡 +U+638C 掌 exact_ids unresolved components: 冋 ⿱尚手 +U+638F 掏 exact_ids unresolved components: 匋 ⿰扌匋 +U+6390 掐 exact_ids unresolved components: ⺈ ⿰扌臽 +U+6396 掖 exact_ids unresolved components: 夜 ⿰扌夜 +U+639D 掝 exact_ids unresolved components: 或 ⿰扌或 +U+639F 掟 exact_ids unresolved components: 𤴓 ⿰扌定 +U+63A0 掠 exact_ids unresolved components: 京 ⿰扌京 +U+63A2 探 exact_ids unresolved components: ⺳ ⿰扌罙 +U+63A3 掣 exact_ids unresolved components: 制 ⿱制手 +U+63A9 掩 exact_ids unresolved components: 电 ⿰扌奄 +U+63AA 措 exact_ids unresolved components: 龷 ⿰扌昔 +U+63AC 掬 exact_ids unresolved components: 匊 ⿰扌匊 +U+63AD 掭 exact_ids unresolved components: 㣺 ⿰扌忝 +U+63B2 掲 missing missing +U+63B4 掴 exact_ids unresolved components: 国 ⿰扌国 +U+63B6 掶 exact_ids unresolved components: 庚 ⿰扌庚 +U+63B8 掸 exact_ids unresolved components: 单 ⿰扌单 +U+63BA 掺 exact_ids unresolved components: 参 ⿰扌参 +U+63C2 揂 exact_ids unresolved components: 酉 ⿰扌酋 +U+63C4 揄 exact_ids unresolved components: 兪 ⿰扌兪 +U+63C7 揇 exact_ids unresolved components: 南 ⿰扌南 +U+63C8 揈 exact_ids unresolved components: 訇 ⿰扌訇 +U+63CA 揊 exact_ids unresolved components: 畐 ⿰扌畐 +U+63CE 揎 exact_ids unresolved components: 亘 ⿰扌宣 +U+63D0 提 exact_ids unresolved components: 𤴓 ⿰扌是 +U+63D1 揑 missing missing +U+63D5 揕 exact_ids unresolved components: 匹 ⿰扌甚 +U+63D7 揗 exact_ids unresolved components: ⺁ ⿰扌盾 +U+63D9 揙 exact_ids unresolved components: 𠕁 ⿰扌扁 +U+63DB 換 exact_ids unresolved components: 奐 ⿰扌奐 +U+63E0 揠 exact_ids unresolved components: 匽 ⿰扌匽 +U+63E8 揨 exact_ids unresolved components: 亭 ⿰扌亭 +U+63ED 揭 exact_ids unresolved components: 匃 ⿰扌曷 +U+63EF 揯 exact_ids unresolved components: 亙 ⿰扌恆 +U+63F0 揰 exact_ids unresolved components: 里 ⿰扌重 +U+63F5 揵 exact_ids unresolved components: 聿 ⿰扌建 +U+63F7 揷 exact_ids unresolved components: 𦥛 ⿰扌𦥛 +U+63F9 揹 exact_ids unresolved components: 北 ⿰扌背 +U+63FA 揺 missing missing +U+63FB 揻 exact_ids unresolved components: 威 ⿰扌威 +U+63FD 揽 exact_ids unresolved components: 览 ⿰扌览 +U+6400 搀 missing missing +U+6401 搁 exact_ids unresolved components: 阁 ⿰扌阁 +U+6403 搃 exact_ids unresolved components: 𠮦 ⿰扌总 +U+6404 搄 exact_ids unresolved components: 亘 ⿰扌恒 +U+6407 搇 exact_ids unresolved components: ㇇ ⿰扌衾 +U+640A 搊 exact_ids unresolved components: 芻 ⿰扌芻 +U+640B 搋 exact_ids unresolved components: 虒 ⿰扌虒 +U+640C 搌 exact_ids unresolved components: 展 ⿰扌展 +U+6416 搖 exact_ids structural collision: 摇 ⿰扌䍃 +U+6417 搗 exact_ids unresolved components: 島 ⿰扌島 +U+641C 搜 exact_ids unresolved components: 𦥔 ⿰扌叟 +U+641E 搞 exact_ids unresolved components: 高 ⿰扌高 +U+6422 搢 exact_ids unresolved components: 晉 ⿰扌晉 +U+6423 搣 exact_ids unresolved components: 烕 ⿰扌烕 +U+6424 搤 exact_ids unresolved components: 益 ⿰扌益 +U+6428 搨 exact_ids unresolved components: 冃 ⿰扌𦐇 +U+642A 搪 exact_ids unresolved components: 唐 ⿰扌唐 +U+6433 搳 exact_ids unresolved components: 害 ⿰扌害 +U+6434 搴 missing missing +U+6435 搵 exact_ids unresolved components: 囚 ⿰扌𥁕 +U+6436 搶 exact_ids unresolved components: 倉 ⿰扌倉 +U+643D 搽 exact_ids unresolved components: 茶 ⿰扌茶 +U+6441 摁 exact_ids unresolved components: 因 ⿰扌恩 +U+6442 摂 missing missing +U+6447 摇 exact_ids structural collision: 搖 ⿰扌䍃 +U+6449 摉 missing missing +U+6450 摐 exact_ids unresolved components: 從 ⿰扌從 +U+6451 摑 exact_ids unresolved components: 國 ⿰扌國 +U+6454 摔 exact_ids unresolved components: 率 ⿰扌率 +U+6456 摖 exact_ids unresolved components: 祭 ⿰扌祭 +U+6458 摘 exact_ids unresolved components: 啇 ⿰扌啇 +U+645A 摚 exact_ids unresolved components: 冋 ⿰扌堂 +U+645B 摛 exact_ids unresolved components: 凶 ⿰扌离 +U+645F 摟 exact_ids unresolved components: 婁 ⿰扌婁 +U+6460 摠 exact_ids unresolved components: 囱 ⿰扌悤 +U+6464 摤 exact_ids unresolved components: 㸚 ⿰扌爽 +U+6465 摥 missing missing +U+6468 摨 exact_ids unresolved components: 犀 ⿰扌犀 +U+646A 摪 exact_ids unresolved components: 將 ⿰扌將 +U+646E 摮 exact_ids unresolved components: 敖 ⿱敖手 +U+646F 摯 exact_ids unresolved components: 𢆉 ⿱執手 +U+6471 摱 exact_ids unresolved components: 曼 ⿰扌曼 +U+6473 摳 exact_ids unresolved components: 區 ⿰扌區 +U+6475 摵 exact_ids unresolved components: 戚 ⿰扌戚 +U+6476 摶 exact_ids unresolved components: 𤰔 ⿰扌專 +U+647B 摻 exact_ids unresolved components: 參 ⿰扌參 +U+647F 摿 missing missing +U+6481 撁 exact_ids unresolved components: 牽 ⿰扌牽 +U+6486 撆 exact_ids unresolved components: 㡀 ⿱敝手 +U+6487 撇 exact_ids unresolved components: 㡀 ⿰扌敝 +U+6489 撉 exact_ids unresolved components: 享 ⿱敦手 +U+648A 撊 exact_ids unresolved components: 閒 ⿰扌閒 +U+648B 撋 exact_ids unresolved components: 閏 ⿰扌閏 +U+648F 撏 exact_ids unresolved components: 尋 ⿰扌尋 +U+6490 撐 exact_ids unresolved components: 冋 ⿰扌牚 +U+6491 撑 exact_ids unresolved components: 冋 ⿰扌掌 +U+6492 撒 exact_ids unresolved components: 散 ⿰扌散 +U+6494 撔 exact_ids unresolved components: 京 ⿰扌景 +U+6496 撖 exact_ids unresolved components: 敢 ⿰扌敢 +U+6498 撘 exact_ids unresolved components: 亇 ⿰扌答 +U+6499 撙 exact_ids unresolved components: 酉 ⿰扌尊 +U+649D 撝 exact_ids unresolved components: 爲 ⿰扌爲 +U+649E 撞 exact_ids unresolved components: 里 ⿰扌童 +U+649F 撟 exact_ids unresolved components: 冋 ⿰扌喬 +U+64A0 撠 exact_ids unresolved components: 戟 ⿰扌戟 +U+64A1 撡 exact_ids unresolved components: 㣺 ⿰扌叅 +U+64A3 撣 exact_ids unresolved components: 單 ⿰扌單 +U+64A4 撤 missing missing +U+64A5 撥 exact_ids unresolved components: 發 ⿰扌發 +U+64A7 撧 exact_ids unresolved components: ⺈ ⿰扌絶 +U+64A9 撩 exact_ids unresolved components: 昚 ⿰扌尞 +U+64AA 撪 exact_ids unresolved components: 軬 ⿰扌軬 +U+64B4 撴 exact_ids unresolved components: 享 ⿰扌敦 +U+64BC 撼 exact_ids unresolved components: 咸 ⿰扌感 +U+64BD 撽 exact_ids unresolved components: 敫 ⿰扌敫 +U+64BF 撿 exact_ids unresolved components: 僉 ⿰扌僉 +U+64C0 擀 exact_ids unresolved components: 幹 ⿰扌幹 +U+64C1 擁 exact_ids unresolved components: 雍 ⿰扌雍 +U+64C5 擅 exact_ids unresolved components: 回 ⿰扌亶 +U+64C7 擇 exact_ids unresolved components: 𢆉 ⿰扌睪 +U+64C9 擉 exact_ids unresolved components: 𠣜 ⿰扌蜀 +U+64CA 擊 missing missing +U+64CB 擋 exact_ids unresolved components: 冋 ⿰扌當 +U+64CC 擌 exact_ids unresolved components: 亇 ⿰扌筴 +U+64CE 擎 exact_ids unresolved components: 句 ⿱敬手 +U+64CF 擏 exact_ids unresolved components: 句 ⿰扌敬 +U+64D0 擐 exact_ids unresolved components: 睘 ⿰扌睘 +U+64D1 擑 exact_ids unresolved components: 戈 ⿰扌戢 +U+64D2 擒 exact_ids unresolved components: 凶 ⿰扌禽 +U+64D3 擓 exact_ids unresolved components: 匯 ⿰扌匯 +U+64D4 擔 exact_ids unresolved components: 詹 ⿰扌詹 +U+64D6 擖 exact_ids unresolved components: 匃 ⿰扌葛 +U+64D7 擗 exact_ids unresolved components: 𡰪 ⿰扌辟 +U+64D8 擘 exact_ids unresolved components: 𡰪 ⿱辟手 +U+64DC 擜 exact_ids unresolved components: 南 ⿰扌献 +U+64E3 擣 exact_ids unresolved components: 壽 ⿰扌壽 +U+64E5 擥 missing missing +U+64E6 擦 exact_ids unresolved components: 祭 ⿰扌察 +U+64E8 擨 exact_ids unresolved components: 虒 ⿰扌歋 +U+64EA 擪 exact_ids unresolved components: 冃 ⿱厭手 +U+64EB 擫 exact_ids unresolved components: 冃 ⿰扌厭 +U+64EC 擬 exact_ids unresolved components: 疑 ⿰扌疑 +U+64EE 擮 exact_ids unresolved components: 戈 ⿰扌截 +U+64EF 擯 exact_ids unresolved components: 賓 ⿰扌賓 +U+64F0 擰 exact_ids unresolved components: 寍 ⿰扌寧 +U+64F1 擱 exact_ids unresolved components: 閣 ⿰扌閣 +U+64F2 擲 exact_ids unresolved components: 酉 ⿰扌鄭 +U+64F3 擳 exact_ids unresolved components: 亇 ⿰扌節 +U+64F6 擶 exact_ids unresolved components: 亇 ⿰扌箭 +U+64F8 擸 exact_ids unresolved components: 巤 ⿰扌巤 +U+64FA 擺 exact_ids unresolved components: 能 ⿰扌罷 +U+64FB 擻 exact_ids unresolved components: 婁 ⿰扌數 +U+64FD 擽 exact_ids unresolved components: 樂 ⿰扌樂 +U+64FF 擿 exact_ids unresolved components: 啇 ⿰扌適 +U+6501 攁 exact_ids unresolved components: 養 ⿰扌養 +U+6503 攃 exact_ids unresolved components: 祭 ⿰扌蔡 +U+6507 攇 exact_ids unresolved components: 憲 ⿰扌憲 +U+650B 攋 exact_ids unresolved components: 賴 ⿰扌賴 +U+650C 攌 exact_ids unresolved components: 圜 ⿰扌圜 +U+650D 攍 exact_ids unresolved components: 嬴 ⿰扌嬴 +U+650E 攎 exact_ids unresolved components: 𧆨 ⿰扌盧 +U+6510 攐 exact_ids unresolved components: 褰 ⿰扌褰 +U+6512 攒 exact_ids unresolved components: 赞 ⿰扌赞 +U+6513 攓 exact_ids unresolved components: 蹇 ⿰扌蹇 +U+6514 攔 exact_ids unresolved components: 闌 ⿰扌闌 +U+6515 攕 exact_ids unresolved components: 韱 ⿰扌韱 +U+6518 攘 exact_ids unresolved components: 襄 ⿰扌襄 +U+6519 攙 exact_ids unresolved components: 毚 ⿰扌毚 +U+651A 攚 exact_ids unresolved components: 呂 ⿰扌營 +U+651F 攟 exact_ids unresolved components: 囷 ⿰扌麕 +U+6521 攡 exact_ids unresolved components: 凶 ⿰扌離 +U+6525 攥 exact_ids unresolved components: 纂 ⿰扌纂 +U+6526 攦 exact_ids unresolved components: 丽 ⿰扌麗 +U+6528 攨 missing missing +U+6529 攩 exact_ids unresolved components: 冋 ⿰扌黨 +U+652A 攪 exact_ids unresolved components: 覺 ⿰扌覺 +U+652C 攬 exact_ids unresolved components: 覽 ⿰扌覽 +U+6533 攳 exact_ids unresolved components: 尋 ⿰支尋 +U+6538 攸 missing missing +U+6542 敂 exact_ids unresolved components: 句 ⿰句攵 +U+654E 敎 missing missing +U+6552 敒 exact_ids unresolved components: 申 ⿰伸攵 +U+6553 敓 exact_ids structural collision: 敚 ⿰兌攵 +U+6556 敖 missing missing +U+655A 敚 exact_ids structural collision: 敓 ⿰兌攵 +U+655B 敛 exact_ids unresolved components: 佥 ⿰佥攵 +U+655C 敜 exact_ids unresolved components: ㇇ ⿰念攵 +U+655D 敝 exact_ids unresolved components: 㡀 ⿰㡀攵 +U+655E 敞 exact_ids unresolved components: 冋 ⿰尚攵 +U+6562 敢 missing missing +U+6563 散 missing missing +U+6566 敦 exact_ids unresolved components: 享 ⿰享攵 +U+656B 敫 missing missing +U+656C 敬 exact_ids unresolved components: 句 ⿰苟攵 +U+6572 敲 exact_ids unresolved components: 高 ⿰高攴 +U+6575 敵 exact_ids unresolved components: 啇 ⿰啇攵 +U+6577 敷 missing missing +U+6578 數 exact_ids unresolved components: 婁 ⿰婁攵 +U+6579 敹 missing missing +U+657A 敺 exact_ids unresolved components: 區 ⿰區攴 +U+657B 敻 missing missing +U+657D 敽 exact_ids unresolved components: 冋 ⿰喬攴 +U+657E 敾 exact_ids unresolved components: 善 ⿰善攵 +U+657F 敿 exact_ids unresolved components: 冋 ⿰喬攵 +U+6580 斀 exact_ids unresolved components: 𠣜 ⿰蜀攴 +U+6581 斁 exact_ids unresolved components: 𢆉 ⿰睪攵 +U+6582 斂 exact_ids unresolved components: 僉 ⿰僉攵 +U+6583 斃 exact_ids unresolved components: 㡀 ⿱敝死 +U+6585 斅 exact_ids unresolved components: 𦥯 ⿰學攴 +U+6586 斆 exact_ids unresolved components: 𦥯 ⿰學攵 +U+6589 斉 missing missing +U+658C 斌 exact_ids unresolved components: 武 ⿰文武 +U+658E 斎 missing missing +U+6592 斒 exact_ids unresolved components: 𠕁 ⿰文扁 +U+6593 斓 exact_ids unresolved components: 阑 ⿰文阑 +U+6595 斕 exact_ids unresolved components: 闌 ⿰文闌 +U+6596 斖 exact_ids unresolved components: 舋 ⿱文舋 +U+659B 斛 exact_ids unresolved components: ⺈ ⿰角斗 +U+659F 斟 exact_ids unresolved components: 匹 ⿰甚斗 +U+65A1 斡 missing missing +U+65A3 斣 exact_ids unresolved components: 𠣜 ⿰蜀斗 +U+65AA 斪 exact_ids unresolved components: 句 ⿰句斤 +U+65AD 断 missing missing +U+65AE 斮 exact_ids unresolved components: 龷 ⿰昔斤 +U+65B2 斲 missing missing +U+65B5 斵 missing missing +U+65B6 斶 exact_ids unresolved components: 𠣜 ⿰斤蜀 +U+65B8 斸 exact_ids unresolved components: 屬 ⿰屬斤 +U+65BA 斺 exact_ids unresolved components: 介 ⿰方介 +U+65C2 旂 missing missing +U+65C3 旃 missing missing +U+65C4 旄 missing missing +U+65C5 旅 missing missing +U+65C6 旆 missing missing +U+65C7 旇 missing missing +U+65CA 旊 missing missing +U+65CB 旋 missing missing +U+65CC 旌 missing missing +U+65CD 旍 missing missing +U+65CE 旎 missing missing +U+65CF 族 missing missing +U+65D0 旐 missing missing +U+65D2 旒 missing missing +U+65D3 旓 missing missing +U+65D4 旔 exact_ids unresolved components: 聿 ⿰方建 +U+65D6 旖 missing missing +U+65D7 旗 missing missing +U+65D8 旘 exact_ids unresolved components: 戈 ⿰方戠 +U+65DA 旚 missing missing +U+65DB 旛 missing missing +U+65DC 旜 missing missing +U+65DD 旝 missing missing +U+65DE 旞 missing missing +U+65DF 旟 missing missing +U+65EC 旬 missing missing +U+65F3 旳 exact_ids unresolved components: 勺 ⿰日勺 +U+65F8 旸 exact_ids unresolved components: 𠃓 ⿰日𠃓 +U+6600 昀 exact_ids unresolved components: 匀 ⿰日匀 +U+6604 昄 exact_ids unresolved components: 反 ⿰日反 +U+6605 昅 exact_ids unresolved components: ㇏ ⿰日及 +U+6611 昑 exact_ids unresolved components: ㇇ ⿰日今 +U+6614 昔 exact_ids unresolved components: 龷 ⿱龷日 +U+661A 昚 missing missing +U+6627 昧 exact_ids structural collision: 昩 ⿰日未 +U+6629 昩 exact_ids structural collision: 昧 ⿰日末 +U+662B 昫 exact_ids unresolved components: 句 ⿰日句 +U+662F 是 exact_ids unresolved components: 𤴓 ⿱日𤴓 +U+6634 昴 exact_ids unresolved components: 卯 ⿱日卯 +U+6636 昶 exact_ids unresolved components: 永 ⿰永日 +U+6639 昹 exact_ids unresolved components: 永 ⿰日永 +U+663C 昼 exact_ids unresolved components: ㇏ ⿱尺旦 +U+6643 晃 exact_ids unresolved components: ⺌ ⿱日光 +U+6644 晄 exact_ids unresolved components: ⺌ ⿰日光 +U+6645 晅 exact_ids unresolved components: 亘 ⿰日亘 +U+6649 晉 missing missing +U+664C 晌 exact_ids unresolved components: 冋 ⿰日向 +U+664D 晍 exact_ids unresolved components: 同 ⿰日同 +U+6650 晐 exact_ids unresolved components: 亥 ⿰日亥 +U+6651 晑 exact_ids unresolved components: 冋 ⿱日向 +U+6653 晓 exact_ids unresolved components: 尧 ⿰日尧 +U+6657 晗 exact_ids unresolved components: ㇇ ⿰日含 +U+665A 晚 exact_ids structural collision: 晩 ⿰日免 +U+665D 晝 exact_ids unresolved components: 聿 ⿱聿旦 +U+665E 晞 exact_ids unresolved components: 布 ⿰日希 +U+665F 晟 exact_ids unresolved components: 成 ⿱日成 +U+6660 晠 exact_ids unresolved components: 成 ⿰日成 +U+6669 晩 exact_ids structural collision: 晚 ⿰日免 +U+666C 晬 exact_ids unresolved components: 卒 ⿰日卒 +U+666D 晭 exact_ids unresolved components: 周 ⿰日周 +U+666F 景 exact_ids unresolved components: 京 ⿱日京 +U+6674 晴 exact_ids unresolved components: 龶 ⿰日青 +U+6675 晵 missing missing +U+667B 晻 exact_ids unresolved components: 电 ⿰日奄 +U+667E 晾 exact_ids unresolved components: 京 ⿰日京 +U+6684 暄 exact_ids unresolved components: 亘 ⿰日宣 +U+6685 暅 exact_ids unresolved components: 亘 ⿰日恒 +U+668D 暍 exact_ids unresolved components: 匃 ⿰日曷 +U+6694 暔 exact_ids unresolved components: 南 ⿰日南 +U+66A0 暠 exact_ids unresolved components: 高 ⿱日高 +U+66A2 暢 exact_ids unresolved components: 申 ⿰申昜 +U+66A9 暩 exact_ids unresolved components: 祭 ⿰日祭 +U+66AD 暭 exact_ids unresolved components: 皐 ⿰日皐 +U+66B0 暰 exact_ids unresolved components: 從 ⿰日從 +U+66B1 暱 exact_ids unresolved components: 匿 ⿰日匿 +U+66B5 暵 exact_ids unresolved components: 𦰩 ⿰日𦰩 +U+66B6 暶 exact_ids unresolved components: 旋 ⿰日旋 +U+66B7 暷 exact_ids unresolved components: 𤰔 ⿰日專 +U+66B8 暸 exact_ids unresolved components: 昚 ⿰日尞 +U+66BA 暺 exact_ids unresolved components: 單 ⿰日單 +U+66BB 暻 exact_ids unresolved components: 京 ⿰日景 +U+66BC 暼 exact_ids unresolved components: 㡀 ⿱敝日 +U+66BE 暾 exact_ids unresolved components: 享 ⿰日敦 +U+66C3 曃 exact_ids unresolved components: 隶 ⿰日逮 +U+66C8 曈 exact_ids unresolved components: 里 ⿰日童 +U+66CD 曍 exact_ids unresolved components: 臯 ⿰日臯 +U+66CE 曎 exact_ids unresolved components: 𢆉 ⿰日睪 +U+66D2 曒 exact_ids unresolved components: 敫 ⿰日敫 +U+66D3 曓 missing missing +U+66D4 曔 exact_ids unresolved components: 句 ⿰日敬 +U+66D5 曕 exact_ids unresolved components: 詹 ⿰日詹 +U+66DA 曚 exact_ids unresolved components: 冃 ⿰日蒙 +U+66DB 曛 exact_ids unresolved components: 熏 ⿰日熏 +U+66E2 曢 exact_ids unresolved components: 昚 ⿰日寮 +U+66E3 曣 exact_ids unresolved components: 燕 ⿰日燕 +U+66E5 曥 exact_ids unresolved components: 𧆨 ⿰日盧 +U+66E6 曦 exact_ids unresolved components: 羲 ⿰日羲 +U+66E9 曩 exact_ids unresolved components: 襄 ⿱日襄 +U+66EC 曬 exact_ids unresolved components: 丽 ⿰日麗 +U+66ED 曭 exact_ids unresolved components: 冋 ⿰日黨 +U+66EE 曮 exact_ids unresolved components: 𠪚 ⿰日嚴 +U+66EF 曯 exact_ids unresolved components: 屬 ⿰日屬 +U+66F1 曱 missing missing +U+66F7 曷 exact_ids unresolved components: 匃 ⿱曰匃 +U+66F8 書 exact_ids unresolved components: 聿 ⿱聿曰 +U+66F9 曹 missing missing +U+66FA 曺 exact_ids unresolved components: 𤰔 ⿱𤰔曰 +U+66FC 曼 missing missing +U+66FD 曽 missing missing +U+66FE 曾 missing missing +U+6703 會 exact_ids unresolved components: 曾 ⿱曾曰 +U+6704 朄 exact_ids unresolved components: 申 ⿰申柬 +U+6705 朅 exact_ids unresolved components: 匃 ⿰去曷 +U+6706 朆 missing missing +U+6707 朇 exact_ids unresolved components: 曾 ⿰會卑 +U+670C 朌 exact_ids structural collision: 肦 ⿰月分 +U+6710 朐 exact_ids unresolved components: 句 ⿰月句 +U+6718 朘 exact_ids structural collision: 脧 ⿰月夋 +U+671C 朜 exact_ids unresolved components: 享 ⿰月享 +U+671D 朝 missing missing +U+6721 朡 exact_ids unresolved components: 凶 ⿰月㚇 +U+6722 朢 missing missing +U+6723 朣 exact_ids unresolved components: 里 ⿰月童 +U+6726 朦 exact_ids unresolved components: 冃 ⿰月蒙 +U+672A 未 exact_ids structural collision: 末,本 ⿻木一 +U+672B 末 exact_ids structural collision: 未,本 ⿻木一 +U+672C 本 exact_ids structural collision: 未,末 ⿻木一 +U+672E 朮 missing missing +U+674B 杋 exact_ids unresolved components: 凡 ⿰木凡 +U+6753 杓 exact_ids unresolved components: 勺 ⿰木勺 +U+675A 杚 exact_ids unresolved components: 乞 ⿰木乞 +U+6765 来 missing missing +U+6768 杨 exact_ids unresolved components: 𠃓 ⿰木𠃓 +U+677F 板 exact_ids unresolved components: 反 ⿰木反 +U+6781 极 exact_ids unresolved components: ㇏ ⿰木及 +U+6783 枃 exact_ids unresolved components: 匀 ⿰木匀 +U+6784 构 exact_ids unresolved components: 勾 ⿰木勾 +U+6794 枔 exact_ids unresolved components: ㇇ ⿰木今 +U+67A2 枢 exact_ids unresolved components: 区 ⿰木区 +U+67AB 枫 exact_ids unresolved components: 风 ⿰木风 +U+67AC 枬 exact_ids structural collision: 栴 ⿰木丹 +U+67B8 枸 exact_ids unresolved components: 句 ⿰木句 +U+67B9 枹 exact_ids unresolved components: 包 ⿰木包 +U+67BE 枾 missing missing +U+67CC 柌 exact_ids unresolved components: 司 ⿰木司 +U+67D2 柒 missing missing +U+67D9 柙 exact_ids unresolved components: 甲 ⿰木甲 +U+67DA 柚 exact_ids unresolved components: 由 ⿰木由 +U+67DB 柛 exact_ids unresolved components: 申 ⿰木申 +U+67E1 柡 missing missing +U+67E8 柨 exact_ids unresolved components: 布 ⿰木布 +U+67E9 柩 exact_ids unresolved components: 匛 ⿰木匛 +U+67ED 柭 exact_ids unresolved components: 犮 ⿰木犮 +U+67F3 柳 exact_ids unresolved components: 卯 ⿰木卯 +U+67F6 柶 exact_ids unresolved components: 四 ⿰木四 +U+6800 栀 exact_ids unresolved components: 卮 ⿰木卮 +U+6806 栆 missing missing +U+6808 栈 exact_ids unresolved components: 戈 ⿰木戋 +U+680F 栏 exact_ids unresolved components: 三 ⿰木兰 +U+6810 栐 exact_ids unresolved components: 永 ⿰木永 +U+6812 栒 exact_ids unresolved components: 旬 ⿰木旬 +U+682B 栫 exact_ids unresolved components: 存 ⿰木存 +U+682C 栬 exact_ids unresolved components: ⺈ ⿰木色 +U+6830 栰 exact_ids unresolved components: 戈 ⿰木伐 +U+6834 栴 exact_ids structural collision: 枬 ⿰木丹 +U+6836 栶 exact_ids unresolved components: 因 ⿰木因 +U+6838 核 exact_ids unresolved components: 亥 ⿰木亥 +U+683D 栽 missing missing +U+6844 桄 exact_ids unresolved components: ⺌ ⿰木光 +U+6845 桅 exact_ids unresolved components: ⺈ ⿰木危 +U+6846 框 exact_ids unresolved components: 匡 ⿰木匡 +U+6850 桐 exact_ids unresolved components: 同 ⿰木同 +U+6853 桓 exact_ids unresolved components: 亘 ⿰木亘 +U+6856 桖 exact_ids unresolved components: 血 ⿰木血 +U+685C 桜 missing missing +U+685F 桟 exact_ids unresolved components: 𢦑 ⿰木𢦑 +U+6861 桡 exact_ids unresolved components: 尧 ⿰木尧 +U+6868 桨 missing missing +U+6871 桱 exact_ids unresolved components: 巠 ⿰木巠 +U+6873 桳 missing missing +U+6877 桷 exact_ids unresolved components: ⺈ ⿰木角 +U+6878 桸 exact_ids unresolved components: 布 ⿰木希 +U+687E 桾 exact_ids unresolved components: 尹 ⿰木君 +U+6881 梁 missing missing +U+6884 梄 exact_ids unresolved components: 酉 ⿰木酉 +U+6888 梈 exact_ids unresolved components: 亨 ⿰木亨 +U+6892 梒 exact_ids unresolved components: ㇇ ⿰木含 +U+6894 梔 exact_ids unresolved components: 巵 ⿰木巵 +U+689D 條 missing missing +U+689F 梟 missing missing +U+68A0 梠 exact_ids unresolved components: 呂 ⿰木呂 +U+68A3 梣 exact_ids unresolved components: ㇇ ⿰木岑 +U+68A4 梤 missing missing +U+68A5 梥 exact_ids unresolved components: 𠫡 ⿱穴𠫡 +U+68A9 梩 exact_ids unresolved components: 里 ⿰木里 +U+68AC 梬 exact_ids unresolved components: 由 ⿰木甹 +U+68AE 梮 exact_ids unresolved components: 局 ⿰木局 +U+68B0 械 exact_ids unresolved components: 戈 ⿰木戒 +U+68B1 梱 exact_ids unresolved components: 困 ⿰木困 +U+68B2 梲 exact_ids structural collision: 棁 ⿰木兌 +U+68B5 梵 exact_ids unresolved components: 凡 ⿱⿰木木凡 +U+68B7 梷 missing missing +U+68BE 梾 exact_ids unresolved components: 来 ⿰木来 +U+68C0 检 exact_ids unresolved components: 佥 ⿰木佥 +U+68C1 棁 exact_ids structural collision: 梲 ⿰木兌 +U+68C3 棃 missing missing +U+68C5 棅 exact_ids unresolved components: ⺕ ⿰木秉 +U+68C6 棆 exact_ids unresolved components: 𠕁 ⿰木侖 +U+68C8 棈 exact_ids unresolved components: 円,龶 ⿰木靑 +U+68CE 棎 exact_ids unresolved components: ⺳ ⿰木罙 +U+68DB 棛 exact_ids unresolved components: 育 ⿰木育 +U+68DD 棝 exact_ids unresolved components: 固 ⿰木固 +U+68DE 棞 exact_ids unresolved components: 囷 ⿰木囷 +U+68E1 棡 exact_ids unresolved components: 岡 ⿰木岡 +U+68E2 棢 exact_ids unresolved components: 罔 ⿰木罔 +U+68E3 棣 exact_ids unresolved components: 隶 ⿰木隶 +U+68E4 棤 exact_ids unresolved components: 龷 ⿰木昔 +U+68E7 棧 exact_ids unresolved components: 戈 ⿰木戔 +U+68E8 棨 missing missing +U+68EB 棫 exact_ids unresolved components: 或 ⿰木或 +U+68ED 棭 exact_ids unresolved components: 夜 ⿰木夜 +U+68EF 棯 exact_ids unresolved components: ㇇ ⿰木念 +U+68F2 棲 exact_ids unresolved components: 妻 ⿰木妻 +U+68FD 棽 exact_ids unresolved components: ㇇ ⿱⿰木木今 +U+6901 椁 exact_ids unresolved components: 享 ⿰木享 +U+6906 椆 exact_ids unresolved components: 周 ⿰木周 +U+6908 椈 exact_ids unresolved components: 匊 ⿰木匊 +U+690A 椊 exact_ids unresolved components: 卒 ⿰木卒 +U+690B 椋 exact_ids unresolved components: 京 ⿰木京 +U+6913 椓 exact_ids unresolved components: 豖 ⿰木豖 +U+6917 椗 exact_ids unresolved components: 𤴓 ⿰木定 +U+6922 椢 exact_ids unresolved components: 国 ⿰木国 +U+6929 椩 exact_ids unresolved components: 庚 ⿰木庚 +U+692B 椫 exact_ids unresolved components: 单 ⿰木单 +U+692E 椮 exact_ids unresolved components: 参 ⿰木参 +U+6931 椱 exact_ids unresolved components: 复 ⿰木复 +U+6934 椴 exact_ids unresolved components: 段 ⿰木段 +U+6936 椶 exact_ids unresolved components: 凶 ⿰木㚇 +U+6937 椷 exact_ids unresolved components: 咸 ⿰木咸 +U+6939 椹 exact_ids unresolved components: 匹 ⿰木甚 +U+693B 椻 exact_ids unresolved components: 匽 ⿰木匽 +U+6940 楀 exact_ids unresolved components: 禹 ⿰木禹 +U+6944 楄 exact_ids unresolved components: 𠕁 ⿰木扁 +U+6945 楅 exact_ids unresolved components: 畐 ⿰木畐 +U+694D 楍 exact_ids unresolved components: 𠱠 ⿱木𠱠 +U+6950 楐 exact_ids unresolved components: 介 ⿰木界 +U+6957 楗 exact_ids unresolved components: 聿 ⿰木建 +U+695E 楞 missing missing +U+695F 楟 exact_ids unresolved components: 亭 ⿰木亭 +U+6960 楠 exact_ids unresolved components: 南 ⿰木南 +U+6961 楡 exact_ids unresolved components: 兪 ⿰木兪 +U+6962 楢 exact_ids unresolved components: 酉 ⿰木酋 +U+6966 楦 exact_ids unresolved components: 亘 ⿰木宣 +U+696C 楬 exact_ids unresolved components: 匃 ⿰木曷 +U+696F 楯 exact_ids unresolved components: ⺁ ⿰木盾 +U+6972 楲 exact_ids unresolved components: 威 ⿰木威 +U+6975 極 exact_ids unresolved components: 亟 ⿰木亟 +U+697D 楽 missing missing +U+6984 榄 exact_ids unresolved components: 览 ⿰木览 +U+6988 榈 exact_ids unresolved components: 闾 ⿰木闾 +U+698A 榊 exact_ids unresolved components: 申 ⿰木神 +U+698B 榋 missing missing +U+698E 榎 exact_ids unresolved components: 夏 ⿰木夏 +U+698F 榏 exact_ids unresolved components: 益 ⿰木益 +U+6990 榐 exact_ids unresolved components: 展 ⿰木展 +U+6996 榖 missing missing +U+6997 榗 exact_ids unresolved components: 晉 ⿰木晉 +U+699A 榚 exact_ids unresolved components: 羔 ⿰木羔 +U+699D 榝 exact_ids structural collision: 樧 ⿰木殺 +U+69A1 榡 exact_ids unresolved components: 龶 ⿰木素 +U+69A5 榥 exact_ids unresolved components: ⺌ ⿰木晃 +U+69A6 榦 missing missing +U+69A7 榧 exact_ids unresolved components: 匪 ⿰木匪 +U+69AC 榬 exact_ids unresolved components: 袁 ⿰木袁 +U+69B1 榱 exact_ids unresolved components: 衰 ⿰木衰 +U+69B2 榲 exact_ids unresolved components: 囚 ⿰木𥁕 +U+69B4 榴 exact_ids unresolved components: 留 ⿰木留 +U+69B6 榶 exact_ids unresolved components: 唐 ⿰木唐 +U+69B8 榸 exact_ids unresolved components: 里 ⿰木埋 +U+69B9 榹 exact_ids unresolved components: 虒 ⿰木虒 +U+69BB 榻 exact_ids unresolved components: 冃 ⿰木𦐇 +U+69C0 槀 exact_ids unresolved components: 高 ⿱高木 +U+69C1 槁 exact_ids unresolved components: 高 ⿰木高 +U+69C6 槆 exact_ids unresolved components: 旬 ⿰木荀 +U+69CD 槍 exact_ids unresolved components: 倉 ⿰木倉 +U+69D7 槗 exact_ids unresolved components: 冋 ⿰木𠳮 +U+69DB 槛 exact_ids unresolved components: 监 ⿰木监 +U+69DD 槝 exact_ids unresolved components: 島 ⿰木島 +U+69DE 槞 exact_ids unresolved components: 电 ⿰木竜 +U+69E6 槦 exact_ids unresolved components: 庸 ⿰木庸 +U+69E8 槨 exact_ids unresolved components: 享 ⿰木郭 +U+69EB 槫 exact_ids unresolved components: 𤰔 ⿰木專 +U+69ED 槭 exact_ids unresolved components: 戚 ⿰木戚 +U+69EE 槮 exact_ids unresolved components: 參 ⿰木參 +U+69F1 槱 exact_ids unresolved components: 酉 ⿱梄灬 +U+69F2 槲 exact_ids unresolved components: ⺈ ⿰木斛 +U+69F3 槳 exact_ids unresolved components: 將 ⿱將木 +U+69F6 槶 exact_ids unresolved components: 國 ⿰木國 +U+69F9 槹 exact_ids unresolved components: 皐 ⿰木皐 +U+69FA 槺 exact_ids unresolved components: 隶 ⿰木康 +U+69FD 槽 exact_ids unresolved components: 曹 ⿰木曹 +U+69FE 槾 exact_ids unresolved components: 曼 ⿰木曼 +U+6A00 樀 exact_ids unresolved components: 啇 ⿰木啇 +U+6A02 樂 missing missing +U+6A05 樅 exact_ids unresolved components: 從 ⿰木從 +U+6A06 樆 exact_ids unresolved components: 凶 ⿰木离 +U+6A07 樇 exact_ids unresolved components: 脩 ⿰木脩 +U+6A09 樉 exact_ids unresolved components: 㸚 ⿰木爽 +U+6A0D 樍 exact_ids unresolved components: 龶 ⿰木責 +U+6A11 樑 exact_ids unresolved components: 梁 ⿰木梁 +U+6A13 樓 exact_ids unresolved components: 婁 ⿰木婁 +U+6A18 樘 exact_ids unresolved components: 冋 ⿰木堂 +U+6A1E 樞 exact_ids unresolved components: 區 ⿰木區 +U+6A23 樣 exact_ids unresolved components: 羕 ⿰木羕 +U+6A24 樤 exact_ids unresolved components: 條 ⿰木條 +U+6A26 樦 exact_ids unresolved components: 亇 ⿰木䇠 +U+6A27 樧 exact_ids structural collision: 榝 ⿰木殺 +U+6A28 樨 exact_ids unresolved components: 犀 ⿰木犀 +U+6A29 権 missing missing +U+6A2C 樬 exact_ids unresolved components: 囱 ⿰木悤 +U+6A2F 樯 exact_ids unresolved components: 啬 ⿰木啬 +U+6A33 樳 exact_ids unresolved components: 尋 ⿰木尋 +U+6A34 樴 exact_ids unresolved components: 戈 ⿰木戠 +U+6A3D 樽 exact_ids unresolved components: 酉 ⿰木尊 +U+6A3E 樾 exact_ids unresolved components: 戈 ⿰木越 +U+6A3F 樿 exact_ids unresolved components: 單 ⿰木單 +U+6A40 橀 missing missing +U+6A41 橁 exact_ids unresolved components: 亇,旬 ⿰木筍 +U+6A42 橂 exact_ids unresolved components: 酉 ⿰木奠 +U+6A43 橃 exact_ids unresolved components: 發 ⿰木發 +U+6A44 橄 exact_ids unresolved components: 敢 ⿰木敢 +U+6A46 橆 missing missing +U+6A4B 橋 exact_ids unresolved components: 冋 ⿰木喬 +U+6A4C 橌 exact_ids unresolved components: 閒 ⿰木閒 +U+6A4D 橍 exact_ids unresolved components: 閏 ⿰木閏 +U+6A4F 橏 exact_ids unresolved components: 善 ⿰木善 +U+6A51 橑 exact_ids unresolved components: 昚 ⿰木尞 +U+6A54 橔 exact_ids unresolved components: 享 ⿰木敦 +U+6A55 橕 exact_ids unresolved components: 冋 ⿰木牚 +U+6A5E 橞 exact_ids unresolved components: 𤰔 ⿰木惠 +U+6A5F 機 exact_ids unresolved components: 戍 ⿰木幾 +U+6A60 橠 exact_ids unresolved components: 袲 ⿰木袲 +U+6A63 橣 exact_ids unresolved components: 甯 ⿰木甯 +U+6A66 橦 exact_ids unresolved components: 里 ⿰木童 +U+6A67 橧 exact_ids unresolved components: 曾 ⿰木曾 +U+6A6E 橮 exact_ids unresolved components: 貿 ⿰木貿 +U+6A70 橰 exact_ids unresolved components: 臯 ⿰木臯 +U+6A71 橱 exact_ids unresolved components: 厨 ⿰木厨 +U+6A75 橵 exact_ids unresolved components: 散 ⿰木散 +U+6A76 橶 exact_ids unresolved components: 戟 ⿰木戟 +U+6A77 橷 exact_ids unresolved components: 兠 ⿰木兠 +U+6A7A 橺 exact_ids unresolved components: 間 ⿰木間 +U+6A7B 橻 missing missing +U+6A7F 橿 exact_ids unresolved components: 三 ⿰木畺 +U+6A80 檀 exact_ids unresolved components: 回 ⿰木亶 +U+6A81 檁 exact_ids unresolved components: 回 ⿰木稟 +U+6A83 檃 missing missing +U+6A84 檄 exact_ids unresolved components: 敫 ⿰木敫 +U+6A85 檅 exact_ids unresolved components: 歲 ⿰木歲 +U+6A88 檈 exact_ids unresolved components: 睘 ⿰木睘 +U+6A89 檉 exact_ids unresolved components: 𦔻 ⿰木聖 +U+6A8A 檊 exact_ids unresolved components: 幹 ⿰木幹 +U+6A8E 檎 exact_ids unresolved components: 凶 ⿰木禽 +U+6A90 檐 exact_ids unresolved components: 詹 ⿰木詹 +U+6A93 檓 exact_ids unresolved components: 毀 ⿰木毀 +U+6A94 檔 exact_ids unresolved components: 冋 ⿰木當 +U+6A97 檗 exact_ids unresolved components: 𡰪 ⿱辟木 +U+6A98 檘 exact_ids unresolved components: 𡰪 ⿰木辟 +U+6A9C 檜 exact_ids unresolved components: 曾 ⿰木會 +U+6A9D 檝 exact_ids unresolved components: 戈 ⿰木戢 +U+6A9E 檞 exact_ids unresolved components: 解 ⿰木解 +U+6AA0 檠 exact_ids unresolved components: 句 ⿱敬木 +U+6AA1 檡 exact_ids unresolved components: 𢆉 ⿰木睪 +U+6AA2 檢 exact_ids unresolved components: 僉 ⿰木僉 +U+6AA3 檣 exact_ids unresolved components: 回 ⿰木嗇 +U+6AA5 檥 exact_ids unresolved components: 義 ⿰木義 +U+6AA9 檩 exact_ids unresolved components: 禀 ⿰木禀 +U+6AAA 檪 exact_ids unresolved components: 楽 ⿰木楽 +U+6AAB 檫 exact_ids unresolved components: 祭 ⿰木察 +U+6AAC 檬 exact_ids unresolved components: 冃 ⿰木蒙 +U+6AAE 檮 exact_ids unresolved components: 壽 ⿰木壽 +U+6AB1 檱 exact_ids unresolved components: 亇 ⿰木箕 +U+6AB2 檲 exact_ids unresolved components: 團 ⿰木團 +U+6AB3 檳 exact_ids unresolved components: 賓 ⿰木賓 +U+6AB6 檶 exact_ids unresolved components: 區 ⿰木奩 +U+6AB8 檸 exact_ids unresolved components: 寍 ⿰木寧 +U+6AB9 檹 exact_ids unresolved components: 旖 ⿰木旖 +U+6ABA 檺 exact_ids unresolved components: 豪 ⿰木豪 +U+6ABB 檻 exact_ids unresolved components: 監 ⿰木監 +U+6ABC 檼 missing missing +U+6ABF 檿 exact_ids unresolved components: 冃 ⿱厭木 +U+6AC3 櫃 exact_ids unresolved components: 匱 ⿰木匱 +U+6AC4 櫄 exact_ids unresolved components: 熏 ⿰木熏 +U+6ACA 櫊 exact_ids unresolved components: 閣 ⿰木閣 +U+6ACB 櫋 exact_ids unresolved components: 臱 ⿰木臱 +U+6ACF 櫏 exact_ids unresolved components: 遷 ⿰木遷 +U+6AD2 櫒 exact_ids unresolved components: 祭 ⿰木蔡 +U+6AD7 櫗 exact_ids unresolved components: 戌 ⿰木蔑 +U+6AD9 櫙 exact_ids unresolved components: 區 ⿰木蓲 +U+6ADA 櫚 exact_ids unresolved components: 閭 ⿰木閭 +U+6ADB 櫛 exact_ids unresolved components: 亇 ⿰木節 +U+6ADF 櫟 exact_ids unresolved components: 樂 ⿰木樂 +U+6AE0 櫠 exact_ids unresolved components: 發 ⿰木廢 +U+6AE1 櫡 exact_ids unresolved components: 亇 ⿰木箸 +U+6AE2 櫢 exact_ids unresolved components: 婁 ⿰木數 +U+6AE3 櫣 missing missing +U+6AE4 櫤 exact_ids unresolved components: 亇 ⿰木箭 +U+6AE6 櫦 exact_ids unresolved components: 慶 ⿰木慶 +U+6AE8 櫨 exact_ids unresolved components: 𧆨 ⿰木盧 +U+6AE9 櫩 exact_ids unresolved components: 閻 ⿰木閻 +U+6AF0 櫰 exact_ids unresolved components: 褱 ⿰木褱 +U+6AF1 櫱 exact_ids unresolved components: 𡴎 ⿱辥木 +U+6AF4 櫴 exact_ids unresolved components: 賴 ⿰木賴 +U+6AF6 櫶 exact_ids unresolved components: 憲 ⿰木憲 +U+6AFA 櫺 exact_ids unresolved components: 𠱠 ⿰木霝 +U+6AFC 櫼 exact_ids unresolved components: 韱 ⿰木韱 +U+6AFD 櫽 exact_ids unresolved components: 隱 ⿱隱木 +U+6AFE 櫾 exact_ids unresolved components: 繇 ⿰木繇 +U+6AFF 櫿 exact_ids unresolved components: 呂 ⿰木營 +U+6B00 欀 exact_ids unresolved components: 襄 ⿰木襄 +U+6B03 欃 exact_ids unresolved components: 毚 ⿰木毚 +U+6B04 欄 exact_ids unresolved components: 闌 ⿰木闌 +U+6B09 欉 exact_ids unresolved components: 叢 ⿰木叢 +U+6B0C 欌 exact_ids unresolved components: 臧 ⿰木藏 +U+6B0D 欍 exact_ids unresolved components: 舊 ⿰木舊 +U+6B10 欐 exact_ids unresolved components: 丽 ⿰木麗 +U+6B13 欓 exact_ids unresolved components: 冋 ⿰木黨 +U+6B15 欕 exact_ids unresolved components: 𠪚 ⿰木嚴 +U+6B16 欖 exact_ids unresolved components: 覽 ⿰木覽 +U+6B17 欗 exact_ids unresolved components: 闌 ⿰木蘭 +U+6B18 欘 exact_ids unresolved components: 屬 ⿰木屬 +U+6B1B 欛 exact_ids unresolved components: 䩗 ⿰木霸 +U+6B1D 欝 missing missing +U+6B1E 欞 exact_ids unresolved components: 𠱠 ⿰木靈 +U+6B26 欦 exact_ids unresolved components: ㇇ ⿰今欠 +U+6B27 欧 exact_ids unresolved components: 区 ⿰区欠 +U+6B28 欨 exact_ids unresolved components: 句 ⿰句欠 +U+6B2B 欫 missing missing +U+6B2C 欬 exact_ids unresolved components: 亥 ⿰亥欠 +U+6B2D 欭 exact_ids unresolved components: 因 ⿰因欠 +U+6B30 欰 exact_ids unresolved components: 血 ⿰血欠 +U+6B33 欳 missing missing +U+6B35 欵 missing missing +U+6B37 欷 exact_ids unresolved components: 布 ⿰希欠 +U+6B3E 款 missing missing +U+6B3F 欿 exact_ids unresolved components: ⺈ ⿰臽欠 +U+6B41 歁 exact_ids unresolved components: 匹 ⿰甚欠 +U+6B47 歇 exact_ids unresolved components: 匃 ⿰曷欠 +U+6B4A 歊 exact_ids unresolved components: 高 ⿰高欠 +U+6B4B 歋 exact_ids unresolved components: 虒 ⿰虒欠 +U+6B4E 歎 exact_ids structural collision: 歏 ⿰堇欠 +U+6B4F 歏 exact_ids structural collision: 歎 ⿰堇欠 +U+6B50 歐 exact_ids unresolved components: 區 ⿰區欠 +U+6B52 歒 exact_ids unresolved components: 啇 ⿰啇欠 +U+6B53 歓 missing missing +U+6B5A 歚 exact_ids unresolved components: 善 ⿰善欠 +U+6B5B 歛 exact_ids unresolved components: 僉 ⿰僉欠 +U+6B5C 歜 exact_ids unresolved components: 𠣜 ⿰蜀欠 +U+6B5D 歝 exact_ids unresolved components: 𢆉 ⿰睪欠 +U+6B60 歠 missing missing +U+6B66 武 missing missing +U+6B70 歰 missing missing +U+6B71 歱 exact_ids unresolved components: 里 ⿰止重 +U+6B72 歲 missing missing +U+6B73 歳 missing missing +U+6B74 歴 missing missing +U+6B75 歵 exact_ids unresolved components: 龶 ⿰止責 +U+6B78 歸 missing missing +U+6B7F 歿 missing missing +U+6B87 殇 missing missing +U+6B88 殈 exact_ids unresolved components: 血 ⿰歹血 +U+6B89 殉 exact_ids unresolved components: 旬 ⿰歹旬 +U+6B8B 残 exact_ids unresolved components: 𢦑 ⿰歹𢦑 +U+6B8C 殌 exact_ids unresolved components: 巠 ⿰歹巠 +U+6B93 殓 exact_ids unresolved components: 佥 ⿰歹佥 +U+6B94 殔 exact_ids unresolved components: 隶 ⿰歹隶 +U+6B97 殗 exact_ids unresolved components: 电 ⿰歹奄 +U+6B98 殘 exact_ids unresolved components: 戈 ⿰歹戔 +U+6B9A 殚 exact_ids unresolved components: 单 ⿰歹单 +U+6B9B 殛 exact_ids unresolved components: 亟 ⿰歹亟 +U+6B9F 殟 exact_ids unresolved components: 囚 ⿰歹𥁕 +U+6BA4 殤 missing missing +U+6BA5 殥 exact_ids unresolved components: 寅 ⿰歹寅 +U+6BA7 殧 exact_ids unresolved components: 京 ⿰歹就 +U+6BA9 殩 exact_ids unresolved components: 𣦼 ⿰歹粲 +U+6BAB 殫 exact_ids unresolved components: 單 ⿰歹單 +U+6BAC 殬 exact_ids unresolved components: 𢆉 ⿰歹睪 +U+6BAD 殭 exact_ids unresolved components: 三 ⿰歹畺 +U+6BAE 殮 exact_ids unresolved components: 僉 ⿰歹僉 +U+6BAF 殯 exact_ids unresolved components: 賓 ⿰歹賓 +U+6BB1 殱 exact_ids unresolved components: 韯 ⿰歹韯 +U+6BB2 殲 exact_ids unresolved components: 韱 ⿰歹韱 +U+6BB4 殴 exact_ids unresolved components: 区 ⿰区殳 +U+6BB5 段 missing missing +U+6BB9 殹 exact_ids unresolved components: 医 ⿰医殳 +U+6BBB 殻 missing missing +U+6BBC 殼 missing missing +U+6BBF 殿 missing missing +U+6BC0 毀 missing missing +U+6BC1 毁 missing missing +U+6BC2 毂 missing missing +U+6BC3 毃 exact_ids unresolved components: 高 ⿰高殳 +U+6BC6 毆 exact_ids unresolved components: 區 ⿰區殳 +U+6BC8 毈 exact_ids unresolved components: 段 ⿰卵段 +U+6BC9 毉 exact_ids unresolved components: 医 ⿱殹巫 +U+6BCA 毊 exact_ids unresolved components: 冋 ⿱殸喬 +U+6BCE 毎 missing missing +U+6BD2 毒 exact_ids unresolved components: 龶 ⿱龶毋 +U+6BDA 毚 missing missing +U+6BE5 毥 exact_ids unresolved components: 旬 ⿰毛旬 +U+6BE7 毧 exact_ids unresolved components: 戈 ⿰毛戎 +U+6BEB 毫 missing missing +U+6BF1 毱 exact_ids unresolved components: 匊 ⿰毛匊 +U+6BF5 毵 exact_ids unresolved components: 参 ⿰参毛 +U+6BF6 毶 exact_ids unresolved components: 参 ⿰毛参 +U+6BF7 毷 exact_ids unresolved components: 冃 ⿰冒毛 +U+6BFB 毻 missing missing +U+6BFC 毼 exact_ids unresolved components: 匃 ⿰曷毛 +U+6BFD 毽 exact_ids unresolved components: 聿 ⿰毛建 +U+6BFE 毾 exact_ids unresolved components: 冃 ⿰𦐇毛 +U+6BFF 毿 exact_ids unresolved components: 參 ⿰參毛 +U+6C00 氀 exact_ids unresolved components: 婁 ⿰婁毛 +U+6C02 氂 missing missing +U+6C03 氃 exact_ids unresolved components: 里 ⿰童毛 +U+6C05 氅 exact_ids unresolved components: 冋 ⿱敞毛 +U+6C08 氈 exact_ids unresolved components: 回 ⿰亶毛 +U+6C0A 氊 exact_ids unresolved components: 回 ⿰毛亶 +U+6C0B 氋 exact_ids unresolved components: 冃 ⿰蒙毛 +U+6C0E 氎 exact_ids unresolved components: 𤴁 ⿰𤴁毛 +U+6C18 氘 missing missing +U+6C20 氠 exact_ids unresolved components: 申 ⿱气申 +U+6C24 氤 exact_ids unresolved components: 因 ⿱气因 +U+6C26 氦 exact_ids unresolved components: 亥 ⿱气亥 +U+6C2B 氫 exact_ids unresolved components: 巠 ⿱气巠 +U+6C30 氰 exact_ids unresolved components: 龶 ⿱气青 +U+6C33 氳 exact_ids unresolved components: 囚 ⿱气𥁕 +U+6C38 永 missing missing +U+6C4B 汋 exact_ids unresolved components: 勺 ⿰氵勺 +U+6C4E 汎 exact_ids unresolved components: 凡 ⿰氵凡 +U+6C54 汔 exact_ids unresolved components: 乞 ⿰氵乞 +U+6C64 汤 exact_ids unresolved components: 𠃓 ⿰氵𠃓 +U+6C6E 汮 exact_ids unresolved components: 匀 ⿰氵匀 +U+6C6F 汯 exact_ids unresolved components: 厷 ⿰氵厷 +U+6C70 汰 exact_ids structural collision: 汱 ⿰氵太 +U+6C71 汱 exact_ids structural collision: 汰 ⿰氵犬 +U+6C72 汲 exact_ids unresolved components: ㇏ ⿰氵及 +U+6C73 汳 exact_ids unresolved components: 反 ⿰氵反 +U+6C75 汵 exact_ids unresolved components: ㇇ ⿰氵今 +U+6C79 汹 exact_ids unresolved components: 凶 ⿰氵凶 +U+6C9F 沟 exact_ids unresolved components: 勾 ⿰氵勾 +U+6CA2 沢 exact_ids unresolved components: ㇏ ⿰氵尺 +U+6CA4 沤 exact_ids unresolved components: 区 ⿰氵区 +U+6CA8 沨 exact_ids unresolved components: 风 ⿰氵风 +U+6CAB 沫 exact_ids structural collision: 沬,泍 ⿰氵末 +U+6CAC 沬 exact_ids structural collision: 沫,泍 ⿰氵未 +U+6CAD 沭 exact_ids unresolved components: 朮 ⿰氵朮 +U+6CB5 沵 exact_ids unresolved components: ⺈ ⿰氵尔 +U+6CB7 沷 exact_ids unresolved components: 犮 ⿰氵犮 +U+6CB9 油 exact_ids unresolved components: 由 ⿰氵由 +U+6CC0 泀 exact_ids unresolved components: 司 ⿰氵司 +U+6CC2 泂 exact_ids unresolved components: 冋 ⿰氵冋 +U+6CC3 泃 exact_ids unresolved components: 句 ⿰氵句 +U+6CC5 泅 exact_ids unresolved components: 囚 ⿰氵囚 +U+6CCD 泍 exact_ids structural collision: 沫,沬 ⿰氵本 +U+6CD6 泖 exact_ids unresolved components: 卯 ⿰氵卯 +U+6CD7 泗 exact_ids unresolved components: 四 ⿰氵四 +U+6CE1 泡 exact_ids unresolved components: 包 ⿰氵包 +U+6CE7 泧 exact_ids unresolved components: 戈 ⿰氵戉 +U+6CF3 泳 exact_ids unresolved components: 永 ⿰氵永 +U+6D04 洄 exact_ids unresolved components: 回 ⿰氵回 +U+6D07 洇 exact_ids unresolved components: 因 ⿰氵因 +U+6D08 洈 exact_ids unresolved components: ⺈ ⿰氵危 +U+6D09 洉 exact_ids unresolved components: 后 ⿰氵后 +U+6D0A 洊 exact_ids unresolved components: 存 ⿰氵存 +U+6D0D 洍 exact_ids unresolved components: 𦣞 ⿰氵𦣞 +U+6D1E 洞 exact_ids unresolved components: 同 ⿰氵同 +U+6D21 洡 exact_ids unresolved components: 耒 ⿰氵耒 +U+6D22 洢 exact_ids unresolved components: 尹 ⿰氵伊 +U+6D25 津 exact_ids unresolved components: 聿 ⿰氵聿 +U+6D2B 洫 exact_ids unresolved components: 血 ⿰氵血 +U+6D2C 洬 exact_ids unresolved components: 夙 ⿰氵夙 +U+6D2D 洭 exact_ids unresolved components: 匡 ⿰氵匡 +U+6D35 洵 exact_ids unresolved components: 旬 ⿰氵旬 +U+6D36 洶 exact_ids unresolved components: 匈 ⿰氵匈 +U+6D38 洸 exact_ids unresolved components: ⺌ ⿰氵光 +U+6D39 洹 exact_ids unresolved components: 亘 ⿰氵亘 +U+6D3E 派 missing missing +U+6D44 浄 exact_ids unresolved components: 争 ⿰氵争 +U+6D45 浅 exact_ids unresolved components: 𢦑 ⿰氵𢦑 +U+6D46 浆 missing missing +U+6D47 浇 exact_ids unresolved components: 尧 ⿰氵尧 +U+6D4C 浌 exact_ids unresolved components: 戈 ⿰氵伐 +U+6D55 浕 exact_ids unresolved components: ㇏ ⿰氵尽 +U+6D5B 浛 exact_ids unresolved components: ㇇ ⿰氵含 +U+6D5F 浟 exact_ids unresolved components: 攸 ⿰氵攸 +U+6D60 浠 exact_ids unresolved components: 布 ⿰氵希 +U+6D64 浤 exact_ids unresolved components: 厷 ⿰氵宏 +U+6D6B 浫 exact_ids unresolved components: ⺳ ⿰氵罕 +U+6D6C 浬 exact_ids unresolved components: 里 ⿰氵里 +U+6D83 涃 exact_ids unresolved components: 困 ⿰氵困 +U+6D84 涄 exact_ids unresolved components: 由 ⿰氵甹 +U+6D87 涇 exact_ids unresolved components: 巠 ⿰氵巠 +U+6D89 涉 exact_ids structural collision: 渉 ⿰氵步 +U+6D90 涐 exact_ids unresolved components: 戈 ⿰氵我 +U+6D92 涒 exact_ids unresolved components: 尹 ⿰氵君 +U+6D94 涔 exact_ids unresolved components: ㇇ ⿰氵岑 +U+6D97 涗 exact_ids structural collision: 涚 ⿰氵兌 +U+6D9A 涚 exact_ids structural collision: 涗 ⿰氵兌 +U+6D9E 涞 exact_ids unresolved components: 来 ⿰氵来 +U+6DA0 涠 exact_ids unresolved components: 围 ⿰氵围 +U+6DA1 涡 exact_ids structural collision: 涢 ⿰氵呙 +U+6DA2 涢 exact_ids structural collision: 涡 ⿰氵员 +U+6DA3 涣 exact_ids unresolved components: ⺈ ⿰氵奂 +U+6DA5 涥 exact_ids unresolved components: 亨 ⿰氵亨 +U+6DA6 润 exact_ids unresolved components: 闰 ⿰氵闰 +U+6DA7 涧 exact_ids unresolved components: 间 ⿰氵间 +U+6DA9 涩 missing missing +U+6DAC 涬 exact_ids unresolved components: 𢆉 ⿰氵幸 +U+6DAE 涮 exact_ids unresolved components: 刷 ⿰氵刷 +U+6DB2 液 exact_ids unresolved components: 夜 ⿰氵夜 +U+6DB8 涸 exact_ids unresolved components: 固 ⿰氵固 +U+6DBC 涼 exact_ids unresolved components: 京 ⿰氵京 +U+6DBF 涿 exact_ids unresolved components: 豖 ⿰氵豖 +U+6DC0 淀 exact_ids unresolved components: 𤴓 ⿰氵定 +U+6DC4 淄 exact_ids structural collision: 湽 ⿰氵甾 +U+6DCA 淊 exact_ids unresolved components: ⺈ ⿰氵臽 +U+6DCC 淌 exact_ids unresolved components: 冋 ⿰氵尚 +U+6DCD 淍 exact_ids unresolved components: 周 ⿰氵周 +U+6DD2 淒 exact_ids unresolved components: 妻 ⿰氵妻 +U+6DD7 淗 exact_ids unresolved components: 匊 ⿰氵匊 +U+6DD8 淘 exact_ids unresolved components: 匋 ⿰氵匋 +U+6DDB 淛 exact_ids unresolved components: 制 ⿰氵制 +U+6DE2 淢 exact_ids unresolved components: 或 ⿰氵或 +U+6DEA 淪 exact_ids unresolved components: 𠕁 ⿰氵侖 +U+6DEC 淬 exact_ids unresolved components: 卒 ⿰氵卒 +U+6DEF 淯 exact_ids unresolved components: 育 ⿰氵育 +U+6DF0 淰 exact_ids unresolved components: ㇇ ⿰氵念 +U+6DF1 深 exact_ids unresolved components: ⺳ ⿰氵罙 +U+6DF3 淳 exact_ids unresolved components: 享 ⿰氵享 +U+6DF8 淸 exact_ids unresolved components: 円,龶 ⿰氵靑 +U+6DF9 淹 exact_ids unresolved components: 电 ⿰氵奄 +U+6DFA 淺 exact_ids unresolved components: 戈 ⿰氵戔 +U+6DFB 添 exact_ids unresolved components: 㣺 ⿰氵忝 +U+6E01 渁 missing missing +U+6E05 清 exact_ids unresolved components: 龶 ⿰氵青 +U+6E07 渇 missing missing +U+6E08 済 exact_ids unresolved components: 斉 ⿰氵斉 +U+6E09 渉 exact_ids structural collision: 涉 ⿰氵步 +U+6E0A 渊 missing missing +U+6E0B 渋 missing missing +U+6E0D 渍 exact_ids unresolved components: 龶 ⿰氵责 +U+6E11 渑 exact_ids unresolved components: 电 ⿰氵黾 +U+6E13 渓 missing missing +U+6E16 渖 exact_ids unresolved components: 申 ⿰氵审 +U+6E17 渗 exact_ids unresolved components: 参 ⿰氵参 +U+6E19 渙 exact_ids unresolved components: 奐 ⿰氵奐 +U+6E1B 減 exact_ids unresolved components: 咸 ⿰氵咸 +U+6E1D 渝 exact_ids unresolved components: 兪 ⿰氵兪 +U+6E1F 渟 exact_ids unresolved components: 亭 ⿰氵亭 +U+6E21 渡 exact_ids unresolved components: 度 ⿰氵度 +U+6E2A 渪 exact_ids unresolved components: 禹 ⿰氵禹 +U+6E32 渲 exact_ids unresolved components: 亘 ⿰氵宣 +U+6E34 渴 exact_ids unresolved components: 匃 ⿰氵曷 +U+6E39 渹 exact_ids unresolved components: 訇 ⿰氵訇 +U+6E3C 渼 exact_ids unresolved components: 美 ⿰氵美 +U+6E3D 渽 exact_ids unresolved components: 哉 ⿰氵哉 +U+6E43 湃 exact_ids unresolved components: 拜 ⿰氵拜 +U+6E55 湕 exact_ids unresolved components: 聿 ⿰氵建 +U+6E5A 湚 exact_ids unresolved components: 胤 ⿰氵胤 +U+6E5B 湛 exact_ids unresolved components: 匹 ⿰氵甚 +U+6E5C 湜 exact_ids unresolved components: 𤴓 ⿰氵是 +U+6E62 湢 exact_ids unresolved components: 畐 ⿰氵畐 +U+6E69 湩 exact_ids unresolved components: 里 ⿰氵重 +U+6E6D 湭 exact_ids unresolved components: 酉 ⿰氵酋 +U+6E70 湰 missing missing +U+6E73 湳 exact_ids unresolved components: 南 ⿰氵南 +U+6E78 湸 exact_ids unresolved components: 亮 ⿰氵亮 +U+6E79 湹 exact_ids unresolved components: 里 ⿰氵厘 +U+6E7B 湻 exact_ids unresolved components: 亯 ⿰氵亯 +U+6E7C 湼 missing missing +U+6E7D 湽 exact_ids structural collision: 淄 ⿰氵甾 +U+6E80 満 missing missing +U+6E84 溄 missing missing +U+6E85 溅 exact_ids unresolved components: 戈 ⿰氵贱 +U+6E8C 溌 exact_ids unresolved components: 発 ⿰氵発 +U+6E8D 溍 exact_ids unresolved components: 晉 ⿰氵晉 +U+6E8F 溏 exact_ids unresolved components: 唐 ⿰氵唐 +U+6E92 溒 exact_ids unresolved components: 袁 ⿰氵袁 +U+6E94 溔 exact_ids unresolved components: 羔 ⿰氵羔 +U+6E95 溕 exact_ids unresolved components: 冃 ⿰氵冡 +U+6E97 溗 exact_ids unresolved components: 北 ⿰氵乘 +U+6E9C 溜 exact_ids unresolved components: 留 ⿰氵留 +U+6EA2 溢 exact_ids unresolved components: 益 ⿰氵益 +U+6EA3 溣 exact_ids unresolved components: 𠕁 ⿰氵倫 +U+6EA8 溨 exact_ids unresolved components: 栽 ⿰氵栽 +U+6EAB 溫 exact_ids unresolved components: 囚 ⿰氵𥁕 +U+6EAD 溭 exact_ids unresolved components: 畟 ⿰氵畟 +U+6EAE 溮 exact_ids unresolved components: 師 ⿰氵師 +U+6EB2 溲 exact_ids unresolved components: 𦥔 ⿰氵叟 +U+6EB7 溷 exact_ids unresolved components: 圂 ⿰氵圂 +U+6EB8 溸 exact_ids unresolved components: 龶 ⿰氵素 +U+6EBB 溻 exact_ids unresolved components: 冃 ⿰氵𦐇 +U+6EBC 溼 exact_ids unresolved components: 𡌥 ⿰氵𡌥 +U+6EC4 滄 exact_ids unresolved components: 倉 ⿰氵倉 +U+6EC5 滅 exact_ids unresolved components: 烕 ⿰氵烕 +U+6EC8 滈 exact_ids unresolved components: 高 ⿰氵高 +U+6EC9 滉 exact_ids unresolved components: ⺌ ⿰氵晃 +U+6ECC 滌 exact_ids unresolved components: 條 ⿰氵條 +U+6ECD 滍 exact_ids unresolved components: 蚩 ⿰氵蚩 +U+6ECF 滏 exact_ids unresolved components: 釜 ⿰氵釜 +U+6ED5 滕 exact_ids unresolved components: 𣳾 ⿰月𣳾 +U+6ED6 滖 exact_ids unresolved components: 衰 ⿰氵衰 +U+6ED7 滗 exact_ids unresolved components: 亇 ⿰氵笔 +U+6ED8 滘 missing missing +U+6ED9 滙 exact_ids unresolved components: 龨 ⿰氵龨 +U+6EDA 滚 exact_ids unresolved components: 衮 ⿰氵衮 +U+6EDD 滝 exact_ids unresolved components: 电 ⿰氵竜 +U+6EDF 滟 exact_ids unresolved components: ⺈ ⿰氵艳 +U+6EE1 满 missing missing +U+6EE5 滥 exact_ids unresolved components: 监 ⿰氵监 +U+6EEB 滫 exact_ids unresolved components: 脩 ⿰氵脩 +U+6EF1 滱 exact_ids unresolved components: 寇 ⿰氵寇 +U+6EF2 滲 exact_ids unresolved components: 參 ⿰氵參 +U+6EF4 滴 exact_ids unresolved components: 啇 ⿰氵啇 +U+6EF6 滶 exact_ids unresolved components: 敖 ⿰氵敖 +U+6EFA 滺 exact_ids unresolved components: 攸 ⿰氵悠 +U+6EFC 滼 exact_ids unresolved components: 凡 ⿰氵梵 +U+6EFD 滽 exact_ids unresolved components: 庸 ⿰氵庸 +U+6EFE 滾 exact_ids unresolved components: 袞 ⿰氵袞 +U+6F08 漈 exact_ids unresolved components: 祭 ⿰氵祭 +U+6F0A 漊 exact_ids unresolved components: 婁 ⿰氵婁 +U+6F0B 漋 exact_ids unresolved components: 隆 ⿰氵隆 +U+6F0D 漍 exact_ids unresolved components: 國 ⿰氵國 +U+6F0E 漎 exact_ids unresolved components: 從 ⿰氵從 +U+6F10 漐 exact_ids unresolved components: 𢆉 ⿱執水 +U+6F13 漓 exact_ids unresolved components: 凶 ⿰氵离 +U+6F14 演 exact_ids unresolved components: 寅 ⿰氵寅 +U+6F15 漕 exact_ids unresolved components: 曹 ⿰氵曹 +U+6F17 漗 exact_ids unresolved components: 囱 ⿰氵悤 +U+6F19 漙 exact_ids unresolved components: 𤰔 ⿰氵專 +U+6F1A 漚 exact_ids unresolved components: 區 ⿰氵區 +U+6F1B 漛 exact_ids unresolved components: 𣳾 ⿰氵𣳾 +U+6F1F 漟 exact_ids unresolved components: 冋 ⿰氵堂 +U+6F21 漡 missing missing +U+6F22 漢 exact_ids unresolved components: 𦰩 ⿰氵𦰩 +U+6F25 漥 exact_ids structural collision: 潌 ⿰氵窒 +U+6F26 漦 missing missing +U+6F27 漧 exact_ids unresolved components: 乞 ⿰氵乾 +U+6F29 漩 exact_ids unresolved components: 旋 ⿰氵旋 +U+6F2B 漫 exact_ids unresolved components: 曼 ⿰氵曼 +U+6F2C 漬 exact_ids unresolved components: 龶 ⿰氵責 +U+6F2D 漭 exact_ids unresolved components: 莽 ⿰氵莽 +U+6F2E 漮 exact_ids unresolved components: 隶 ⿰氵康 +U+6F37 漷 exact_ids unresolved components: 享 ⿰氵郭 +U+6F3A 漺 exact_ids unresolved components: 㸚 ⿰氵爽 +U+6F3D 漽 exact_ids unresolved components: 犀 ⿰氵犀 +U+6F3E 漾 exact_ids unresolved components: 羕 ⿰氵羕 +U+6F3F 漿 exact_ids unresolved components: 將 ⿱將水 +U+6F40 潀 exact_ids unresolved components: 眾 ⿰氵眾 +U+6F41 潁 missing missing +U+6F42 潂 missing missing +U+6F43 潃 exact_ids unresolved components: 脩 ⿰氵脩 +U+6F45 潅 missing missing +U+6F47 潇 exact_ids unresolved components: 肃 ⿰氵萧 +U+6F48 潈 missing missing +U+6F4B 潋 exact_ids unresolved components: 佥 ⿰氵敛 +U+6F4C 潌 exact_ids structural collision: 漥 ⿰氵窒 +U+6F4E 潎 exact_ids unresolved components: 㡀 ⿰氵敝 +U+6F51 潑 exact_ids unresolved components: 發 ⿰氵發 +U+6F53 潓 exact_ids unresolved components: 𤰔 ⿰氵惠 +U+6F59 潙 exact_ids unresolved components: 爲 ⿰氵爲 +U+6F5F 潟 exact_ids unresolved components: 灳 ⿰氵舄 +U+6F61 潡 exact_ids unresolved components: 享 ⿰氵敦 +U+6F63 潣 exact_ids unresolved components: 閔 ⿰氵閔 +U+6F64 潤 exact_ids unresolved components: 閏 ⿰氵閏 +U+6F66 潦 exact_ids unresolved components: 昚 ⿰氵尞 +U+6F67 潧 exact_ids unresolved components: 曾 ⿰氵曾 +U+6F68 潨 exact_ids unresolved components: 血 ⿰氵衆 +U+6F6C 潬 exact_ids unresolved components: 單 ⿰氵單 +U+6F6E 潮 exact_ids unresolved components: 朝 ⿰氵朝 +U+6F6F 潯 exact_ids unresolved components: 尋 ⿰氵尋 +U+6F75 潵 exact_ids unresolved components: 散 ⿰氵散 +U+6F77 潷 exact_ids unresolved components: 亇,聿 ⿰氵筆 +U+6F78 潸 missing missing +U+6F7C 潼 exact_ids unresolved components: 里 ⿰氵童 +U+6F7F 潿 exact_ids unresolved components: 圍 ⿰氵圍 +U+6F80 澀 exact_ids unresolved components: 歰 ⿰氵歰 +U+6F82 澂 missing missing +U+6F85 澅 exact_ids unresolved components: 畫 ⿰氵畫 +U+6F88 澈 missing missing +U+6F89 澉 exact_ids unresolved components: 敢 ⿰氵敢 +U+6F8A 澊 exact_ids unresolved components: 酉 ⿰氵尊 +U+6F8B 澋 exact_ids unresolved components: 京 ⿰氵景 +U+6F93 澓 exact_ids unresolved components: 复 ⿰氵復 +U+6F96 澖 exact_ids unresolved components: 閑 ⿰氵閑 +U+6F97 澗 exact_ids unresolved components: 間 ⿰氵間 +U+6F99 澙 exact_ids unresolved components: 灳 ⿰氵舄 +U+6F9A 澚 missing missing +U+6F9C 澜 exact_ids unresolved components: 阑 ⿰氵阑 +U+6F9D 澝 exact_ids unresolved components: 甯 ⿰氵甯 +U+6F9F 澟 exact_ids unresolved components: 回 ⿰氵稟 +U+6FA2 澢 exact_ids unresolved components: 冋 ⿰氵當 +U+6FA3 澣 exact_ids unresolved components: 幹 ⿰氵幹 +U+6FA4 澤 exact_ids unresolved components: 𢆉 ⿰氵睪 +U+6FA5 澥 exact_ids unresolved components: 解 ⿰氵解 +U+6FA8 澨 exact_ids unresolved components: 亇 ⿰氵筮 +U+6FA9 澩 missing missing +U+6FAD 澭 exact_ids unresolved components: 雍 ⿰氵雍 +U+6FAE 澮 exact_ids unresolved components: 曾 ⿰氵會 +U+6FAF 澯 exact_ids unresolved components: 𣦼 ⿰氵粲 +U+6FB0 澰 exact_ids unresolved components: 僉 ⿰氵僉 +U+6FB1 澱 exact_ids unresolved components: 殿 ⿰氵殿 +U+6FB4 澴 exact_ids unresolved components: 睘 ⿰氵睘 +U+6FB6 澶 exact_ids unresolved components: 回 ⿰氵亶 +U+6FB7 澷 exact_ids unresolved components: 冃 ⿰氵㬅 +U+6FB8 澸 exact_ids unresolved components: 咸 ⿰氵感 +U+6FB9 澹 exact_ids unresolved components: 詹 ⿰氵詹 +U+6FBC 澼 exact_ids unresolved components: 𡰪 ⿰氵辟 +U+6FC0 激 exact_ids unresolved components: 敫 ⿰氵敫 +U+6FC1 濁 exact_ids unresolved components: 𠣜 ⿰氵蜀 +U+6FC5 濅 missing missing +U+6FC7 濇 exact_ids unresolved components: 回 ⿰氵嗇 +U+6FC8 濈 exact_ids unresolved components: 戈 ⿰氵戢 +U+6FCA 濊 exact_ids unresolved components: 歲 ⿰氵歲 +U+6FCC 濌 exact_ids unresolved components: 里 ⿰重沓 +U+6FD1 濑 exact_ids unresolved components: ⺈ ⿰氵赖 +U+6FD3 濓 exact_ids unresolved components: 亷 ⿰氵亷 +U+6FD8 濘 exact_ids unresolved components: 寜 ⿰氵寜 +U+6FDB 濛 exact_ids unresolved components: 冃 ⿰氵蒙 +U+6FDC 濜 exact_ids unresolved components: 盡 ⿰氵盡 +U+6FE0 濠 exact_ids unresolved components: 豪 ⿰氵豪 +U+6FE2 濢 exact_ids unresolved components: 卒 ⿰氵翠 +U+6FE3 濣 exact_ids unresolved components: 斡 ⿰氵斡 +U+6FE4 濤 exact_ids unresolved components: 壽 ⿰氵壽 +U+6FE5 濥 exact_ids unresolved components: 寅 ⿰氵夤 +U+6FE6 濦 missing missing +U+6FE7 濧 exact_ids unresolved components: 𢆉 ⿰氵對 +U+6FEA 濪 exact_ids unresolved components: ⺈,龶 ⿰氵靘 +U+6FEB 濫 exact_ids unresolved components: 監 ⿰氵監 +U+6FEC 濬 exact_ids unresolved components: 眘 ⿰氵睿 +U+6FF1 濱 exact_ids unresolved components: 賓 ⿰氵賓 +U+6FF2 濲 exact_ids unresolved components: 榖 ⿰氵榖 +U+6FF5 濵 missing missing +U+6FF6 濶 exact_ids unresolved components: 䦚 ⿰氵䦚 +U+6FF8 濸 exact_ids unresolved components: 倉 ⿰氵蒼 +U+6FFA 濺 exact_ids unresolved components: 戈 ⿰氵賤 +U+6FFC 濼 exact_ids unresolved components: 樂 ⿰氵樂 +U+7004 瀄 exact_ids unresolved components: 亇 ⿰氵節 +U+7009 瀉 exact_ids unresolved components: 灳 ⿰氵寫 +U+700D 瀍 exact_ids unresolved components: 里,𡉀 ⿰氵廛 +U+700E 瀎 exact_ids unresolved components: 戌 ⿰氵蔑 +U+700F 瀏 exact_ids unresolved components: 𨥫 ⿰氵劉 +U+7010 瀐 exact_ids unresolved components: 韯 ⿰氵韯 +U+7012 瀒 exact_ids unresolved components: 𠾂 ⿰氵𠾂 +U+7013 瀓 exact_ids unresolved components: 徵 ⿰氵徵 +U+7014 瀔 exact_ids unresolved components: 穀 ⿰氵穀 +U+7017 瀗 exact_ids unresolved components: 憲 ⿰氵憲 +U+7018 瀘 exact_ids unresolved components: 𧆨 ⿰氵盧 +U+701A 瀚 exact_ids unresolved components: 翰 ⿰氵翰 +U+701B 瀛 exact_ids unresolved components: 嬴 ⿰氵嬴 +U+701E 瀞 exact_ids unresolved components: 争,龶 ⿰氵静 +U+7023 瀣 exact_ids unresolved components: 𣦼 ⿰氵餐 +U+7024 瀤 exact_ids unresolved components: 褱 ⿰氵褱 +U+7025 瀥 exact_ids unresolved components: 高 ⿰氵翯 +U+7028 瀨 exact_ids unresolved components: 賴 ⿰氵賴 +U+702B 瀫 exact_ids unresolved components: 縠 ⿰氵縠 +U+702F 瀯 exact_ids unresolved components: 呂 ⿰氵營 +U+7031 瀱 exact_ids unresolved components: 罽 ⿰氵罽 +U+7032 瀲 exact_ids unresolved components: 僉 ⿰氵斂 +U+7036 瀶 exact_ids unresolved components: 臨 ⿰氵臨 +U+7038 瀸 exact_ids unresolved components: 韱 ⿰氵韱 +U+703A 瀺 exact_ids unresolved components: 毚 ⿰氵毚 +U+703B 瀻 exact_ids unresolved components: 戴 ⿰氵戴 +U+703C 瀼 exact_ids unresolved components: 襄 ⿰氵襄 +U+703D 瀽 exact_ids unresolved components: 蹇 ⿰氵蹇 +U+703E 瀾 exact_ids unresolved components: 闌 ⿰氵闌 +U+7041 灁 exact_ids unresolved components: 闎 ⿰氵闎 +U+7042 灂 exact_ids unresolved components: 爵 ⿰氵爵 +U+7043 灃 exact_ids unresolved components: 𠁳 ⿰氵豐 +U+7046 灆 exact_ids unresolved components: 監 ⿰氵藍 +U+7047 灇 exact_ids unresolved components: 叢 ⿰氵叢 +U+704B 灋 missing missing +U+704D 灍 exact_ids unresolved components: 闕 ⿰氵闕 +U+704F 灏 exact_ids unresolved components: 京 ⿰氵颢 +U+7051 灑 exact_ids unresolved components: 丽 ⿰氵麗 +U+7054 灔 exact_ids unresolved components: ⺈ ⿰氵艶 +U+7055 灕 exact_ids unresolved components: 凶 ⿰氵離 +U+7057 灗 exact_ids unresolved components: 回 ⿰氵蟺 +U+7059 灙 exact_ids unresolved components: 冋 ⿰氵黨 +U+705A 灚 exact_ids unresolved components: 覺 ⿰氵覺 +U+705B 灛 exact_ids unresolved components: 闡 ⿰氵闡 +U+705C 灜 exact_ids unresolved components: 贏 ⿰氵贏 +U+705D 灝 exact_ids unresolved components: 京 ⿰氵顥 +U+705E 灞 exact_ids unresolved components: 䩗 ⿰氵霸 +U+705F 灟 exact_ids unresolved components: 屬 ⿰氵屬 +U+7060 灠 exact_ids unresolved components: 覽 ⿰氵覽 +U+7061 灡 exact_ids unresolved components: 闌 ⿰氵蘭 +U+7067 灧 exact_ids unresolved components: ⺈,𠁳 ⿰灃色 +U+7068 灨 exact_ids unresolved components: 贛 ⿰氵贛 +U+7069 灩 exact_ids unresolved components: 𠁳 ⿰氵豔 +U+706A 灪 exact_ids unresolved components: 鬱 ⿰氵鬱 +U+7073 灳 missing missing +U+707C 灼 exact_ids unresolved components: 勺 ⿰火勺 +U+7080 炀 exact_ids unresolved components: 𠃓 ⿰火𠃓 +U+708C 炌 exact_ids unresolved components: 介 ⿰火介 +U+708D 炍 exact_ids unresolved components: 反 ⿰火反 +U+70A0 炠 exact_ids unresolved components: 甲 ⿰火甲 +U+70A6 炦 exact_ids unresolved components: 犮 ⿰火犮 +U+70AE 炮 exact_ids unresolved components: 包 ⿰火包 +U+70AF 炯 exact_ids unresolved components: 冋 ⿰火冋 +U+70B0 炰 exact_ids unresolved components: 包 ⿱包灬 +U+70BC 炼 exact_ids unresolved components: 𫠣 ⿰火𫠣 +U+70BF 炿 missing missing +U+70C2 烂 exact_ids unresolved components: 三 ⿰火兰 +U+70C5 烅 exact_ids unresolved components: 血 ⿰火血 +U+70C9 烉 missing missing +U+70D4 烔 exact_ids unresolved components: 同 ⿰火同 +U+70D5 烕 missing missing +U+70D6 烖 missing missing +U+70D7 烗 exact_ids unresolved components: 亥 ⿰火亥 +U+70DC 烜 exact_ids unresolved components: 亘 ⿰火亘 +U+70DF 烟 exact_ids unresolved components: 因 ⿰火因 +U+70E7 烧 exact_ids unresolved components: 尧 ⿰火尧 +U+70EB 烫 exact_ids unresolved components: 𠃓 ⿱汤火 +U+70EC 烬 exact_ids unresolved components: ㇏ ⿰火尽 +U+70EF 烯 exact_ids unresolved components: 布 ⿰火希 +U+70F4 烴 exact_ids unresolved components: 巠 ⿰火巠 +U+70F5 烵 exact_ids unresolved components: 勺 ⿰火芍 +U+70F9 烹 exact_ids unresolved components: 亨 ⿱亨灬 +U+7102 焂 exact_ids unresolved components: 攸 ⿱攸火 +U+7104 焄 exact_ids unresolved components: 尹 ⿱君灬 +U+7108 焈 missing missing +U+710F 焏 missing missing +U+7111 焑 exact_ids unresolved components: 困 ⿰火困 +U+7113 焓 exact_ids unresolved components: ㇇ ⿰火含 +U+7114 焔 missing missing +U+7115 焕 exact_ids unresolved components: ⺈ ⿰火奂 +U+7116 焖 exact_ids unresolved components: 闷 ⿰火闷 +U+7117 焗 exact_ids unresolved components: 局 ⿰火局 +U+711B 焛 missing missing +U+711E 焞 exact_ids unresolved components: 享 ⿰火享 +U+711F 焟 exact_ids unresolved components: 龷 ⿰火昔 +U+7120 焠 exact_ids unresolved components: 卒 ⿰火卒 +U+7128 焨 exact_ids unresolved components: 冃 ⿰火冐 +U+7130 焰 exact_ids unresolved components: ⺈ ⿰火臽 +U+7132 焲 exact_ids unresolved components: 夜 ⿰火夜 +U+7134 焴 exact_ids unresolved components: 育 ⿰火育 +U+7135 焵 exact_ids unresolved components: 岡 ⿰火岡 +U+7139 焹 exact_ids unresolved components: 罔 ⿰火罔 +U+713E 焾 exact_ids unresolved components: ㇇ ⿰火念 +U+713F 焿 exact_ids unresolved components: 庚 ⿰火庚 +U+7141 煁 exact_ids unresolved components: 匹 ⿰火甚 +U+7144 煄 exact_ids unresolved components: 里 ⿰火重 +U+7145 煅 exact_ids unresolved components: 段 ⿰火段 +U+714A 煊 exact_ids unresolved components: 亘 ⿰火宣 +U+714F 煏 exact_ids unresolved components: 畐 ⿰火畐 +U+7155 煕 missing missing +U+7158 煘 exact_ids unresolved components: 咸 ⿰火咸 +U+715E 煞 missing missing +U+7161 煡 exact_ids unresolved components: 聿 ⿰火建 +U+7165 煥 exact_ids unresolved components: 奐 ⿰火奐 +U+7166 煦 exact_ids unresolved components: 句 ⿱昫灬 +U+716A 煪 exact_ids unresolved components: 酉 ⿰火酋 +U+716D 煭 missing missing +U+7175 煵 exact_ids unresolved components: 南 ⿰火南 +U+7176 煶 exact_ids unresolved components: 𤴓 ⿰火是 +U+7177 煷 exact_ids unresolved components: 亮 ⿰火亮 +U+7178 煸 exact_ids unresolved components: 𠕁 ⿰火扁 +U+717B 煻 exact_ids unresolved components: 唐 ⿰火唐 +U+717C 煼 exact_ids unresolved components: 芻 ⿰火芻 +U+717E 煾 exact_ids unresolved components: 因 ⿰火恩 +U+7180 熀 exact_ids unresolved components: ⺌ ⿰火晃 +U+7185 熅 exact_ids unresolved components: 囚 ⿰火𥁕 +U+7187 熇 exact_ids unresolved components: 高 ⿰火高 +U+7188 熈 missing missing +U+718A 熊 exact_ids unresolved components: 能 ⿱能灬 +U+718B 熋 exact_ids unresolved components: 能 ⿱能火 +U+718C 熌 exact_ids unresolved components: 閃 ⿰火閃 +U+718F 熏 missing missing +U+7197 熗 exact_ids unresolved components: 倉 ⿰火倉 +U+7198 熘 exact_ids unresolved components: 留 ⿰火留 +U+7199 熙 exact_ids unresolved components: 𦣞 ⿱巸灬 +U+719C 熜 exact_ids unresolved components: 囱 ⿰火悤 +U+719F 熟 exact_ids unresolved components: 享 ⿱孰灬 +U+71A1 熡 exact_ids unresolved components: 婁 ⿰火婁 +U+71A7 熧 exact_ids unresolved components: 從 ⿱從火 +U+71A8 熨 exact_ids unresolved components: 尉 ⿱尉火 +U+71AC 熬 exact_ids unresolved components: 敖 ⿱敖灬 +U+71AF 熯 exact_ids unresolved components: 𦰩 ⿰火𦰩 +U+71B0 熰 exact_ids unresolved components: 區 ⿰火區 +U+71B2 熲 missing missing +U+71B3 熳 exact_ids unresolved components: 曼 ⿰火曼 +U+71B7 熷 exact_ids unresolved components: 曾 ⿰火曾 +U+71BE 熾 exact_ids unresolved components: 戈 ⿰火戠 +U+71C0 燀 exact_ids unresolved components: 單 ⿰火單 +U+71C4 燄 exact_ids unresolved components: ⺈ ⿰臽炎 +U+71C6 燆 exact_ids unresolved components: 冋 ⿰火喬 +U+71C7 燇 exact_ids unresolved components: 酉 ⿰火尊 +U+71C9 燉 exact_ids unresolved components: 享 ⿰火敦 +U+71CE 燎 exact_ids unresolved components: 昚 ⿰火尞 +U+71D1 燑 exact_ids unresolved components: 里 ⿰火童 +U+71D5 燕 missing missing +U+71D6 燖 exact_ids unresolved components: 尋 ⿰火尋 +U+71D7 燗 exact_ids unresolved components: 閒 ⿰火閒 +U+71D8 燘 exact_ids unresolved components: 閔 ⿰火閔 +U+71DC 燜 exact_ids unresolved components: 悶 ⿰火悶 +U+71DD 燝 exact_ids unresolved components: 京 ⿰火景 +U+71DE 燞 missing missing +U+71DF 營 exact_ids unresolved components: 呂 ⿳炏冖呂 +U+71E1 燡 exact_ids unresolved components: 𢆉 ⿰火睪 +U+71E2 燢 missing missing +U+71E3 燣 exact_ids unresolved components: 回 ⿰火稟 +U+71E6 燦 exact_ids unresolved components: 𣦼 ⿰火粲 +U+71E8 燨 exact_ids unresolved components: 義 ⿰火義 +U+71E9 燩 exact_ids unresolved components: 敫 ⿰火敫 +U+71EC 燬 exact_ids unresolved components: 毀 ⿰火毀 +U+71ED 燭 exact_ids unresolved components: 𠣜 ⿰火蜀 +U+71EE 燮 missing missing +U+71F4 燴 exact_ids unresolved components: 曾 ⿰火會 +U+71F7 燷 exact_ids unresolved components: 禀 ⿰火禀 +U+71FA 燺 exact_ids unresolved components: 高 ⿰火槀 +U+71FB 燻 exact_ids unresolved components: 熏 ⿰火熏 +U+71FC 燼 exact_ids unresolved components: 盡 ⿰火盡 +U+71FD 燽 exact_ids unresolved components: 壽 ⿰火壽 +U+71FE 燾 exact_ids unresolved components: 壽 ⿱壽灬 +U+7201 爁 exact_ids unresolved components: 監 ⿰火監 +U+7202 爂 missing missing +U+7209 爉 exact_ids unresolved components: 巤 ⿰火巤 +U+720B 爋 exact_ids unresolved components: 里 ⿰火勲 +U+720D 爍 exact_ids unresolved components: 樂 ⿰火樂 +U+720E 爎 exact_ids unresolved components: 昚 ⿰火寮 +U+7210 爐 exact_ids unresolved components: 𧆨 ⿰火盧 +U+7212 爒 exact_ids unresolved components: 昚 ⿰炙尞 +U+7213 爓 exact_ids unresolved components: 閻 ⿰火閻 +U+7214 爔 exact_ids unresolved components: 羲 ⿰火羲 +U+7215 爕 missing missing +U+7218 爘 exact_ids unresolved components: 𣦼 ⿰火餐 +U+7219 爙 exact_ids unresolved components: 襄 ⿰火襄 +U+721B 爛 exact_ids unresolved components: 闌 ⿰火闌 +U+721C 爜 exact_ids unresolved components: 叢 ⿰火叢 +U+721D 爝 exact_ids unresolved components: 爵 ⿰火爵 +U+7223 爣 exact_ids unresolved components: 冋 ⿰火黨 +U+7224 爤 exact_ids unresolved components: 闌 ⿰火蘭 +U+7225 爥 exact_ids unresolved components: 屬 ⿰火屬 +U+7226 爦 exact_ids unresolved components: 覽 ⿰火覽 +U+7227 爧 exact_ids unresolved components: 𠱠 ⿰火靈 +U+7228 爨 missing missing +U+7229 爩 exact_ids unresolved components: 鬱 ⿰火鬱 +U+722E 爮 exact_ids unresolved components: 包 ⿰爪包 +U+7232 爲 missing missing +U+7233 爳 exact_ids unresolved components: 爲 ⿱爲了 +U+7234 爴 exact_ids unresolved components: 國 ⿰國爪 +U+7235 爵 missing missing +U+723D 爽 exact_ids unresolved components: 㸚 ⿻大㸚 +U+7244 牄 exact_ids unresolved components: 倉 ⿰爿倉 +U+7245 牅 exact_ids unresolved components: 庸 ⿰爿庸 +U+7246 牆 exact_ids unresolved components: 回 ⿰爿嗇 +U+7248 版 exact_ids unresolved components: 反 ⿰片反 +U+724B 牋 exact_ids unresolved components: 戈 ⿰片戔 +U+7251 牑 exact_ids unresolved components: 𠕁 ⿰片扁 +U+7255 牕 exact_ids unresolved components: 囱 ⿰片悤 +U+7256 牖 missing missing +U+7257 牗 exact_ids unresolved components: 庸 ⿰片庸 +U+725A 牚 exact_ids unresolved components: 冋 ⿱尚牙 +U+726B 牫 exact_ids unresolved components: 戈 ⿰牜戈 +U+726D 牭 exact_ids unresolved components: 四 ⿰牜四 +U+7270 牰 exact_ids unresolved components: 由 ⿰牜由 +U+727C 牼 exact_ids unresolved components: 巠 ⿰牜巠 +U+727D 牽 missing missing +U+7280 犀 missing missing +U+7282 犂 missing missing +U+7285 犅 exact_ids unresolved components: 岡 ⿰牜岡 +U+7289 犉 exact_ids unresolved components: 享 ⿰牜享 +U+728D 犍 exact_ids unresolved components: 聿 ⿰牜建 +U+728F 犏 exact_ids unresolved components: 𠕁 ⿰牜扁 +U+7292 犒 exact_ids unresolved components: 高 ⿰牜高 +U+7293 犓 exact_ids unresolved components: 芻 ⿰牜芻 +U+7295 犕 missing missing +U+7297 犗 exact_ids unresolved components: 害 ⿰牜害 +U+7299 犙 exact_ids unresolved components: 參 ⿰牜參 +U+729A 犚 exact_ids unresolved components: 尉 ⿱尉牛 +U+729C 犜 exact_ids unresolved components: 享 ⿰牜敦 +U+729D 犝 exact_ids unresolved components: 里 ⿰牜童 +U+729E 犞 exact_ids unresolved components: 冋 ⿰牜喬 +U+72A0 犠 exact_ids unresolved components: 義 ⿰牜義 +U+72A3 犣 exact_ids unresolved components: 巤 ⿰牜巤 +U+72A4 犤 exact_ids unresolved components: 能 ⿰牜罷 +U+72A7 犧 exact_ids unresolved components: 羲 ⿰牜羲 +U+72AA 犪 exact_ids unresolved components: 夒 ⿰牜夔 +U+72AC 犬 exact_ids structural collision: 太 ⿻大丶 +U+72AE 犮 missing missing +U+72B3 犳 exact_ids unresolved components: 勺 ⿰犭勺 +U+72B5 犵 exact_ids unresolved components: 乞 ⿰犭乞 +U+72CD 狍 exact_ids unresolved components: 包 ⿰犭包 +U+72CE 狎 exact_ids unresolved components: 甲 ⿰犭甲 +U+72D7 狗 exact_ids unresolved components: 句 ⿰犭句 +U+72D8 狘 exact_ids unresolved components: 戈 ⿰犭戉 +U+72DD 狝 exact_ids unresolved components: ⺈ ⿰犭尔 +U+72DF 狟 exact_ids unresolved components: 亘 ⿰犭亘 +U+72E5 狥 exact_ids unresolved components: 旬 ⿰犭旬 +U+72E8 狨 exact_ids unresolved components: 戈 ⿰犭戎 +U+72EA 狪 exact_ids unresolved components: 同 ⿰犭同 +U+72F0 狰 exact_ids unresolved components: 争 ⿰犭争 +U+72F1 狱 exact_ids structural collision: 獄 ⿰犭訧 +U+72F6 狶 exact_ids unresolved components: 布 ⿰犭希 +U+72F8 狸 exact_ids unresolved components: 里 ⿰犭里 +U+7303 猃 exact_ids unresolved components: 佥 ⿰犭佥 +U+7304 猄 exact_ids unresolved components: 京 ⿰犭京 +U+730E 猎 exact_ids unresolved components: 龷 ⿰犭昔 +U+7312 猒 exact_ids unresolved components: 冃 ⿰冐犬 +U+7315 猕 exact_ids unresolved components: ⺈ ⿰犭弥 +U+7318 猘 exact_ids unresolved components: 制 ⿰犭制 +U+731C 猜 exact_ids unresolved components: 円,龶 ⿰犭靑 +U+731D 猝 exact_ids unresolved components: 卒 ⿰犭卒 +U+731F 猟 missing missing +U+7323 猣 exact_ids unresolved components: 凶 ⿰犭㚇 +U+732E 献 exact_ids unresolved components: 南 ⿰南犬 +U+7332 猲 exact_ids unresolved components: 匃 ⿰犭曷 +U+7334 猴 exact_ids unresolved components: 侯 ⿰犭侯 +U+7335 猵 exact_ids unresolved components: 𠕁 ⿰犭扁 +U+7336 猶 exact_ids unresolved components: 酉 ⿰犭酋 +U+7337 猷 exact_ids unresolved components: 酉 ⿰酋犬 +U+733F 猿 exact_ids unresolved components: 袁 ⿰犭袁 +U+7340 獀 exact_ids unresolved components: 𦥔 ⿰犭叟 +U+7344 獄 exact_ids structural collision: 狱 ⿰犭訧 +U+7345 獅 exact_ids unresolved components: 師 ⿰犭師 +U+7348 獈 exact_ids unresolved components: 益 ⿰犭益 +U+734A 獊 exact_ids unresolved components: 倉 ⿰犭倉 +U+734B 獋 exact_ids unresolved components: 臯 ⿰犭臯 +U+734C 獌 exact_ids unresolved components: 曼 ⿰犭曼 +U+734E 獎 exact_ids unresolved components: 將 ⿱將犬 +U+7352 獒 exact_ids unresolved components: 敖 ⿱敖犬 +U+7353 獓 exact_ids unresolved components: 敖 ⿰犭敖 +U+7354 獔 exact_ids unresolved components: 皐 ⿰犭皐 +U+7358 獘 exact_ids unresolved components: 㡀 ⿱敝犬 +U+7359 獙 exact_ids unresolved components: 㡀 ⿰犭敝 +U+735E 獞 exact_ids unresolved components: 里 ⿰犭童 +U+7360 獠 exact_ids unresolved components: 昚 ⿰犭尞 +U+7361 獡 exact_ids unresolved components: 灳 ⿰犭舄 +U+7362 獢 exact_ids unresolved components: 冋 ⿰犭喬 +U+7363 獣 missing missing +U+7364 獤 exact_ids unresolved components: 享 ⿰犭敦 +U+7365 獥 exact_ids unresolved components: 敫 ⿰犭敫 +U+7366 獦 exact_ids unresolved components: 匃 ⿰犭葛 +U+7367 獧 exact_ids unresolved components: 睘 ⿰犭睘 +U+7368 獨 exact_ids unresolved components: 𠣜 ⿰犭蜀 +U+7369 獩 exact_ids unresolved components: 歲 ⿰犭歲 +U+736A 獪 exact_ids unresolved components: 曾 ⿰犭會 +U+736B 獫 exact_ids unresolved components: 僉 ⿰犭僉 +U+736C 獬 exact_ids unresolved components: 解 ⿰犭解 +U+736D 獭 exact_ids unresolved components: ⺈ ⿰犭赖 +U+736F 獯 exact_ids unresolved components: 熏 ⿰犭熏 +U+7370 獰 exact_ids unresolved components: 寜 ⿰犭寜 +U+7371 獱 exact_ids unresolved components: 賓 ⿰犭賓 +U+7374 獴 exact_ids unresolved components: 冃 ⿰犭蒙 +U+7375 獵 exact_ids unresolved components: 巤 ⿰犭巤 +U+7379 獹 exact_ids unresolved components: 𧆨 ⿰犭盧 +U+737A 獺 exact_ids unresolved components: 賴 ⿰犭賴 +U+737D 獽 exact_ids unresolved components: 襄 ⿰犭襄 +U+737F 獿 exact_ids unresolved components: 夒 ⿰犭夒 +U+7381 玁 exact_ids unresolved components: 𠪚 ⿰犭嚴 +U+7382 玂 exact_ids unresolved components: 蘄 ⿰犭蘄 +U+7387 率 missing missing +U+7388 玈 missing missing +U+7389 玉 exact_ids structural collision: 玊 ⿻王丶 +U+738A 玊 exact_ids structural collision: 玉 ⿻王丶 +U+7393 玓 exact_ids unresolved components: 勺 ⿰王勺 +U+739A 玚 exact_ids unresolved components: 𠃓 ⿰王𠃓 +U+73A0 玠 exact_ids unresolved components: 介 ⿰王介 +U+73AA 玪 exact_ids unresolved components: ㇇ ⿰王今 +U+73B8 玸 exact_ids unresolved components: 包 ⿰王包 +U+73BA 玺 exact_ids unresolved components: ⺈ ⿱尔玉 +U+73BD 玽 exact_ids unresolved components: 句 ⿰王句 +U+73BE 玾 exact_ids unresolved components: 甲 ⿰王甲 +U+73C5 珅 exact_ids unresolved components: 申 ⿰王申 +U+73CB 珋 exact_ids unresolved components: 卯 ⿰王卯 +U+73CE 珎 exact_ids unresolved components: ⺈ ⿰王尔 +U+73D2 珒 exact_ids unresolved components: 聿 ⿰王聿 +U+73D4 珔 exact_ids unresolved components: 存 ⿰王存 +U+73D6 珖 exact_ids unresolved components: ⺌ ⿰王光 +U+73DA 珚 exact_ids unresolved components: 因 ⿰王因 +U+73DF 珟 exact_ids unresolved components: 夙 ⿰王夙 +U+73E3 珣 exact_ids unresolved components: 旬 ⿰王旬 +U+73E6 珦 exact_ids unresolved components: 冋 ⿰王向 +U+73EC 珬 exact_ids unresolved components: 戌 ⿰王戌 +U+73EE 珮 exact_ids unresolved components: 凧 ⿰王凧 +U+73F1 珱 missing missing +U+73F4 珴 exact_ids unresolved components: 戈 ⿰王我 +U+73F7 珷 exact_ids unresolved components: 武 ⿰王武 +U+73F9 珹 exact_ids unresolved components: 成 ⿰王成 +U+73FA 珺 exact_ids unresolved components: 尹 ⿰王君 +U+7400 琀 exact_ids unresolved components: ㇇ ⿰王含 +U+7401 琁 missing missing +U+7406 理 exact_ids unresolved components: 里 ⿰王里 +U+740B 琋 exact_ids unresolved components: 布 ⿰王希 +U+740C 琌 exact_ids unresolved components: ㇇ ⿰王岑 +U+7410 琐 missing missing +U+7414 琔 exact_ids unresolved components: 𤴓 ⿰王定 +U+7416 琖 exact_ids unresolved components: 戈 ⿰王戔 +U+7417 琗 exact_ids unresolved components: 卒 ⿰王卒 +U+7419 琙 exact_ids unresolved components: 或 ⿰王或 +U+741B 琛 exact_ids unresolved components: ⺳ ⿰王罙 +U+7431 琱 exact_ids unresolved components: 周 ⿰王周 +U+7434 琴 exact_ids unresolved components: ㇇ ⿱⿰王王今 +U+743C 琼 exact_ids unresolved components: 京 ⿰王京 +U+743E 琾 exact_ids unresolved components: 介 ⿰王界 +U+7440 瑀 exact_ids unresolved components: 禹 ⿰王禹 +U+7441 瑁 exact_ids unresolved components: 冃 ⿰王冒 +U+7444 瑄 exact_ids unresolved components: 亘 ⿰王宣 +U+7445 瑅 exact_ids unresolved components: 𤴓 ⿰王是 +U+7447 瑇 exact_ids unresolved components: 龶 ⿰王毒 +U+744A 瑊 exact_ids unresolved components: 咸 ⿰王咸 +U+744D 瑍 exact_ids unresolved components: 奐 ⿰王奐 +U+7456 瑖 exact_ids unresolved components: 段 ⿰王段 +U+7459 瑙 exact_ids unresolved components: 囟 ⿰王𡿺 +U+745C 瑜 exact_ids unresolved components: 兪 ⿰王兪 +U+7460 瑠 exact_ids unresolved components: 留 ⿰王留 +U+7461 瑡 exact_ids unresolved components: 師 ⿰王師 +U+7464 瑤 exact_ids structural collision: 瑶 ⿰王䍃 +U+7465 瑥 exact_ids unresolved components: 囚 ⿰王𥁕 +U+7468 瑨 exact_ids unresolved components: 晉 ⿰王晉 +U+746D 瑭 exact_ids unresolved components: 唐 ⿰王唐 +U+7472 瑲 exact_ids unresolved components: 倉 ⿰王倉 +U+7474 瑴 missing missing +U+7476 瑶 exact_ids structural collision: 瑤 ⿰王䍃 +U+747C 瑼 exact_ids unresolved components: 𤰔 ⿰王專 +U+747D 瑽 exact_ids unresolved components: 從 ⿰王從 +U+747F 瑿 exact_ids unresolved components: 医 ⿱殹玉 +U+7481 璁 exact_ids unresolved components: 囱 ⿰王悤 +U+7483 璃 exact_ids unresolved components: 凶 ⿰王离 +U+7487 璇 exact_ids unresolved components: 旋 ⿰王旋 +U+7488 璈 exact_ids unresolved components: 敖 ⿰王敖 +U+748C 璌 exact_ids unresolved components: 寅 ⿰王寅 +U+748F 璏 exact_ids unresolved components: 彘 ⿰王彘 +U+7494 璔 exact_ids unresolved components: 曾 ⿰王曾 +U+7495 璕 exact_ids unresolved components: 尋 ⿰王尋 +U+7499 璙 exact_ids unresolved components: 昚 ⿰王尞 +U+749F 璟 exact_ids unresolved components: 京 ⿰王景 +U+74A3 璣 exact_ids unresolved components: 戍 ⿰王幾 +U+74A4 璤 exact_ids unresolved components: 𤰔 ⿰王惠 +U+74A5 璥 exact_ids unresolved components: 句 ⿰王敬 +U+74A7 璧 exact_ids unresolved components: 𡰪 ⿱辟玉 +U+74A8 璨 exact_ids unresolved components: 𣦼 ⿰王粲 +U+74AB 璫 exact_ids unresolved components: 冋 ⿰王當 +U+74AC 璬 exact_ids unresolved components: 敫 ⿰王敫 +U+74AE 璮 exact_ids unresolved components: 回 ⿰王亶 +U+74AF 璯 exact_ids unresolved components: 曾 ⿰王會 +U+74B0 環 exact_ids unresolved components: 睘 ⿰王睘 +U+74B6 璶 exact_ids unresolved components: 盡 ⿰王盡 +U+74B7 璷 exact_ids unresolved components: 敷 ⿰王敷 +U+74B8 璸 exact_ids unresolved components: 賓 ⿰王賓 +U+74B9 璹 exact_ids unresolved components: 壽 ⿰王壽 +U+74BA 璺 missing missing +U+74BB 璻 exact_ids unresolved components: 卒 ⿰王翠 +U+74BC 璼 exact_ids unresolved components: 監 ⿰王監 +U+74BF 璿 exact_ids unresolved components: 眘 ⿰王睿 +U+74C5 瓅 exact_ids unresolved components: 樂 ⿰王樂 +U+74C8 瓈 exact_ids unresolved components: 黎 ⿰王黎 +U+74CA 瓊 exact_ids unresolved components: 夐 ⿰王夐 +U+74CB 瓋 exact_ids unresolved components: 啇 ⿰王適 +U+74CC 瓌 exact_ids unresolved components: 褱 ⿰王褱 +U+74CE 瓎 exact_ids unresolved components: 賴 ⿰王賴 +U+74D0 瓐 exact_ids unresolved components: 𧆨 ⿰王盧 +U+74D2 瓒 exact_ids unresolved components: 赞 ⿰王赞 +U+74D3 瓓 exact_ids unresolved components: 闌 ⿰王闌 +U+74D6 瓖 exact_ids unresolved components: 襄 ⿰王襄 +U+74D9 瓙 exact_ids unresolved components: 壽 ⿰王燾 +U+74DD 瓝 exact_ids unresolved components: 勺 ⿰瓜勺 +U+74DF 瓟 exact_ids unresolved components: 包 ⿰瓜包 +U+74E1 瓡 exact_ids unresolved components: 𢆉 ⿰幸瓜 +U+74E4 瓤 exact_ids unresolved components: 襄 ⿰襄瓜 +U+74E5 瓥 missing missing +U+74EA 瓪 exact_ids unresolved components: 反 ⿰瓦反 +U+74EF 瓯 exact_ids unresolved components: 区 ⿰区瓦 +U+74FB 瓻 exact_ids unresolved components: 布 ⿰希瓦 +U+74FC 瓼 exact_ids unresolved components: 里 ⿰瓦里 +U+74FD 瓽 exact_ids unresolved components: 冋 ⿱尚瓦 +U+7501 甁 exact_ids unresolved components: 幷 ⿰幷瓦 +U+7502 甂 exact_ids unresolved components: 𠕁 ⿰扁瓦 +U+7505 甅 exact_ids unresolved components: 里 ⿰瓦厘 +U+750A 甊 exact_ids unresolved components: 婁 ⿰婁瓦 +U+750B 甋 exact_ids unresolved components: 啇 ⿰啇瓦 +U+750C 甌 exact_ids unresolved components: 區 ⿰區瓦 +U+750D 甍 missing missing +U+750E 甎 exact_ids unresolved components: 𤰔 ⿰專瓦 +U+7511 甑 exact_ids unresolved components: 曽 ⿰曽瓦 +U+7513 甓 exact_ids unresolved components: 𡰪 ⿱辟瓦 +U+7514 甔 exact_ids unresolved components: 詹 ⿰詹瓦 +U+7515 甕 exact_ids unresolved components: 雍 ⿱雍瓦 +U+751A 甚 exact_ids unresolved components: 匹 ⿱甘匹 +U+751E 甞 exact_ids unresolved components: 冋 ⿱尚甘 +U+7522 產 exact_ids structural collision: 産 ⿱产生 +U+7523 産 exact_ids structural collision: 產 ⿱产生 +U+7526 甦 missing missing +U+7529 甩 missing missing +U+752F 甯 missing missing +U+7531 由 missing missing +U+7532 甲 missing missing +U+7533 申 missing missing +U+7535 电 missing missing +U+7538 甸 missing missing +U+7539 甹 exact_ids unresolved components: 由 ⿱由丂 +U+753B 画 missing missing +U+7541 畁 exact_ids unresolved components: 由 ⿱由丌 +U+7543 畃 exact_ids unresolved components: 勺,申 ⿰申勺 +U+7545 畅 exact_ids unresolved components: 申,𠃓 ⿰申𠃓 +U+7547 畇 exact_ids unresolved components: 匀 ⿰田匀 +U+7548 畈 exact_ids unresolved components: 反 ⿰田反 +U+754C 界 exact_ids unresolved components: 介 ⿱田介 +U+754D 畍 exact_ids unresolved components: 介 ⿰田介 +U+7550 畐 missing missing +U+7557 畗 missing missing +U+7559 留 missing missing +U+755F 畟 missing missing +U+7561 畡 exact_ids unresolved components: 亥 ⿰田亥 +U+756B 畫 missing missing +U+7575 畵 missing missing +U+7576 當 exact_ids unresolved components: 冋 ⿱尚田 +U+757A 畺 exact_ids unresolved components: 三 ⿻三畕 +U+757B 畻 missing missing +U+757D 畽 exact_ids unresolved components: 里 ⿰田重 +U+757F 畿 missing missing +U+7580 疀 exact_ids unresolved components: 疌 ⿰甾疌 +U+7582 疂 missing missing +U+7583 疃 exact_ids unresolved components: 里 ⿰田童 +U+7585 疅 exact_ids unresolved components: 三 ⿰田畺 +U+7586 疆 missing missing +U+7587 疇 exact_ids unresolved components: 壽 ⿰田壽 +U+7588 疈 exact_ids unresolved components: 畐 ⿲畐刂畐 +U+7589 疉 exact_ids unresolved components: 宐 ⿱畾宐 +U+758C 疌 missing missing +U+7590 疐 missing missing +U+7591 疑 missing missing +U+7599 疙 exact_ids unresolved components: 乞 ⿱疒乞 +U+759F 疟 missing missing +U+75A1 疡 exact_ids unresolved components: 𠃓 ⿱疒𠃓 +U+75A5 疥 exact_ids unresolved components: 介 ⿱疒介 +U+75AF 疯 exact_ids unresolved components: 风 ⿱疒风 +U+75B1 疱 exact_ids unresolved components: 包 ⿱疒包 +U+75C0 痀 exact_ids unresolved components: 句 ⿱疒句 +U+75CC 痌 exact_ids unresolved components: 同 ⿱疒同 +U+75CE 痎 exact_ids unresolved components: 亥 ⿱疒亥 +U+75D0 痐 exact_ids unresolved components: 回 ⿱疒回 +U+75D9 痙 exact_ids unresolved components: 巠 ⿱疒巠 +U+75E9 痩 missing missing +U+75EA 痪 exact_ids unresolved components: ⺈ ⿱疒奂 +U+75EB 痫 exact_ids unresolved components: 闲 ⿱疒闲 +U+75F2 痲 exact_ids unresolved components: 𣏟 ⿱疒𣏟 +U+75F7 痷 exact_ids unresolved components: 电 ⿱疒奄 +U+75F8 痸 exact_ids unresolved components: 制 ⿱疒制 +U+75FC 痼 exact_ids unresolved components: 固 ⿱疒固 +U+7601 瘁 exact_ids unresolved components: 卒 ⿱疒卒 +U+7603 瘃 exact_ids unresolved components: 豖 ⿱疒豖 +U+7604 瘄 exact_ids unresolved components: 龷 ⿱疒昔 +U+7605 瘅 exact_ids unresolved components: 单 ⿱疒单 +U+7606 瘆 exact_ids unresolved components: 参 ⿱疒参 +U+7607 瘇 exact_ids unresolved components: 里 ⿱疒重 +U+7609 瘉 exact_ids unresolved components: 兪 ⿱疒兪 +U+760A 瘊 exact_ids unresolved components: 侯 ⿱疒侯 +U+760E 瘎 exact_ids unresolved components: 匹 ⿱疒甚 +U+7613 瘓 exact_ids unresolved components: 奐 ⿱疒奐 +U+7617 瘗 missing missing +U+761E 瘞 missing missing +U+761F 瘟 exact_ids unresolved components: 囚 ⿱疒𥁕 +U+7621 瘡 exact_ids unresolved components: 倉 ⿱疒倉 +U+7624 瘤 exact_ids unresolved components: 留 ⿱疒留 +U+7626 瘦 exact_ids unresolved components: 𦥔 ⿱疒叟 +U+7627 瘧 exact_ids unresolved components: 虐 ⿱疒虐 +U+762A 瘪 missing missing +U+762E 瘮 exact_ids unresolved components: 參 ⿱疒參 +U+762F 瘯 exact_ids unresolved components: 族 ⿱疒族 +U+7631 瘱 exact_ids unresolved components: 㾜 ⿱㾜心 +U+7632 瘲 exact_ids unresolved components: 從 ⿱疒從 +U+7635 瘵 exact_ids unresolved components: 祭 ⿱疒祭 +U+7638 瘸 exact_ids unresolved components: 𦙲 ⿱疒𦙲 +U+7639 瘹 exact_ids unresolved components: 勺 ⿱疒釣 +U+763B 瘻 exact_ids unresolved components: 婁 ⿱疒婁 +U+763E 瘾 exact_ids unresolved components: ⺈ ⿱疒隐 +U+7641 癁 exact_ids unresolved components: 复 ⿱疒復 +U+7642 療 exact_ids unresolved components: 昚 ⿱疒尞 +U+7643 癃 exact_ids unresolved components: 隆 ⿱疒隆 +U+7647 癇 exact_ids unresolved components: 閒 ⿱疒閒 +U+7648 癈 exact_ids unresolved components: 發 ⿱疒發 +U+7649 癉 exact_ids unresolved components: 單 ⿱疒單 +U+764A 癊 exact_ids unresolved components: ㇇ ⿱疒陰 +U+764E 癎 exact_ids unresolved components: 間 ⿱疒間 +U+764F 癏 exact_ids unresolved components: 睘 ⿱疒睘 +U+7650 癐 exact_ids unresolved components: 曾 ⿱疒會 +U+7655 癕 exact_ids unresolved components: 雍 ⿱疒雍 +U+7656 癖 exact_ids unresolved components: 𡰪 ⿱疒辟 +U+765A 癚 exact_ids unresolved components: 詹 ⿱疒詹 +U+765B 癛 exact_ids unresolved components: 回 ⿱疒稟 +U+765C 癜 exact_ids unresolved components: 殿 ⿱疒殿 +U+765D 癝 exact_ids unresolved components: 禀 ⿱疒禀 +U+765E 癞 exact_ids unresolved components: ⺈ ⿱疒赖 +U+765F 癟 missing missing +U+7661 癡 exact_ids unresolved components: 疑 ⿱疒疑 +U+7664 癤 exact_ids unresolved components: 亇 ⿱疒節 +U+7665 癥 exact_ids unresolved components: 徵 ⿱疒徵 +U+7669 癩 exact_ids unresolved components: 賴 ⿱疒賴 +U+766A 癪 exact_ids unresolved components: 龶 ⿱疒積 +U+766E 癮 exact_ids unresolved components: 隱 ⿱疒隱 +U+7674 癴 exact_ids unresolved components: 𤼙 ⿱𤼙手 +U+7675 癵 exact_ids unresolved components: 𤼙 ⿱𤼙肉 +U+767A 発 missing missing +U+767C 發 missing missing +U+7684 的 exact_ids unresolved components: 勺 ⿰白勺 +U+7688 皈 exact_ids unresolved components: 反 ⿰白反 +U+768D 皍 exact_ids unresolved components: 𠨐 ⿱白𠨐 +U+7690 皐 missing missing +U+7692 皒 exact_ids unresolved components: 戈 ⿰白我 +U+7697 皗 exact_ids unresolved components: 周 ⿰白周 +U+7698 皘 exact_ids unresolved components: 龶 ⿰白青 +U+769C 皜 exact_ids unresolved components: 高 ⿰白高 +U+769D 皝 exact_ids unresolved components: ⺌ ⿰皇光 +U+769F 皟 exact_ids unresolved components: 龶 ⿰白責 +U+76A1 皡 exact_ids unresolved components: 皐 ⿰白皐 +U+76A5 皥 exact_ids unresolved components: 臯 ⿰白臯 +U+76A6 皦 exact_ids unresolved components: 敫 ⿰白敫 +U+76A9 皩 exact_ids unresolved components: ⺌ ⿰皇晃 +U+76AA 皪 exact_ids unresolved components: 樂 ⿰白樂 +U+76AD 皭 exact_ids unresolved components: 爵 ⿰白爵 +U+76B0 皰 exact_ids unresolved components: 包 ⿰皮包 +U+76B1 皱 exact_ids unresolved components: ⺈ ⿰刍皮 +U+76B5 皵 exact_ids unresolved components: 龷 ⿰昔皮 +U+76BA 皺 exact_ids unresolved components: 芻 ⿰芻皮 +U+76BD 皽 exact_ids unresolved components: 回 ⿰亶皮 +U+76CA 益 missing missing +U+76CB 盋 exact_ids unresolved components: 犮 ⿱犮皿 +U+76CF 盏 exact_ids unresolved components: 戈 ⿱戋皿 +U+76D1 监 missing missing +U+76D5 盕 exact_ids unresolved components: 凡 ⿱汎皿 +U+76D6 盖 missing missing +U+76DB 盛 exact_ids unresolved components: 成 ⿱成皿 +U+76DC 盜 exact_ids unresolved components: 㳄 ⿱㳄皿 +U+76DE 盞 exact_ids unresolved components: 戈 ⿱戔皿 +U+76E1 盡 missing missing +U+76E3 監 missing missing +U+76E5 盥 missing missing +U+76E6 盦 exact_ids unresolved components: ㇇,酉 ⿱酓皿 +U+76E7 盧 exact_ids unresolved components: 𧆨 ⿱𧆨皿 +U+76E9 盩 missing missing +U+76EB 盫 exact_ids unresolved components: 𨠭 ⿱𨠭皿 +U+76EC 盬 missing missing +U+76ED 盭 missing missing +U+76F5 盵 exact_ids unresolved components: 乞 ⿰目乞 +U+76F7 盷 exact_ids unresolved components: 匀 ⿰目匀 +U+76FE 盾 exact_ids unresolved components: ⺁ ⿱⺁𥃭 +U+7705 眅 exact_ids unresolved components: 反 ⿰目反 +U+770C 県 missing missing +U+770D 眍 exact_ids unresolved components: 区 ⿰目区 +U+7712 眒 exact_ids unresolved components: 申 ⿰目申 +U+7713 眓 exact_ids unresolved components: 戈 ⿰目戉 +U+7717 眗 exact_ids unresolved components: 句 ⿰目句 +U+7718 眘 missing missing +U+771B 眛 exact_ids structural collision: 眜 ⿰目未 +U+771C 眜 exact_ids structural collision: 眛 ⿰目末 +U+772E 眮 exact_ids unresolved components: 同 ⿰目同 +U+7734 眴 exact_ids unresolved components: 旬 ⿰目旬 +U+7736 眶 exact_ids unresolved components: 匡 ⿰目匡 +U+773D 眽 missing missing +U+773E 眾 missing missing +U+773F 眿 exact_ids unresolved components: 永 ⿰目永 +U+7741 睁 exact_ids unresolved components: 争 ⿰目争 +U+7742 睂 missing missing +U+774B 睋 exact_ids unresolved components: 戈 ⿰目我 +U+774E 睎 exact_ids unresolved components: 布 ⿰目希 +U+774F 睏 exact_ids unresolved components: 困 ⿰目困 +U+7750 睐 exact_ids unresolved components: 来 ⿰目来 +U+7751 睑 exact_ids unresolved components: 佥 ⿰目佥 +U+7754 睔 exact_ids unresolved components: 𠕁 ⿰目侖 +U+7758 睘 missing missing +U+775B 睛 exact_ids unresolved components: 円,龶 ⿰目靑 +U+775D 睝 missing missing +U+775F 睟 exact_ids unresolved components: 卒 ⿰目卒 +U+776A 睪 exact_ids unresolved components: 𢆉 ⿱罒幸 +U+776B 睫 exact_ids unresolved components: 疌 ⿰目疌 +U+776D 睭 exact_ids unresolved components: 周 ⿰目周 +U+7775 睵 exact_ids unresolved components: 哉 ⿰目哉 +U+7777 睷 exact_ids unresolved components: 聿 ⿰目建 +U+777A 睺 exact_ids unresolved components: 侯 ⿰目侯 +U+777B 睻 exact_ids unresolved components: 亘 ⿰目宣 +U+777C 睼 exact_ids unresolved components: 𤴓 ⿰目是 +U+777E 睾 exact_ids unresolved components: 𢆉 ⿻丶睪 +U+777F 睿 exact_ids unresolved components: 眘 ⿳卜冖眘 +U+7782 瞂 exact_ids unresolved components: ⺁,犮 ⿰盾犮 +U+7783 瞃 exact_ids unresolved components: ⺁ ⿰目盾 +U+7789 瞉 missing missing +U+778A 瞊 exact_ids unresolved components: 唐 ⿰目唐 +U+778D 瞍 exact_ids unresolved components: 𦥔 ⿰目叟 +U+778E 瞎 exact_ids unresolved components: 害 ⿰目害 +U+778F 瞏 exact_ids unresolved components: 袁 ⿱罒袁 +U+7792 瞒 missing missing +U+7794 瞔 exact_ids unresolved components: 龶 ⿰目責 +U+7796 瞖 exact_ids unresolved components: 医 ⿱殹目 +U+7798 瞘 exact_ids unresolved components: 區 ⿰目區 +U+779A 瞚 exact_ids unresolved components: 寅 ⿰目寅 +U+779B 瞛 exact_ids unresolved components: 從 ⿰目從 +U+779C 瞜 exact_ids unresolved components: 婁 ⿰目婁 +U+779D 瞝 exact_ids unresolved components: 凶 ⿰目离 +U+77A0 瞠 exact_ids unresolved components: 冋 ⿰目堂 +U+77A2 瞢 missing missing +U+77A4 瞤 exact_ids unresolved components: 閏 ⿰目閏 +U+77A5 瞥 exact_ids unresolved components: 㡀 ⿱敝目 +U+77A9 瞩 exact_ids unresolved components: 禹 ⿰目属 +U+77AD 瞭 exact_ids unresolved components: 昚 ⿰目尞 +U+77AE 瞮 missing missing +U+77AF 瞯 exact_ids unresolved components: 閒 ⿰目閒 +U+77B0 瞰 exact_ids unresolved components: 敢 ⿰目敢 +U+77B3 瞳 exact_ids unresolved components: 里 ⿰目童 +U+77B7 瞷 exact_ids unresolved components: 間 ⿰目間 +U+77BA 瞺 exact_ids unresolved components: 曾 ⿰目會 +U+77BB 瞻 exact_ids unresolved components: 詹 ⿰目詹 +U+77BC 瞼 exact_ids unresolved components: 僉 ⿰目僉 +U+77C3 矃 exact_ids unresolved components: 寜 ⿰目寜 +U+77C4 矄 exact_ids unresolved components: 熏 ⿰目熏 +U+77C7 矇 exact_ids unresolved components: 冃 ⿰目蒙 +U+77C8 矈 missing missing +U+77C9 矉 exact_ids unresolved components: 賓 ⿰目賓 +U+77CE 矎 exact_ids unresolved components: 夐 ⿰目夐 +U+77CF 矏 exact_ids unresolved components: 臱 ⿰目臱 +U+77D1 矑 exact_ids unresolved components: 𧆨 ⿰目盧 +U+77D2 矒 exact_ids unresolved components: 瞢 ⿰目瞢 +U+77D6 矖 exact_ids unresolved components: 丽 ⿰目麗 +U+77D8 矘 exact_ids unresolved components: 冋 ⿰目黨 +U+77D9 矙 exact_ids unresolved components: 闞 ⿰目闞 +U+77DA 矚 exact_ids unresolved components: 屬 ⿰目屬 +U+77DC 矜 exact_ids unresolved components: ㇇ ⿰矛今 +U+77E0 矠 exact_ids unresolved components: 龷 ⿰矛昔 +U+77E6 矦 exact_ids unresolved components: ⺈ ⿱厃矢 +U+77EF 矯 exact_ids unresolved components: 冋 ⿰矢喬 +U+77F0 矰 exact_ids unresolved components: 曾 ⿰矢曾 +U+77F2 矲 exact_ids unresolved components: 能 ⿰矢罷 +U+77FB 矻 exact_ids unresolved components: 乞 ⿰石乞 +U+77FE 矾 exact_ids unresolved components: 凡 ⿰石凡 +U+7800 砀 exact_ids unresolved components: 𠃓 ⿰石𠃓 +U+780E 砎 exact_ids unresolved components: 介 ⿰石介 +U+7810 砐 exact_ids unresolved components: ㇏ ⿰石及 +U+781B 砛 exact_ids unresolved components: ㇇ ⿰石今 +U+781C 砜 exact_ids unresolved components: 风 ⿰石风 +U+781E 砞 exact_ids structural collision: 砵 ⿰石末 +U+7832 砲 exact_ids unresolved components: 包 ⿰石包 +U+7835 砵 exact_ids structural collision: 砞 ⿰石本 +U+7837 砷 exact_ids unresolved components: 申 ⿰石申 +U+7838 砸 exact_ids unresolved components: 匝 ⿰石匝 +U+7844 硄 exact_ids unresolved components: ⺌ ⿰石光 +U+7847 硇 exact_ids unresolved components: 囟 ⿰石囟 +U+7849 硉 exact_ids unresolved components: 聿 ⿰石聿 +U+784A 硊 exact_ids unresolved components: ⺈ ⿰石危 +U+784B 硋 exact_ids unresolved components: 亥 ⿰石亥 +U+7850 硐 exact_ids unresolved components: 同 ⿰石同 +U+7857 硗 exact_ids unresolved components: 尧 ⿰石尧 +U+7858 硘 exact_ids unresolved components: 回 ⿰石回 +U+785C 硜 exact_ids unresolved components: 巠 ⿰石巠 +U+7861 硡 exact_ids unresolved components: 厷 ⿰石宏 +U+786A 硪 exact_ids unresolved components: 戈 ⿰石我 +U+786E 确 exact_ids unresolved components: ⺈ ⿰石角 +U+7871 硱 exact_ids unresolved components: 困 ⿰石困 +U+7875 硵 exact_ids unresolved components: 龱 ⿰石卤 +U+7876 硶 exact_ids unresolved components: ㇇ ⿰石岑 +U+7877 硷 exact_ids unresolved components: 佥 ⿰石佥 +U+787A 硺 exact_ids unresolved components: 豖 ⿰石豖 +U+787D 硽 exact_ids unresolved components: 电 ⿰石奄 +U+7883 碃 exact_ids unresolved components: 龶 ⿰石青 +U+7885 碅 exact_ids unresolved components: 囷 ⿰石囷 +U+7887 碇 exact_ids unresolved components: 𤴓 ⿰石定 +U+7889 碉 exact_ids unresolved components: 周 ⿰石周 +U+788A 碊 exact_ids unresolved components: 戈 ⿰石戔 +U+788E 碎 exact_ids unresolved components: 卒 ⿰石卒 +U+788F 碏 exact_ids unresolved components: 龷 ⿰石昔 +U+7894 碔 exact_ids unresolved components: 武 ⿰石武 +U+7896 碖 exact_ids unresolved components: 𠕁 ⿰石侖 +U+7899 碙 exact_ids unresolved components: 岡 ⿰石岡 +U+789B 碛 exact_ids unresolved components: 龶 ⿰石责 +U+789C 碜 exact_ids unresolved components: 参 ⿰石参 +U+78A0 碠 exact_ids unresolved components: 亭 ⿰石亭 +U+78A1 碡 exact_ids unresolved components: 龶 ⿰石毒 +U+78A3 碣 exact_ids unresolved components: 匃 ⿰石曷 +U+78A5 碥 exact_ids unresolved components: 𠕁 ⿰石扁 +U+78AA 碪 exact_ids unresolved components: 匹 ⿰石甚 +U+78AB 碫 exact_ids unresolved components: 段 ⿰石段 +U+78AE 碮 exact_ids unresolved components: 𤴓 ⿰石是 +U+78AF 碯 exact_ids unresolved components: 囟 ⿰石𡿺 +U+78B1 碱 exact_ids unresolved components: 咸 ⿰石咸 +U+78B7 碷 exact_ids unresolved components: ⺁ ⿰石盾 +U+78B9 碹 exact_ids unresolved components: 亘 ⿰石宣 +U+78BB 碻 exact_ids unresolved components: 高 ⿰石高 +U+78BE 碾 exact_ids unresolved components: 展 ⿰石展 +U+78C2 磂 exact_ids unresolved components: 留 ⿰石留 +U+78C3 磃 exact_ids unresolved components: 虒 ⿰石虒 +U+78C4 磄 exact_ids unresolved components: 唐 ⿰石唐 +U+78C7 磇 exact_ids unresolved components: 囟 ⿰石𣬉 +U+78CD 磍 exact_ids unresolved components: 害 ⿰石害 +U+78D9 磙 exact_ids unresolved components: 衮 ⿰石衮 +U+78DA 磚 exact_ids unresolved components: 𤰔 ⿰石專 +U+78DC 磜 exact_ids unresolved components: 祭 ⿰石祭 +U+78DD 磝 exact_ids unresolved components: 敖 ⿰石敖 +U+78E1 磡 exact_ids unresolved components: 匹 ⿰石勘 +U+78E2 磢 exact_ids unresolved components: 㸚 ⿰石爽 +U+78E3 磣 exact_ids unresolved components: 參 ⿰石參 +U+78E7 磧 exact_ids unresolved components: 龶 ⿰石責 +U+78E9 磩 exact_ids unresolved components: 戚 ⿰石戚 +U+78EB 磫 exact_ids unresolved components: 從 ⿰石從 +U+78EE 磮 exact_ids unresolved components: 𠕁 ⿰石崙 +U+78EF 磯 exact_ids unresolved components: 戍 ⿰石幾 +U+78F0 磰 exact_ids unresolved components: 善 ⿰石善 +U+78F3 磳 exact_ids unresolved components: 曾 ⿰石曾 +U+78F5 磵 exact_ids unresolved components: 間 ⿰石間 +U+78F6 磶 exact_ids unresolved components: 灳 ⿰石舄 +U+78F8 磸 exact_ids unresolved components: 酉 ⿰石奠 +U+78FE 磾 exact_ids unresolved components: 單 ⿰石單 +U+7900 礀 exact_ids unresolved components: 閒 ⿰石閒 +U+7903 礃 exact_ids unresolved components: 冋 ⿰石掌 +U+7904 礄 exact_ids unresolved components: 冋 ⿰石喬 +U+7905 礅 exact_ids unresolved components: 享 ⿰石敦 +U+7906 礆 exact_ids unresolved components: 僉 ⿰石僉 +U+7909 礉 exact_ids unresolved components: 敫 ⿰石敫 +U+790B 礋 exact_ids unresolved components: 𢆉 ⿰石睪 +U+790D 礍 exact_ids unresolved components: 匃 ⿰石葛 +U+7910 礐 missing missing +U+7911 礑 exact_ids unresolved components: 冋 ⿰石當 +U+7912 礒 exact_ids unresolved components: 義 ⿰石義 +U+7913 礓 exact_ids unresolved components: 三 ⿰石畺 +U+7914 礔 exact_ids unresolved components: 𡰪 ⿰石辟 +U+7915 礕 exact_ids unresolved components: 𡰪 ⿱辟石 +U+7917 礗 exact_ids unresolved components: 賓 ⿰石賓 +U+7919 礙 exact_ids unresolved components: 疑 ⿰石疑 +U+791B 礛 exact_ids unresolved components: 監 ⿰石監 +U+791E 礞 exact_ids unresolved components: 冃 ⿰石蒙 +U+7923 礣 exact_ids unresolved components: 戌 ⿰石蔑 +U+7924 礤 exact_ids unresolved components: 祭 ⿰石蔡 +U+792B 礫 exact_ids unresolved components: 樂 ⿰石樂 +U+7937 礷 exact_ids unresolved components: 監 ⿰石藍 +U+7939 礹 exact_ids unresolved components: 𠪚 ⿰石嚴 +U+793F 礿 exact_ids unresolved components: 勺 ⿰礻勺 +U+7944 祄 exact_ids unresolved components: 介 ⿰礻介 +U+7953 祓 exact_ids unresolved components: 犮 ⿰示犮 +U+795E 神 exact_ids unresolved components: 申 ⿰礻申 +U+7960 祠 exact_ids unresolved components: 司 ⿰示司 +U+7962 祢 exact_ids unresolved components: ⺈ ⿰礻尔 +U+7963 祣 missing missing +U+796A 祪 exact_ids unresolved components: ⺈ ⿰礻危 +U+796D 祭 missing missing +U+7974 祴 exact_ids unresolved components: 戈 ⿰礻戒 +U+7975 祵 exact_ids unresolved components: 困 ⿰礻困 +U+7979 祹 exact_ids unresolved components: 匋 ⿰礻匋 +U+797B 祻 exact_ids unresolved components: 固 ⿰礻固 +U+797D 祽 exact_ids unresolved components: 卒 ⿰礻卒 +U+7980 禀 missing missing +U+7982 禂 exact_ids unresolved components: 周 ⿰礻周 +U+7985 禅 exact_ids unresolved components: 単 ⿰礻単 +U+7989 禉 exact_ids unresolved components: 酉 ⿰礻酋 +U+798F 福 exact_ids unresolved components: 畐 ⿰礻畐 +U+7994 禔 exact_ids unresolved components: 𤴓 ⿰示是 +U+7999 禙 exact_ids unresolved components: 北 ⿰礻背 +U+799A 禚 exact_ids unresolved components: 羔 ⿰礻羔 +U+799D 禝 exact_ids unresolved components: 畟 ⿰示畟 +U+799E 禞 exact_ids unresolved components: 高 ⿰礻高 +U+799F 禟 exact_ids unresolved components: 唐 ⿰礻唐 +U+79A0 禠 exact_ids unresolved components: 虒 ⿰礻虒 +U+79A2 禢 exact_ids unresolved components: 冃 ⿰礻𦐇 +U+79A4 禤 missing missing +U+79A8 禨 exact_ids unresolved components: 戍 ⿰礻幾 +U+79AA 禪 exact_ids unresolved components: 單 ⿰示單 +U+79AC 禬 exact_ids unresolved components: 曾 ⿰礻會 +U+79B1 禱 exact_ids unresolved components: 壽 ⿰示壽 +U+79B3 禳 exact_ids unresolved components: 襄 ⿰示襄 +U+79B5 禵 exact_ids unresolved components: 𤴓 ⿰礻題 +U+79B9 禹 missing missing +U+79BB 离 exact_ids unresolved components: 凶 ⿱㐫禸 +U+79BC 禼 exact_ids unresolved components: 龱 ⿱卤禸 +U+79BD 禽 exact_ids unresolved components: 凶 ⿱人离 +U+79C9 秉 exact_ids unresolved components: ⺕ ⿻禾⺕ +U+79DE 秞 exact_ids unresolved components: 由 ⿰禾由 +U+79E1 秡 exact_ids unresolved components: 犮 ⿰禾犮 +U+79EB 秫 exact_ids unresolved components: 朮 ⿰禾朮 +U+79F0 称 exact_ids unresolved components: ⺈ ⿰禾尔 +U+79F1 秱 exact_ids unresolved components: 同 ⿰禾同 +U+79F5 秵 exact_ids unresolved components: 因 ⿰禾因 +U+7A00 稀 exact_ids unresolved components: 布 ⿰禾希 +U+7A01 稁 missing missing +U+7A05 稅 exact_ids structural collision: 税 ⿰禾兌 +U+7A07 稇 exact_ids unresolved components: 困 ⿰禾困 +U+7A0E 税 exact_ids structural collision: 稅 ⿰禾兌 +U+7A10 稐 exact_ids unresolved components: 𠕁 ⿰禾侖 +U+7A12 稒 exact_ids unresolved components: 固 ⿰禾固 +U+7A13 稓 exact_ids unresolved components: 龷 ⿰禾昔 +U+7A14 稔 exact_ids unresolved components: ㇇ ⿰禾念 +U+7A15 稕 exact_ids unresolved components: 享 ⿰禾享 +U+7A1B 稛 exact_ids unresolved components: 囷 ⿰禾囷 +U+7A1F 稟 exact_ids unresolved components: 回 ⿱㐭禾 +U+7A20 稠 exact_ids unresolved components: 周 ⿰禾周 +U+7A21 稡 exact_ids unresolved components: 卒 ⿰禾卒 +U+7A22 稢 exact_ids unresolved components: 或 ⿰禾或 +U+7A24 稤 exact_ids unresolved components: 京 ⿰禾京 +U+7A25 稥 exact_ids unresolved components: 𤇕 ⿱𤇕日 +U+7A28 稨 exact_ids unresolved components: 𠕁 ⿰禾扁 +U+7A2A 稪 exact_ids unresolved components: 复 ⿰禾复 +U+7A2B 稫 exact_ids unresolved components: 畐 ⿰禾畐 +U+7A2E 種 exact_ids unresolved components: 里 ⿰禾重 +U+7A2F 稯 exact_ids unresolved components: 凶 ⿰禾㚇 +U+7A32 稲 missing missing +U+7A33 稳 exact_ids unresolved components: ⺈ ⿰禾急 +U+7A36 稶 exact_ids unresolved components: 彧 ⿰禾彧 +U+7A37 稷 exact_ids unresolved components: 畟 ⿰禾畟 +U+7A3D 稽 missing missing +U+7A3E 稾 exact_ids unresolved components: 高 ⿱高禾 +U+7A3F 稿 exact_ids unresolved components: 高 ⿰禾高 +U+7A40 穀 missing missing +U+7A42 穂 exact_ids unresolved components: 𤰔 ⿰禾恵 +U+7A44 穄 exact_ids unresolved components: 祭 ⿰禾祭 +U+7A45 穅 exact_ids unresolved components: 隶 ⿰禾康 +U+7A47 穇 exact_ids unresolved components: 參 ⿰禾參 +U+7A49 穉 exact_ids unresolved components: 犀 ⿰禾犀 +U+7A4D 積 exact_ids unresolved components: 龶 ⿰禾責 +U+7A4E 穎 missing missing +U+7A4F 穏 missing missing +U+7A51 穑 exact_ids unresolved components: 啬 ⿰禾啬 +U+7A56 穖 exact_ids unresolved components: 戍 ⿰禾幾 +U+7A57 穗 exact_ids unresolved components: 𤰔 ⿰禾惠 +U+7A5A 穚 exact_ids unresolved components: 冋 ⿰禾喬 +U+7A5C 穜 exact_ids unresolved components: 里 ⿰禾童 +U+7A61 穡 exact_ids unresolved components: 回 ⿰禾嗇 +U+7A62 穢 exact_ids unresolved components: 歲 ⿰禾歲 +U+7A63 穣 exact_ids unresolved components: 㐮 ⿰禾㐮 +U+7A66 穦 exact_ids unresolved components: 賓 ⿰禾賓 +U+7A69 穩 missing missing +U+7A6F 穯 missing missing +U+7A70 穰 exact_ids unresolved components: 襄 ⿰禾襄 +U+7A71 穱 exact_ids unresolved components: 爵 ⿰禾爵 +U+7A72 穲 exact_ids unresolved components: 丽 ⿰禾麗 +U+7A87 窇 exact_ids unresolved components: 包 ⿱穴包 +U+7A8C 窌 exact_ids unresolved components: 卯 ⿱穴卯 +U+7A93 窓 missing missing +U+7A97 窗 exact_ids unresolved components: 囱 ⿱穴囱 +U+7A98 窘 exact_ids unresolved components: 尹 ⿱穴君 +U+7A9A 窚 exact_ids unresolved components: 成 ⿱穴成 +U+7A9B 窛 missing missing +U+7A9E 窞 exact_ids unresolved components: ⺈ ⿱穴臽 +U+7AA2 窢 exact_ids unresolved components: 或 ⿱穴或 +U+7AA3 窣 exact_ids unresolved components: 卒 ⿱穴卒 +U+7AAF 窯 exact_ids unresolved components: 羔 ⿱穴羔 +U+7AB1 窱 exact_ids unresolved components: 條 ⿱穴條 +U+7AB6 窶 exact_ids unresolved components: 婁 ⿱穴婁 +U+7AB7 窷 exact_ids unresolved components: 卯 ⿱穴聊 +U+7ABB 窻 exact_ids unresolved components: 囱 ⿱穴悤 +U+7ABD 窽 exact_ids unresolved components: 疑 ⿱穴疑 +U+7ABE 窾 exact_ids unresolved components: 款 ⿱穴款 +U+7ABF 窿 exact_ids unresolved components: 隆 ⿱穴隆 +U+7AC0 竀 missing missing +U+7AC2 竂 exact_ids unresolved components: 昚 ⿱穴尞 +U+7AC3 竃 missing missing +U+7AC5 竅 exact_ids unresolved components: 敫 ⿱穴敫 +U+7AC8 竈 missing missing +U+7ACA 竊 missing missing +U+7AD1 竑 exact_ids unresolved components: 厷 ⿰立厷 +U+7AD8 竘 exact_ids unresolved components: 句 ⿰立句 +U+7ADC 竜 exact_ids unresolved components: 电 ⿱立电 +U+7AE4 竤 exact_ids unresolved components: 厷 ⿰立宏 +U+7AE5 童 exact_ids unresolved components: 里 ⿱立里 +U+7AEC 竬 exact_ids unresolved components: 禹 ⿰立禹 +U+7AED 竭 exact_ids unresolved components: 匃 ⿰立曷 +U+7AF0 竰 exact_ids unresolved components: 里 ⿰立厘 +U+7AF1 竱 exact_ids unresolved components: 𤰔 ⿰立專 +U+7AF2 竲 exact_ids unresolved components: 曾 ⿰立曾 +U+7AF4 竴 exact_ids unresolved components: 酉 ⿰立尊 +U+7AF5 竵 exact_ids unresolved components: 𩰬 ⿰立𩰬 +U+7AF7 竷 missing missing +U+7AF9 竹 exact_ids unresolved components: 亇 ⿰亇亇 +U+7AFA 竺 exact_ids unresolved components: 亇 ⿱竹二 +U+7AFB 竻 exact_ids unresolved components: 亇 ⿱竹力 +U+7AFC 竼 exact_ids unresolved components: 亇,凡 ⿱竹凡 +U+7AFD 竽 exact_ids unresolved components: 亇 ⿱竹于 +U+7AFE 竾 exact_ids unresolved components: 亇 ⿱竹也 +U+7AFF 竿 exact_ids unresolved components: 亇 ⿱竹干 +U+7B00 笀 exact_ids unresolved components: 亇 ⿱竹亡 +U+7B01 笁 exact_ids unresolved components: 亇 ⿱竹工 +U+7B02 笂 exact_ids unresolved components: 亇 ⿱竹丸 +U+7B03 笃 exact_ids unresolved components: 亇 ⿱竹马 +U+7B04 笄 exact_ids unresolved components: 亇 ⿱竹开 +U+7B05 笅 exact_ids unresolved components: 亇 ⿱竹爻 +U+7B06 笆 exact_ids unresolved components: 亇 ⿱竹巴 +U+7B07 笇 exact_ids unresolved components: 亇 ⿱竹卞 +U+7B08 笈 exact_ids unresolved components: ㇏,亇 ⿱竹及 +U+7B09 笉 exact_ids unresolved components: 亇,匀 ⿱竹匀 +U+7B0A 笊 exact_ids unresolved components: 亇 ⿱竹爪 +U+7B0B 笋 exact_ids unresolved components: 亇,尹 ⿱竹尹 +U+7B0C 笌 exact_ids unresolved components: 亇 ⿱竹牙 +U+7B0D 笍 exact_ids unresolved components: 亇 ⿱竹内 +U+7B0E 笎 exact_ids unresolved components: 亇 ⿱竹元 +U+7B0F 笏 exact_ids unresolved components: 亇 ⿱竹勿 +U+7B10 笐 exact_ids unresolved components: 亇 ⿱竹亢 +U+7B11 笑 exact_ids unresolved components: 亇 ⿱竹夭 +U+7B12 笒 exact_ids unresolved components: ㇇,亇 ⿱竹今 +U+7B13 笓 exact_ids unresolved components: 亇 ⿱竹比 +U+7B14 笔 exact_ids unresolved components: 亇 ⿱竹毛 +U+7B15 笕 exact_ids unresolved components: 亇 ⿱竹见 +U+7B16 笖 exact_ids unresolved components: 亇 ⿱竹以 +U+7B17 笗 exact_ids unresolved components: 亇 ⿱竹冬 +U+7B18 笘 exact_ids unresolved components: 亇 ⿱竹占 +U+7B19 笙 exact_ids unresolved components: 亇 ⿱竹生 +U+7B1A 笚 exact_ids unresolved components: 亇,甲 ⿱竹甲 +U+7B1B 笛 exact_ids unresolved components: 亇,由 ⿱竹由 +U+7B1C 笜 exact_ids unresolved components: 亇 ⿱竹出 +U+7B1D 笝 exact_ids unresolved components: 㘝,亇 ⿱竹㘝 +U+7B1E 笞 exact_ids unresolved components: 亇 ⿱竹台 +U+7B1F 笟 exact_ids unresolved components: 亇 ⿱竹瓜 +U+7B20 笠 exact_ids unresolved components: 亇 ⿱竹立 +U+7B21 笡 exact_ids unresolved components: 亇 ⿱竹且 +U+7B22 笢 exact_ids unresolved components: 亇 ⿱竹民 +U+7B23 笣 exact_ids unresolved components: 亇,包 ⿱竹包 +U+7B24 笤 exact_ids unresolved components: 亇 ⿱竹召 +U+7B25 笥 exact_ids unresolved components: 亇,司 ⿱竹司 +U+7B26 符 exact_ids unresolved components: 亇 ⿱竹付 +U+7B27 笧 exact_ids unresolved components: 亇 ⿱竹册 +U+7B28 笨 exact_ids unresolved components: 亇 ⿱竹本 +U+7B29 笩 exact_ids unresolved components: 亇 ⿱竹代 +U+7B2A 笪 exact_ids unresolved components: 亇 ⿱竹旦 +U+7B2B 笫 exact_ids unresolved components: 亇 ⿱竹𠂔 +U+7B2C 第 exact_ids unresolved components: 亇 ⿱竹𢎨 +U+7B2D 笭 exact_ids unresolved components: 亇 ⿱竹令 +U+7B2E 笮 exact_ids unresolved components: 亇 ⿱竹乍 +U+7B2F 笯 exact_ids unresolved components: 亇 ⿱竹奴 +U+7B30 笰 exact_ids unresolved components: 亇 ⿱竹弗 +U+7B31 笱 exact_ids unresolved components: 亇,句 ⿱竹句 +U+7B32 笲 exact_ids unresolved components: 亇 ⿱竹弁 +U+7B33 笳 exact_ids unresolved components: 亇 ⿱竹加 +U+7B34 笴 exact_ids unresolved components: 亇 ⿱竹可 +U+7B35 笵 exact_ids unresolved components: 亇 ⿱竹氾 +U+7B36 笶 exact_ids unresolved components: 亇 ⿱竹矢 +U+7B37 笷 exact_ids unresolved components: 亇,卯 ⿱竹卯 +U+7B38 笸 exact_ids unresolved components: 亇 ⿱竹叵 +U+7B39 笹 exact_ids unresolved components: 亇 ⿱竹世 +U+7B3A 笺 exact_ids unresolved components: 亇,戈 ⿱竹戋 +U+7B3B 笻 exact_ids unresolved components: 亇 ⿱竹卭 +U+7B3C 笼 exact_ids unresolved components: 亇 ⿱竹龙 +U+7B3D 笽 exact_ids unresolved components: 亇 ⿱竹皿 +U+7B3E 笾 exact_ids unresolved components: 亇 ⿱竹边 +U+7B3F 笿 exact_ids unresolved components: 亇 ⿱竹各 +U+7B40 筀 exact_ids unresolved components: 亇 ⿱竹圭 +U+7B41 筁 exact_ids unresolved components: 亇 ⿱竹曲 +U+7B42 筂 exact_ids unresolved components: 亇 ⿱竹池 +U+7B43 筃 exact_ids unresolved components: 亇,因 ⿱竹因 +U+7B44 筄 exact_ids unresolved components: 亇 ⿱竹兆 +U+7B45 筅 exact_ids unresolved components: 亇 ⿱竹先 +U+7B46 筆 exact_ids unresolved components: 亇,聿 ⿱竹聿 +U+7B47 筇 exact_ids unresolved components: 亇 ⿱竹邛 +U+7B48 筈 exact_ids unresolved components: 亇 ⿱竹舌 +U+7B49 等 exact_ids unresolved components: 亇 ⿱竹寺 +U+7B4A 筊 exact_ids unresolved components: 亇 ⿱竹交 +U+7B4B 筋 exact_ids unresolved components: 亇 ⿱竹肋 +U+7B4C 筌 exact_ids unresolved components: 亇 ⿱竹全 +U+7B4D 筍 exact_ids unresolved components: 亇,旬 ⿱竹旬 +U+7B4E 筎 exact_ids unresolved components: 亇 ⿱竹如 +U+7B4F 筏 exact_ids unresolved components: 亇,戈 ⿱竹伐 +U+7B50 筐 exact_ids unresolved components: 亇,匡 ⿱竹匡 +U+7B51 筑 exact_ids unresolved components: 亇,凡 ⿱竹巩 +U+7B52 筒 exact_ids unresolved components: 亇,同 ⿱竹同 +U+7B53 筓 exact_ids unresolved components: 亇 ⿱竹幵 +U+7B54 答 exact_ids unresolved components: 亇 ⿱竹合 +U+7B55 筕 exact_ids unresolved components: 亇 ⿱竹行 +U+7B56 策 exact_ids unresolved components: 亇 ⿱竹朿 +U+7B57 筗 exact_ids unresolved components: 亇 ⿱竹仲 +U+7B58 筘 exact_ids unresolved components: 亇 ⿱竹扣 +U+7B59 筙 exact_ids unresolved components: 亇,耒 ⿱竹耒 +U+7B5A 筚 exact_ids unresolved components: 亇 ⿱竹毕 +U+7B5B 筛 exact_ids unresolved components: 亇 ⿱竹师 +U+7B5C 筜 exact_ids unresolved components: 亇 ⿱竹当 +U+7B5D 筝 exact_ids unresolved components: 亇,争 ⿱竹争 +U+7B5E 筞 exact_ids unresolved components: 亇 ⿱竹宋 +U+7B5F 筟 exact_ids unresolved components: 亇 ⿱竹孚 +U+7B60 筠 exact_ids unresolved components: 亇,匀 ⿱竹均 +U+7B61 筡 exact_ids unresolved components: 亇 ⿱竹余 +U+7B62 筢 exact_ids unresolved components: 亇 ⿱竹把 +U+7B63 筣 exact_ids unresolved components: 亇 ⿱竹利 +U+7B64 筤 exact_ids unresolved components: 亇 ⿱竹良 +U+7B65 筥 exact_ids unresolved components: 亇,呂 ⿱竹呂 +U+7B66 筦 exact_ids unresolved components: 亇 ⿱竹完 +U+7B67 筧 exact_ids unresolved components: 亇 ⿱竹見 +U+7B68 筨 exact_ids unresolved components: ㇇,亇 ⿱竹含 +U+7B69 筩 exact_ids unresolved components: 亇 ⿱竹甬 +U+7B6A 筪 exact_ids unresolved components: 亇,匣 ⿱竹匣 +U+7B6B 筫 exact_ids unresolved components: 亇 ⿱竹貝 +U+7B6C 筬 exact_ids unresolved components: 亇,成 ⿱竹成 +U+7B6D 筭 exact_ids unresolved components: 亇 ⿱竹弄 +U+7B6E 筮 exact_ids unresolved components: 亇 ⿱竹巫 +U+7B6F 筯 exact_ids unresolved components: 亇 ⿱竹助 +U+7B70 筰 exact_ids unresolved components: 亇 ⿱竹作 +U+7B71 筱 exact_ids unresolved components: 亇,攸 ⿱竹攸 +U+7B72 筲 exact_ids unresolved components: 亇 ⿱竹肖 +U+7B73 筳 exact_ids unresolved components: 亇 ⿱竹廷 +U+7B74 筴 exact_ids unresolved components: 亇 ⿱竹夾 +U+7B75 筵 exact_ids unresolved components: 亇 ⿱竹延 +U+7B76 筶 exact_ids unresolved components: 亇 ⿱竹告 +U+7B77 筷 exact_ids unresolved components: 亇 ⿱竹快 +U+7B78 筸 exact_ids unresolved components: 亇 ⿱竹旱 +U+7B79 筹 exact_ids unresolved components: 亇 ⿱竹寿 +U+7B7A 筺 exact_ids unresolved components: 亇,匤 ⿱竹匤 +U+7B7B 筻 exact_ids unresolved components: 亇 ⿱竹更 +U+7B7C 筼 exact_ids unresolved components: 亇 ⿱竹员 +U+7B7D 筽 exact_ids unresolved components: 亇 ⿱竹吴 +U+7B7E 签 exact_ids unresolved components: 亇,佥 ⿱竹佥 +U+7B7F 筿 exact_ids unresolved components: 亇 ⿱竹条 +U+7B80 简 exact_ids unresolved components: 亇,间 ⿱竹间 +U+7B81 箁 exact_ids unresolved components: 亇 ⿱竹咅 +U+7B82 箂 exact_ids unresolved components: 亇 ⿱竹來 +U+7B83 箃 exact_ids unresolved components: 亇 ⿱竹取 +U+7B84 箄 exact_ids unresolved components: 亇 ⿱竹卑 +U+7B85 箅 exact_ids unresolved components: 亇 ⿱竹畀 +U+7B86 箆 missing missing +U+7B87 箇 exact_ids unresolved components: 亇,固 ⿱竹固 +U+7B88 箈 exact_ids unresolved components: 亇 ⿱竹治 +U+7B89 箉 exact_ids unresolved components: 亇 ⿱竹拐 +U+7B8A 箊 exact_ids unresolved components: 亇 ⿱竹於 +U+7B8B 箋 exact_ids unresolved components: 亇,戈 ⿱竹戔 +U+7B8C 箌 exact_ids unresolved components: 亇 ⿱竹到 +U+7B8D 箍 exact_ids unresolved components: 亇,匝 ⿱竹㧜 +U+7B8E 箎 exact_ids unresolved components: 亇 ⿱竹虎 +U+7B8F 箏 exact_ids unresolved components: 亇 ⿱竹爭 +U+7B90 箐 exact_ids unresolved components: 亇,龶 ⿱竹青 +U+7B91 箑 exact_ids unresolved components: 亇,疌 ⿱竹疌 +U+7B92 箒 exact_ids unresolved components: 亇 ⿱竹帚 +U+7B93 箓 exact_ids unresolved components: 亇 ⿱竹录 +U+7B94 箔 exact_ids unresolved components: 亇 ⿱竹泊 +U+7B95 箕 exact_ids unresolved components: 亇 ⿱竹其 +U+7B96 箖 exact_ids unresolved components: 亇 ⿱竹林 +U+7B97 算 exact_ids unresolved components: 亇,𥃲 ⿱竹𥃲 +U+7B98 箘 exact_ids unresolved components: 亇,囷 ⿱竹囷 +U+7B99 箙 exact_ids unresolved components: 亇 ⿱竹服 +U+7B9A 箚 exact_ids unresolved components: 亇 ⿱竹㓣 +U+7B9B 箛 exact_ids unresolved components: 亇 ⿱竹孤 +U+7B9C 箜 exact_ids unresolved components: 亇 ⿱竹空 +U+7B9D 箝 exact_ids unresolved components: 亇 ⿱竹拑 +U+7B9E 箞 exact_ids unresolved components: 亇 ⿱竹卷 +U+7B9F 箟 exact_ids unresolved components: 亇 ⿱竹昆 +U+7BA0 箠 exact_ids unresolved components: 亇 ⿱竹垂 +U+7BA1 管 exact_ids unresolved components: 亇 ⿱竹官 +U+7BA2 箢 exact_ids unresolved components: 亇 ⿱竹宛 +U+7BA3 箣 exact_ids unresolved components: 亇 ⿱竹刺 +U+7BA4 箤 exact_ids unresolved components: 亇,卒 ⿱竹卒 +U+7BA5 箥 exact_ids unresolved components: 亇 ⿱竹波 +U+7BA6 箦 exact_ids unresolved components: 亇,龶 ⿱竹责 +U+7BA7 箧 missing missing +U+7BA8 箨 exact_ids unresolved components: 亇 ⿱竹择 +U+7BA9 箩 exact_ids unresolved components: 亇 ⿱竹罗 +U+7BAA 箪 exact_ids unresolved components: 亇,単 ⿱竹単 +U+7BAB 箫 exact_ids unresolved components: 亇,肃 ⿱竹肃 +U+7BAC 箬 exact_ids unresolved components: 亇 ⿱竹若 +U+7BAD 箭 exact_ids unresolved components: 亇 ⿱竹前 +U+7BAE 箮 exact_ids unresolved components: 亇,亘 ⿱竹宣 +U+7BAF 箯 exact_ids unresolved components: 亇 ⿱竹便 +U+7BB0 箰 exact_ids unresolved components: 亇,旬 ⿱筍子 +U+7BB1 箱 exact_ids unresolved components: 亇 ⿱竹相 +U+7BB2 箲 exact_ids unresolved components: 亇 ⿱竹洗 +U+7BB3 箳 exact_ids unresolved components: 亇 ⿱竹屏 +U+7BB4 箴 exact_ids unresolved components: 亇,咸 ⿱竹咸 +U+7BB5 箵 exact_ids unresolved components: 亇 ⿱竹省 +U+7BB6 箶 exact_ids unresolved components: 亇 ⿱竹胡 +U+7BB7 箷 exact_ids unresolved components: 亇 ⿱竹施 +U+7BB8 箸 exact_ids unresolved components: 亇 ⿱竹者 +U+7BB9 箹 exact_ids unresolved components: 亇,勺 ⿱竹約 +U+7BBA 箺 exact_ids unresolved components: 亇 ⿱竹春 +U+7BBB 箻 exact_ids unresolved components: 亇,聿 ⿱竹律 +U+7BBC 箼 exact_ids unresolved components: 亇 ⿱竹屋 +U+7BBD 箽 exact_ids unresolved components: 亇,里 ⿱竹重 +U+7BBE 箾 exact_ids unresolved components: 亇 ⿱竹削 +U+7BBF 箿 exact_ids unresolved components: 亇 ⿱竹咠 +U+7BC0 節 exact_ids unresolved components: 亇 ⿱竹即 +U+7BC1 篁 exact_ids unresolved components: 亇 ⿱竹皇 +U+7BC2 篂 exact_ids unresolved components: 亇 ⿱竹星 +U+7BC3 篃 exact_ids unresolved components: 亇 ⿱竹眉 +U+7BC4 範 exact_ids unresolved components: 亇 ⿱竹𨊠 +U+7BC5 篅 exact_ids unresolved components: 亇 ⿱竹耑 +U+7BC6 篆 exact_ids unresolved components: 亇 ⿱竹彖 +U+7BC7 篇 exact_ids unresolved components: 亇,𠕁 ⿱竹扁 +U+7BC8 篈 exact_ids unresolved components: 亇 ⿱竹封 +U+7BC9 築 exact_ids unresolved components: 亇,凡 ⿱筑木 +U+7BCA 篊 exact_ids unresolved components: 亇 ⿱竹洪 +U+7BCB 篋 exact_ids unresolved components: 亇,匧 ⿱竹匧 +U+7BCC 篌 exact_ids unresolved components: 亇,侯 ⿱竹侯 +U+7BCD 篍 exact_ids unresolved components: 亇 ⿱竹秋 +U+7BCE 篎 exact_ids unresolved components: 亇 ⿱竹眇 +U+7BCF 篏 exact_ids unresolved components: 亇 ⿱竹𣢟 +U+7BD0 篐 exact_ids unresolved components: 亇,匝 ⿱竹𣐝 +U+7BD1 篑 exact_ids unresolved components: 亇 ⿱竹贵 +U+7BD2 篒 exact_ids unresolved components: 亇 ⿱竹食 +U+7BD3 篓 exact_ids unresolved components: 亇 ⿱竹娄 +U+7BD4 篔 exact_ids unresolved components: 亇 ⿱竹員 +U+7BD5 篕 exact_ids unresolved components: 亇 ⿱竹盍 +U+7BD6 篖 exact_ids unresolved components: 亇,唐 ⿱竹唐 +U+7BD7 篗 exact_ids unresolved components: 亇 ⿱竹隻 +U+7BD8 篘 exact_ids unresolved components: 亇,芻 ⿱竹芻 +U+7BD9 篙 exact_ids unresolved components: 亇,高 ⿱竹高 +U+7BDA 篚 exact_ids unresolved components: 亇,匪 ⿱竹匪 +U+7BDB 篛 exact_ids unresolved components: 亇 ⿱竹弱 +U+7BDC 篜 exact_ids unresolved components: 亇 ⿱竹烝 +U+7BDD 篝 exact_ids unresolved components: 亇 ⿱竹冓 +U+7BDE 篞 exact_ids unresolved components: 亇 ⿱竹涅 +U+7BDF 篟 exact_ids unresolved components: 亇,円,龶 ⿱竹倩 +U+7BE0 篠 exact_ids unresolved components: 亇,條 ⿱竹條 +U+7BE1 篡 exact_ids unresolved components: 亇,𥃲 ⿱算厶 +U+7BE2 篢 exact_ids unresolved components: 亇 ⿱竹貢 +U+7BE3 篣 exact_ids unresolved components: 亇 ⿱竹旁 +U+7BE4 篤 exact_ids unresolved components: 亇 ⿱竹馬 +U+7BE5 篥 exact_ids unresolved components: 亇 ⿱竹栗 +U+7BE6 篦 exact_ids unresolved components: 亇,囟 ⿱竹𣬉 +U+7BE7 篧 exact_ids unresolved components: 亇 ⿱竹隺 +U+7BE8 篨 exact_ids unresolved components: 亇 ⿱竹除 +U+7BE9 篩 exact_ids unresolved components: 亇,師 ⿱竹師 +U+7BEA 篪 exact_ids unresolved components: 亇,虒 ⿱竹虒 +U+7BEB 篫 exact_ids unresolved components: 亇,凡 ⿱筑手 +U+7BEC 篬 exact_ids unresolved components: 亇,倉 ⿱竹倉 +U+7BED 篭 exact_ids unresolved components: 亇,电 ⿱竹竜 +U+7BEE 篮 exact_ids unresolved components: 亇,监 ⿱竹监 +U+7BEF 篯 exact_ids unresolved components: 亇,戈 ⿱竹钱 +U+7BF0 篰 exact_ids unresolved components: 亇 ⿱竹部 +U+7BF1 篱 exact_ids unresolved components: 亇,凶 ⿱竹离 +U+7BF2 篲 exact_ids unresolved components: 亇 ⿱竹彗 +U+7BF3 篳 exact_ids unresolved components: 亇 ⿱竹畢 +U+7BF4 篴 exact_ids unresolved components: 亇 ⿱竹逐 +U+7BF5 篵 exact_ids unresolved components: 亇,從 ⿱竹從 +U+7BF6 篶 exact_ids unresolved components: 亇 ⿱竹焉 +U+7BF7 篷 exact_ids unresolved components: 亇 ⿱竹逢 +U+7BF8 篸 exact_ids unresolved components: 亇,參 ⿱竹參 +U+7BF9 篹 missing missing +U+7BFA 篺 exact_ids unresolved components: 亇 ⿱竹捭 +U+7BFB 篻 exact_ids unresolved components: 亇 ⿱竹票 +U+7BFC 篼 exact_ids unresolved components: 亇,兜 ⿱竹兜 +U+7BFD 篽 exact_ids unresolved components: 亇 ⿱竹御 +U+7BFE 篾 exact_ids unresolved components: 亇,戍 ⿱𥬥戍 +U+7BFF 篿 exact_ids unresolved components: 亇,𤰔 ⿱竹專 +U+7C00 簀 exact_ids unresolved components: 亇,龶 ⿱竹責 +U+7C01 簁 exact_ids unresolved components: 亇 ⿱竹徙 +U+7C02 簂 exact_ids unresolved components: 亇,國 ⿱竹國 +U+7C03 簃 exact_ids unresolved components: 亇 ⿱竹移 +U+7C04 簄 exact_ids unresolved components: 亇 ⿱竹扈 +U+7C05 簅 exact_ids unresolved components: 亇 ⿱竹產 +U+7C06 簆 exact_ids unresolved components: 亇,寇 ⿱竹寇 +U+7C07 簇 exact_ids unresolved components: 亇,族 ⿱竹族 +U+7C08 簈 exact_ids unresolved components: 亇,幷 ⿱竹屛 +U+7C09 簉 exact_ids unresolved components: 亇 ⿱竹造 +U+7C0A 簊 exact_ids unresolved components: 亇 ⿱竹基 +U+7C0B 簋 exact_ids unresolved components: 亇 ⿱筤皿 +U+7C0C 簌 exact_ids unresolved components: 亇 ⿱竹欶 +U+7C0D 簍 exact_ids unresolved components: 亇,婁 ⿱竹婁 +U+7C0E 簎 exact_ids unresolved components: 亇,龷 ⿱竹措 +U+7C0F 簏 exact_ids unresolved components: 亇 ⿱竹鹿 +U+7C10 簐 exact_ids unresolved components: 亇 ⿱竹軟 +U+7C11 簑 exact_ids unresolved components: 亇,衰 ⿱竹衰 +U+7C12 簒 missing missing +U+7C13 簓 exact_ids unresolved components: 亇,周 ⿱竹彫 +U+7C14 簔 exact_ids unresolved components: 亇,衰 ⿱竹衰 +U+7C15 簕 exact_ids unresolved components: 亇 ⿱竹勒 +U+7C16 簖 exact_ids unresolved components: 亇,断 ⿱竹断 +U+7C17 簗 exact_ids unresolved components: 亇,梁 ⿱竹梁 +U+7C18 簘 exact_ids unresolved components: 亇,粛 ⿱竹粛 +U+7C19 簙 exact_ids unresolved components: 亇 ⿱竹博 +U+7C1A 簚 missing missing +U+7C1B 簛 exact_ids unresolved components: 亇 ⿱竹斯 +U+7C1C 簜 exact_ids unresolved components: 亇 ⿱竹湯 +U+7C1D 簝 exact_ids unresolved components: 亇,昚 ⿱竹尞 +U+7C1E 簞 exact_ids unresolved components: 亇,單 ⿱竹單 +U+7C1F 簟 exact_ids unresolved components: 亇 ⿱竹覃 +U+7C20 簠 exact_ids unresolved components: 亇 ⿱竹盙 +U+7C21 簡 exact_ids unresolved components: 亇,間 ⿱竹間 +U+7C22 簢 exact_ids unresolved components: 亇,閔 ⿱竹閔 +U+7C23 簣 exact_ids unresolved components: 亇 ⿱竹貴 +U+7C24 簤 exact_ids unresolved components: 亇 ⿱竹買 +U+7C25 簥 exact_ids unresolved components: 亇,冋 ⿱竹喬 +U+7C26 簦 exact_ids unresolved components: 亇 ⿱竹登 +U+7C27 簧 exact_ids unresolved components: 亇 ⿱竹黄 +U+7C28 簨 exact_ids unresolved components: 亇 ⿱竹巽 +U+7C29 簩 exact_ids unresolved components: 亇 ⿱竹勞 +U+7C2A 簪 exact_ids unresolved components: 亇 ⿱竹朁 +U+7C2B 簫 exact_ids unresolved components: 亇 ⿱竹肅 +U+7C2C 簬 exact_ids unresolved components: 亇 ⿱竹路 +U+7C2D 簭 missing missing +U+7C2E 簮 exact_ids unresolved components: 亇 ⿱竹替 +U+7C2F 簯 exact_ids unresolved components: 亇 ⿱竹棋 +U+7C30 簰 exact_ids unresolved components: 亇 ⿱竹牌 +U+7C31 簱 exact_ids unresolved components: 亇 ⿱竹𣄃 +U+7C32 簲 exact_ids unresolved components: 亇 ⿱竹脾 +U+7C33 簳 exact_ids unresolved components: 亇,幹 ⿱竹幹 +U+7C34 簴 exact_ids unresolved components: 亇 ⿱竹虡 +U+7C35 簵 exact_ids unresolved components: 亇 ⿱竹輅 +U+7C36 簶 exact_ids unresolved components: 亇 ⿱竹禄 +U+7C37 簷 exact_ids unresolved components: 亇,詹 ⿱竹詹 +U+7C38 簸 exact_ids unresolved components: 亇,𤿺 ⿱竹𤿺 +U+7C39 簹 exact_ids unresolved components: 亇,冋 ⿱竹當 +U+7C3A 簺 exact_ids unresolved components: 亇 ⿱竹塞 +U+7C3B 簻 exact_ids unresolved components: 亇 ⿱竹過 +U+7C3C 簼 exact_ids unresolved components: 亇 ⿱竹搆 +U+7C3D 簽 exact_ids unresolved components: 亇,僉 ⿱竹僉 +U+7C3E 簾 exact_ids unresolved components: 亇 ⿱竹廉 +U+7C3F 簿 exact_ids unresolved components: 亇 ⿱竹溥 +U+7C40 籀 exact_ids unresolved components: 㨨,亇 ⿱竹㨨 +U+7C41 籁 exact_ids unresolved components: ⺈,亇 ⿱竹赖 +U+7C42 籂 exact_ids unresolved components: 亇,布 ⿱竹飾 +U+7C43 籃 exact_ids unresolved components: 亇,監 ⿱竹監 +U+7C44 籄 exact_ids unresolved components: 亇,匱 ⿱竹匱 +U+7C45 籅 exact_ids unresolved components: 亇 ⿱竹與 +U+7C46 籆 exact_ids unresolved components: 亇 ⿱竹蒦 +U+7C47 籇 exact_ids unresolved components: 亇,豪 ⿱竹豪 +U+7C48 籈 exact_ids unresolved components: 亇 ⿱竹甄 +U+7C49 籉 exact_ids unresolved components: 亇 ⿱竹臺 +U+7C4A 籊 exact_ids unresolved components: 亇 ⿱竹翟 +U+7C4B 籋 exact_ids unresolved components: 亇 ⿱竹爾 +U+7C4C 籌 exact_ids unresolved components: 亇,壽 ⿱竹壽 +U+7C4D 籍 exact_ids unresolved components: 亇,耒,龷 ⿱竹耤 +U+7C4E 籎 exact_ids unresolved components: 亇,疑 ⿱竹疑 +U+7C4F 籏 exact_ids unresolved components: 亇,旗 ⿱竹旗 +U+7C50 籐 exact_ids unresolved components: 亇,𣳾 ⿱竹滕 +U+7C51 籑 missing missing +U+7C52 籒 exact_ids unresolved components: 㩅,亇 ⿱竹㩅 +U+7C53 籓 exact_ids unresolved components: 亇 ⿱竹潘 +U+7C54 籔 exact_ids unresolved components: 亇,婁 ⿱竹數 +U+7C55 籕 exact_ids unresolved components: 亇,留 ⿱竹榴 +U+7C56 籖 exact_ids unresolved components: 亇,韯 ⿱竹韯 +U+7C57 籗 exact_ids unresolved components: 亇 ⿱竹霍 +U+7C58 籘 exact_ids unresolved components: 亇 ⿱竹縢 +U+7C59 籙 exact_ids unresolved components: 亇 ⿱竹録 +U+7C5A 籚 exact_ids unresolved components: 亇,𧆨 ⿱竹盧 +U+7C5B 籛 exact_ids unresolved components: 亇,戈 ⿱竹錢 +U+7C5C 籜 exact_ids unresolved components: 亇,𢆉 ⿱竹擇 +U+7C5D 籝 exact_ids unresolved components: 亇,嬴 ⿱竹嬴 +U+7C5E 籞 exact_ids unresolved components: 亇 ⿱竹禦 +U+7C5F 籟 exact_ids unresolved components: 亇,賴 ⿱竹賴 +U+7C60 籠 exact_ids unresolved components: 亇 ⿱竹龍 +U+7C61 籡 exact_ids unresolved components: 亇,僉 ⿱竹撿 +U+7C62 籢 exact_ids unresolved components: 亇,僉 ⿱竹斂 +U+7C63 籣 exact_ids unresolved components: 亇,闌 ⿱竹闌 +U+7C64 籤 exact_ids unresolved components: 亇,韱 ⿱竹韱 +U+7C65 籥 exact_ids unresolved components: 亇 ⿱竹龠 +U+7C66 籦 exact_ids unresolved components: 亇,里 ⿱竹鍾 +U+7C67 籧 exact_ids unresolved components: 亇 ⿱竹遽 +U+7C68 籨 exact_ids unresolved components: 亇,僉 ⿱竹歛 +U+7C69 籩 exact_ids unresolved components: 亇,臱 ⿱竹邊 +U+7C6A 籪 exact_ids unresolved components: 亇 ⿱竹斷 +U+7C6B 籫 exact_ids unresolved components: 亇 ⿱竹贊 +U+7C6C 籬 exact_ids unresolved components: 亇,凶 ⿱竹離 +U+7C6D 籭 exact_ids unresolved components: 丽,亇 ⿱竹麗 +U+7C6E 籮 exact_ids unresolved components: 亇 ⿱竹羅 +U+7C6F 籯 exact_ids unresolved components: 亇,贏 ⿱竹贏 +U+7C70 籰 exact_ids unresolved components: 亇 ⿱竹矍 +U+7C71 籱 exact_ids unresolved components: 亇 ⿱竹靃 +U+7C72 籲 exact_ids unresolved components: 亇 ⿱竹龥 +U+7C7A 籺 exact_ids unresolved components: 乞 ⿰米乞 +U+7C84 粄 exact_ids unresolved components: 反 ⿰米反 +U+7C8E 粎 exact_ids unresolved components: ㇏ ⿰米尺 +U+7C99 粙 exact_ids unresolved components: 由 ⿰米由 +U+7C9B 粛 missing missing +U+7CA1 粡 exact_ids unresolved components: 同 ⿰米同 +U+7CA4 粤 missing missing +U+7CB1 粱 missing missing +U+7CB2 粲 exact_ids unresolved components: 𣦼 ⿱𣦼米 +U+7CB4 粴 exact_ids unresolved components: 里 ⿰米里 +U+7CB5 粵 missing missing +U+7CB7 粷 exact_ids unresolved components: 匊 ⿰米匊 +U+7CB9 粹 exact_ids unresolved components: 卒 ⿰米卒 +U+7CBE 精 exact_ids unresolved components: 龶 ⿰米青 +U+7CC1 糁 exact_ids unresolved components: 参 ⿰米参 +U+7CC2 糂 exact_ids unresolved components: 匹 ⿰米甚 +U+7CC4 糄 exact_ids unresolved components: 𠕁 ⿰米扁 +U+7CC7 糇 exact_ids unresolved components: 侯 ⿰米侯 +U+7CC9 糉 exact_ids unresolved components: 凶 ⿰米㚇 +U+7CCE 糎 exact_ids unresolved components: 里 ⿰米厘 +U+7CD2 糒 missing missing +U+7CD3 糓 missing missing +U+7CD5 糕 exact_ids unresolved components: 羔 ⿰米羔 +U+7CD6 糖 exact_ids unresolved components: 唐 ⿰米唐 +U+7CDB 糛 exact_ids unresolved components: 冋 ⿰米堂 +U+7CDD 糝 exact_ids unresolved components: 參 ⿰米參 +U+7CDF 糟 exact_ids unresolved components: 曹 ⿰米曹 +U+7CE0 糠 exact_ids unresolved components: 隶 ⿰米康 +U+7CE4 糤 exact_ids unresolved components: 散 ⿰米散 +U+7CE7 糧 exact_ids unresolved components: 里 ⿰米量 +U+7CE9 糩 exact_ids unresolved components: 曾 ⿰米會 +U+7CEA 糪 exact_ids unresolved components: 𡰪 ⿱辟米 +U+7CEB 糫 exact_ids unresolved components: 睘 ⿰米睘 +U+7CED 糭 missing missing +U+7CEE 糮 exact_ids unresolved components: 監 ⿰米監 +U+7CF0 糰 exact_ids unresolved components: 團 ⿰米團 +U+7CF1 糱 exact_ids unresolved components: 𡴎 ⿱辥米 +U+7CF3 糳 missing missing +U+7CF5 糵 exact_ids unresolved components: 薛 ⿱薛米 +U+7CF7 糷 exact_ids unresolved components: 闌 ⿰米蘭 +U+7D04 約 exact_ids unresolved components: 勺 ⿰糹勺 +U+7D07 紇 exact_ids unresolved components: 乞 ⿰糹乞 +U+7D12 紒 exact_ids unresolved components: 介 ⿰糹介 +U+7D18 紘 exact_ids unresolved components: 厷 ⿰糹厷 +U+7D1A 級 exact_ids unresolved components: ㇏ ⿰糹及 +U+7D1F 紟 exact_ids unresolved components: ㇇ ⿰糹今 +U+7D20 素 exact_ids unresolved components: 龶 ⿱龶糸 +U+7D2C 紬 exact_ids unresolved components: 由 ⿰糹由 +U+7D31 紱 exact_ids unresolved components: 犮 ⿰糹犮 +U+7D33 紳 exact_ids unresolved components: 申 ⿰糹申 +U+7D45 絅 exact_ids unresolved components: 冋 ⿰糹冋 +U+7D47 絇 exact_ids unresolved components: 句 ⿰糹句 +U+7D55 絕 missing missing +U+7D56 絖 exact_ids unresolved components: ⺌ ⿰糹光 +U+7D57 絗 exact_ids unresolved components: 回 ⿰糹回 +U+7D59 絙 exact_ids unresolved components: 亘 ⿰糹亘 +U+7D5A 絚 exact_ids unresolved components: 亙 ⿰糹亙 +U+7D5B 絛 missing missing +U+7D62 絢 exact_ids unresolved components: 旬 ⿰糹旬 +U+7D67 絧 exact_ids unresolved components: 同 ⿰糹同 +U+7D68 絨 exact_ids unresolved components: 戈 ⿰糹戎 +U+7D6A 絪 exact_ids unresolved components: 因 ⿰糹因 +U+7D6F 絯 exact_ids unresolved components: 亥 ⿰糹亥 +U+7D76 絶 exact_ids unresolved components: ⺈ ⿰糹色 +U+7D7A 絺 exact_ids unresolved components: 布 ⿰糹希 +U+7D7D 絽 exact_ids unresolved components: 呂 ⿰糹呂 +U+7D7E 絾 exact_ids unresolved components: 成 ⿰糹成 +U+7D87 綇 exact_ids unresolved components: 酉 ⿰糹酉 +U+7D8B 綋 exact_ids unresolved components: 厷 ⿰糹宏 +U+7D91 綑 exact_ids unresolved components: 困 ⿰糹困 +U+7D93 經 exact_ids unresolved components: 巠 ⿰糹巠 +U+7D99 継 missing missing +U+7DA1 綡 exact_ids unresolved components: 京 ⿰糹京 +U+7DA2 綢 exact_ids unresolved components: 周 ⿰糹周 +U+7DA7 綧 exact_ids unresolved components: 享 ⿰糹享 +U+7DAA 綪 exact_ids unresolved components: 龶 ⿰糹青 +U+7DAB 綫 exact_ids unresolved components: 戈 ⿰糹戔 +U+7DAE 綮 missing missing +U+7DAF 綯 exact_ids unresolved components: 匋 ⿰糹匋 +U+7DB1 綱 exact_ids unresolved components: 岡 ⿰糹岡 +U+7DB2 網 exact_ids unresolved components: 罔 ⿰糹罔 +U+7DB7 綷 exact_ids unresolved components: 卒 ⿰糹卒 +U+7DB8 綸 exact_ids unresolved components: 𠕁 ⿰糹侖 +U+7DBB 綻 exact_ids unresolved components: 𤴓 ⿰糹定 +U+7DC0 緀 exact_ids unresolved components: 妻 ⿰糹妻 +U+7DC1 緁 exact_ids unresolved components: 疌 ⿰糹疌 +U+7DC3 緃 missing missing +U+7DC8 緈 exact_ids unresolved components: 𢆉 ⿰糹幸 +U+7DCE 緎 exact_ids unresolved components: 或 ⿰糹或 +U+7DD4 緔 exact_ids unresolved components: 冋 ⿰糹尚 +U+7DD5 緕 exact_ids unresolved components: 斉 ⿰糹斉 +U+7DD8 緘 exact_ids unresolved components: 咸 ⿰糹咸 +U+7DDC 緜 missing missing +U+7DDE 緞 exact_ids unresolved components: 段 ⿰糹段 +U+7DDF 緟 exact_ids unresolved components: 里 ⿰糹重 +U+7DE7 緧 exact_ids unresolved components: 酉 ⿰糹酋 +U+7DE8 編 exact_ids unresolved components: 𠕁 ⿰糹扁 +U+7DEA 緪 exact_ids unresolved components: 亙 ⿰糹恆 +U+7DEE 緮 exact_ids unresolved components: 复 ⿰糹复 +U+7DF1 緱 exact_ids unresolved components: 侯 ⿰糹侯 +U+7DF5 緵 exact_ids unresolved components: 凶 ⿰糸㚇 +U+7DF9 緹 exact_ids unresolved components: 𤴓 ⿰糹是 +U+7DFE 緾 exact_ids unresolved components: 里 ⿰糹厘 +U+7E02 縂 exact_ids unresolved components: 𠮦 ⿰糹总 +U+7E04 縄 exact_ids unresolved components: 申 ⿰糸𤰶 +U+7E05 縅 exact_ids unresolved components: 威 ⿰糹威 +U+7E06 縆 exact_ids unresolved components: 亘 ⿰糹恒 +U+7E07 縇 exact_ids unresolved components: 亘 ⿰糹宣 +U+7E09 縉 exact_ids unresolved components: 晉 ⿰糹晉 +U+7E0A 縊 exact_ids unresolved components: 益 ⿰糹益 +U+7E10 縐 exact_ids unresolved components: 芻 ⿰糹芻 +U+7E15 縕 exact_ids unresolved components: 囚 ⿰糸𥁕 +U+7E16 縖 exact_ids unresolved components: 害 ⿰糹害 +U+7E17 縗 exact_ids unresolved components: 衰 ⿰糹衰 +U+7E1E 縞 exact_ids unresolved components: 高 ⿰糹高 +U+7E20 縠 missing missing +U+7E23 縣 exact_ids unresolved components: 県 ⿰県系 +U+7E24 縤 exact_ids unresolved components: 龶 ⿰糹素 +U+7E26 縦 exact_ids unresolved components: 従 ⿰糹従 +U+7E27 縧 exact_ids unresolved components: 條 ⿰糹條 +U+7E28 縨 exact_ids unresolved components: ⺌ ⿰糹晃 +U+7E29 縩 exact_ids unresolved components: 祭 ⿰糹祭 +U+7E2C 縬 exact_ids unresolved components: 戚 ⿰糹戚 +U+7E2D 縭 exact_ids unresolved components: 凶 ⿰糹离 +U+7E2F 縯 exact_ids unresolved components: 寅 ⿰糹寅 +U+7E31 縱 exact_ids unresolved components: 從 ⿰糹從 +U+7E33 縳 exact_ids unresolved components: 𤰔 ⿰糹專 +U+7E34 縴 exact_ids unresolved components: 牽 ⿰糹牽 +U+7E35 縵 exact_ids unresolved components: 曼 ⿰糹曼 +U+7E36 縶 exact_ids unresolved components: 𢆉 ⿱執糸 +U+7E37 縷 exact_ids unresolved components: 婁 ⿰糹婁 +U+7E3C 縼 exact_ids unresolved components: 旋 ⿰糹旋 +U+7E3D 總 exact_ids unresolved components: 囱 ⿰糹悤 +U+7E3E 績 exact_ids unresolved components: 龶 ⿰糹責 +U+7E3F 縿 exact_ids unresolved components: 參 ⿰糹參 +U+7E42 繂 exact_ids unresolved components: 率 ⿰糹率 +U+7E44 繄 exact_ids unresolved components: 医 ⿱殹糸 +U+7E47 繇 missing missing +U+7E49 繉 missing missing +U+7E4A 繊 missing missing +U+7E4C 繌 missing missing +U+7E4D 繍 exact_ids unresolved components: 粛 ⿰糹粛 +U+7E50 繐 exact_ids unresolved components: 𤰔 ⿰糹惠 +U+7E51 繑 exact_ids unresolved components: 冋 ⿰糹喬 +U+7E52 繒 exact_ids unresolved components: 曾 ⿰糹曾 +U+7E54 織 exact_ids unresolved components: 戈 ⿰糸戠 +U+7E55 繕 exact_ids unresolved components: 善 ⿰糹善 +U+7E56 繖 exact_ids unresolved components: 散 ⿰糹散 +U+7E5A 繚 exact_ids unresolved components: 昚 ⿰糸尞 +U+7E5B 繛 exact_ids unresolved components: 龶 ⿰素卓 +U+7E5C 繜 exact_ids unresolved components: 酉 ⿰糹尊 +U+7E5D 繝 exact_ids unresolved components: 閒 ⿰糹閒 +U+7E5F 繟 exact_ids unresolved components: 單 ⿰糹單 +U+7E63 繣 exact_ids unresolved components: 畫 ⿰糹畫 +U+7E64 繤 missing missing +U+7E6A 繪 exact_ids unresolved components: 曾 ⿰糹會 +U+7E6C 繬 exact_ids unresolved components: 回 ⿰糹嗇 +U+7E6D 繭 missing missing +U+7E6E 繮 exact_ids unresolved components: 三 ⿰糸畺 +U+7E6F 繯 exact_ids unresolved components: 睘 ⿰糹睘 +U+7E72 繲 exact_ids unresolved components: 解 ⿰糹解 +U+7E73 繳 exact_ids unresolved components: 敫 ⿰糹敫 +U+7E74 繴 exact_ids unresolved components: 𡰪 ⿱辟糸 +U+7E75 繵 exact_ids unresolved components: 回 ⿰糹亶 +U+7E79 繹 exact_ids unresolved components: 𢆉 ⿰糹睪 +U+7E7A 繺 exact_ids unresolved components: 煞 ⿰糹煞 +U+7E7D 繽 exact_ids unresolved components: 賓 ⿰糹賓 +U+7E7F 繿 exact_ids unresolved components: 監 ⿰糹監 +U+7E81 纁 exact_ids unresolved components: 熏 ⿰糹熏 +U+7E82 纂 missing missing +U+7E85 纅 exact_ids unresolved components: 樂 ⿰糹樂 +U+7E8E 纎 exact_ids unresolved components: 韯 ⿰糹韯 +U+7E8F 纏 exact_ids unresolved components: 里,𡉀 ⿰糹廛 +U+7E91 纑 exact_ids unresolved components: 𧆨 ⿰糹盧 +U+7E94 纔 exact_ids unresolved components: 毚 ⿰糹毚 +U+7E95 纕 exact_ids unresolved components: 襄 ⿰糹襄 +U+7E96 纖 exact_ids unresolved components: 韱 ⿰糹韱 +U+7E9A 纚 exact_ids unresolved components: 丽 ⿰糹麗 +U+7E9B 纛 exact_ids unresolved components: 県,龶 ⿱毒縣 +U+7E9C 纜 exact_ids unresolved components: 覽 ⿰糹覽 +U+7EA5 纥 exact_ids unresolved components: 乞 ⿰纟乞 +U+7EA6 约 exact_ids unresolved components: 勺 ⿰纟勺 +U+7EA7 级 exact_ids unresolved components: ㇏ ⿰纟及 +U+7EAE 纮 exact_ids unresolved components: 厷 ⿰纟厷 +U+7EB2 纲 exact_ids unresolved components: 冈 ⿰纟冈 +U+7EBF 线 exact_ids unresolved components: 戈 ⿰纟戋 +U+7EC2 绂 exact_ids unresolved components: 犮 ⿰纟犮 +U+7EC3 练 exact_ids unresolved components: 𫠣 ⿰纟𫠣 +U+7EC5 绅 exact_ids unresolved components: 申 ⿰纟申 +U+7EC9 绉 exact_ids unresolved components: ⺈ ⿰纟刍 +U+7ED2 绒 exact_ids unresolved components: 戈 ⿰纟戎 +U+7ED5 绕 exact_ids unresolved components: 尧 ⿰纟尧 +U+7EDA 绚 exact_ids unresolved components: 旬 ⿰纟旬 +U+7EDD 绝 exact_ids unresolved components: ⺈ ⿰纟色 +U+7EE7 继 missing missing +U+7EE9 绩 exact_ids unresolved components: 龶 ⿰纟责 +U+7EF1 绱 exact_ids unresolved components: 冋 ⿰纟尚 +U+7EF3 绳 exact_ids unresolved components: 电 ⿰纟黾 +U+7EF8 绸 exact_ids unresolved components: 周 ⿰纟周 +U+7EF9 绹 exact_ids unresolved components: 匋 ⿰纟匋 +U+7EFD 绽 exact_ids unresolved components: 𤴓 ⿰纟定 +U+7F04 缄 exact_ids unresolved components: 咸 ⿰纟咸 +U+7F06 缆 exact_ids unresolved components: 览 ⿰纟览 +U+7F07 缇 exact_ids unresolved components: 𤴓 ⿰纟是 +U+7F0E 缎 exact_ids unresolved components: 段 ⿰纟段 +U+7F11 缑 exact_ids unresolved components: 侯 ⿰纟侯 +U+7F16 编 exact_ids unresolved components: 𠕁 ⿰纟扁 +U+7F1E 缞 exact_ids unresolved components: 衰 ⿰纟衰 +U+7F1F 缟 exact_ids unresolved components: 高 ⿰纟高 +U+7F20 缠 exact_ids unresolved components: 里 ⿰纟㢆 +U+7F21 缡 exact_ids unresolved components: 凶 ⿰纟离 +U+7F22 缢 exact_ids unresolved components: 益 ⿰纟益 +U+7F26 缦 exact_ids unresolved components: 曼 ⿰纟曼 +U+7F2D 缭 exact_ids unresolved components: 昚 ⿰纟尞 +U+7F2E 缮 exact_ids unresolved components: 善 ⿰纟善 +U+7F2F 缯 exact_ids unresolved components: 曾 ⿰纟曾 +U+7F30 缰 exact_ids unresolved components: 三 ⿰纟畺 +U+7F33 缳 exact_ids unresolved components: 睘 ⿰纟睘 +U+7F34 缴 exact_ids unresolved components: 敫 ⿰纟敫 +U+7F35 缵 exact_ids unresolved components: 赞 ⿰纟赞 +U+7F3F 缿 exact_ids unresolved components: 后 ⿰缶后 +U+7F41 罁 exact_ids unresolved components: 岡 ⿰缶岡 +U+7F47 罇 exact_ids unresolved components: 酉 ⿰缶尊 +U+7F49 罉 exact_ids unresolved components: 冋 ⿰缶掌 +U+7F4B 罋 exact_ids unresolved components: 雍 ⿱雍缶 +U+7F4F 罏 exact_ids unresolved components: 𧆨 ⿰缶盧 +U+7F53 罓 missing missing +U+7F54 罔 missing missing +U+7F55 罕 exact_ids unresolved components: ⺳ ⿱⺳干 +U+7F59 罙 exact_ids unresolved components: ⺳ ⿱⺳木 +U+7F5A 罚 exact_ids structural collision: 罰 ⿱罒䚯 +U+7F68 罨 exact_ids unresolved components: 电 ⿱罒奄 +U+7F6D 罭 exact_ids unresolved components: 或 ⿱罒或 +U+7F70 罰 exact_ids structural collision: 罚 ⿱罒䚯 +U+7F71 罱 exact_ids unresolved components: 南 ⿱罒南 +U+7F76 罶 exact_ids unresolved components: 留 ⿱罒留 +U+7F77 罷 exact_ids unresolved components: 能 ⿱罒能 +U+7F7B 罻 exact_ids unresolved components: 尉 ⿱罒尉 +U+7F7D 罽 missing missing +U+7F7E 罾 exact_ids unresolved components: 曾 ⿱罒曾 +U+7F7F 罿 exact_ids unresolved components: 里 ⿱罒童 +U+7F81 羁 missing missing +U+7F86 羆 exact_ids unresolved components: 能 ⿱罒熊 +U+7F8E 美 missing missing +U+7F90 羐 missing missing +U+7F94 羔 missing missing +U+7F95 羕 missing missing +U+7F99 羙 missing missing +U+7FA2 羢 exact_ids unresolved components: 戈 ⿰羊戎 +U+7FA3 羣 exact_ids unresolved components: 尹 ⿱君羊 +U+7FA4 群 exact_ids unresolved components: 尹 ⿰君羊 +U+7FA5 羥 exact_ids unresolved components: 巠 ⿰羊巠 +U+7FA8 羨 missing missing +U+7FA9 義 missing missing +U+7FAC 羬 exact_ids unresolved components: 咸 ⿰羊咸 +U+7FAE 羮 missing missing +U+7FAF 羯 exact_ids unresolved components: 匃 ⿰羊曷 +U+7FB2 羲 missing missing +U+7FB6 羶 exact_ids unresolved components: 回 ⿰羊亶 +U+7FB7 羷 exact_ids unresolved components: 僉 ⿰羊僉 +U+7FB8 羸 missing missing +U+7FB9 羹 exact_ids unresolved components: 美,羔 ⿱羔美 +U+7FBB 羻 exact_ids unresolved components: 慶 ⿰羊慶 +U+7FC3 翃 exact_ids unresolved components: 厷 ⿰厷羽 +U+7FC7 翇 exact_ids unresolved components: 犮 ⿱羽犮 +U+7FC8 翈 exact_ids unresolved components: 甲 ⿰甲羽 +U+7FD1 翑 exact_ids unresolved components: 句 ⿰羽句 +U+7FD8 翘 exact_ids unresolved components: 尧 ⿰尧羽 +U+7FDB 翛 missing missing +U+7FDD 翝 exact_ids unresolved components: 厷 ⿰宏羽 +U+7FDE 翞 exact_ids unresolved components: 京 ⿰羽京 +U+7FE0 翠 exact_ids unresolved components: 卒 ⿱羽卒 +U+7FE2 翢 exact_ids unresolved components: 周 ⿰周羽 +U+7FE4 翤 missing missing +U+7FE7 翧 exact_ids unresolved components: 亘 ⿰宣羽 +U+7FE8 翨 exact_ids unresolved components: 𤴓 ⿱羽是 +U+7FE9 翩 exact_ids unresolved components: 𠕁 ⿰扁羽 +U+7FEA 翪 exact_ids unresolved components: 凶 ⿰羽㚇 +U+7FED 翭 exact_ids unresolved components: 侯 ⿰羽侯 +U+7FEF 翯 exact_ids unresolved components: 高 ⿱羽高 +U+7FF0 翰 missing missing +U+7FF3 翳 exact_ids unresolved components: 医 ⿱殹羽 +U+7FF6 翶 exact_ids unresolved components: 皐 ⿰皐羽 +U+7FFA 翺 exact_ids unresolved components: 臯 ⿰臯羽 +U+7FFD 翽 exact_ids unresolved components: 歲 ⿰歲羽 +U+7FFE 翾 exact_ids unresolved components: 睘 ⿰睘羽 +U+7FFF 翿 exact_ids unresolved components: 壽 ⿰壽羽 +U+8000 耀 exact_ids unresolved components: ⺌ ⿰光翟 +U+8007 耇 exact_ids unresolved components: 句 ⿱耂句 +U+8008 耈 exact_ids unresolved components: 句 ⿱老句 +U+8012 耒 missing missing +U+8013 耓 exact_ids unresolved components: 耒 ⿰耒丁 +U+8014 耔 exact_ids unresolved components: 耒 ⿰耒子 +U+8015 耕 exact_ids unresolved components: 耒 ⿰耒井 +U+8016 耖 exact_ids unresolved components: 耒 ⿰耒少 +U+8017 耗 exact_ids unresolved components: 耒 ⿰耒毛 +U+8018 耘 exact_ids unresolved components: 耒 ⿰耒云 +U+8019 耙 exact_ids unresolved components: 耒 ⿰耒巴 +U+801A 耚 exact_ids unresolved components: 耒 ⿰耒皮 +U+801B 耛 exact_ids unresolved components: 耒 ⿰耒台 +U+801C 耜 exact_ids unresolved components: 耒 ⿰耒㠯 +U+801D 耝 exact_ids unresolved components: 耒 ⿰耒且 +U+801E 耞 exact_ids unresolved components: 耒 ⿰耒加 +U+801F 耟 exact_ids unresolved components: 耒 ⿰耒巨 +U+8020 耠 exact_ids unresolved components: 耒 ⿰耒合 +U+8021 耡 exact_ids unresolved components: 耒 ⿰耒助 +U+8022 耢 exact_ids unresolved components: 耒 ⿰耒劳 +U+8023 耣 exact_ids unresolved components: 耒,𠕁 ⿰耒侖 +U+8024 耤 exact_ids unresolved components: 耒,龷 ⿰耒昔 +U+8025 耥 exact_ids unresolved components: 冋,耒 ⿰耒尚 +U+8026 耦 exact_ids unresolved components: 耒 ⿰耒禺 +U+8027 耧 exact_ids unresolved components: 耒 ⿰耒娄 +U+8028 耨 exact_ids unresolved components: 耒 ⿰耒辱 +U+8029 耩 exact_ids unresolved components: 耒 ⿰耒冓 +U+802A 耪 exact_ids unresolved components: 耒 ⿰耒旁 +U+802B 耫 exact_ids unresolved components: 耒,龶 ⿰耒責 +U+802C 耬 exact_ids unresolved components: 婁,耒 ⿰耒婁 +U+802D 耭 exact_ids unresolved components: 戍,耒 ⿰耒幾 +U+802E 耮 exact_ids unresolved components: 耒 ⿰耒勞 +U+802F 耯 exact_ids unresolved components: 耒 ⿰耒蒦 +U+8030 耰 exact_ids unresolved components: 耒 ⿰耒憂 +U+8031 耱 exact_ids unresolved components: 耒 ⿰耒磨 +U+8032 耲 exact_ids unresolved components: 耒,褱 ⿰耒褱 +U+8039 耹 exact_ids unresolved components: ㇇ ⿰耳今 +U+803E 耾 exact_ids unresolved components: 厷 ⿰耳厷 +U+8040 聀 exact_ids unresolved components: 戈 ⿰耳戈 +U+804A 聊 exact_ids unresolved components: 卯 ⿰耳卯 +U+8053 聓 exact_ids unresolved components: 凡 ⿱巩耳 +U+8056 聖 exact_ids unresolved components: 𦔻 ⿱𦔻王 +U+8058 聘 exact_ids unresolved components: 由 ⿰耳甹 +U+8059 聙 exact_ids unresolved components: 龶 ⿰耳青 +U+805D 聝 exact_ids unresolved components: 或 ⿰耳或 +U+805E 聞 missing missing +U+8062 聢 exact_ids unresolved components: 𤴓 ⿰耳定 +U+8064 聤 exact_ids unresolved components: 亭 ⿰耳亭 +U+8065 聥 exact_ids unresolved components: 禹 ⿰耳禹 +U+806A 聪 exact_ids unresolved components: 𠮦 ⿰耳总 +U+806B 聫 missing missing +U+806F 聯 exact_ids unresolved components: 𢇇 ⿰耳𢇇 +U+8070 聰 exact_ids unresolved components: 囱 ⿰耳悤 +U+8071 聱 exact_ids unresolved components: 敖 ⿱敖耳 +U+8073 聳 exact_ids unresolved components: 從 ⿱從耳 +U+8074 聴 missing missing +U+8077 職 exact_ids unresolved components: 戈 ⿰耳戠 +U+8078 聸 exact_ids unresolved components: 詹 ⿰耳詹 +U+8079 聹 exact_ids unresolved components: 寜 ⿰耳寜 +U+807A 聺 exact_ids unresolved components: 祭 ⿰耳察 +U+807C 聼 missing missing +U+807D 聽 missing missing +U+807F 聿 missing missing +U+8081 肁 exact_ids unresolved components: 聿 ⿱户聿 +U+8082 肂 exact_ids unresolved components: 聿 ⿰歹聿 +U+8083 肃 missing missing +U+8084 肄 missing missing +U+8086 肆 exact_ids unresolved components: 聿 ⿰镸聿 +U+8087 肇 missing missing +U+8088 肈 missing missing +U+8090 肐 exact_ids unresolved components: 乞 ⿰月乞 +U+8091 肑 exact_ids unresolved components: 勺 ⿰月勺 +U+80A0 肠 exact_ids unresolved components: 𠃓 ⿰月𠃓 +U+80A3 肣 exact_ids unresolved components: ㇇ ⿰月今 +U+80A6 肦 exact_ids structural collision: 朌 ⿰月分 +U+80B0 肰 exact_ids structural collision: 肽 ⿰月犬 +U+80B1 肱 exact_ids unresolved components: 厷 ⿰月厷 +U+80B2 育 missing missing +U+80B8 肸 missing missing +U+80BD 肽 exact_ids structural collision: 肰 ⿰月太 +U+80C2 胂 exact_ids unresolved components: 申 ⿰月申 +U+80C4 胄 exact_ids unresolved components: 由 ⿱由月 +U+80C8 胈 exact_ids unresolved components: 犮 ⿰月犮 +U+80CA 胊 exact_ids unresolved components: 句 ⿰月句 +U+80CC 背 exact_ids unresolved components: 北 ⿱北月 +U+80D0 胐 missing missing +U+80DB 胛 exact_ids unresolved components: 甲 ⿰月甲 +U+80DE 胞 exact_ids unresolved components: 包 ⿰月包 +U+80E4 胤 missing missing +U+80ED 胭 exact_ids unresolved components: 因 ⿰月因 +U+80F1 胱 exact_ids unresolved components: ⺌ ⿰月光 +U+80F2 胲 exact_ids unresolved components: 亥 ⿰月亥 +U+80F4 胴 exact_ids unresolved components: 同 ⿰月同 +U+80F7 胷 exact_ids unresolved components: 匈 ⿱匈月 +U+80F8 胸 exact_ids unresolved components: 匈 ⿰月匈 +U+80FD 能 missing missing +U+80FE 胾 missing missing +U+8101 脁 missing missing +U+8103 脃 exact_ids unresolved components: ⺈ ⿰月色 +U+8106 脆 exact_ids unresolved components: ⺈ ⿰月危 +U+8108 脈 missing missing +U+8109 脉 exact_ids unresolved components: 永 ⿰月永 +U+8111 脑 exact_ids unresolved components: 凶 ⿰月㐫 +U+811B 脛 exact_ids unresolved components: 巠 ⿰月巠 +U+811D 脝 exact_ids unresolved components: 亨 ⿰月亨 +U+8127 脧 exact_ids structural collision: 朘 ⿰月夋 +U+8129 脩 missing missing +U+812A 脪 exact_ids unresolved components: 布 ⿰月希 +U+812B 脫 exact_ids structural collision: 脱 ⿰月兌 +U+8131 脱 exact_ids structural collision: 脫 ⿰月兌 +U+8133 脳 missing missing +U+8138 脸 exact_ids unresolved components: 佥 ⿰月佥 +U+813A 脺 exact_ids unresolved components: 卒 ⿰月卒 +U+813B 脻 exact_ids unresolved components: 疌 ⿰月疌 +U+813F 脿 exact_ids unresolved components: 表 ⿰月表 +U+8140 腀 exact_ids unresolved components: 𠕁 ⿰月侖 +U+8141 腁 exact_ids unresolved components: 幷 ⿰月幷 +U+8148 腈 exact_ids unresolved components: 龶 ⿰月青 +U+814A 腊 exact_ids unresolved components: 龷 ⿰月昔 +U+814B 腋 exact_ids unresolved components: 夜 ⿰月夜 +U+814C 腌 exact_ids unresolved components: 电 ⿰月奄 +U+814D 腍 exact_ids unresolved components: ㇇ ⿰月念 +U+8157 腗 exact_ids unresolved components: 由 ⿰月畁 +U+8158 腘 exact_ids unresolved components: 国 ⿰月国 +U+815A 腚 exact_ids unresolved components: 𤴓 ⿰月定 +U+8166 腦 exact_ids unresolved components: 囟 ⿰月𡿺 +U+8169 腩 exact_ids unresolved components: 南 ⿰月南 +U+816B 腫 exact_ids unresolved components: 里 ⿰月重 +U+816F 腯 exact_ids unresolved components: ⺁ ⿰月盾 +U+8171 腱 exact_ids unresolved components: 聿 ⿰月建 +U+8176 腶 exact_ids unresolved components: 段 ⿰月段 +U+8177 腷 exact_ids unresolved components: 畐 ⿰月畐 +U+8179 腹 exact_ids unresolved components: 复 ⿰月复 +U+817E 腾 exact_ids structural collision: 騰 ⿰月駦 +U+8182 膂 exact_ids unresolved components: 旅 ⿱旅月 +U+8183 膃 exact_ids unresolved components: 囚 ⿰月𥁕 +U+8184 膄 exact_ids unresolved components: 𦥔 ⿰月叟 +U+8185 膅 exact_ids unresolved components: 唐 ⿰月唐 +U+8186 膆 exact_ids unresolved components: 龶 ⿰月素 +U+8189 膉 exact_ids unresolved components: 益 ⿰月益 +U+818D 膍 exact_ids unresolved components: 囟 ⿰月𣬉 +U+818F 膏 exact_ids unresolved components: 高 ⿱高月 +U+8190 膐 exact_ids unresolved components: 旅 ⿱旅肉 +U+8192 膒 exact_ids unresolved components: 區 ⿰月區 +U+8193 膓 missing missing +U+8195 膕 exact_ids unresolved components: 國 ⿰月國 +U+819B 膛 exact_ids unresolved components: 冋 ⿰月堂 +U+819E 膞 exact_ids unresolved components: 𤰔 ⿰月專 +U+819F 膟 exact_ids unresolved components: 率 ⿰月率 +U+81A2 膢 exact_ids unresolved components: 婁 ⿰月婁 +U+81A5 膥 missing missing +U+81A7 膧 missing missing +U+81AB 膫 exact_ids unresolved components: 昚 ⿰月尞 +U+81B1 膱 exact_ids unresolved components: 戈 ⿰月戠 +U+81B3 膳 exact_ids unresolved components: 善 ⿰月善 +U+81B5 膵 exact_ids unresolved components: 卒 ⿰月萃 +U+81B6 膶 exact_ids unresolved components: 閏 ⿰月閏 +U+81BB 膻 exact_ids unresolved components: 回 ⿰月亶 +U+81BD 膽 exact_ids unresolved components: 詹 ⿰月詹 +U+81BE 膾 exact_ids unresolved components: 曾 ⿰月會 +U+81C0 臀 exact_ids unresolved components: 殿 ⿱殿月 +U+81C2 臂 exact_ids unresolved components: 𡰪 ⿱辟月 +U+81C3 臃 exact_ids unresolved components: 雍 ⿰月雍 +U+81C5 臅 exact_ids unresolved components: 𠣜 ⿰月蜀 +U+81C8 臈 exact_ids unresolved components: 匃 ⿰月葛 +U+81C9 臉 exact_ids unresolved components: 僉 ⿰月僉 +U+81CB 臋 exact_ids unresolved components: 殿 ⿱殿肉 +U+81CE 臎 exact_ids unresolved components: 卒 ⿰月翠 +U+81CF 臏 exact_ids unresolved components: 賓 ⿰月賓 +U+81D0 臐 exact_ids unresolved components: 熏 ⿰月熏 +U+81D3 臓 exact_ids unresolved components: 蔵 ⿰月蔵 +U+81D6 臖 exact_ids unresolved components: 興 ⿱興月 +U+81D8 臘 exact_ids unresolved components: 巤 ⿰月巤 +U+81D9 臙 exact_ids unresolved components: 燕 ⿰月燕 +U+81DA 臚 exact_ids unresolved components: 𧆨 ⿰月盧 +U+81DC 臜 exact_ids unresolved components: 赞 ⿰月赞 +U+81DD 臝 missing missing +U+81DF 臟 exact_ids unresolved components: 臧 ⿰月藏 +U+81E7 臧 missing missing +U+81E8 臨 missing missing +U+81EE 臮 missing missing +U+81EF 臯 missing missing +U+81F1 臱 missing missing +U+81F2 臲 exact_ids unresolved components: ⺈ ⿰臬危 +U+81F6 臶 exact_ids unresolved components: 存 ⿰至存 +U+81F7 臷 missing missing +U+81F9 臹 exact_ids unresolved components: 成 ⿰至成 +U+81FD 臽 exact_ids unresolved components: ⺈ ⿱⺈臼 +U+8204 舄 exact_ids unresolved components: 灳 ⿱臼灳 +U+8206 舆 missing missing +U+8208 興 missing missing +U+820A 舊 missing missing +U+820B 舋 missing missing +U+8214 舔 exact_ids unresolved components: 㣺 ⿰舌忝 +U+821A 舚 exact_ids unresolved components: 詹 ⿰舌詹 +U+821D 舝 missing missing +U+821E 舞 missing missing +U+8224 舤 exact_ids unresolved components: 凡 ⿰舟凡 +U+8227 舧 missing missing +U+8228 舨 exact_ids unresolved components: 反 ⿰舟反 +U+8233 舳 exact_ids unresolved components: 由 ⿰舟由 +U+823A 舺 exact_ids unresolved components: 甲 ⿰舟甲 +U+8243 艃 exact_ids unresolved components: 里 ⿰舟里 +U+824C 艌 exact_ids unresolved components: ㇇ ⿰舟念 +U+8250 艐 exact_ids unresolved components: 凶 ⿰舟㚇 +U+8251 艑 exact_ids unresolved components: 𠕁 ⿰舟扁 +U+8252 艒 exact_ids unresolved components: 冃 ⿰舟冒 +U+8254 艔 exact_ids unresolved components: 度 ⿰舟度 +U+8257 艗 exact_ids unresolved components: 益 ⿰舟益 +U+8258 艘 exact_ids unresolved components: 𦥔 ⿰舟叟 +U+8259 艙 exact_ids unresolved components: 倉 ⿰舟倉 +U+825A 艚 exact_ids unresolved components: 曹 ⿰舟曹 +U+825B 艛 exact_ids unresolved components: 婁 ⿰舟婁 +U+825E 艞 exact_ids unresolved components: 亇 ⿰舟筄 +U+825F 艟 exact_ids unresolved components: 里 ⿰舟童 +U+8261 艡 exact_ids unresolved components: 冋 ⿰舟當 +U+8262 艢 exact_ids unresolved components: 回 ⿰舟嗇 +U+8264 艤 exact_ids unresolved components: 義 ⿰舟義 +U+8265 艥 exact_ids unresolved components: 戈 ⿰舟戢 +U+8266 艦 exact_ids unresolved components: 監 ⿰舟監 +U+8268 艨 exact_ids unresolved components: 冃 ⿰舟蒙 +U+826B 艫 exact_ids unresolved components: 𧆨 ⿰舟盧 +U+826C 艬 exact_ids unresolved components: 毚 ⿰舟毚 +U+8272 色 exact_ids unresolved components: ⺈ ⿱⺈巴 +U+8273 艳 exact_ids unresolved components: ⺈ ⿰丰色 +U+8274 艴 exact_ids unresolved components: ⺈ ⿰弗色 +U+8275 艵 exact_ids unresolved components: ⺈ ⿰并色 +U+8276 艶 exact_ids unresolved components: ⺈ ⿰豊色 +U+8277 艷 exact_ids unresolved components: ⺈,𠁳 ⿰豐色 +U+8283 芃 exact_ids unresolved components: 凡 ⿱艹凡 +U+828D 芍 exact_ids unresolved components: 勺 ⿱艹勺 +U+829B 芛 exact_ids unresolved components: 尹 ⿱艹尹 +U+82A5 芥 exact_ids unresolved components: 介 ⿱艹介 +U+82A8 芨 exact_ids unresolved components: ㇏ ⿱艹及 +U+82A9 芩 exact_ids unresolved components: ㇇ ⿱艹今 +U+82B6 芶 exact_ids unresolved components: 勾 ⿱艹勾 +U+82BB 芻 missing missing +U+82C9 苉 exact_ids unresolved components: 匹 ⿱艹匹 +U+82D6 苖 exact_ids unresolved components: 由 ⿱艹由 +U+82D8 苘 exact_ids unresolved components: 冋 ⿱艹冋 +U+82DD 苝 exact_ids unresolved components: 北 ⿱艹北 +U+82DE 苞 exact_ids unresolved components: 包 ⿱艹包 +U+82DF 苟 exact_ids unresolved components: 句 ⿱艹句 +U+82EC 苬 exact_ids unresolved components: 囚 ⿱艹囚 +U+82EF 苯 exact_ids structural collision: 苿,茉 ⿱艹本 +U+82FF 苿 exact_ids structural collision: 苯,茉 ⿱艹未 +U+8302 茂 exact_ids unresolved components: 戈 ⿱艹戊 +U+8306 茆 exact_ids unresolved components: 卯 ⿱艹卯 +U+8307 茇 exact_ids unresolved components: 犮 ⿱艹犮 +U+8309 茉 exact_ids structural collision: 苯,苿 ⿱艹末 +U+830D 茍 exact_ids unresolved components: 句 ⿱卝句 +U+8319 茙 exact_ids unresolved components: 戈 ⿱艹戎 +U+831A 茚 exact_ids unresolved components: 印 ⿱艹印 +U+831D 茝 exact_ids unresolved components: 𦣞 ⿱艹𦣞 +U+831F 茟 exact_ids unresolved components: 聿 ⿱艹聿 +U+8329 茩 exact_ids unresolved components: 后 ⿱艹后 +U+832A 茪 exact_ids unresolved components: ⺌ ⿱艹光 +U+8330 茰 missing missing +U+8334 茴 exact_ids unresolved components: 回 ⿱艹回 +U+8335 茵 exact_ids unresolved components: 因 ⿱艹因 +U+8336 茶 missing missing +U+8337 茷 exact_ids unresolved components: 戈 ⿱艹伐 +U+833C 茼 exact_ids unresolved components: 同 ⿱艹同 +U+833F 茿 exact_ids unresolved components: 凡 ⿱艹巩 +U+8340 荀 exact_ids unresolved components: 旬 ⿱艹旬 +U+8341 荁 exact_ids unresolved components: 亘 ⿱艹亘 +U+8344 荄 exact_ids unresolved components: 亥 ⿱艹亥 +U+8350 荐 exact_ids unresolved components: 存 ⿱艹存 +U+8357 荗 exact_ids unresolved components: 戍 ⿱艹戍 +U+835B 荛 exact_ids unresolved components: 尧 ⿱艹尧 +U+8361 荡 exact_ids unresolved components: 𠃓 ⿱艹汤 +U+8369 荩 exact_ids unresolved components: ㇏ ⿱艹尽 +U+836F 药 exact_ids unresolved components: 勺 ⿱艹约 +U+8372 荲 exact_ids unresolved components: 里 ⿱艹里 +U+8376 荶 exact_ids unresolved components: ㇇ ⿱艹吟 +U+837A 荺 exact_ids unresolved components: 匀 ⿱艹均 +U+837F 荿 exact_ids unresolved components: 成 ⿱艹成 +U+8383 莃 exact_ids unresolved components: 布 ⿱艹希 +U+8392 莒 exact_ids unresolved components: 呂 ⿱艹呂 +U+8396 莖 exact_ids unresolved components: 巠 ⿱艹巠 +U+8399 莙 exact_ids unresolved components: 尹 ⿱艹君 +U+839C 莜 exact_ids unresolved components: 攸 ⿱艹攸 +U+839F 莟 exact_ids unresolved components: ㇇ ⿱艹含 +U+83A4 莤 exact_ids unresolved components: 酉 ⿱艹酉 +U+83AA 莪 exact_ids unresolved components: 戈 ⿱艹我 +U+83B1 莱 exact_ids unresolved components: 来 ⿱艹来 +U+83B5 莵 exact_ids unresolved components: 兎 ⿱艹兎 +U+83B6 莶 exact_ids unresolved components: 佥 ⿱艹佥 +U+83BD 莽 missing missing +U+83C1 菁 exact_ids unresolved components: 円,龶 ⿱艹靑 +U+83C2 菂 exact_ids unresolved components: 勺 ⿱艹的 +U+83CA 菊 exact_ids unresolved components: 匊 ⿱艹匊 +U+83CC 菌 exact_ids unresolved components: 囷 ⿱艹囷 +U+83CD 菍 exact_ids unresolved components: ㇇ ⿱艹念 +U+83D1 菑 exact_ids structural collision: 葘 ⿱艹甾 +U+83D5 菕 exact_ids unresolved components: 𠕁 ⿱艹侖 +U+83D7 菗 exact_ids unresolved components: 由 ⿱艹抽 +U+83DA 菚 exact_ids unresolved components: 戈 ⿱艹戔 +U+83DD 菝 exact_ids unresolved components: 犮 ⿱艹拔 +U+83DE 菞 exact_ids unresolved components: 𥝢 ⿱艹𥝢 +U+83E2 菢 exact_ids unresolved components: 包 ⿱艹抱 +U+83EE 菮 exact_ids unresolved components: 庚 ⿱艹庚 +U+83F4 菴 exact_ids unresolved components: 电 ⿱艹奄 +U+83F5 菵 exact_ids unresolved components: 罔 ⿱艹罔 +U+83FE 菾 exact_ids unresolved components: 㣺 ⿱艹忝 +U+8403 萃 exact_ids unresolved components: 卒 ⿱艹卒 +U+8404 萄 exact_ids unresolved components: 匋 ⿱艹匋 +U+840B 萋 exact_ids unresolved components: 妻 ⿱艹妻 +U+840F 萏 exact_ids unresolved components: ⺈ ⿱艹臽 +U+8410 萐 exact_ids unresolved components: 疌 ⿱艹疌 +U+8415 萕 exact_ids unresolved components: 斉 ⿱艹斉 +U+841E 萞 missing missing +U+8422 萢 exact_ids unresolved components: 包 ⿱艹泡 +U+8423 萣 exact_ids unresolved components: 𤴓 ⿱艹定 +U+8427 萧 exact_ids unresolved components: 肃 ⿱艹肃 +U+8428 萨 missing missing +U+842D 萭 exact_ids unresolved components: 禹 ⿱艹禹 +U+842F 萯 exact_ids unresolved components: ⺈ ⿱艹負 +U+8431 萱 exact_ids unresolved components: 亘 ⿱艹宣 +U+8433 萳 exact_ids unresolved components: 南 ⿱艹南 +U+8439 萹 exact_ids unresolved components: 𠕁 ⿱艹扁 +U+843A 萺 exact_ids unresolved components: 冃 ⿱艹冒 +U+8441 葁 exact_ids unresolved components: 𦍌 ⿱艹姜 +U+844B 葋 exact_ids unresolved components: 句 ⿱艹朐 +U+844D 葍 exact_ids unresolved components: 畐 ⿱艹畐 +U+844E 葎 exact_ids unresolved components: 聿 ⿱艹律 +U+844F 葏 exact_ids unresolved components: 聿 ⿱艹津 +U+8454 葔 exact_ids unresolved components: 侯 ⿱艹侯 +U+8458 葘 exact_ids structural collision: 菑 ⿱艹甾 +U+845A 葚 exact_ids unresolved components: 匹 ⿱艹甚 +U+845B 葛 exact_ids unresolved components: 匃 ⿱艹曷 +U+845D 葝 exact_ids unresolved components: 巠 ⿱艹勁 +U+8461 葡 exact_ids unresolved components: 匍 ⿱艹匍 +U+8463 董 exact_ids unresolved components: 里 ⿱艹重 +U+846A 葪 exact_ids unresolved components: ⺈ ⿱艹㓩 +U+846C 葬 missing missing +U+846E 葮 exact_ids unresolved components: 段 ⿱艹段 +U+846F 葯 exact_ids unresolved components: 勺 ⿱艹約 +U+8473 葳 exact_ids unresolved components: 威 ⿱艹威 +U+8474 葴 exact_ids unresolved components: 咸 ⿱艹咸 +U+8476 葶 exact_ids unresolved components: 亭 ⿱艹亭 +U+847C 葼 exact_ids unresolved components: 凶 ⿱艹㚇 +U+8486 蒆 missing missing +U+8487 蒇 missing missing +U+848B 蒋 exact_ids unresolved components: 将 ⿱艹将 +U+848E 蒎 exact_ids unresolved components: 派 ⿱艹派 +U+848F 蒏 exact_ids unresolved components: 酉 ⿳艹冖酉 +U+8492 蒒 exact_ids unresolved components: 師 ⿱艹師 +U+8495 蒕 exact_ids unresolved components: 囚 ⿱艹𥁕 +U+8499 蒙 exact_ids unresolved components: 冃 ⿱艹冡 +U+849F 蒟 exact_ids unresolved components: 句 ⿱艹竘 +U+84A5 蒥 exact_ids unresolved components: 留 ⿱艹留 +U+84A7 蒧 missing missing +U+84A8 蒨 exact_ids unresolved components: 円,龶 ⿱艹倩 +U+84AD 蒭 exact_ids unresolved components: 芻 ⿱艹芻 +U+84BC 蒼 exact_ids unresolved components: 倉 ⿱艹倉 +U+84BD 蒽 exact_ids unresolved components: 因 ⿱艹恩 +U+84BF 蒿 exact_ids unresolved components: 高 ⿱艹高 +U+84C3 蓃 exact_ids unresolved components: 𦥔 ⿱艹叟 +U+84CE 蓎 exact_ids unresolved components: 唐 ⿱艹唐 +U+84D1 蓑 exact_ids unresolved components: 衰 ⿱艹衰 +U+84D4 蓔 exact_ids unresolved components: 羔 ⿱艹羔 +U+84D6 蓖 exact_ids unresolved components: 囟 ⿱艹𣬉 +U+84D8 蓘 exact_ids unresolved components: 衮 ⿱艹衮 +U+84DA 蓚 exact_ids unresolved components: 修 ⿱艹修 +U+84DC 蓜 exact_ids unresolved components: 酉 ⿱艹配 +U+84DD 蓝 exact_ids unresolved components: 监 ⿱艹监 +U+84DF 蓟 missing missing +U+84E0 蓠 exact_ids unresolved components: 凶 ⿱艹离 +U+84E7 蓧 exact_ids unresolved components: 條 ⿱艹條 +U+84E8 蓨 exact_ids unresolved components: 脩 ⿱艹脩 +U+84ED 蓭 exact_ids unresolved components: 电 ⿱艹庵 +U+84EF 蓯 exact_ids unresolved components: 從 ⿱艹從 +U+84F2 蓲 exact_ids unresolved components: 區 ⿱艹區 +U+84F4 蓴 exact_ids unresolved components: 𤰔 ⿱艹專 +U+84F5 蓵 exact_ids unresolved components: 疌 ⿱艹捷 +U+84F8 蓸 exact_ids unresolved components: 曹 ⿱艹曹 +U+84FB 蓻 exact_ids unresolved components: 𢆉 ⿱艹執 +U+8504 蔄 exact_ids unresolved components: 問 ⿱艹問 +U+8505 蔅 exact_ids unresolved components: 𨳐 ⿱艹𨳐 +U+8509 蔉 exact_ids unresolved components: 袞 ⿱艹袞 +U+8510 蔐 exact_ids unresolved components: 啇 ⿱艹啇 +U+8511 蔑 exact_ids unresolved components: 戌 ⿱艹𥅛 +U+8512 蔒 exact_ids unresolved components: 尹 ⿱艹焄 +U+8513 蔓 exact_ids unresolved components: 曼 ⿱艹曼 +U+8514 蔔 exact_ids unresolved components: 匐 ⿱艹匐 +U+8518 蔘 exact_ids unresolved components: 參 ⿱艹參 +U+8519 蔙 exact_ids unresolved components: 旋 ⿱艹旋 +U+851A 蔚 exact_ids unresolved components: 尉 ⿱艹尉 +U+851B 蔛 exact_ids unresolved components: ⺈ ⿱艹斛 +U+851C 蔜 exact_ids unresolved components: 敖 ⿱艹敖 +U+851E 蔞 exact_ids unresolved components: 婁 ⿱艹婁 +U+851F 蔟 exact_ids unresolved components: 族 ⿱艹族 +U+8521 蔡 exact_ids unresolved components: 祭 ⿱艹祭 +U+8523 蔣 exact_ids unresolved components: 將 ⿱艹將 +U+8525 蔥 exact_ids unresolved components: 囱 ⿱艹悤 +U+8528 蔨 exact_ids unresolved components: 圈 ⿱艹圈 +U+8529 蔩 exact_ids unresolved components: 寅 ⿱艹寅 +U+852D 蔭 exact_ids unresolved components: ㇇ ⿱艹陰 +U+852E 蔮 exact_ids unresolved components: 國 ⿱艹國 +U+8532 蔲 exact_ids unresolved components: 宼 ⿱艹宼 +U+8533 蔳 exact_ids unresolved components: 龶 ⿱艹清 +U+8535 蔵 missing missing +U+8536 蔶 exact_ids unresolved components: 龶 ⿱艹責 +U+8537 蔷 exact_ids unresolved components: 啬 ⿱艹啬 +U+8538 蔸 exact_ids unresolved components: 兜 ⿱艹兜 +U+8539 蔹 exact_ids unresolved components: 佥 ⿱艹敛 +U+853A 蔺 exact_ids unresolved components: 閵 ⿱艹閵 +U+853B 蔻 exact_ids unresolved components: 寇 ⿱艹寇 +U+853C 蔼 exact_ids unresolved components: 匃 ⿱艹谒 +U+853D 蔽 exact_ids unresolved components: 㡀 ⿱艹敝 +U+853E 蔾 exact_ids unresolved components: 棃 ⿱艹棃 +U+853F 蔿 exact_ids unresolved components: 爲 ⿱艹爲 +U+8541 蕁 exact_ids unresolved components: 尋 ⿱艹尋 +U+8544 蕄 exact_ids unresolved components: 悶 ⿱艹悶 +U+8546 蕆 missing missing +U+8547 蕇 exact_ids unresolved components: 單 ⿱艹單 +U+854D 蕍 exact_ids unresolved components: 兪 ⿱艹渝 +U+854E 蕎 exact_ids unresolved components: 冋 ⿱艹喬 +U+8550 蕐 missing missing +U+8551 蕑 exact_ids unresolved components: 閒 ⿱艹閒 +U+8554 蕔 exact_ids unresolved components: 𢆉 ⿱艹報 +U+8555 蕕 exact_ids unresolved components: 酉 ⿱艹猶 +U+8559 蕙 exact_ids unresolved components: 𤰔 ⿱艹惠 +U+855A 蕚 missing missing +U+855D 蕝 exact_ids unresolved components: 絕 ⿱艹絕 +U+855F 蕟 exact_ids unresolved components: 發 ⿱艹發 +U+8567 蕧 exact_ids unresolved components: 复 ⿱艹復 +U+856B 蕫 exact_ids unresolved components: 里 ⿱艹童 +U+856E 蕮 exact_ids unresolved components: 灳 ⿱艹舄 +U+856F 蕯 exact_ids unresolved components: 隆 ⿱艹隆 +U+8572 蕲 missing missing +U+8573 蕳 exact_ids unresolved components: 間 ⿱艹間 +U+8579 蕹 exact_ids unresolved components: 雍 ⿱艹雍 +U+857A 蕺 exact_ids unresolved components: 戈 ⿱艹戢 +U+857B 蕻 missing missing +U+857C 蕼 exact_ids unresolved components: 聿 ⿱艹肆 +U+8580 薀 exact_ids unresolved components: 囚 ⿱艹溫 +U+8582 薂 exact_ids unresolved components: 敫 ⿱艹敫 +U+8583 薃 exact_ids unresolved components: 高 ⿱艹滈 +U+8588 薈 exact_ids unresolved components: 曾 ⿱艹會 +U+8589 薉 exact_ids unresolved components: 歲 ⿱艹歲 +U+858D 薍 exact_ids unresolved components: 𤔔 ⿱艹亂 +U+858E 薎 missing missing +U+8591 薑 exact_ids unresolved components: 三 ⿱艹畺 +U+8592 薒 exact_ids unresolved components: 𣦼 ⿱艹粲 +U+8593 薓 exact_ids unresolved components: 𣹰 ⿱艹𣹰 +U+8594 薔 exact_ids unresolved components: 回 ⿱艹嗇 +U+8597 薗 exact_ids unresolved components: 園 ⿱艹園 +U+859B 薛 missing missing +U+859C 薜 exact_ids unresolved components: 𡰪 ⿱艹辟 +U+859D 薝 exact_ids unresolved components: 詹 ⿱艹詹 +U+859F 薟 exact_ids unresolved components: 僉 ⿱艹僉 +U+85A2 薢 exact_ids unresolved components: 解 ⿱艹解 +U+85A4 薤 missing missing +U+85A5 薥 exact_ids unresolved components: 𠣜 ⿱艹蜀 +U+85A7 薧 missing missing +U+85A8 薨 missing missing +U+85AB 薫 exact_ids unresolved components: 𤋱 ⿱艹𤋱 +U+85AC 薬 exact_ids unresolved components: 楽 ⿱艹楽 +U+85B0 薰 exact_ids unresolved components: 熏 ⿱艹熏 +U+85B1 薱 exact_ids unresolved components: 𢆉 ⿱艹對 +U+85B2 薲 exact_ids unresolved components: 賓 ⿱艹賓 +U+85B3 薳 exact_ids unresolved components: 袁 ⿱艹遠 +U+85B4 薴 exact_ids unresolved components: 寍 ⿱艹寧 +U+85B5 薵 exact_ids unresolved components: 壽 ⿱艹壽 +U+85B6 薶 exact_ids unresolved components: 里 ⿱艹貍 +U+85BF 薿 exact_ids unresolved components: 疑 ⿱艹疑 +U+85C1 藁 exact_ids unresolved components: 高 ⿱蒿木 +U+85C3 藃 exact_ids unresolved components: 高 ⿱艹歊 +U+85C6 藆 exact_ids unresolved components: 搴 ⿱艹搴 +U+85C9 藉 exact_ids unresolved components: 耒,龷 ⿱艹耤 +U+85CA 藊 exact_ids unresolved components: 𠕁 ⿱艹稨 +U+85CD 藍 exact_ids unresolved components: 監 ⿱艹監 +U+85CE 藎 exact_ids unresolved components: 盡 ⿱艹盡 +U+85CF 藏 exact_ids unresolved components: 臧 ⿱艹臧 +U+85D1 藑 exact_ids unresolved components: 敻 ⿱艹敻 +U+85D2 藒 exact_ids unresolved components: 匃 ⿱艹䅥 +U+85D4 藔 exact_ids unresolved components: 昚 ⿱艹寮 +U+85D5 藕 exact_ids unresolved components: 耒 ⿱艹耦 +U+85DB 藛 exact_ids unresolved components: 灳 ⿱艹寫 +U+85DC 藜 exact_ids unresolved components: 黎 ⿱艹黎 +U+85E1 藡 exact_ids unresolved components: 啇 ⿱艹適 +U+85E2 藢 exact_ids unresolved components: 徵 ⿱艹徵 +U+85E3 藣 exact_ids unresolved components: 能 ⿱艹罷 +U+85E4 藤 exact_ids unresolved components: 𣳾 ⿱艹滕 +U+85E5 藥 exact_ids unresolved components: 樂 ⿱艹樂 +U+85EA 藪 exact_ids unresolved components: 婁 ⿱艹數 +U+85EF 藯 exact_ids unresolved components: 尉 ⿱艹慰 +U+85F0 藰 exact_ids unresolved components: 𨥫 ⿱艹劉 +U+85F2 藲 exact_ids unresolved components: 區 ⿱艹樞 +U+85F3 藳 exact_ids unresolved components: 高 ⿱蒿禾 +U+85F5 藵 exact_ids unresolved components: 𧛱 ⿱艹𧛱 +U+85F9 藹 exact_ids unresolved components: 匃 ⿱艹謁 +U+85FA 藺 exact_ids unresolved components: 閵 ⿱艹閵 +U+85FC 藼 exact_ids unresolved components: 憲 ⿱艹憲 +U+85FE 藾 exact_ids unresolved components: 賴 ⿱艹賴 +U+8600 蘀 exact_ids unresolved components: 𢆉 ⿱艹擇 +U+8604 蘄 missing missing +U+8605 蘅 exact_ids unresolved components: 衡 ⿱艹衡 +U+8606 蘆 exact_ids unresolved components: 𧆨 ⿱艹盧 +U+8609 蘉 missing missing +U+860A 蘊 exact_ids unresolved components: 囚 ⿱艹縕 +U+860D 蘍 exact_ids unresolved components: 熏 ⿱艹勳 +U+860F 蘏 exact_ids unresolved components: 𥘈 ⿱艹頴 +U+8613 蘓 missing missing +U+8614 蘔 exact_ids unresolved components: 穎 ⿱艹穎 +U+8616 蘖 exact_ids unresolved components: 薛 ⿱薛木 +U+8617 蘗 exact_ids unresolved components: 𡰪 ⿱艹檗 +U+8618 蘘 exact_ids unresolved components: 襄 ⿱艹襄 +U+8619 蘙 exact_ids unresolved components: 医 ⿱艹翳 +U+861B 蘛 missing missing +U+861C 蘜 exact_ids unresolved components: 匊 ⿱艹鞠 +U+861D 蘝 exact_ids unresolved components: 僉 ⿱艹歛 +U+861E 蘞 exact_ids unresolved components: 僉 ⿱艹斂 +U+861F 蘟 exact_ids unresolved components: 隱 ⿱艹隱 +U+8620 蘠 exact_ids unresolved components: 回 ⿱艹牆 +U+8624 蘤 exact_ids unresolved components: 𤾡 ⿱艹𤾡 +U+8626 蘦 exact_ids unresolved components: 𠱠 ⿱艹霝 +U+8628 蘨 exact_ids unresolved components: 繇 ⿱艹繇 +U+862B 蘫 exact_ids unresolved components: 監 ⿱艹濫 +U+862C 蘬 exact_ids unresolved components: 歸 ⿱艹歸 +U+862D 蘭 exact_ids unresolved components: 闌 ⿱艹闌 +U+862E 蘮 exact_ids unresolved components: 罽 ⿱艹罽 +U+8630 蘰 exact_ids unresolved components: 曼 ⿱艹縵 +U+8634 蘴 exact_ids unresolved components: 𠁳 ⿱艹豐 +U+8635 蘵 exact_ids unresolved components: 戈 ⿱艹職 +U+8637 蘷 exact_ids unresolved components: 夒 ⿱艹夒 +U+8638 蘸 exact_ids unresolved components: 酉 ⿱艹醮 +U+8639 蘹 exact_ids unresolved components: 褱 ⿱艹懷 +U+863A 蘺 exact_ids unresolved components: 凶 ⿱艹離 +U+863E 蘾 exact_ids unresolved components: 褱 ⿱艹壞 +U+8640 虀 exact_ids unresolved components: 韲 ⿱艹韲 +U+8641 虁 exact_ids unresolved components: 夒 ⿱艹夔 +U+8643 虃 exact_ids unresolved components: 韱 ⿱艹瀸 +U+8644 虄 missing missing +U+8647 虇 missing missing +U+864B 虋 exact_ids unresolved components: 釁 ⿱艹釁 +U+864C 虌 exact_ids unresolved components: 㡀 ⿱蔽黽 +U+8650 虐 missing missing +U+8652 虒 missing missing +U+865B 虛 missing missing +U+8663 虣 exact_ids unresolved components: 武 ⿰武虎 +U+8665 虥 exact_ids unresolved components: 戈 ⿰虎戔 +U+8666 虦 exact_ids unresolved components: 戈 ⿰戔虎 +U+8668 虨 missing missing +U+8669 虩 missing missing +U+866A 虪 exact_ids unresolved components: 儵 ⿰虎儵 +U+8673 虳 exact_ids unresolved components: 勺 ⿰虫勺 +U+867C 虼 exact_ids unresolved components: 乞 ⿰虫乞 +U+8687 蚇 exact_ids unresolved components: ㇏ ⿰虫尺 +U+8690 蚐 exact_ids unresolved components: 匀 ⿰虫匀 +U+8699 蚙 exact_ids unresolved components: ㇇ ⿰虫今 +U+86A7 蚧 exact_ids unresolved components: 介 ⿰虫介 +U+86A9 蚩 missing missing +U+86AB 蚫 exact_ids unresolved components: 包 ⿰虫包 +U+86B0 蚰 exact_ids unresolved components: 由 ⿰虫由 +U+86BC 蚼 exact_ids unresolved components: 句 ⿰虫句 +U+86C2 蛂 exact_ids unresolved components: 犮 ⿰虫犮 +U+86D3 蛓 missing missing +U+86D4 蛔 exact_ids unresolved components: 回 ⿰虫回 +U+86D7 蛗 missing missing +U+86DC 蛜 exact_ids unresolved components: 尹 ⿰虫伊 +U+86E9 蛩 exact_ids unresolved components: 凡 ⿱巩虫 +U+86EB 蛫 exact_ids unresolved components: ⺈ ⿰虫危 +U+86F2 蛲 exact_ids unresolved components: 尧 ⿰虫尧 +U+86F5 蛵 exact_ids unresolved components: 巠 ⿰虫巠 +U+86FB 蛻 exact_ids structural collision: 蜕 ⿰虫兌 +U+86FE 蛾 exact_ids unresolved components: 戈 ⿰虫我 +U+86FF 蛿 exact_ids unresolved components: ㇇ ⿰虫含 +U+8700 蜀 exact_ids unresolved components: 𠣜 ⿱罒𠣜 +U+8701 蜁 missing missing +U+8714 蜔 exact_ids unresolved components: 甸 ⿰虫甸 +U+8715 蜕 exact_ids structural collision: 蛻 ⿰虫兌 +U+8716 蜖 exact_ids unresolved components: 囬 ⿰虫囬 +U+871F 蜟 exact_ids unresolved components: 育 ⿰虫育 +U+8720 蜠 exact_ids unresolved components: 囷 ⿰虫囷 +U+8721 蜡 exact_ids unresolved components: 龷 ⿰虫昔 +U+8726 蜦 exact_ids unresolved components: 𠕁 ⿰虫侖 +U+8728 蜨 exact_ids unresolved components: 疌 ⿰虫疌 +U+8729 蜩 exact_ids unresolved components: 周 ⿰虫周 +U+872A 蜪 exact_ids unresolved components: 匋 ⿰虫匋 +U+872D 蜭 exact_ids unresolved components: ⺈ ⿰虫臽 +U+872E 蜮 exact_ids unresolved components: 或 ⿰虫或 +U+8733 蜳 exact_ids unresolved components: 享 ⿰虫享 +U+8736 蜶 exact_ids unresolved components: 卒 ⿰虫卒 +U+873B 蜻 exact_ids unresolved components: 円,龶 ⿰虫靑 +U+8742 蝂 exact_ids unresolved components: 反 ⿰虫版 +U+8744 蝄 exact_ids unresolved components: 罔 ⿰虫罔 +U+8747 蝇 exact_ids unresolved components: 电 ⿰虫黾 +U+8748 蝈 exact_ids unresolved components: 国 ⿰虫国 +U+8749 蝉 exact_ids unresolved components: 単 ⿰虫単 +U+874A 蝊 exact_ids unresolved components: 𤴓 ⿰虫定 +U+874E 蝎 exact_ids unresolved components: 匃 ⿰虫曷 +U+874F 蝏 exact_ids unresolved components: 亭 ⿰虫亭 +U+8750 蝐 exact_ids unresolved components: 冃 ⿰虫冒 +U+8753 蝓 exact_ids unresolved components: 兪 ⿰虫兪 +U+8756 蝖 exact_ids unresolved components: 亘 ⿰虫宣 +U+8758 蝘 exact_ids unresolved components: 匽 ⿰虫匽 +U+8759 蝙 exact_ids unresolved components: 𠕁 ⿰虫扁 +U+875B 蝛 exact_ids unresolved components: 威 ⿰虫威 +U+875C 蝜 exact_ids unresolved components: ⺈ ⿰虫負 +U+8760 蝠 exact_ids unresolved components: 畐 ⿰虫畐 +U+8764 蝤 exact_ids unresolved components: 酉 ⿰虫酋 +U+8769 蝩 exact_ids unresolved components: 里 ⿰虫重 +U+876C 蝬 exact_ids unresolved components: 凶 ⿰虫㚇 +U+876D 蝭 exact_ids unresolved components: 𤴓 ⿰虫是 +U+876E 蝮 exact_ids unresolved components: 复 ⿰虫复 +U+8773 蝳 exact_ids unresolved components: 龶 ⿰虫毒 +U+8779 蝹 exact_ids unresolved components: 囚 ⿰虫𥁕 +U+877A 蝺 exact_ids unresolved components: 禹 ⿰虫禹 +U+877B 蝻 exact_ids unresolved components: 南 ⿰虫南 +U+877F 蝿 exact_ids unresolved components: 申 ⿰虫𤰶 +U+8780 螀 exact_ids unresolved components: 将 ⿱将虫 +U+8784 螄 exact_ids unresolved components: 師 ⿰虫師 +U+878B 螋 exact_ids unresolved components: 𦥔 ⿰虫叟 +U+8792 螒 missing missing +U+8794 螔 exact_ids unresolved components: 虒 ⿰虫虒 +U+8795 螕 exact_ids unresolved components: 囟 ⿰虫𣬉 +U+8797 螗 exact_ids unresolved components: 唐 ⿰虫唐 +U+879A 螚 exact_ids unresolved components: 能 ⿱能虫 +U+879B 螛 exact_ids unresolved components: 害 ⿰虫害 +U+879C 螜 exact_ids unresolved components: 𣪊 ⿱𣪊虫 +U+87A0 螠 exact_ids unresolved components: 益 ⿰虫益 +U+87A5 螥 exact_ids unresolved components: 倉 ⿰虫倉 +U+87A6 螦 exact_ids unresolved components: 龶 ⿰虫素 +U+87A8 螨 missing missing +U+87A9 螩 exact_ids unresolved components: 條 ⿰虫條 +U+87AC 螬 exact_ids unresolved components: 曹 ⿰虫曹 +U+87AD 螭 exact_ids unresolved components: 凶 ⿰虫离 +U+87AF 螯 exact_ids unresolved components: 敖 ⿱敖虫 +U+87B1 螱 exact_ids unresolved components: 尉 ⿱尉虫 +U+87B3 螳 exact_ids unresolved components: 冋 ⿰虫堂 +U+87B8 螸 missing missing +U+87BB 螻 exact_ids unresolved components: 婁 ⿰虫婁 +U+87BE 螾 exact_ids unresolved components: 寅 ⿰虫寅 +U+87BF 螿 exact_ids unresolved components: 將 ⿱將虫 +U+87C0 蟀 exact_ids unresolved components: 率 ⿰虫率 +U+87C2 蟂 exact_ids unresolved components: 梟 ⿰虫梟 +U+87C3 蟃 exact_ids unresolved components: 曼 ⿰虫曼 +U+87C4 蟄 exact_ids unresolved components: 𢆉 ⿱執虫 +U+87C8 蟈 exact_ids unresolved components: 國 ⿰虫國 +U+87CC 蟌 exact_ids unresolved components: 囱 ⿰虫悤 +U+87CF 蟏 exact_ids unresolved components: 肃 ⿰虫萧 +U+87D2 蟒 exact_ids unresolved components: 莽 ⿰虫莽 +U+87D5 蟕 exact_ids unresolved components: ⺈ ⿰虫觜 +U+87D7 蟗 missing missing +U+87D9 蟙 exact_ids unresolved components: 戈 ⿰虫戠 +U+87DC 蟜 exact_ids unresolved components: 冋 ⿰虫喬 +U+87DE 蟞 exact_ids unresolved components: 㡀 ⿱敝虫 +U+87DF 蟟 exact_ids unresolved components: 昚 ⿰虫尞 +U+87E3 蟣 exact_ids unresolved components: 戍 ⿰虫幾 +U+87EA 蟪 exact_ids unresolved components: 𤰔 ⿰虫惠 +U+87EC 蟬 exact_ids unresolved components: 單 ⿰虫單 +U+87EE 蟮 exact_ids unresolved components: 善 ⿰虫善 +U+87F3 蟳 exact_ids unresolved components: 尋 ⿰虫尋 +U+87F5 蟵 exact_ids unresolved components: 厨 ⿰虫厨 +U+87F6 蟶 exact_ids unresolved components: 𦔻 ⿰虫聖 +U+87F7 蟷 exact_ids unresolved components: 冋 ⿰虫當 +U+87F9 蟹 exact_ids unresolved components: 解 ⿱解虫 +U+87FA 蟺 exact_ids unresolved components: 回 ⿰虫亶 +U+87FB 蟻 exact_ids unresolved components: 義 ⿰虫義 +U+87FC 蟼 exact_ids unresolved components: 句 ⿱敬虫 +U+87FE 蟾 exact_ids unresolved components: 詹 ⿰虫詹 +U+8803 蠃 missing missing +U+8804 蠄 exact_ids unresolved components: 凶 ⿰虫禽 +U+8808 蠈 exact_ids unresolved components: 戈 ⿱賊虫 +U+8809 蠉 exact_ids unresolved components: 睘 ⿰虫睘 +U+880B 蠋 exact_ids unresolved components: 𠣜 ⿰虫蜀 +U+880C 蠌 exact_ids unresolved components: 𢆉 ⿰虫睪 +U+880D 蠍 exact_ids unresolved components: 匃 ⿰虫歇 +U+880F 蠏 exact_ids unresolved components: 解 ⿰虫解 +U+8813 蠓 exact_ids unresolved components: 冃 ⿰虫蒙 +U+8814 蠔 exact_ids unresolved components: 豪 ⿰虫豪 +U+8818 蠘 exact_ids unresolved components: 戈 ⿰虫截 +U+8819 蠙 exact_ids unresolved components: 賓 ⿰虫賓 +U+881B 蠛 exact_ids unresolved components: 戌 ⿰虫蔑 +U+881E 蠞 exact_ids unresolved components: 亇 ⿱節虫 +U+881F 蠟 exact_ids unresolved components: 巤 ⿰虫巤 +U+8824 蠤 exact_ids unresolved components: 酉 ⿱酋䖵 +U+8825 蠥 exact_ids unresolved components: 𡴎 ⿱辥虫 +U+8826 蠦 exact_ids unresolved components: 𧆨 ⿰虫盧 +U+882B 蠫 missing missing +U+882E 蠮 exact_ids unresolved components: 医 ⿰虫翳 +U+8830 蠰 exact_ids unresolved components: 襄 ⿰虫襄 +U+8832 蠲 exact_ids unresolved components: 益,𠣜 ⿰益蜀 +U+8839 蠹 missing missing +U+883A 蠺 missing missing +U+883D 蠽 missing missing +U+883E 蠾 exact_ids unresolved components: 屬 ⿰虫屬 +U+883F 蠿 missing missing +U+8840 血 missing missing +U+8841 衁 exact_ids unresolved components: 血 ⿱亡血 +U+8842 衂 exact_ids unresolved components: 血 ⿰血刄 +U+8843 衃 exact_ids unresolved components: 血 ⿰血不 +U+8844 衄 exact_ids unresolved components: 血 ⿰血丑 +U+8845 衅 exact_ids unresolved components: 血 ⿰血半 +U+8846 衆 exact_ids unresolved components: 血 ⿱血乑 +U+8847 衇 missing missing +U+8848 衈 exact_ids unresolved components: 血 ⿰血耳 +U+8849 衉 exact_ids unresolved components: 血 ⿰血各 +U+884A 衊 exact_ids unresolved components: 戌,血 ⿰血蔑 +U+884B 衋 missing missing +U+8853 術 exact_ids unresolved components: 朮 ⿲彳朮彳 +U+8855 衕 exact_ids unresolved components: 同 ⿲彳同彳 +U+885D 衝 exact_ids unresolved components: 里 ⿲彳重彳 +U+885E 衞 missing missing +U+885F 衟 exact_ids unresolved components: 𩠐 ⿲彳𩠐彳 +U+8861 衡 missing missing +U+8868 表 missing missing +U+886E 衮 missing missing +U+8870 衰 missing missing +U+8871 衱 exact_ids unresolved components: ㇏ ⿰衤及 +U+8877 衷 missing missing +U+8878 衸 exact_ids unresolved components: 介 ⿰衤介 +U+887A 衺 missing missing +U+887E 衾 exact_ids unresolved components: ㇇ ⿱今衣 +U+887F 衿 exact_ids unresolved components: ㇇ ⿰衤今 +U+8880 袀 exact_ids unresolved components: 匀 ⿰衤匀 +U+8881 袁 missing missing +U+8885 袅 missing missing +U+888C 袌 missing missing +U+888D 袍 exact_ids unresolved components: 包 ⿰衤包 +U+888F 袏 exact_ids unresolved components: 左 ⿰衤左 +U+8896 袖 exact_ids unresolved components: 由 ⿰衤由 +U+889A 袚 exact_ids unresolved components: 犮 ⿰衤犮 +U+889E 袞 missing missing +U+88A0 袠 missing missing +U+88A4 袤 missing missing +U+88A7 袧 exact_ids unresolved components: 句 ⿰衤句 +U+88AC 袬 missing missing +U+88AE 袮 exact_ids unresolved components: 尓 ⿰衤尓 +U+88B2 袲 missing missing +U+88B8 袸 exact_ids unresolved components: 存 ⿰衤存 +U+88C0 裀 exact_ids unresolved components: 因 ⿰衤因 +U+88C1 裁 missing missing +U+88C7 裇 exact_ids unresolved components: 血 ⿰衤血 +U+88CA 裊 missing missing +U+88CD 裍 exact_ids unresolved components: 困 ⿰衤困 +U+88CF 裏 missing missing +U+88D2 裒 missing missing +U+88D3 裓 exact_ids unresolved components: 戈 ⿰衤戒 +U+88D9 裙 exact_ids unresolved components: 尹 ⿰衤君 +U+88DB 裛 missing missing +U+88E0 裠 exact_ids unresolved components: 尹 ⿱君衣 +U+88E1 裡 exact_ids unresolved components: 里 ⿰衤里 +U+88E3 裣 exact_ids unresolved components: 佥 ⿰衤佥 +U+88E5 裥 exact_ids unresolved components: 间 ⿰衤间 +U+88E6 裦 missing missing +U+88EA 裪 exact_ids unresolved components: 匋 ⿰衤匋 +U+88EF 裯 exact_ids unresolved components: 周 ⿰衤周 +U+88F1 裱 exact_ids unresolved components: 表 ⿰衤表 +U+88F3 裳 exact_ids unresolved components: 冋 ⿱尚衣 +U+88F5 裵 missing missing +U+88F9 裹 missing missing +U+88FA 裺 exact_ids unresolved components: 电 ⿰衤奄 +U+88FD 製 exact_ids unresolved components: 制 ⿱制衣 +U+8901 褁 exact_ids unresolved components: 𧘇 ⿱果𧘇 +U+8904 褄 exact_ids unresolved components: 妻 ⿰衤妻 +U+8906 褆 exact_ids unresolved components: 𤴓 ⿰衤是 +U+8907 複 exact_ids unresolved components: 复 ⿰衤复 +U+8908 褈 exact_ids unresolved components: 里 ⿰衤重 +U+890A 褊 exact_ids unresolved components: 𠕁 ⿰衤扁 +U+890E 褎 missing missing +U+890F 褏 missing missing +U+8910 褐 exact_ids unresolved components: 匃 ⿰衤曷 +U+8912 褒 missing missing +U+8914 褔 exact_ids unresolved components: 畐 ⿰衤畐 +U+8917 褗 exact_ids unresolved components: 匽 ⿰衤匽 +U+8919 褙 exact_ids unresolved components: 北 ⿰衤背 +U+891C 褜 exact_ids unresolved components: 包 ⿱胞衣 +U+891D 褝 exact_ids unresolved components: 単 ⿰衤単 +U+891E 褞 exact_ids unresolved components: 囚 ⿰衤𥁕 +U+891F 褟 exact_ids unresolved components: 冃 ⿰衤𦐇 +U+8922 褢 missing missing +U+8924 褤 exact_ids unresolved components: 袁 ⿰衤袁 +U+8926 褦 exact_ids unresolved components: 能 ⿰衤能 +U+892B 褫 exact_ids unresolved components: 虒 ⿰衤虒 +U+892D 褭 missing missing +U+8930 褰 missing missing +U+8931 褱 missing missing +U+8934 褴 exact_ids unresolved components: 监 ⿰衤监 +U+8935 褵 exact_ids unresolved components: 凶 ⿰衤离 +U+8938 褸 exact_ids unresolved components: 婁 ⿰衤婁 +U+893A 褺 exact_ids unresolved components: 𢆉 ⿱執衣 +U+893B 褻 missing missing +U+893C 褼 missing missing +U+893D 褽 exact_ids unresolved components: 尉 ⿱尉衣 +U+893F 褿 exact_ids unresolved components: 曹 ⿰衤曹 +U+8940 襀 exact_ids unresolved components: 龶 ⿰衤責 +U+8942 襂 exact_ids unresolved components: 參 ⿰衤參 +U+8943 襃 missing missing +U+8944 襄 missing missing +U+8947 襇 exact_ids unresolved components: 間 ⿰衤間 +U+8949 襉 exact_ids unresolved components: 閒 ⿰衤閒 +U+894C 襌 exact_ids unresolved components: 單 ⿰衤單 +U+894F 襏 exact_ids unresolved components: 發 ⿰衤發 +U+8951 襑 exact_ids unresolved components: 尋 ⿰衤尋 +U+8952 襒 exact_ids unresolved components: 㡀 ⿰衤敝 +U+8955 襕 exact_ids unresolved components: 阑 ⿰衤阑 +U+8957 襗 exact_ids unresolved components: 𢆉 ⿰衤睪 +U+8958 襘 exact_ids unresolved components: 曾 ⿰衤會 +U+895C 襜 exact_ids unresolved components: 詹 ⿰衤詹 +U+895D 襝 exact_ids unresolved components: 僉 ⿰衤僉 +U+895E 襞 exact_ids unresolved components: 𡰪 ⿱辟衣 +U+8960 襠 exact_ids unresolved components: 冋 ⿰衤當 +U+8961 襡 exact_ids unresolved components: 𠣜 ⿰衤蜀 +U+8962 襢 exact_ids unresolved components: 回 ⿰衤亶 +U+8964 襤 exact_ids unresolved components: 監 ⿰衤監 +U+8968 襨 exact_ids unresolved components: 𢆉 ⿰衤對 +U+896A 襪 exact_ids unresolved components: 戌 ⿰衤蔑 +U+896C 襬 exact_ids unresolved components: 能 ⿰衤罷 +U+8970 襰 exact_ids unresolved components: 賴 ⿰衤賴 +U+8973 襳 exact_ids unresolved components: 韱 ⿰衤韱 +U+8974 襴 exact_ids unresolved components: 闌 ⿰衤闌 +U+8976 襶 exact_ids unresolved components: 戴 ⿰衤戴 +U+8979 襹 exact_ids unresolved components: 丽 ⿰衤麗 +U+897A 襺 exact_ids unresolved components: 繭 ⿰衤繭 +U+897D 襽 exact_ids unresolved components: 闌 ⿰衤蘭 +U+8986 覆 exact_ids unresolved components: 复 ⿱覀復 +U+8987 覇 exact_ids unresolved components: 䩗 ⿱覀䩗 +U+8988 覈 exact_ids unresolved components: 敫 ⿱襾敫 +U+8997 覗 exact_ids unresolved components: 司 ⿰司見 +U+8999 覙 exact_ids unresolved components: ⺈ ⿰尔見 +U+899B 覛 missing missing +U+89A0 覠 exact_ids unresolved components: 尹 ⿰君見 +U+89A6 覦 exact_ids unresolved components: 兪 ⿰兪見 +U+89A7 覧 missing missing +U+89B3 観 missing missing +U+89B5 覵 exact_ids unresolved components: 閒 ⿰閒見 +U+89B6 覶 exact_ids unresolved components: 𤔔 ⿰𤔔見 +U+89B8 覸 exact_ids unresolved components: 間 ⿰間見 +U+89BA 覺 missing missing +U+89BB 覻 exact_ids unresolved components: 䖒 ⿰䖒見 +U+89BD 覽 missing missing +U+89C8 览 missing missing +U+89D2 角 exact_ids unresolved components: ⺈ ⿱⺈用 +U+89D3 觓 exact_ids unresolved components: ⺈ ⿰角丩 +U+89D4 觔 exact_ids unresolved components: ⺈ ⿰角力 +U+89D5 觕 exact_ids unresolved components: ⺈ ⿰牜角 +U+89D6 觖 exact_ids unresolved components: ⺈ ⿰角夬 +U+89D7 觗 exact_ids unresolved components: ⺈ ⿰角氏 +U+89D8 觘 exact_ids unresolved components: ⺈ ⿰角少 +U+89D9 觙 exact_ids unresolved components: ⺈,㇏ ⿰角及 +U+89DA 觚 exact_ids unresolved components: ⺈ ⿰角瓜 +U+89DB 觛 exact_ids unresolved components: ⺈ ⿰角旦 +U+89DC 觜 exact_ids unresolved components: ⺈ ⿱此角 +U+89DD 觝 exact_ids unresolved components: ⺈ ⿰角氐 +U+89DE 觞 missing missing +U+89DF 觟 exact_ids unresolved components: ⺈ ⿰角圭 +U+89E0 觠 exact_ids unresolved components: ⺈ ⿱龹角 +U+89E1 觡 exact_ids unresolved components: ⺈ ⿰角各 +U+89E2 觢 exact_ids unresolved components: ⺈ ⿱㓞角 +U+89E3 解 missing missing +U+89E4 觤 exact_ids unresolved components: ⺈ ⿰角危 +U+89E5 觥 exact_ids unresolved components: ⺈,⺌ ⿰角光 +U+89E6 触 exact_ids unresolved components: ⺈ ⿰角虫 +U+89E7 觧 exact_ids unresolved components: ⺈ ⿰角羊 +U+89E8 觨 exact_ids unresolved components: ⺈ ⿰角汞 +U+89E9 觩 exact_ids unresolved components: ⺈ ⿰角求 +U+89EA 觪 exact_ids unresolved components: ⺈ ⿰角辛 +U+89EB 觫 exact_ids unresolved components: ⺈ ⿰角束 +U+89EC 觬 exact_ids unresolved components: ⺈ ⿰角兒 +U+89ED 觭 exact_ids unresolved components: ⺈ ⿰角奇 +U+89EE 觮 exact_ids unresolved components: ⺈ ⿰角录 +U+89EF 觯 exact_ids unresolved components: ⺈,单 ⿰角单 +U+89F0 觰 exact_ids unresolved components: ⺈ ⿰角者 +U+89F1 觱 exact_ids unresolved components: ⺈,咸 ⿱咸角 +U+89F2 觲 missing missing +U+89F3 觳 missing missing +U+89F4 觴 missing missing +U+89F5 觵 exact_ids unresolved components: ⺈ ⿰角黄 +U+89F6 觶 exact_ids unresolved components: ⺈,單 ⿰角單 +U+89F7 觷 missing missing +U+89F8 觸 exact_ids unresolved components: ⺈,𠣜 ⿰角蜀 +U+89F9 觹 exact_ids unresolved components: ⺈ ⿰角雋 +U+89FA 觺 exact_ids unresolved components: ⺈,疑 ⿱疑角 +U+89FB 觻 exact_ids unresolved components: ⺈,樂 ⿰角樂 +U+89FC 觼 exact_ids unresolved components: ⺈,夐 ⿰角夐 +U+89FD 觽 exact_ids unresolved components: ⺈ ⿰角嶲 +U+89FE 觾 exact_ids unresolved components: ⺈,燕 ⿰角燕 +U+89FF 觿 exact_ids unresolved components: ⺈ ⿰角巂 +U+8A07 訇 missing missing +U+8A09 訉 exact_ids unresolved components: 凡 ⿰言凡 +U+8A0B 訋 exact_ids unresolved components: 勺 ⿰言勺 +U+8A16 訖 exact_ids unresolved components: 乞 ⿰言乞 +U+8A1A 訚 missing missing +U+8A21 訡 exact_ids unresolved components: ㇇ ⿰言今 +U+8A29 訩 exact_ids unresolved components: 凶 ⿰言凶 +U+8A2F 訯 exact_ids unresolved components: ㇏ ⿰言及 +U+8A33 訳 exact_ids unresolved components: ㇏ ⿰言尺 +U+8A35 訵 exact_ids unresolved components: 四 ⿰言四 +U+8A37 訷 exact_ids unresolved components: 申 ⿰言申 +U+8A39 訹 exact_ids unresolved components: 朮 ⿰言朮 +U+8A3D 訽 exact_ids unresolved components: 句 ⿰言句 +U+8A57 詗 exact_ids unresolved components: 冋 ⿰言冋 +U+8A59 詙 exact_ids unresolved components: 犮 ⿰言犮 +U+8A5E 詞 exact_ids unresolved components: 司 ⿰言司 +U+8A60 詠 exact_ids unresolved components: 永 ⿰言永 +U+8A62 詢 exact_ids unresolved components: 旬 ⿰言旬 +U+8A64 詤 exact_ids unresolved components: 亾 ⿰言㠩 +U+8A67 詧 missing missing +U+8A6C 詬 exact_ids unresolved components: 后 ⿰言后 +U+8A6D 詭 exact_ids unresolved components: ⺈ ⿰言危 +U+8A72 該 exact_ids unresolved components: 亥 ⿰言亥 +U+8A77 詷 exact_ids unresolved components: 同 ⿰言同 +U+8A79 詹 missing missing +U+8A7E 詾 exact_ids unresolved components: 匈 ⿰言匈 +U+8A84 誄 exact_ids unresolved components: 耒 ⿰言耒 +U+8A86 誆 exact_ids unresolved components: 匡 ⿰言匡 +U+8A90 誐 exact_ids unresolved components: 戈 ⿰言我 +U+8A99 誙 exact_ids unresolved components: 巠 ⿰言巠 +U+8A9D 誝 exact_ids unresolved components: ㇇ ⿰言含 +U+8AA0 誠 exact_ids unresolved components: 成 ⿰言成 +U+8AA1 誡 exact_ids unresolved components: 戈 ⿰言戒 +U+8AA4 誤 exact_ids unresolved components: 呉 ⿰言呉 +U+8AAA 說 exact_ids structural collision: 説 ⿰言兌 +U+8AAC 説 exact_ids structural collision: 說 ⿰言兌 +U+8AB1 誱 exact_ids unresolved components: 疌 ⿰言疌 +U+8AB6 誶 exact_ids unresolved components: 卒 ⿰言卒 +U+8AB7 誷 exact_ids unresolved components: 罔 ⿰言罔 +U+8ABE 誾 missing missing +U+8ABF 調 exact_ids unresolved components: 周 ⿰言周 +U+8AC2 諂 exact_ids unresolved components: ⺈ ⿰言臽 +U+8AC4 諄 exact_ids unresolved components: 享 ⿰言享 +U+8ACA 諊 exact_ids unresolved components: 匊 ⿰言匊 +U+8ACB 請 exact_ids unresolved components: 龶 ⿰言青 +U+8ACE 諎 exact_ids unresolved components: 龷 ⿰言昔 +U+8AD0 諐 exact_ids unresolved components: 侃 ⿱侃言 +U+8AD1 諑 exact_ids unresolved components: 豖 ⿰言豖 +U+8AD2 諒 exact_ids unresolved components: 京 ⿰言京 +U+8AD3 諓 exact_ids unresolved components: 戈 ⿰言戔 +U+8AD6 論 exact_ids unresolved components: 𠕁 ⿰言侖 +U+8AD7 諗 exact_ids unresolved components: ㇇ ⿰言念 +U+8AD8 諘 exact_ids unresolved components: 表 ⿰言表 +U+8ADA 諚 exact_ids unresolved components: 𤴓 ⿰言定 +U+8ADE 諞 exact_ids unresolved components: 𠕁 ⿰言扁 +U+8ADF 諟 exact_ids unresolved components: 𤴓 ⿰言是 +U+8AE0 諠 exact_ids unresolved components: 亘 ⿰言宣 +U+8AE5 諥 exact_ids unresolved components: 里 ⿰言重 +U+8AE8 諨 exact_ids unresolved components: 畐 ⿰言畐 +U+8AEA 諪 exact_ids unresolved components: 亭 ⿰言亭 +U+8AEC 諬 missing missing +U+8AF4 諴 exact_ids unresolved components: 咸 ⿰言咸 +U+8AF5 諵 exact_ids unresolved components: 南 ⿰言南 +U+8AF6 諶 exact_ids unresolved components: 匹 ⿰言甚 +U+8B01 謁 exact_ids unresolved components: 匃 ⿰言曷 +U+8B05 謅 exact_ids unresolved components: 芻 ⿰言芻 +U+8B07 謇 missing missing +U+8B08 謈 missing missing +U+8B0F 謏 exact_ids unresolved components: 𦥔 ⿰言叟 +U+8B12 謒 exact_ids unresolved components: 倉 ⿰言倉 +U+8B14 謔 exact_ids unresolved components: 虐 ⿰言虐 +U+8B15 謕 exact_ids unresolved components: 虒 ⿰言虒 +U+8B16 謖 exact_ids unresolved components: 畟 ⿰言畟 +U+8B1A 謚 exact_ids unresolved components: 益 ⿰言益 +U+8B1E 謞 exact_ids unresolved components: 高 ⿰言高 +U+8B20 謠 exact_ids structural collision: 謡 ⿰言䍃 +U+8B21 謡 exact_ids structural collision: 謠 ⿰言䍃 +U+8B25 謥 exact_ids unresolved components: 囱 ⿰言悤 +U+8B27 謧 exact_ids unresolved components: 凶 ⿰言离 +U+8B2B 謫 exact_ids unresolved components: 啇 ⿰言啇 +U+8B2E 謮 exact_ids unresolved components: 龶 ⿰言責 +U+8B31 謱 exact_ids unresolved components: 婁 ⿰言婁 +U+8B32 謲 exact_ids unresolved components: 參 ⿰言參 +U+8B33 謳 exact_ids unresolved components: 區 ⿰言區 +U+8B37 謷 exact_ids unresolved components: 敖 ⿱敖言 +U+8B38 謸 exact_ids unresolved components: 敖 ⿰言敖 +U+8B3A 謺 exact_ids unresolved components: 𢆉 ⿱執言 +U+8B3E 謾 exact_ids unresolved components: 曼 ⿰言曼 +U+8B3F 謿 exact_ids unresolved components: 朝 ⿰言朝 +U+8B40 譀 exact_ids unresolved components: 敢 ⿰言敢 +U+8B42 譂 exact_ids unresolved components: 單 ⿰言單 +U+8B44 譄 exact_ids unresolved components: 曾 ⿰言曾 +U+8B45 譅 exact_ids unresolved components: 歰 ⿰言歰 +U+8B48 譈 exact_ids unresolved components: 享 ⿰言敦 +U+8B4B 譋 exact_ids unresolved components: 閒 ⿰言閒 +U+8B4C 譌 exact_ids unresolved components: 爲 ⿰言爲 +U+8B4D 譍 missing missing +U+8B4F 譏 exact_ids unresolved components: 戍 ⿰言幾 +U+8B50 譐 exact_ids unresolved components: 酉 ⿰言尊 +U+8B51 譑 exact_ids unresolved components: 冋 ⿰言喬 +U+8B53 譓 exact_ids unresolved components: 𤰔 ⿰言惠 +U+8B57 譗 exact_ids unresolved components: 亇 ⿰言答 +U+8B58 識 exact_ids unresolved components: 戈 ⿰言戠 +U+8B5E 譞 exact_ids unresolved components: 睘 ⿰言睘 +U+8B60 譠 exact_ids unresolved components: 回 ⿰言亶 +U+8B61 譡 exact_ids unresolved components: 冋 ⿰言當 +U+8B63 譣 exact_ids unresolved components: 僉 ⿰言僉 +U+8B64 譤 exact_ids unresolved components: 敫 ⿰言敫 +U+8B65 譥 exact_ids unresolved components: 敫 ⿱敫言 +U+8B66 警 exact_ids unresolved components: 句 ⿱敬言 +U+8B6A 譪 exact_ids unresolved components: 匃 ⿰言葛 +U+8B6B 譫 exact_ids unresolved components: 詹 ⿰言詹 +U+8B6C 譬 exact_ids unresolved components: 𡰪 ⿱辟言 +U+8B6D 譭 exact_ids unresolved components: 毀 ⿰言毀 +U+8B6E 譮 exact_ids unresolved components: 曾 ⿰言會 +U+8B6F 譯 exact_ids unresolved components: 𢆉 ⿰言睪 +U+8B70 議 exact_ids unresolved components: 義 ⿰言義 +U+8B72 譲 exact_ids unresolved components: 㐮 ⿰言㐮 +U+8B75 譵 exact_ids unresolved components: 𢆉 ⿰言對 +U+8B78 譸 exact_ids unresolved components: 壽 ⿰言壽 +U+8B79 譹 exact_ids unresolved components: 豪 ⿰言豪 +U+8B7A 譺 exact_ids unresolved components: 疑 ⿰言疑 +U+8B7C 譼 missing missing +U+8B81 讁 exact_ids unresolved components: 啇 ⿰言適 +U+8B82 讂 exact_ids unresolved components: 敻 ⿰言敻 +U+8B87 讇 exact_ids unresolved components: 閻 ⿰言閻 +U+8B8C 讌 exact_ids unresolved components: 燕 ⿰言燕 +U+8B8F 讏 exact_ids unresolved components: 衞 ⿱衞言 +U+8B92 讒 exact_ids unresolved components: 毚 ⿰言毚 +U+8B93 讓 exact_ids unresolved components: 襄 ⿰言襄 +U+8B94 讔 exact_ids unresolved components: 隱 ⿰言隱 +U+8B95 讕 exact_ids unresolved components: 闌 ⿰言闌 +U+8B96 讖 exact_ids unresolved components: 韱 ⿰言韱 +U+8B9C 讜 exact_ids unresolved components: 冋 ⿰言黨 +U+8B9D 讝 exact_ids unresolved components: 𠪚 ⿰言嚴 +U+8BAB 讫 exact_ids unresolved components: 乞 ⿰讠乞 +U+8BB4 讴 exact_ids unresolved components: 区 ⿰讠区 +U+8BBB 讻 exact_ids unresolved components: 凶 ⿰讠凶 +U+8BBD 讽 exact_ids unresolved components: 风 ⿰讠风 +U+8BC7 诇 exact_ids unresolved components: 冋 ⿰讠冋 +U+8BCC 诌 exact_ids unresolved components: ⺈ ⿰讠刍 +U+8BCD 词 exact_ids unresolved components: 司 ⿰讠司 +U+8BD3 诓 exact_ids unresolved components: 匡 ⿰讠匡 +U+8BD4 诔 exact_ids unresolved components: 耒 ⿰讠耒 +U+8BDA 诚 exact_ids unresolved components: 成 ⿰讠成 +U+8BDF 诟 exact_ids unresolved components: 后 ⿰讠后 +U+8BE1 诡 exact_ids unresolved components: ⺈ ⿰讠危 +U+8BE2 询 exact_ids unresolved components: 旬 ⿰讠旬 +U+8BE4 诤 exact_ids unresolved components: 争 ⿰讠争 +U+8BE5 该 exact_ids unresolved components: 亥 ⿰讠亥 +U+8BEB 诫 exact_ids unresolved components: 戈 ⿰讠戒 +U+8BF7 请 exact_ids unresolved components: 龶 ⿰讠青 +U+8BFC 诼 exact_ids unresolved components: 豖 ⿰讠豖 +U+8C02 谂 exact_ids unresolved components: ㇇ ⿰讠念 +U+8C03 调 exact_ids unresolved components: 周 ⿰讠周 +U+8C04 谄 exact_ids unresolved components: ⺈ ⿰讠臽 +U+8C05 谅 exact_ids unresolved components: 京 ⿰讠京 +U+8C06 谆 exact_ids unresolved components: 享 ⿰讠享 +U+8C07 谇 exact_ids unresolved components: 卒 ⿰讠卒 +U+8C09 谉 exact_ids unresolved components: 申 ⿰讠审 +U+8C0C 谌 exact_ids unresolved components: 匹 ⿰讠甚 +U+8C11 谑 exact_ids unresolved components: 虐 ⿰讠虐 +U+8C12 谒 exact_ids unresolved components: 匃 ⿰讠曷 +U+8C17 谗 missing missing +U+8C1D 谝 exact_ids unresolved components: 𠕁 ⿰讠扁 +U+8C21 谡 exact_ids unresolved components: 畟 ⿰讠畟 +U+8C25 谥 exact_ids unresolved components: 益 ⿰讠益 +U+8C29 谩 exact_ids unresolved components: 曼 ⿰讠曼 +U+8C2A 谪 exact_ids unresolved components: 啇 ⿰讠啇 +U+8C30 谰 exact_ids unresolved components: 阑 ⿰讠阑 +U+8C33 谳 exact_ids unresolved components: 南 ⿰讠献 +U+8C35 谵 exact_ids unresolved components: 詹 ⿰讠詹 +U+8C36 谶 exact_ids unresolved components: 韱 ⿰讠韱 +U+8C39 谹 exact_ids unresolved components: 厷 ⿰谷厷 +U+8C3D 谽 exact_ids unresolved components: ㇇ ⿰谷含 +U+8C41 豁 exact_ids unresolved components: 害 ⿰害谷 +U+8C43 豃 exact_ids unresolved components: 敢 ⿰谷敢 +U+8C4B 豋 missing missing +U+8C50 豐 exact_ids unresolved components: 𠁳 ⿱𠁳豆 +U+8C52 豒 exact_ids unresolved components: 𠁳 ⿰豐弟 +U+8C53 豓 exact_ids unresolved components: 𠁳 ⿰豐盇 +U+8C54 豔 exact_ids unresolved components: 𠁳 ⿰豐盍 +U+8C56 豖 missing missing +U+8C5E 豞 exact_ids unresolved components: 句 ⿰豕句 +U+8C65 豥 exact_ids unresolved components: 亥 ⿰豕亥 +U+8C68 豨 exact_ids unresolved components: 布 ⿰豕希 +U+8C6A 豪 missing missing +U+8C70 豰 missing missing +U+8C71 豱 exact_ids unresolved components: 囚 ⿰豕𥁕 +U+8C74 豴 exact_ids unresolved components: 啇 ⿰豕啇 +U+8C75 豵 exact_ids unresolved components: 從 ⿰豕從 +U+8C79 豹 exact_ids unresolved components: 勺 ⿰豸勺 +U+8C7F 豿 exact_ids unresolved components: 句 ⿰豸句 +U+8C84 貄 exact_ids unresolved components: 聿 ⿰豸聿 +U+8C86 貆 exact_ids unresolved components: 亘 ⿰豸亘 +U+8C8D 貍 exact_ids unresolved components: 里 ⿰豸里 +U+8C94 貔 exact_ids unresolved components: 囟 ⿰豸𣬉 +U+8C96 貖 exact_ids unresolved components: 益 ⿰豸益 +U+8C97 貗 exact_ids unresolved components: 婁 ⿰豸婁 +U+8C99 貙 exact_ids unresolved components: 區 ⿰豸區 +U+8C9A 貚 exact_ids unresolved components: 單 ⿰豸單 +U+8CA0 負 exact_ids unresolved components: ⺈ ⿱⺈貝 +U+8CA9 販 exact_ids unresolved components: 反 ⿰貝反 +U+8CAA 貪 exact_ids unresolved components: ㇇ ⿱今貝 +U+8CAC 責 exact_ids unresolved components: 龶 ⿱龶貝 +U+8CAD 貭 missing missing +U+8CAE 貮 missing missing +U+8CB5 貵 missing missing +U+8CBF 貿 missing missing +U+8CC5 賅 exact_ids unresolved components: 亥 ⿰貝亥 +U+8CC9 賉 exact_ids unresolved components: 血 ⿰貝血 +U+8CCA 賊 exact_ids unresolved components: 戈 ⿰貝戎 +U+8CCC 賌 exact_ids unresolved components: 亥 ⿱亥貝 +U+8CCE 賎 exact_ids unresolved components: 𢦑 ⿰貝𢦑 +U+8CD3 賓 missing missing +U+8CD4 賔 missing missing +U+8CD9 賙 exact_ids unresolved components: 周 ⿰貝周 +U+8CDD 賝 exact_ids unresolved components: ⺳ ⿰貝罙 +U+8CDE 賞 exact_ids unresolved components: 冋 ⿱尚貝 +U+8CE1 賡 exact_ids unresolved components: 庚 ⿱庚貝 +U+8CE4 賤 exact_ids unresolved components: 戈 ⿰貝戔 +U+8CE5 賥 exact_ids unresolved components: 卒 ⿰貝卒 +U+8CE6 賦 exact_ids unresolved components: 武 ⿰貝武 +U+8CEE 賮 missing missing +U+8CEF 賯 exact_ids unresolved components: 旬 ⿰貝㝁 +U+8CF3 賳 exact_ids unresolved components: 哉 ⿰貝哉 +U+8CF4 賴 missing missing +U+8CF5 賵 exact_ids unresolved components: 冃 ⿰貝冒 +U+8CF6 賶 exact_ids unresolved components: 倉 ⿰貝倉 +U+8CF7 賷 missing missing +U+8CF8 賸 missing missing +U+8CF9 賹 exact_ids unresolved components: 益 ⿰貝益 +U+8CFD 賽 missing missing +U+8CFE 賾 missing missing +U+8D00 贀 exact_ids unresolved components: 医 ⿱殹貝 +U+8D01 贁 missing missing +U+8D02 贂 exact_ids unresolved components: 參 ⿰貝參 +U+8D04 贄 exact_ids unresolved components: 𢆉 ⿱執貝 +U+8D05 贅 exact_ids unresolved components: 敖 ⿱敖貝 +U+8D07 贇 exact_ids unresolved components: 武 ⿱斌貝 +U+8D08 贈 exact_ids unresolved components: 曽 ⿰貝曽 +U+8D0D 贍 exact_ids unresolved components: 詹 ⿰貝詹 +U+8D0F 贏 missing missing +U+8D10 贐 exact_ids unresolved components: 盡 ⿰貝盡 +U+8D12 贒 missing missing +U+8D13 贓 exact_ids unresolved components: 臧 ⿰貝臧 +U+8D18 贘 exact_ids unresolved components: 冋 ⿰貝賞 +U+8D1B 贛 missing missing +U+8D1C 贜 exact_ids unresolved components: 臧 ⿰貝藏 +U+8D1D 贝 exact_ids structural collision: 内 ⿻冂人 +U+8D1F 负 exact_ids unresolved components: ⺈ ⿱⺈贝 +U+8D23 责 exact_ids unresolved components: 龶 ⿱龶贝 +U+8D28 质 exact_ids unresolved components: 𣂑 ⿱𣂑贝 +U+8D29 贩 exact_ids unresolved components: 反 ⿰贝反 +U+8D2A 贪 exact_ids unresolved components: ㇇ ⿱今贝 +U+8D2D 购 exact_ids unresolved components: 勾 ⿰贝勾 +U+8D31 贱 exact_ids unresolved components: 戈 ⿰贝戋 +U+8D38 贸 missing missing +U+8D3C 贼 exact_ids unresolved components: 戈 ⿰贝戎 +U+8D45 赅 exact_ids unresolved components: 亥 ⿰贝亥 +U+8D46 赆 exact_ids unresolved components: ㇏ ⿰贝尽 +U+8D49 赉 exact_ids unresolved components: 来 ⿱来贝 +U+8D4B 赋 exact_ids unresolved components: 武 ⿰贝武 +U+8D4F 赏 exact_ids unresolved components: 冋 ⿱尚贝 +U+8D52 赒 exact_ids unresolved components: 周 ⿰贝周 +U+8D53 赓 exact_ids unresolved components: 庚 ⿱庚贝 +U+8D56 赖 exact_ids unresolved components: ⺈ ⿰束负 +U+8D57 赗 exact_ids unresolved components: 冃 ⿰贝冒 +U+8D58 赘 exact_ids unresolved components: 敖 ⿱敖贝 +U+8D5B 赛 missing missing +U+8D5C 赜 missing missing +U+8D5E 赞 missing missing +U+8D5F 赟 exact_ids unresolved components: 武 ⿱斌贝 +U+8D60 赠 exact_ids unresolved components: 曾 ⿰贝曾 +U+8D61 赡 exact_ids unresolved components: 詹 ⿰贝詹 +U+8D62 赢 missing missing +U+8D63 赣 missing missing +U+8D69 赩 exact_ids unresolved components: ⺈ ⿰赤色 +U+8D6F 赯 exact_ids unresolved components: 唐 ⿰赤唐 +U+8D71 赱 missing missing +U+8D79 赹 exact_ids unresolved components: 匀 ⿰走匀 +U+8D7A 赺 exact_ids unresolved components: ㇇ ⿰走今 +U+8D82 趂 exact_ids unresolved components: ⺈ ⿰走尔 +U+8D8A 越 exact_ids unresolved components: 戈 ⿰走戉 +U+8D8B 趋 exact_ids unresolved components: ⺈ ⿰走刍 +U+8D9C 趜 exact_ids unresolved components: 匊 ⿰走匊 +U+8D9D 趝 exact_ids unresolved components: ㇇ ⿰走念 +U+8D9E 趞 exact_ids unresolved components: 龷 ⿰走昔 +U+8D9F 趟 exact_ids unresolved components: 冋 ⿰走尚 +U+8DA5 趥 exact_ids unresolved components: 酉 ⿰走酋 +U+8DA7 趧 exact_ids unresolved components: 𤴓 ⿰走是 +U+8DA8 趨 exact_ids unresolved components: 芻 ⿰走芻 +U+8DAB 趫 exact_ids unresolved components: 冋 ⿰走喬 +U+8DB1 趱 exact_ids unresolved components: 赞 ⿰走赞 +U+8DB5 趵 exact_ids unresolved components: 勺 ⿰足勺 +U+8DB7 趷 exact_ids unresolved components: 乞 ⿰足乞 +U+8DBB 趻 exact_ids unresolved components: ㇇ ⿰足今 +U+8DBF 趿 exact_ids unresolved components: ㇏ ⿰足及 +U+8DCB 跋 exact_ids unresolved components: 犮 ⿰足犮 +U+8DD1 跑 exact_ids unresolved components: 包 ⿰足包 +U+8DD4 跔 exact_ids unresolved components: 句 ⿰足句 +U+8DEA 跪 exact_ids unresolved components: ⺈ ⿰足危 +U+8DEB 跫 exact_ids unresolved components: 凡 ⿱巩足 +U+8DF5 践 exact_ids unresolved components: 𢦑 ⿰足𢦑 +U+8DF7 跷 exact_ids unresolved components: 尧 ⿰足尧 +U+8DFC 跼 exact_ids unresolved components: 局 ⿰足局 +U+8DFE 跾 exact_ids unresolved components: 攸 ⿱攸足 +U+8E01 踁 exact_ids unresolved components: 巠 ⿰足巠 +U+8E10 踐 exact_ids unresolved components: 戈 ⿰足戔 +U+8E15 踕 exact_ids unresolved components: 疌 ⿰足疌 +U+8E16 踖 exact_ids unresolved components: 龷 ⿰足昔 +U+8E17 踗 exact_ids unresolved components: ㇇ ⿰足念 +U+8E18 踘 exact_ids unresolved components: 匊 ⿰足匊 +U+8E1A 踚 exact_ids unresolved components: 𠕁 ⿰足侖 +U+8E24 踤 exact_ids unresolved components: 卒 ⿰足卒 +U+8E28 踨 missing missing +U+8E2C 踬 exact_ids unresolved components: 𣂑 ⿰足质 +U+8E2D 踭 exact_ids unresolved components: 争 ⿰足争 +U+8E30 踰 exact_ids unresolved components: 兪 ⿰足兪 +U+8E31 踱 exact_ids unresolved components: 度 ⿰足度 +U+8E32 踲 exact_ids unresolved components: ⺁ ⿰足盾 +U+8E35 踵 exact_ids unresolved components: 里 ⿰足重 +U+8E36 踶 exact_ids unresolved components: 𤴓 ⿰足是 +U+8E38 踸 exact_ids unresolved components: 匹 ⿰足甚 +U+8E3A 踺 exact_ids unresolved components: 聿 ⿰足建 +U+8E3D 踽 exact_ids unresolved components: 禹 ⿰足禹 +U+8E3E 踾 exact_ids unresolved components: 畐 ⿰足畐 +U+8E41 蹁 exact_ids unresolved components: 𠕁 ⿰足扁 +U+8E47 蹇 missing missing +U+8E4B 蹋 exact_ids unresolved components: 冃 ⿰足𦐇 +U+8E4C 蹌 exact_ids unresolved components: 倉 ⿰足倉 +U+8E4D 蹍 exact_ids unresolved components: 展 ⿰足展 +U+8E4F 蹏 exact_ids unresolved components: 虒 ⿰足虒 +U+8E52 蹒 missing missing +U+8E53 蹓 exact_ids unresolved components: 留 ⿰足留 +U+8E59 蹙 exact_ids unresolved components: 戚 ⿱戚足 +U+8E5A 蹚 exact_ids unresolved components: 冋 ⿰足堂 +U+8E5F 蹟 exact_ids unresolved components: 龶 ⿰足責 +U+8E61 蹡 exact_ids unresolved components: 將 ⿰足將 +U+8E62 蹢 exact_ids unresolved components: 啇 ⿰足啇 +U+8E64 蹤 exact_ids unresolved components: 從 ⿰足從 +U+8E67 蹧 exact_ids unresolved components: 曹 ⿰足曹 +U+8E69 蹩 exact_ids unresolved components: 㡀 ⿱敝足 +U+8E6D 蹭 exact_ids unresolved components: 曾 ⿰足曾 +U+8E70 蹰 exact_ids unresolved components: 厨 ⿰足厨 +U+8E71 蹱 exact_ids unresolved components: 里 ⿰足童 +U+8E72 蹲 exact_ids unresolved components: 酉 ⿰足尊 +U+8E73 蹳 exact_ids unresolved components: 發 ⿰足發 +U+8E74 蹴 exact_ids unresolved components: 京 ⿰足就 +U+8E75 蹵 exact_ids unresolved components: 京 ⿱就足 +U+8E7B 蹻 exact_ids unresolved components: 冋 ⿰足喬 +U+8E7D 蹽 exact_ids unresolved components: 昚 ⿰足尞 +U+8E7E 蹾 exact_ids unresolved components: 享 ⿰足敦 +U+8E83 躃 exact_ids unresolved components: 𡰪 ⿰足辟 +U+8E84 躄 exact_ids unresolved components: 𡰪 ⿱辟足 +U+8E85 躅 exact_ids unresolved components: 𠣜 ⿰足蜀 +U+8E88 躈 exact_ids unresolved components: 敫 ⿰足敫 +U+8E8A 躊 exact_ids unresolved components: 壽 ⿰足壽 +U+8E8C 躌 exact_ids unresolved components: 舞 ⿰足舞 +U+8E8F 躏 exact_ids unresolved components: 閵 ⿰足蔺 +U+8E90 躐 exact_ids unresolved components: 巤 ⿰足巤 +U+8E91 躑 exact_ids unresolved components: 酉 ⿰足鄭 +U+8E92 躒 exact_ids unresolved components: 樂 ⿰足樂 +U+8E94 躔 exact_ids unresolved components: 里,𡉀 ⿰足廛 +U+8E97 躗 exact_ids unresolved components: 衞 ⿱衞足 +U+8E99 躙 exact_ids unresolved components: 閵 ⿰足閵 +U+8E9A 躚 exact_ids unresolved components: 遷 ⿰足遷 +U+8E9B 躛 exact_ids unresolved components: 衞 ⿱衞足 +U+8E9C 躜 exact_ids unresolved components: 赞 ⿰足赞 +U+8E9D 躝 exact_ids unresolved components: 闌 ⿰足闌 +U+8E9E 躞 exact_ids unresolved components: 燮 ⿰足燮 +U+8E9F 躟 exact_ids unresolved components: 襄 ⿰足襄 +U+8EA0 躠 exact_ids unresolved components: 薛 ⿱薛足 +U+8EA2 躢 exact_ids unresolved components: 闒 ⿰足闒 +U+8EA4 躤 exact_ids unresolved components: 耒,龷 ⿰足藉 +U+8EA7 躧 exact_ids unresolved components: 丽 ⿰足麗 +U+8EA8 躨 exact_ids unresolved components: 夒 ⿰足夔 +U+8EAA 躪 exact_ids unresolved components: 閵 ⿰足藺 +U+8EAF 躯 exact_ids unresolved components: 区 ⿰身区 +U+8EB9 躹 exact_ids unresolved components: 匊 ⿰身匊 +U+8EBA 躺 exact_ids unresolved components: 冋 ⿰身尚 +U+8EBD 躽 exact_ids unresolved components: 匽 ⿰身匽 +U+8EBE 躾 exact_ids unresolved components: 美 ⿰身美 +U+8EBF 躿 exact_ids unresolved components: 隶 ⿰身康 +U+8EC0 軀 exact_ids unresolved components: 區 ⿰身區 +U+8EC1 軁 exact_ids unresolved components: 婁 ⿰身婁 +U+8EC3 軃 exact_ids unresolved components: 單 ⿰身單 +U+8EC4 軄 exact_ids unresolved components: 戈 ⿰身戠 +U+8EC7 軇 exact_ids unresolved components: 壽 ⿰身壽 +U+8EC8 軈 exact_ids unresolved components: 應 ⿰身應 +U+8EC9 軉 exact_ids unresolved components: 寶 ⿰身寶 +U+8ED3 軓 exact_ids unresolved components: 凡 ⿰車凡 +U+8ED6 軖 exact_ids structural collision: 軠 ⿰車王 +U+8EE0 軠 exact_ids structural collision: 軖 ⿰車王 +U+8EE1 軡 exact_ids unresolved components: ㇇ ⿰車今 +U+8EE3 軣 missing missing +U+8EE5 軥 exact_ids unresolved components: 句 ⿰車句 +U+8EEC 軬 missing missing +U+8EED 軭 exact_ids unresolved components: 匡 ⿰車匡 +U+8EF0 軰 exact_ids unresolved components: 北 ⿱北車 +U+8EF3 軳 exact_ids unresolved components: 包 ⿰車包 +U+8EF7 軷 exact_ids unresolved components: 犮 ⿰車犮 +U+8EF8 軸 exact_ids unresolved components: 由 ⿰車由 +U+8F04 輄 exact_ids unresolved components: ⺌ ⿰車光 +U+8F06 輆 exact_ids unresolved components: 亥 ⿰車亥 +U+8F09 載 missing missing +U+8F0B 輋 missing missing +U+8F0F 輏 exact_ids unresolved components: 酉 ⿰車酉 +U+8F11 輑 exact_ids unresolved components: 尹 ⿰車君 +U+8F15 輕 exact_ids unresolved components: 巠 ⿰車巠 +U+8F16 輖 exact_ids unresolved components: 周 ⿰車周 +U+8F1A 輚 exact_ids unresolved components: 戈 ⿰車戔 +U+8F1C 輜 exact_ids structural collision: 輺 ⿰車甾 +U+8F1D 輝 exact_ids unresolved components: ⺌ ⿰光軍 +U+8F1E 輞 exact_ids unresolved components: 罔 ⿰車罔 +U+8F21 輡 exact_ids unresolved components: ⺈ ⿰車臽 +U+8F24 輤 exact_ids unresolved components: 龶 ⿰車青 +U+8F27 輧 exact_ids unresolved components: 幷 ⿰車幷 +U+8F2A 輪 exact_ids unresolved components: 𠕁 ⿰車侖 +U+8F2C 輬 exact_ids unresolved components: 京 ⿰車京 +U+8F31 輱 exact_ids unresolved components: 咸 ⿰車咸 +U+8F34 輴 exact_ids unresolved components: ⺁ ⿰車盾 +U+8F35 輵 exact_ids unresolved components: 匃 ⿰車曷 +U+8F36 輶 exact_ids unresolved components: 酉 ⿰車酋 +U+8F37 輷 exact_ids unresolved components: 訇 ⿰車訇 +U+8F39 輹 exact_ids unresolved components: 复 ⿰車复 +U+8F3A 輺 exact_ids structural collision: 輜 ⿰車甾 +U+8F3B 輻 exact_ids unresolved components: 畐 ⿰車畐 +U+8F3E 輾 exact_ids unresolved components: 展 ⿰車展 +U+8F3F 輿 missing missing +U+8F40 轀 exact_ids unresolved components: 囚 ⿰車𥁕 +U+8F42 轂 missing missing +U+8F44 轄 exact_ids unresolved components: 害 ⿰車害 +U+8F45 轅 exact_ids unresolved components: 袁 ⿰車袁 +U+8F49 轉 exact_ids unresolved components: 𤰔 ⿰車專 +U+8F4D 轍 missing missing +U+8F4E 轎 exact_ids unresolved components: 冋 ⿰車喬 +U+8F51 轑 exact_ids unresolved components: 昚 ⿰車尞 +U+8F55 轕 exact_ids unresolved components: 匃 ⿰車葛 +U+8F56 轖 exact_ids unresolved components: 回 ⿰車嗇 +U+8F57 轗 exact_ids unresolved components: 咸 ⿰車感 +U+8F58 轘 exact_ids unresolved components: 睘 ⿰車睘 +U+8F59 轙 exact_ids unresolved components: 義 ⿰車義 +U+8F5B 轛 exact_ids unresolved components: 𢆉 ⿰車對 +U+8F5E 轞 exact_ids unresolved components: 監 ⿰車監 +U+8F61 轡 exact_ids unresolved components: 𦆕 ⿱𦆕口 +U+8F62 轢 exact_ids unresolved components: 樂 ⿰車樂 +U+8F64 轤 exact_ids unresolved components: 𧆨 ⿰車盧 +U+8F65 轥 exact_ids unresolved components: 閵 ⿰車藺 +U+8F74 轴 exact_ids unresolved components: 由 ⿰车由 +U+8F7D 载 missing missing +U+8F89 辉 exact_ids unresolved components: ⺌ ⿰光军 +U+8F8B 辋 exact_ids unresolved components: 罔 ⿰车罔 +U+8F8C 辌 exact_ids unresolved components: 京 ⿰车京 +U+8F90 辐 exact_ids unresolved components: 畐 ⿰车畐 +U+8F94 辔 missing missing +U+8F95 辕 exact_ids unresolved components: 袁 ⿰车袁 +U+8F96 辖 exact_ids unresolved components: 害 ⿰车害 +U+8F97 辗 exact_ids unresolved components: 展 ⿰车展 +U+8F99 辙 missing missing +U+8F9F 辟 exact_ids unresolved components: 𡰪 ⿰𡰪辛 +U+8FA5 辥 exact_ids unresolved components: 𡴎 ⿰𡴎辛 +U+8FAA 辪 missing missing +U+8FAD 辭 exact_ids unresolved components: 𤔔 ⿰𤔔辛 +U+8FB4 辴 exact_ids unresolved components: 單 ⿰單辰 +U+8FC4 迄 exact_ids unresolved components: 乞 ⿰辶乞 +U+8FCF 迏 exact_ids structural collision: 迖 ⿰辶太 +U+8FD4 返 exact_ids unresolved components: 反 ⿰辶反 +U+8FD6 迖 exact_ids structural collision: 迏 ⿰辶犬 +U+8FDF 迟 exact_ids unresolved components: ㇏ ⿰辶尺 +U+8FE5 迥 exact_ids unresolved components: 冋 ⿰辶冋 +U+8FE7 迧 exact_ids unresolved components: 申 ⿰辶申 +U+8FE9 迩 exact_ids unresolved components: ⺈ ⿰辶尔 +U+8FEA 迪 exact_ids unresolved components: 由 ⿰辶由 +U+8FF4 迴 exact_ids unresolved components: 回 ⿰辶回 +U+8FF5 迵 exact_ids unresolved components: 同 ⿰辶同 +U+8FFF 迿 exact_ids unresolved components: 旬 ⿰辶旬 +U+9005 逅 exact_ids unresolved components: 后 ⿰辶后 +U+9008 逈 exact_ids unresolved components: 冋 ⿰辶向 +U+900E 逎 exact_ids unresolved components: 酉 ⿰辶酉 +U+9013 逓 exact_ids unresolved components: 乕 ⿰辶乕 +U+9015 逕 exact_ids unresolved components: 巠 ⿰辶巠 +U+9025 逥 exact_ids unresolved components: 囬 ⿰辶囬 +U+9026 逦 exact_ids unresolved components: 丽 ⿰辶丽 +U+902A 逪 exact_ids unresolved components: 龷 ⿰辶昔 +U+902C 逬 exact_ids unresolved components: 幷 ⿰辶幷 +U+902E 逮 exact_ids unresolved components: 隶 ⿰辶隶 +U+9030 逰 missing missing +U+9031 週 exact_ids unresolved components: 周 ⿰辶周 +U+9033 逳 exact_ids unresolved components: 育 ⿰辶育 +U+9039 逹 exact_ids unresolved components: 𢆉 ⿰辶幸 +U+903A 逺 exact_ids unresolved components: 𡊮 ⿰辶𡊮 +U+903C 逼 exact_ids unresolved components: 畐 ⿰辶畐 +U+903E 逾 exact_ids unresolved components: 兪 ⿰辶兪 +U+9041 遁 exact_ids unresolved components: ⺁ ⿰辶盾 +U+9048 遈 exact_ids unresolved components: 𤴓 ⿰辶是 +U+904D 遍 exact_ids unresolved components: 𠕁 ⿰辶扁 +U+904F 遏 exact_ids unresolved components: 匃 ⿰辶曷 +U+9052 遒 exact_ids unresolved components: 酉 ⿰辶酋 +U+9056 遖 exact_ids unresolved components: 南 ⿰辶南 +U+9059 遙 exact_ids structural collision: 遥 ⿰辶䍃 +U+905A 遚 exact_ids unresolved components: 𦥔 ⿰辶叟 +U+905B 遛 exact_ids unresolved components: 留 ⿰辶留 +U+905E 遞 exact_ids unresolved components: 虒 ⿰辶虒 +U+9060 遠 exact_ids unresolved components: 袁 ⿰辶袁 +U+9062 遢 exact_ids unresolved components: 冃 ⿰辶𦐇 +U+9065 遥 exact_ids structural collision: 遙 ⿰辶䍃 +U+9068 遨 exact_ids unresolved components: 敖 ⿰辶敖 +U+9069 適 exact_ids unresolved components: 啇 ⿰辶啇 +U+906A 遪 exact_ids unresolved components: 參 ⿰辶參 +U+906D 遭 exact_ids unresolved components: 曹 ⿰辶曹 +U+9071 遱 exact_ids unresolved components: 婁 ⿰辶婁 +U+9072 遲 exact_ids unresolved components: 犀 ⿰辶犀 +U+9075 遵 exact_ids unresolved components: 酉 ⿰辶尊 +U+9077 遷 missing missing +U+907C 遼 exact_ids unresolved components: 昚 ⿰辶尞 +U+907E 遾 exact_ids unresolved components: 亇 ⿰辶筮 +U+907F 避 exact_ids unresolved components: 𡰪 ⿰辶辟 +U+9080 邀 exact_ids unresolved components: 敫 ⿰辶敫 +U+9082 邂 exact_ids unresolved components: 解 ⿰辶解 +U+9084 還 exact_ids unresolved components: 睘 ⿰辶睘 +U+9085 邅 exact_ids unresolved components: 回 ⿰辶亶 +U+9089 邉 missing missing +U+908A 邊 exact_ids unresolved components: 臱 ⿰辶臱 +U+908B 邋 exact_ids unresolved components: 巤 ⿰辶巤 +U+908C 邌 exact_ids unresolved components: 黎 ⿰辶黎 +U+908D 邍 missing missing +U+9090 邐 exact_ids unresolved components: 丽 ⿰辶麗 +U+90AD 邭 exact_ids unresolved components: 句 ⿰句阝 +U+90AE 邮 exact_ids unresolved components: 由 ⿰由阝 +U+90B6 邶 exact_ids unresolved components: 北 ⿰北阝 +U+90B9 邹 exact_ids unresolved components: ⺈ ⿰刍阝 +U+90BC 邼 exact_ids unresolved components: 匡 ⿰匡阝 +U+90C2 郂 exact_ids unresolved components: 亥 ⿰亥阝 +U+90C4 郄 missing missing +U+90C7 郇 exact_ids unresolved components: 旬 ⿰旬阝 +U+90C8 郈 exact_ids unresolved components: 后 ⿰后阝 +U+90CE 郎 exact_ids structural collision: 郞 ⿰良阝 +U+90D5 郕 exact_ids unresolved components: 成 ⿰成阝 +U+90D7 郗 exact_ids unresolved components: 布 ⿰希阝 +U+90D8 郘 exact_ids unresolved components: 呂 ⿰呂阝 +U+90DE 郞 exact_ids structural collision: 郎 ⿰良阝 +U+90E1 郡 exact_ids unresolved components: 尹 ⿰君阝 +U+90E6 郦 exact_ids unresolved components: 丽 ⿰丽阝 +U+90EA 郪 exact_ids unresolved components: 妻 ⿰妻阝 +U+90EC 郬 exact_ids unresolved components: 龶 ⿰青阝 +U+90ED 郭 exact_ids unresolved components: 享 ⿰享阝 +U+90EE 郮 exact_ids unresolved components: 周 ⿰周阝 +U+90F7 郷 exact_ids structural collision: 鄉 ⿰乡郎 +U+90F8 郸 exact_ids unresolved components: 单 ⿰单阝 +U+90FB 郻 missing missing +U+90FE 郾 exact_ids unresolved components: 匽 ⿰匽阝 +U+9101 鄁 exact_ids unresolved components: 北 ⿰背阝 +U+9105 鄅 exact_ids unresolved components: 禹 ⿰禹阝 +U+9107 鄇 exact_ids unresolved components: 侯 ⿰侯阝 +U+9109 鄉 exact_ids structural collision: 郷 ⿰乡郎 +U+910B 鄋 exact_ids unresolved components: 𦥔 ⿰叟阝 +U+910C 鄌 exact_ids unresolved components: 唐 ⿰唐阝 +U+9111 鄑 exact_ids unresolved components: 晉 ⿰晉阝 +U+9112 鄒 exact_ids unresolved components: 芻 ⿰芻阝 +U+9115 鄕 missing missing +U+9117 鄗 exact_ids unresolved components: 高 ⿰高阝 +U+9118 鄘 exact_ids unresolved components: 庸 ⿰庸阝 +U+9119 鄙 exact_ids unresolved components: 啚 ⿰啚阝 +U+911F 鄟 exact_ids unresolved components: 𤰔 ⿰專阝 +U+9121 鄡 exact_ids unresolved components: 梟 ⿰梟阝 +U+9124 鄤 exact_ids unresolved components: 曼 ⿰曼阝 +U+9128 鄨 exact_ids unresolved components: 㡀 ⿱敝邑 +U+9129 鄩 exact_ids unresolved components: 尋 ⿰尋阝 +U+912B 鄫 missing missing +U+912D 鄭 exact_ids unresolved components: 酉 ⿰奠阝 +U+912E 鄮 exact_ids unresolved components: 貿 ⿰貿阝 +U+912F 鄯 exact_ids unresolved components: 善 ⿰善阝 +U+9132 鄲 exact_ids unresolved components: 單 ⿰單阝 +U+9136 鄶 exact_ids unresolved components: 曾 ⿰會阝 +U+9138 鄸 exact_ids unresolved components: 夢 ⿰夢阝 +U+913D 鄽 exact_ids unresolved components: 里,𡉀 ⿰廛阝 +U+913F 鄿 exact_ids unresolved components: 單 ⿰蕇阝 +U+9140 酀 exact_ids unresolved components: 燕 ⿰燕阝 +U+9141 酁 exact_ids unresolved components: 毚 ⿰毚阝 +U+9142 酂 exact_ids unresolved components: 赞 ⿰赞阝 +U+9143 酃 exact_ids unresolved components: 𠱠 ⿰霝阝 +U+9146 酆 exact_ids unresolved components: 𠁳 ⿰豐阝 +U+9148 酈 exact_ids unresolved components: 丽 ⿰麗阝 +U+9149 酉 missing missing +U+914A 酊 exact_ids unresolved components: 酉 ⿰酉丁 +U+914B 酋 exact_ids unresolved components: 酉 ⿱丷酉 +U+914C 酌 exact_ids unresolved components: 勺,酉 ⿰酉勺 +U+914D 配 exact_ids unresolved components: 酉 ⿰酉己 +U+914E 酎 exact_ids unresolved components: 酉 ⿰酉寸 +U+914F 酏 exact_ids unresolved components: 酉 ⿰酉也 +U+9150 酐 exact_ids unresolved components: 酉 ⿰酉干 +U+9151 酑 exact_ids unresolved components: 酉 ⿰酉于 +U+9152 酒 exact_ids unresolved components: 酉 ⿰氵酉 +U+9153 酓 exact_ids unresolved components: ㇇,酉 ⿱今酉 +U+9154 酔 exact_ids unresolved components: 酉 ⿰酉卆 +U+9155 酕 exact_ids unresolved components: 酉 ⿰酉毛 +U+9156 酖 exact_ids unresolved components: 酉 ⿰酉冘 +U+9157 酗 exact_ids unresolved components: 凶,酉 ⿰酉凶 +U+9158 酘 exact_ids unresolved components: 酉 ⿰酉殳 +U+9159 酙 exact_ids unresolved components: 酉 ⿰酉斗 +U+915A 酚 exact_ids unresolved components: 酉 ⿰酉分 +U+915B 酛 exact_ids unresolved components: 酉 ⿰酉元 +U+915C 酜 exact_ids unresolved components: 酉 ⿰酉夫 +U+915D 酝 exact_ids unresolved components: 酉 ⿰酉云 +U+915E 酞 exact_ids unresolved components: 酉 ⿰酉太 +U+915F 酟 exact_ids unresolved components: 酉 ⿰酉占 +U+9160 酠 exact_ids unresolved components: 酉 ⿰酉可 +U+9161 酡 exact_ids unresolved components: 酉 ⿰酉它 +U+9162 酢 exact_ids unresolved components: 酉 ⿰酉乍 +U+9163 酣 exact_ids unresolved components: 酉 ⿰酉甘 +U+9164 酤 exact_ids unresolved components: 酉 ⿰酉古 +U+9165 酥 exact_ids unresolved components: 酉 ⿰酉禾 +U+9166 酦 exact_ids unresolved components: 酉 ⿰酉发 +U+9167 酧 exact_ids unresolved components: 酉 ⿰酉守 +U+9168 酨 missing missing +U+9169 酩 exact_ids unresolved components: 酉 ⿰酉名 +U+916A 酪 exact_ids unresolved components: 酉 ⿰酉各 +U+916B 酫 exact_ids unresolved components: 酉 ⿰酉全 +U+916C 酬 exact_ids unresolved components: 酉 ⿰酉州 +U+916D 酭 exact_ids unresolved components: 酉 ⿰酉有 +U+916E 酮 exact_ids unresolved components: 同,酉 ⿰酉同 +U+916F 酯 exact_ids unresolved components: 酉 ⿰酉旨 +U+9170 酰 exact_ids unresolved components: 酉 ⿰酉先 +U+9171 酱 missing missing +U+9172 酲 exact_ids unresolved components: 酉 ⿰酉呈 +U+9173 酳 missing missing +U+9174 酴 exact_ids unresolved components: 酉 ⿰酉余 +U+9175 酵 exact_ids unresolved components: 酉 ⿰酉孝 +U+9176 酶 exact_ids unresolved components: 酉 ⿰酉每 +U+9177 酷 exact_ids unresolved components: 酉 ⿰酉告 +U+9178 酸 exact_ids unresolved components: 酉 ⿰酉夋 +U+9179 酹 exact_ids unresolved components: 酉 ⿰酉寽 +U+917A 酺 exact_ids unresolved components: 酉 ⿰酉甫 +U+917B 酻 exact_ids unresolved components: 酉 ⿰酉孚 +U+917C 酼 exact_ids unresolved components: 酉 ⿰酉㐬 +U+917D 酽 exact_ids unresolved components: 酉 ⿰酉严 +U+917E 酾 exact_ids unresolved components: 丽,酉 ⿰酉丽 +U+917F 酿 exact_ids unresolved components: 酉 ⿰酉良 +U+9180 醀 exact_ids unresolved components: 酉 ⿰酉隹 +U+9181 醁 exact_ids unresolved components: 酉 ⿰酉录 +U+9182 醂 exact_ids unresolved components: 酉 ⿰酉林 +U+9183 醃 exact_ids unresolved components: 电,酉 ⿰酉奄 +U+9184 醄 exact_ids unresolved components: 匋,酉 ⿰酉匋 +U+9185 醅 exact_ids unresolved components: 酉 ⿰酉咅 +U+9186 醆 exact_ids unresolved components: 戈,酉 ⿰酉戔 +U+9187 醇 exact_ids unresolved components: 享,酉 ⿰酉享 +U+9188 醈 exact_ids unresolved components: 酉 ⿰酉炎 +U+9189 醉 exact_ids unresolved components: 卒,酉 ⿰酉卒 +U+918A 醊 exact_ids unresolved components: 酉 ⿰酉叕 +U+918B 醋 exact_ids unresolved components: 酉,龷 ⿰酉昔 +U+918C 醌 exact_ids unresolved components: 酉 ⿰酉昆 +U+918D 醍 exact_ids unresolved components: 酉,𤴓 ⿰酉是 +U+918E 醎 exact_ids unresolved components: 咸,酉 ⿰酉咸 +U+918F 醏 exact_ids unresolved components: 酉 ⿰酉者 +U+9190 醐 exact_ids unresolved components: 酉 ⿰酉胡 +U+9191 醑 exact_ids unresolved components: 酉 ⿰酉胥 +U+9192 醒 exact_ids unresolved components: 酉 ⿰酉星 +U+9193 醓 missing missing +U+9194 醔 exact_ids unresolved components: 酉 ⿱秋酉 +U+9195 醕 exact_ids unresolved components: 亯,酉 ⿰酉亯 +U+9196 醖 exact_ids unresolved components: 酉 ⿰酉昷 +U+9197 醗 exact_ids unresolved components: 発,酉 ⿰酉発 +U+9198 醘 exact_ids unresolved components: 酉 ⿰酉盍 +U+9199 醙 exact_ids unresolved components: 酉,𦥔 ⿰酉叟 +U+919A 醚 exact_ids unresolved components: 酉 ⿰酉迷 +U+919B 醛 exact_ids unresolved components: 酉 ⿰酉荃 +U+919C 醜 exact_ids unresolved components: 酉 ⿰酉鬼 +U+919D 醝 exact_ids unresolved components: 酉 ⿰酉差 +U+919E 醞 exact_ids unresolved components: 囚,酉 ⿰酉𥁕 +U+919F 醟 exact_ids unresolved components: 酉 ⿳炏冖酉 +U+91A0 醠 exact_ids unresolved components: 酉 ⿰酉盎 +U+91A1 醡 exact_ids unresolved components: 酉 ⿰酉窄 +U+91A2 醢 exact_ids unresolved components: 酉 ⿰酉𥁓 +U+91A3 醣 exact_ids unresolved components: 唐,酉 ⿰酉唐 +U+91A4 醤 exact_ids unresolved components: 将,酉 ⿱将酉 +U+91A5 醥 exact_ids unresolved components: 酉 ⿰酉票 +U+91A6 醦 exact_ids unresolved components: 參,酉 ⿰酉參 +U+91A7 醧 exact_ids unresolved components: 區,酉 ⿰酉區 +U+91A8 醨 exact_ids unresolved components: 凶,酉 ⿰酉离 +U+91A9 醩 exact_ids unresolved components: 曹,酉 ⿰酉曹 +U+91AA 醪 exact_ids unresolved components: 酉 ⿰酉翏 +U+91AB 醫 exact_ids unresolved components: 医,酉 ⿱殹酉 +U+91AC 醬 exact_ids unresolved components: 將,酉 ⿱將酉 +U+91AD 醭 exact_ids unresolved components: 酉 ⿰酉菐 +U+91AE 醮 exact_ids unresolved components: 酉 ⿰酉焦 +U+91AF 醯 missing missing +U+91B0 醰 exact_ids unresolved components: 酉 ⿰酉覃 +U+91B1 醱 exact_ids unresolved components: 發,酉 ⿰酉發 +U+91B2 醲 exact_ids unresolved components: 酉 ⿰酉農 +U+91B3 醳 exact_ids unresolved components: 酉,𢆉 ⿰酉睪 +U+91B4 醴 exact_ids unresolved components: 酉 ⿰酉豊 +U+91B5 醵 exact_ids unresolved components: 酉 ⿰酉豦 +U+91B6 醶 exact_ids unresolved components: 僉,酉 ⿰酉僉 +U+91B7 醷 exact_ids unresolved components: 酉 ⿰酉意 +U+91B8 醸 exact_ids unresolved components: 㐮,酉 ⿰酉㐮 +U+91B9 醹 exact_ids unresolved components: 酉 ⿰酉需 +U+91BA 醺 exact_ids unresolved components: 熏,酉 ⿰酉熏 +U+91BB 醻 exact_ids unresolved components: 壽,酉 ⿰酉壽 +U+91BC 醼 exact_ids unresolved components: 燕,酉 ⿰酉燕 +U+91BD 醽 exact_ids unresolved components: 酉,𠱠 ⿰酉霝 +U+91BE 醾 exact_ids unresolved components: 酉 ⿰酉糜 +U+91BF 醿 exact_ids unresolved components: 酉 ⿰酉縻 +U+91C0 釀 exact_ids unresolved components: 襄,酉 ⿰酉襄 +U+91C1 釁 missing missing +U+91C2 釂 exact_ids unresolved components: 爵,酉 ⿰酉爵 +U+91C3 釃 exact_ids unresolved components: 丽,酉 ⿰酉麗 +U+91C4 釄 exact_ids unresolved components: 酉 ⿰酉靡 +U+91C5 釅 exact_ids unresolved components: 酉,𠪚 ⿰酉嚴 +U+91C8 釈 exact_ids unresolved components: ㇏ ⿰釆尺 +U+91C9 釉 exact_ids unresolved components: 由 ⿰采由 +U+91CB 釋 exact_ids unresolved components: 𢆉 ⿰釆睪 +U+91CC 里 missing missing +U+91CD 重 exact_ids unresolved components: 里 ⿻千里 +U+91CE 野 exact_ids unresolved components: 里 ⿰里予 +U+91CF 量 exact_ids unresolved components: 里 ⿱旦里 +U+91D0 釐 missing missing +U+91DC 釜 missing missing +U+91E3 釣 exact_ids unresolved components: 勺 ⿰金勺 +U+91E9 釩 exact_ids unresolved components: 凡 ⿰金凡 +U+91F3 釳 exact_ids unresolved components: 乞 ⿰金乞 +U+920E 鈎 exact_ids unresolved components: 勾 ⿰金勾 +U+9210 鈐 exact_ids unresolved components: ㇇ ⿰金今 +U+9211 鈑 exact_ids unresolved components: 反 ⿰金反 +U+9212 鈒 exact_ids unresolved components: ㇏ ⿰金及 +U+921B 鈛 exact_ids unresolved components: 戈 ⿰金戈 +U+921C 鈜 exact_ids unresolved components: 厷 ⿰金厷 +U+921E 鈞 exact_ids unresolved components: 匀 ⿰金匀 +U+922C 鈬 exact_ids unresolved components: ㇏ ⿰金尺 +U+9238 鈸 exact_ids unresolved components: 犮 ⿰金犮 +U+923D 鈽 exact_ids unresolved components: 布 ⿰金布 +U+923E 鈾 exact_ids unresolved components: 由 ⿰金由 +U+9240 鉀 exact_ids unresolved components: 甲 ⿰金甲 +U+924B 鉋 exact_ids unresolved components: 包 ⿰金包 +U+9253 鉓 exact_ids unresolved components: 布 ⿰金布 +U+9254 鉔 exact_ids unresolved components: 匝 ⿰金匝 +U+925A 鉚 exact_ids unresolved components: 卯 ⿰金卯 +U+925E 鉞 exact_ids unresolved components: 戈 ⿰金戉 +U+9264 鉤 exact_ids unresolved components: 句 ⿰金句 +U+9265 鉥 exact_ids unresolved components: 朮 ⿰金朮 +U+9268 鉨 exact_ids unresolved components: ⺈ ⿰金尔 +U+926E 鉮 exact_ids unresolved components: 申 ⿰金申 +U+9270 鉰 exact_ids unresolved components: 司 ⿰金司 +U+9273 鉳 exact_ids unresolved components: 北 ⿰金北 +U+9274 鉴 missing missing +U+9281 銁 exact_ids unresolved components: 旬 ⿰金旬 +U+9284 銄 exact_ids unresolved components: 冋 ⿰金向 +U+9285 銅 exact_ids unresolved components: 同 ⿰金同 +U+9287 銇 exact_ids unresolved components: 耒 ⿰金耒 +U+9289 銉 exact_ids unresolved components: 聿 ⿰金聿 +U+928A 銊 exact_ids unresolved components: 戍 ⿰金戍 +U+928C 銌 exact_ids unresolved components: 存 ⿰金存 +U+928E 銎 exact_ids unresolved components: 凡 ⿱巩金 +U+9297 銗 exact_ids unresolved components: 后 ⿰金后 +U+929E 銞 exact_ids unresolved components: 旬 ⿱旬金 +U+929F 銟 missing missing +U+92A2 銢 missing missing +U+92A6 銦 exact_ids unresolved components: 因 ⿰金因 +U+92A7 銧 exact_ids unresolved components: ⺌ ⿰金光 +U+92AB 銫 exact_ids unresolved components: ⺈ ⿰金色 +U+92AD 銭 exact_ids unresolved components: 𢦑 ⿰金𢦑 +U+92B3 銳 exact_ids structural collision: 鋭 ⿰金兌 +U+92C1 鋁 exact_ids unresolved components: 呂 ⿰金呂 +U+92C4 鋄 missing missing +U+92C6 鋆 exact_ids unresolved components: 匀 ⿱均金 +U+92D0 鋐 exact_ids unresolved components: 厷 ⿰金宏 +U+92DA 鋚 exact_ids unresolved components: 攸 ⿱攸金 +U+92DE 鋞 exact_ids unresolved components: 巠 ⿰金巠 +U+92E1 鋡 exact_ids unresolved components: ㇇ ⿰金含 +U+92E6 鋦 exact_ids unresolved components: 局 ⿰金局 +U+92E8 鋨 exact_ids unresolved components: 戈 ⿰金我 +U+92EC 鋬 exact_ids unresolved components: 反 ⿱扳金 +U+92ED 鋭 exact_ids structural collision: 銳 ⿰金兌 +U+92EE 鋮 exact_ids unresolved components: 成 ⿰金成 +U+92F0 鋰 exact_ids unresolved components: 里 ⿰金里 +U+92FC 鋼 exact_ids unresolved components: 岡 ⿰金岡 +U+92FE 鋾 exact_ids unresolved components: 匋 ⿰金匋 +U+92FF 鋿 exact_ids unresolved components: 冋 ⿰金尚 +U+9300 錀 exact_ids unresolved components: 𠕁 ⿰金侖 +U+9305 錅 missing missing +U+9306 錆 exact_ids unresolved components: 龶 ⿰金青 +U+930A 錊 exact_ids unresolved components: 卒 ⿰金卒 +U+930E 錎 exact_ids unresolved components: ⺈ ⿰金臽 +U+9319 錙 exact_ids structural collision: 鍿 ⿰金甾 +U+931C 錜 exact_ids unresolved components: ㇇ ⿰金念 +U+931E 錞 exact_ids unresolved components: 享 ⿰金享 +U+9320 錠 exact_ids unresolved components: 𤴓 ⿰金定 +U+9322 錢 exact_ids unresolved components: 戈 ⿰金戔 +U+9325 錥 exact_ids unresolved components: 育 ⿰金育 +U+932D 錭 exact_ids unresolved components: 周 ⿰金周 +U+932E 錮 exact_ids unresolved components: 固 ⿰金固 +U+932F 錯 exact_ids unresolved components: 龷 ⿰金昔 +U+9336 錶 exact_ids unresolved components: 表 ⿰金表 +U+933B 錻 exact_ids unresolved components: 武 ⿰金武 +U+9344 鍄 exact_ids unresolved components: 京 ⿰金京 +U+9349 鍉 exact_ids unresolved components: 𤴓 ⿰金是 +U+934D 鍍 exact_ids unresolved components: 度 ⿰金度 +U+934E 鍎 exact_ids unresolved components: ⺁ ⿰金盾 +U+9350 鍐 exact_ids unresolved components: 凶 ⿰金㚇 +U+9351 鍑 exact_ids unresolved components: 复 ⿰金复 +U+9356 鍖 exact_ids unresolved components: 匹 ⿰金甚 +U+935B 鍛 exact_ids unresolved components: 段 ⿰金段 +U+9362 鍢 exact_ids unresolved components: 畐 ⿰金畐 +U+9367 鍧 exact_ids unresolved components: 訇 ⿰金訇 +U+936D 鍭 exact_ids unresolved components: 侯 ⿰金侯 +U+936E 鍮 exact_ids unresolved components: 兪 ⿰金兪 +U+9373 鍳 missing missing +U+9375 鍵 exact_ids unresolved components: 聿 ⿰金建 +U+9379 鍹 exact_ids unresolved components: 亘 ⿰金宣 +U+937B 鍻 exact_ids unresolved components: 匃 ⿰金曷 +U+937C 鍼 exact_ids unresolved components: 咸 ⿰金咸 +U+937D 鍽 exact_ids unresolved components: 𠕁 ⿰金扁 +U+937E 鍾 exact_ids unresolved components: 里 ⿰金重 +U+937F 鍿 exact_ids structural collision: 錙 ⿰金甾 +U+9380 鎀 exact_ids unresolved components: 修 ⿰金修 +U+9382 鎂 exact_ids unresolved components: 美 ⿰金美 +U+9383 鎃 exact_ids unresolved components: 派 ⿰金派 +U+9384 鎄 exact_ids unresolved components: 哀 ⿰金哀 +U+9385 鎅 exact_ids unresolved components: 介 ⿰金界 +U+9389 鎉 exact_ids unresolved components: 冃 ⿰金𦐇 +U+938B 鎋 exact_ids unresolved components: 害 ⿰金害 +U+9395 鎕 exact_ids unresolved components: 唐 ⿰金唐 +U+9397 鎗 exact_ids unresolved components: 倉 ⿰金倉 +U+939E 鎞 exact_ids unresolved components: 囟 ⿰金𣬉 +U+93A4 鎤 exact_ids unresolved components: ⺌ ⿰金晃 +U+93A5 鎥 exact_ids unresolved components: 條 ⿱條金 +U+93A6 鎦 exact_ids unresolved components: 留 ⿰金留 +U+93AA 鎪 exact_ids unresolved components: 𦥔 ⿰金叟 +U+93AB 鎫 missing missing +U+93AC 鎬 exact_ids unresolved components: 高 ⿰金高 +U+93B0 鎰 exact_ids unresolved components: 益 ⿰金益 +U+93B1 鎱 exact_ids unresolved components: 袁 ⿰金袁 +U+93C2 鏂 exact_ids unresolved components: 區 ⿰金區 +U+93C3 鏃 exact_ids unresolved components: 族 ⿰金族 +U+93C4 鏄 exact_ids unresolved components: 𤰔 ⿰金專 +U+93C5 鏅 exact_ids unresolved components: 脩 ⿰金脩 +U+93C7 鏇 exact_ids unresolved components: 旋 ⿰金旋 +U+93CA 鏊 exact_ids unresolved components: 敖 ⿱敖金 +U+93D1 鏑 exact_ids unresolved components: 啇 ⿰金啇 +U+93D2 鏒 exact_ids unresolved components: 參 ⿰金參 +U+93D3 鏓 exact_ids unresolved components: 囱 ⿰金悤 +U+93D4 鏔 exact_ids unresolved components: 寅 ⿰金寅 +U+93D8 鏘 exact_ids unresolved components: 將 ⿰金將 +U+93DA 鏚 exact_ids unresolved components: 戚 ⿰金戚 +U+93DC 鏜 exact_ids unresolved components: 冋 ⿰金堂 +U+93DD 鏝 exact_ids unresolved components: 曼 ⿰金曼 +U+93DE 鏞 exact_ids unresolved components: 庸 ⿰金庸 +U+93E4 鏤 exact_ids unresolved components: 婁 ⿰金婁 +U+93E6 鏦 exact_ids unresolved components: 從 ⿰金從 +U+93EA 鏪 exact_ids unresolved components: 曹 ⿰金曹 +U+93EE 鏮 exact_ids unresolved components: 隶 ⿰金康 +U+93EF 鏯 exact_ids unresolved components: 㸚 ⿰金爽 +U+93F2 鏲 exact_ids unresolved components: 牽 ⿰金牽 +U+93F3 鏳 exact_ids unresolved components: 曾 ⿰金曾 +U+93F8 鏸 exact_ids unresolved components: 𤰔 ⿰金惠 +U+93FA 鏺 exact_ids unresolved components: 發 ⿰金發 +U+93FC 鏼 exact_ids unresolved components: 亇 ⿰金策 +U+93FE 鏾 exact_ids unresolved components: 散 ⿰金散 +U+9405 鐅 exact_ids unresolved components: 㡀 ⿱敝金 +U+9408 鐈 exact_ids unresolved components: 冋 ⿰金喬 +U+940F 鐏 exact_ids unresolved components: 酉 ⿰金尊 +U+9410 鐐 exact_ids unresolved components: 昚 ⿰金尞 +U+9413 鐓 exact_ids unresolved components: 享 ⿰金敦 +U+9416 鐖 exact_ids unresolved components: 戍 ⿰金幾 +U+9417 鐗 exact_ids unresolved components: 閒 ⿰金閒 +U+9418 鐘 exact_ids unresolved components: 里 ⿰金童 +U+941B 鐛 exact_ids unresolved components: 京 ⿰金景 +U+941C 鐜 exact_ids unresolved components: 享 ⿱敦金 +U+941E 鐞 exact_ids unresolved components: 尋 ⿰金尋 +U+9421 鐡 missing missing +U+9423 鐣 exact_ids unresolved components: 冋 ⿰金掌 +U+9425 鐥 exact_ids unresolved components: 善 ⿰金善 +U+9426 鐦 exact_ids unresolved components: 開 ⿰金開 +U+9427 鐧 exact_ids unresolved components: 間 ⿰金間 +U+942C 鐬 exact_ids unresolved components: 歲 ⿰金歲 +U+9431 鐱 exact_ids unresolved components: 僉 ⿰金僉 +U+9432 鐲 exact_ids unresolved components: 𠣜 ⿰金蜀 +U+9434 鐴 exact_ids unresolved components: 𡰪 ⿰金辟 +U+9435 鐵 exact_ids unresolved components: 𢧜 ⿰金𢧜 +U+9436 鐶 exact_ids unresolved components: 睘 ⿰金睘 +U+9438 鐸 exact_ids unresolved components: 𢆉 ⿰金睪 +U+943A 鐺 exact_ids unresolved components: 冋 ⿰金當 +U+943E 鐾 exact_ids unresolved components: 𡰪 ⿱辟金 +U+9441 鑁 missing missing +U+9442 鑂 exact_ids unresolved components: 熏 ⿰金熏 +U+9444 鑄 exact_ids unresolved components: 壽 ⿰金壽 +U+9446 鑆 exact_ids unresolved components: 𢆉 ⿰金對 +U+944B 鑋 exact_ids unresolved components: 巠 ⿱輕金 +U+944C 鑌 exact_ids unresolved components: 賓 ⿰金賓 +U+944E 鑎 exact_ids unresolved components: 匱 ⿰金匱 +U+944F 鑏 exact_ids unresolved components: 寍 ⿰金寧 +U+9451 鑑 exact_ids unresolved components: 監 ⿰金監 +U+9452 鑒 missing missing +U+9454 鑔 exact_ids unresolved components: 祭 ⿰金察 +U+9456 鑖 exact_ids unresolved components: 戌 ⿰金蔑 +U+9457 鑗 exact_ids unresolved components: 黎 ⿰金黎 +U+9459 鑙 missing missing +U+945C 鑜 exact_ids unresolved components: 冋 ⿰金賞 +U+945D 鑝 missing missing +U+945E 鑞 exact_ids unresolved components: 巤 ⿰金巤 +U+9460 鑠 exact_ids unresolved components: 樂 ⿰金樂 +U+946A 鑪 exact_ids unresolved components: 𧆨 ⿰金盧 +U+946C 鑬 exact_ids unresolved components: 覧 ⿰金覧 +U+946D 鑭 exact_ids unresolved components: 闌 ⿰金闌 +U+946F 鑯 exact_ids unresolved components: 韱 ⿰金韱 +U+9471 鑱 exact_ids unresolved components: 毚 ⿰金毚 +U+9472 鑲 exact_ids unresolved components: 襄 ⿰金襄 +U+9473 鑳 exact_ids unresolved components: 蹇 ⿰金蹇 +U+9476 鑶 exact_ids unresolved components: 臧 ⿰金藏 +U+947F 鑿 missing missing +U+9482 钂 exact_ids unresolved components: 冋 ⿰金黨 +U+9483 钃 exact_ids unresolved components: 屬 ⿰金屬 +U+9484 钄 exact_ids unresolved components: 闌 ⿰金蘭 +U+9491 钑 exact_ids unresolved components: ㇏ ⿰钅及 +U+9492 钒 exact_ids unresolved components: 凡 ⿰钅凡 +U+9493 钓 exact_ids unresolved components: 勺 ⿰钅勺 +U+9496 钖 exact_ids unresolved components: 𠃓 ⿰钅𠃓 +U+94A0 钠 exact_ids structural collision: 钡 ⿰钅内 +U+94A1 钡 exact_ids structural collision: 钠 ⿰钅贝 +U+94A2 钢 exact_ids unresolved components: 冈 ⿰钅冈 +U+94A3 钣 exact_ids unresolved components: 反 ⿰钅反 +U+94A4 钤 exact_ids unresolved components: ㇇ ⿰钅今 +U+94A7 钧 exact_ids unresolved components: 匀 ⿰钅匀 +U+94A9 钩 exact_ids unresolved components: 勾 ⿰钅勾 +U+94B1 钱 exact_ids unresolved components: 戈 ⿰钅戋 +U+94B8 钸 exact_ids unresolved components: 布 ⿰钅布 +U+94B9 钹 exact_ids unresolved components: 犮 ⿰钅犮 +U+94BA 钺 exact_ids unresolved components: 戈 ⿰钅戉 +U+94BE 钾 exact_ids unresolved components: 甲 ⿰钅甲 +U+94C0 铀 exact_ids unresolved components: 由 ⿰钅由 +U+94C6 铆 exact_ids unresolved components: 卯 ⿰钅卯 +U+94C7 铇 exact_ids unresolved components: 包 ⿰钅包 +U+94C8 铈 missing missing +U+94D6 铖 exact_ids unresolved components: 成 ⿰钅成 +U+94D9 铙 exact_ids unresolved components: 尧 ⿰钅尧 +U+94DC 铜 exact_ids unresolved components: 同 ⿰钅同 +U+94DF 铟 exact_ids unresolved components: 因 ⿰钅因 +U+94EE 铮 exact_ids unresolved components: 争 ⿰钅争 +U+94EF 铯 exact_ids unresolved components: ⺈ ⿰钅色 +U+94F4 铴 exact_ids unresolved components: 𠃓 ⿰钅汤 +U+94FC 铼 exact_ids unresolved components: 来 ⿰钅来 +U+9501 锁 missing missing +U+9502 锂 exact_ids unresolved components: 里 ⿰钅里 +U+9507 锇 exact_ids unresolved components: 戈 ⿰钅我 +U+950E 锎 exact_ids unresolved components: 開 ⿰钅開 +U+950F 锏 exact_ids unresolved components: 间 ⿰钅间 +U+9514 锔 exact_ids unresolved components: 局 ⿰钅局 +U+9516 锖 exact_ids unresolved components: 龶 ⿰钅青 +U+9519 错 exact_ids unresolved components: 龷 ⿰钅昔 +U+9522 锢 exact_ids unresolved components: 固 ⿰钅固 +U+9527 锧 exact_ids unresolved components: 𣂑 ⿰钅质 +U+952D 锭 exact_ids unresolved components: 𤴓 ⿰钅定 +U+952E 键 exact_ids unresolved components: 聿 ⿰钅建 +U+9535 锵 exact_ids unresolved components: 将 ⿰钅将 +U+953A 锺 exact_ids unresolved components: 里 ⿰钅重 +U+953B 锻 exact_ids unresolved components: 段 ⿰钅段 +U+953C 锼 exact_ids unresolved components: 𦥔 ⿰钅叟 +U+953F 锿 exact_ids unresolved components: 哀 ⿰钅哀 +U+9540 镀 exact_ids unresolved components: 度 ⿰钅度 +U+9541 镁 exact_ids unresolved components: 美 ⿰钅美 +U+954F 镏 exact_ids unresolved components: 留 ⿰钅留 +U+9550 镐 exact_ids unresolved components: 高 ⿰钅高 +U+9552 镒 exact_ids unresolved components: 益 ⿰钅益 +U+9557 镗 exact_ids unresolved components: 冋 ⿰钅堂 +U+9558 镘 exact_ids unresolved components: 曼 ⿰钅曼 +U+955B 镛 exact_ids unresolved components: 庸 ⿰钅庸 +U+955D 镝 exact_ids unresolved components: 啇 ⿰钅啇 +U+955E 镞 exact_ids unresolved components: 族 ⿰钅族 +U+955F 镟 exact_ids unresolved components: 旋 ⿰钅旋 +U+9563 镣 exact_ids unresolved components: 昚 ⿰钅尞 +U+9566 镦 exact_ids unresolved components: 享 ⿰钅敦 +U+9567 镧 exact_ids unresolved components: 阑 ⿰钅阑 +U+956E 镮 exact_ids unresolved components: 睘 ⿰钅睘 +U+956F 镯 exact_ids unresolved components: 𠣜 ⿰钅蜀 +U+9572 镲 exact_ids unresolved components: 祭 ⿰钅察 +U+9574 镴 exact_ids unresolved components: 巤 ⿰钅巤 +U+9575 镵 exact_ids unresolved components: 毚 ⿰钅毚 +U+9576 镶 exact_ids unresolved components: 襄 ⿰钅襄 +U+957D 镽 exact_ids unresolved components: 昚 ⿰镸尞 +U+9581 閁 missing missing +U+9582 閂 missing missing +U+9583 閃 missing missing +U+9585 閅 missing missing +U+9586 閆 missing missing +U+9587 閇 missing missing +U+9588 閈 missing missing +U+9589 閉 missing missing +U+958A 閊 missing missing +U+958B 開 missing missing +U+958C 閌 missing missing +U+958D 閍 missing missing +U+958E 閎 missing missing +U+958F 閏 missing missing +U+9590 閐 missing missing +U+9591 閑 missing missing +U+9592 閒 missing missing +U+9593 間 missing missing +U+9594 閔 missing missing +U+9595 閕 missing missing +U+9596 閖 missing missing +U+9597 閗 missing missing +U+9598 閘 missing missing +U+9599 閙 missing missing +U+959A 閚 missing missing +U+959B 閛 missing missing +U+959C 閜 missing missing +U+959D 閝 missing missing +U+959E 閞 missing missing +U+959F 閟 missing missing +U+95A0 閠 missing missing +U+95A1 閡 missing missing +U+95A2 関 missing missing +U+95A3 閣 missing missing +U+95A4 閤 missing missing +U+95A5 閥 missing missing +U+95A6 閦 missing missing +U+95A7 閧 missing missing +U+95A8 閨 missing missing +U+95A9 閩 missing missing +U+95AA 閪 missing missing +U+95AB 閫 missing missing +U+95AC 閬 missing missing +U+95AD 閭 missing missing +U+95AE 閮 missing missing +U+95AF 閯 missing missing +U+95B0 閰 missing missing +U+95B1 閱 missing missing +U+95B2 閲 missing missing +U+95B3 閳 missing missing +U+95B4 閴 missing missing +U+95B5 閵 missing missing +U+95B6 閶 missing missing +U+95B7 閷 exact_ids unresolved components: 閃 ⿰杀閃 +U+95B8 閸 missing missing +U+95B9 閹 missing missing +U+95BA 閺 missing missing +U+95BB 閻 missing missing +U+95BC 閼 missing missing +U+95BD 閽 missing missing +U+95BE 閾 missing missing +U+95BF 閿 missing missing +U+95C0 闀 missing missing +U+95C1 闁 missing missing +U+95C2 闂 missing missing +U+95C3 闃 missing missing +U+95C4 闄 missing missing +U+95C5 闅 missing missing +U+95C6 闆 missing missing +U+95C7 闇 missing missing +U+95C8 闈 missing missing +U+95C9 闉 missing missing +U+95CA 闊 missing missing +U+95CB 闋 missing missing +U+95CC 闌 missing missing +U+95CD 闍 missing missing +U+95CE 闎 missing missing +U+95CF 闏 missing missing +U+95D0 闐 missing missing +U+95D1 闑 missing missing +U+95D2 闒 missing missing +U+95D3 闓 missing missing +U+95D4 闔 missing missing +U+95D5 闕 missing missing +U+95D6 闖 missing missing +U+95D7 闗 missing missing +U+95D8 闘 missing missing +U+95D9 闙 missing missing +U+95DA 闚 missing missing +U+95DB 闛 missing missing +U+95DC 關 missing missing +U+95DD 闝 missing missing +U+95DE 闞 missing missing +U+95DF 闟 missing missing +U+95E0 闠 missing missing +U+95E1 闡 missing missing +U+95E2 闢 missing missing +U+95E3 闣 missing missing +U+95E4 闤 missing missing +U+95E5 闥 missing missing +U+95E6 闦 missing missing +U+95E7 闧 missing missing +U+95E9 闩 missing missing +U+95EA 闪 missing missing +U+95EB 闫 missing missing +U+95EC 闬 missing missing +U+95ED 闭 missing missing +U+95EE 问 missing missing +U+95EF 闯 missing missing +U+95F0 闰 missing missing +U+95F1 闱 missing missing +U+95F2 闲 missing missing +U+95F3 闳 missing missing +U+95F4 间 missing missing +U+95F5 闵 missing missing +U+95F6 闶 missing missing +U+95F7 闷 missing missing +U+95F8 闸 missing missing +U+95F9 闹 missing missing +U+95FA 闺 missing missing +U+95FB 闻 missing missing +U+95FC 闼 missing missing +U+95FD 闽 missing missing +U+95FE 闾 missing missing +U+95FF 闿 missing missing +U+9600 阀 missing missing +U+9601 阁 missing missing +U+9602 阂 missing missing +U+9603 阃 missing missing +U+9604 阄 missing missing +U+9605 阅 missing missing +U+9606 阆 missing missing +U+9607 阇 missing missing +U+9608 阈 missing missing +U+9609 阉 missing missing +U+960A 阊 missing missing +U+960B 阋 missing missing +U+960C 阌 missing missing +U+960D 阍 missing missing +U+960E 阎 missing missing +U+960F 阏 missing missing +U+9610 阐 missing missing +U+9611 阑 missing missing +U+9612 阒 missing missing +U+9613 阓 missing missing +U+9614 阔 missing missing +U+9615 阕 missing missing +U+9616 阖 missing missing +U+9617 阗 missing missing +U+9618 阘 missing missing +U+9619 阙 missing missing +U+961A 阚 missing missing +U+961B 阛 missing missing +U+9623 阣 exact_ids unresolved components: 乞 ⿰阝乞 +U+962A 阪 exact_ids unresolved components: 反 ⿰阝反 +U+9636 阶 exact_ids unresolved components: 介 ⿰阝介 +U+9646 陆 exact_ids unresolved components: 击 ⿰阝击 +U+964B 陋 missing missing +U+9652 陒 exact_ids unresolved components: ⺈ ⿰阝危 +U+9654 陔 exact_ids unresolved components: 亥 ⿰阝亥 +U+9658 陘 exact_ids unresolved components: 巠 ⿰阝巠 +U+965A 陚 exact_ids unresolved components: 武 ⿰阝武 +U+9665 陥 missing missing +U+9669 险 exact_ids unresolved components: 佥 ⿰阝佥 +U+966F 陯 exact_ids unresolved components: 𠕁 ⿰阝侖 +U+9670 陰 exact_ids unresolved components: ㇇ ⿰阝侌 +U+9671 陱 exact_ids unresolved components: 匊 ⿰阝匊 +U+9676 陶 exact_ids unresolved components: 匋 ⿰阝匋 +U+9677 陷 exact_ids unresolved components: ⺈ ⿰阝臽 +U+9679 陹 missing missing +U+967F 陿 exact_ids unresolved components: 匧 ⿰阝匧 +U+9680 隀 exact_ids unresolved components: 里 ⿰阝重 +U+9681 隁 exact_ids unresolved components: 匽 ⿰阝匽 +U+9682 隂 missing missing +U+9684 隄 exact_ids unresolved components: 𤴓 ⿰阝是 +U+9686 隆 missing missing +U+9687 隇 exact_ids unresolved components: 威 ⿰阝威 +U+9689 隉 missing missing +U+9690 隐 exact_ids unresolved components: ⺈ ⿰阝急 +U+9693 隓 exact_ids unresolved components: 左 ⿰阝𢀡 +U+9698 隘 exact_ids unresolved components: 益 ⿰阝益 +U+969A 隚 exact_ids unresolved components: 冋 ⿰阝堂 +U+969B 際 exact_ids unresolved components: 祭 ⿰阝祭 +U+969E 隞 exact_ids unresolved components: 敖 ⿰阝敖 +U+96A0 隠 missing missing +U+96A6 隦 exact_ids unresolved components: 𡰪 ⿰阝辟 +U+96AA 險 exact_ids unresolved components: 僉 ⿰阝僉 +U+96AF 隯 exact_ids unresolved components: 壽 ⿰阝壽 +U+96B1 隱 missing missing +U+96B2 隲 missing missing +U+96B3 隳 exact_ids unresolved components: 㣺 ⿱隋𠇍 +U+96B5 隵 exact_ids unresolved components: 䖒,戈 ⿰阝戲 +U+96B6 隶 missing missing +U+96B7 隷 missing missing +U+96B8 隸 exact_ids unresolved components: 隶 ⿰柰隶 +U+96C2 雂 exact_ids unresolved components: ㇇ ⿰今隹 +U+96C4 雄 exact_ids unresolved components: 厷 ⿰厷隹 +U+96CA 雊 exact_ids unresolved components: 句 ⿰句隹 +U+96CD 雍 missing missing +U+96CF 雏 exact_ids unresolved components: ⺈ ⿰刍隹 +U+96D5 雕 exact_ids unresolved components: 周 ⿰周隹 +U+96D7 雗 missing missing +U+96DB 雛 exact_ids unresolved components: 芻 ⿰芻隹 +U+96DC 雜 missing missing +U+96DF 雟 missing missing +U+96E2 離 exact_ids unresolved components: 凶 ⿰离隹 +U+96E4 雤 missing missing +U+96ED 雭 exact_ids unresolved components: ㇏ ⿱雨及 +U+96F9 雹 exact_ids unresolved components: 包 ⿱雨包 +U+96FB 電 exact_ids unresolved components: 电 ⿱雨电 +U+970A 霊 missing missing +U+970B 霋 exact_ids unresolved components: 妻 ⿱雨妻 +U+970C 霌 exact_ids unresolved components: 周 ⿱雨周 +U+9712 霒 exact_ids unresolved components: ㇇ ⿰雲今 +U+9718 霘 exact_ids unresolved components: 同 ⿱雨洞 +U+971D 霝 exact_ids unresolved components: 𠱠 ⿱雨𠱠 +U+9721 霡 exact_ids unresolved components: 永 ⿱雨脉 +U+9722 霢 exact_ids unresolved components: 脈 ⿱雨脈 +U+9724 霤 exact_ids unresolved components: 留 ⿱雨留 +U+9725 霥 exact_ids unresolved components: 冃 ⿱雨冡 +U+9728 霨 exact_ids unresolved components: 尉 ⿱雨尉 +U+9729 霩 exact_ids unresolved components: 享 ⿱雨郭 +U+972D 霭 exact_ids unresolved components: 匃 ⿱雨谒 +U+972E 霮 exact_ids unresolved components: 匹 ⿱雨湛 +U+9730 霰 exact_ids unresolved components: 散 ⿱雨散 +U+9733 霳 exact_ids unresolved components: 隆 ⿱雨隆 +U+9734 霴 exact_ids unresolved components: 隶 ⿰雲隶 +U+9735 霵 exact_ids unresolved components: 戈 ⿱雨戢 +U+9738 霸 exact_ids unresolved components: 䩗 ⿱雨䩗 +U+9739 霹 exact_ids unresolved components: 𡰪 ⿱雨辟 +U+973E 霾 exact_ids unresolved components: 里 ⿱雨貍 +U+973F 霿 missing missing +U+9740 靀 exact_ids unresolved components: 冃 ⿱雨蒙 +U+9744 靄 exact_ids unresolved components: 匃 ⿱雨謁 +U+9746 靆 exact_ids unresolved components: 隶 ⿰雲逮 +U+9748 靈 exact_ids unresolved components: 𠱠 ⿱霝巫 +U+974A 靊 exact_ids unresolved components: 𠁳 ⿱雨豐 +U+974C 靌 exact_ids unresolved components: 寳 ⿱雨寳 +U+9751 靑 exact_ids unresolved components: 円,龶 ⿱龶円 +U+9752 青 exact_ids unresolved components: 龶 ⿱龶月 +U+9753 靓 exact_ids unresolved components: 龶 ⿰青见 +U+9754 靔 exact_ids unresolved components: 龶 ⿰青气 +U+9755 靕 exact_ids unresolved components: 円,龶 ⿰正靑 +U+9756 靖 exact_ids unresolved components: 龶 ⿰立青 +U+9757 靗 exact_ids unresolved components: ⺌,龶 ⿰青光 +U+9758 靘 exact_ids unresolved components: ⺈,龶 ⿰青色 +U+9759 静 exact_ids unresolved components: 争,龶 ⿰青争 +U+975A 靚 exact_ids unresolved components: 龶 ⿰青見 +U+975B 靛 exact_ids unresolved components: 龶,𤴓 ⿰青定 +U+975C 靜 exact_ids unresolved components: 龶 ⿰青爭 +U+975D 靝 exact_ids unresolved components: 龶 ⿰青氣 +U+9763 靣 exact_ids unresolved components: 回 ⿱丆回 +U+9764 靤 exact_ids unresolved components: 包 ⿰面包 +U+9768 靨 exact_ids unresolved components: 冃 ⿱厭面 +U+976E 靮 exact_ids unresolved components: 勺 ⿰革勺 +U+9772 靲 exact_ids unresolved components: ㇇ ⿰革今 +U+9778 靸 exact_ids unresolved components: ㇏ ⿰革及 +U+9784 鞄 exact_ids unresolved components: 包 ⿰革包 +U+9787 鞇 exact_ids unresolved components: 因 ⿰革因 +U+978F 鞏 exact_ids unresolved components: 凡 ⿱巩革 +U+9797 鞗 missing missing +U+979D 鞝 exact_ids unresolved components: 冋 ⿰革尚 +U+979F 鞟 exact_ids unresolved components: 享 ⿰革享 +U+97A0 鞠 exact_ids unresolved components: 匊 ⿰革匊 +U+97A7 鞧 exact_ids unresolved components: 酉 ⿰革酋 +U+97A8 鞨 exact_ids unresolved components: 匃 ⿰革曷 +U+97AB 鞫 exact_ids unresolved components: 訇 ⿰革訇 +U+97AC 鞬 exact_ids unresolved components: 聿 ⿰革建 +U+97AE 鞮 exact_ids unresolved components: 𤴓 ⿰革是 +U+97AF 鞯 exact_ids unresolved components: 存 ⿰革荐 +U+97B4 鞴 missing missing +U+97B9 鞹 exact_ids unresolved components: 享 ⿰革郭 +U+97BA 鞺 exact_ids unresolved components: 冋 ⿰革堂 +U+97BB 鞻 exact_ids unresolved components: 婁 ⿰革婁 +U+97BD 鞽 exact_ids unresolved components: 冋 ⿰革喬 +U+97BF 鞿 exact_ids unresolved components: 戍 ⿰革幾 +U+97C1 韁 exact_ids unresolved components: 三 ⿰革畺 +U+97C2 韂 exact_ids unresolved components: 詹 ⿰革詹 +U+97C6 韆 exact_ids unresolved components: 遷 ⿰革遷 +U+97C8 韈 exact_ids unresolved components: 戌 ⿰革蔑 +U+97CA 韊 exact_ids unresolved components: 闌 ⿰革蘭 +U+97CD 韍 exact_ids unresolved components: 犮 ⿰韋犮 +U+97D1 韑 exact_ids unresolved components: ⺌ ⿰光韋 +U+97D3 韓 missing missing +U+97D5 韕 exact_ids unresolved components: 享 ⿰韋享 +U+97D9 韙 exact_ids unresolved components: 𤴓 ⿰是韋 +U+97DB 韛 missing missing +U+97DE 韞 exact_ids unresolved components: 囚 ⿰韋𥁕 +U+97E2 韢 exact_ids unresolved components: 𤰔 ⿰韋惠 +U+97E3 韣 exact_ids unresolved components: 𠣜 ⿰韋蜀 +U+97E4 韤 exact_ids unresolved components: 戌 ⿰韋蔑 +U+97E8 韨 exact_ids unresolved components: 犮 ⿰韦犮 +U+97E9 韩 missing missing +U+97EA 韪 exact_ids unresolved components: 𤴓 ⿰是韦 +U+97EF 韯 missing missing +U+97F0 韰 exact_ids unresolved components: 𣦼 ⿱𣦼韭 +U+97F1 韱 missing missing +U+97F2 韲 missing missing +U+97F5 韵 exact_ids unresolved components: 匀 ⿰音匀 +U+97FD 韽 exact_ids unresolved components: ㇇,酉 ⿰酓音 +U+9814 頔 exact_ids unresolved components: 由 ⿰由頁 +U+981B 頛 exact_ids unresolved components: 耒 ⿰耒頁 +U+9820 頠 exact_ids unresolved components: ⺈ ⿰危頁 +U+9824 頤 missing missing +U+9825 頥 missing missing +U+9826 頦 exact_ids unresolved components: 亥 ⿰亥頁 +U+9827 頧 missing missing +U+982E 頮 missing missing +U+982F 頯 exact_ids unresolved components: 𢌳 ⿰𢌳頁 +U+9834 頴 exact_ids unresolved components: 𥘈 ⿰𥘈頁 +U+9835 頵 exact_ids unresolved components: 尹 ⿰君頁 +U+9837 頷 exact_ids unresolved components: ㇇ ⿰含頁 +U+9838 頸 exact_ids unresolved components: 巠 ⿰巠頁 +U+983F 頿 missing missing +U+9841 顁 exact_ids unresolved components: 𤴓 ⿰定頁 +U+9847 顇 exact_ids unresolved components: 卒 ⿰卒頁 +U+9848 顈 missing missing +U+984C 題 exact_ids unresolved components: 𤴓 ⿰是頁 +U+984F 顏 exact_ids structural collision: 顔 ⿰彥頁 +U+9851 顑 exact_ids unresolved components: 咸 ⿰咸頁 +U+9854 顔 exact_ids structural collision: 顏 ⿰彦頁 +U+9856 顖 exact_ids unresolved components: 囟 ⿰恖頁 +U+9863 顣 exact_ids unresolved components: 戚 ⿰戚頁 +U+9865 顥 exact_ids unresolved components: 京 ⿰景頁 +U+9869 顩 exact_ids unresolved components: 僉 ⿰僉頁 +U+986A 顪 exact_ids unresolved components: 歲 ⿰歲頁 +U+986B 顫 exact_ids unresolved components: 回 ⿰亶頁 +U+986D 顭 exact_ids unresolved components: 夢 ⿰夢頁 +U+986E 顮 exact_ids unresolved components: 賓 ⿰賓頁 +U+9871 顱 exact_ids unresolved components: 𧆨 ⿰盧頁 +U+9872 顲 missing missing +U+9888 颈 missing missing +U+988D 颍 missing missing +U+988E 颎 missing missing +U+988F 颏 exact_ids unresolved components: 亥 ⿰亥页 +U+9890 颐 missing missing +U+9892 颒 missing missing +U+9894 颔 exact_ids unresolved components: ㇇ ⿰含页 +U+9895 颕 exact_ids unresolved components: 𥘈 ⿰𥘈页 +U+9896 颖 missing missing +U+9898 题 exact_ids unresolved components: 𤴓 ⿰是页 +U+989F 颟 missing missing +U+98A2 颢 exact_ids unresolved components: 京 ⿰景页 +U+98A4 颤 exact_ids unresolved components: 回 ⿰亶页 +U+98AE 颮 exact_ids unresolved components: 包 ⿰風包 +U+98B0 颰 exact_ids unresolved components: 犮 ⿰風犮 +U+98B4 颴 missing missing +U+98BB 颻 missing missing +U+98BC 颼 exact_ids unresolved components: 𦥔 ⿰風叟 +U+98C0 飀 exact_ids unresolved components: 留 ⿰風留 +U+98C9 飉 exact_ids unresolved components: 昚 ⿰風尞 +U+98CE 风 missing missing +U+98CF 飏 exact_ids unresolved components: 风,𠃓 ⿰风𠃓 +U+98D0 飐 exact_ids unresolved components: 风 ⿰风占 +U+98D1 飑 exact_ids unresolved components: 包,风 ⿰风包 +U+98D2 飒 exact_ids unresolved components: 风 ⿰立风 +U+98D3 飓 exact_ids unresolved components: 风 ⿰风具 +U+98D4 飔 exact_ids unresolved components: 风 ⿰风思 +U+98D5 飕 exact_ids unresolved components: 风,𦥔 ⿰风叟 +U+98D6 飖 missing missing +U+98D7 飗 exact_ids unresolved components: 留,风 ⿰风留 +U+98D8 飘 exact_ids unresolved components: 风 ⿰票风 +U+98D9 飙 exact_ids unresolved components: 风 ⿰猋风 +U+98DA 飚 exact_ids unresolved components: 风 ⿰风焱 +U+98DF 食 exact_ids structural collision: 飠 ⿱人良 +U+98E0 飠 exact_ids structural collision: 食 ⿱人良 +U+98ED 飭 missing missing +U+98EE 飮 exact_ids structural collision: 飲 ⿰食欠 +U+98EF 飯 exact_ids unresolved components: 反 ⿰食反 +U+98F2 飲 exact_ids structural collision: 飮 ⿰食欠 +U+98F9 飹 exact_ids unresolved components: 卯 ⿰食卯 +U+98FC 飼 exact_ids unresolved components: 司 ⿰食司 +U+98FD 飽 exact_ids unresolved components: 包 ⿰食包 +U+98FE 飾 exact_ids unresolved components: 布 ⿰食布 +U+9907 餇 exact_ids unresolved components: 同 ⿰食同 +U+9909 餉 exact_ids unresolved components: 冋 ⿰食向 +U+990A 養 missing missing +U+9910 餐 exact_ids unresolved components: 𣦼 ⿱𣦼食 +U+9913 餓 exact_ids unresolved components: 戈 ⿰食我 +U+9919 餙 exact_ids unresolved components: 布 ⿰食希 +U+991E 餞 exact_ids unresolved components: 戈 ⿰食戔 +U+9920 餠 exact_ids unresolved components: 幷 ⿰食幷 +U+9921 餡 exact_ids unresolved components: ⺈ ⿰食臽 +U+9923 餣 exact_ids unresolved components: 电 ⿰食奄 +U+9929 餩 exact_ids unresolved components: 亥 ⿰食侅 +U+9931 餱 exact_ids unresolved components: 侯 ⿰食侯 +U+9932 餲 exact_ids unresolved components: 匃 ⿰食曷 +U+9939 餹 exact_ids unresolved components: 唐 ⿰食唐 +U+993B 餻 exact_ids unresolved components: 羔 ⿰食羔 +U+993E 餾 exact_ids unresolved components: 留 ⿰食留 +U+993F 餿 exact_ids unresolved components: 𦥔 ⿰食叟 +U+9942 饂 exact_ids unresolved components: 囚 ⿰食𥁕 +U+9944 饄 exact_ids unresolved components: 冋 ⿰食堂 +U+9945 饅 exact_ids unresolved components: 曼 ⿰食曼 +U+9947 饇 exact_ids unresolved components: 區 ⿰食區 +U+994A 饊 exact_ids unresolved components: 散 ⿰食散 +U+994D 饍 exact_ids unresolved components: 善 ⿰食善 +U+994F 饏 exact_ids unresolved components: 敢 ⿱敢食 +U+9951 饑 exact_ids unresolved components: 戍 ⿰食幾 +U+9954 饔 exact_ids unresolved components: 雍 ⿱雍食 +U+9956 饖 exact_ids unresolved components: 歲 ⿰食歲 +U+9958 饘 exact_ids unresolved components: 回 ⿰食亶 +U+995B 饛 exact_ids unresolved components: 冃 ⿰食蒙 +U+995C 饜 exact_ids unresolved components: 冃 ⿱厭食 +U+995E 饞 exact_ids unresolved components: 毚 ⿰食毚 +U+995F 饟 exact_ids unresolved components: 襄 ⿰食襄 +U+9967 饧 exact_ids unresolved components: 𠃓 ⿰饣𠃓 +U+996C 饬 missing missing +U+996D 饭 exact_ids unresolved components: 反 ⿰饣反 +U+996F 饯 exact_ids unresolved components: 𢦑 ⿰饣𢦑 +U+9970 饰 exact_ids unresolved components: 布 ⿰饣布 +U+9971 饱 exact_ids unresolved components: 包 ⿰饣包 +U+9972 饲 exact_ids unresolved components: 司 ⿰饣司 +U+9976 饶 exact_ids unresolved components: 尧 ⿰饣尧 +U+9977 饷 exact_ids unresolved components: 冋 ⿰饣向 +U+997F 饿 exact_ids unresolved components: 戈 ⿰饣我 +U+9985 馅 exact_ids unresolved components: ⺈ ⿰饣臽 +U+998A 馊 exact_ids unresolved components: 𦥔 ⿰饣叟 +U+998B 馋 missing missing +U+998F 馏 exact_ids unresolved components: 留 ⿰饣留 +U+9992 馒 exact_ids unresolved components: 曼 ⿰饣曼 +U+9993 馓 exact_ids unresolved components: 散 ⿰饣散 +U+9998 馘 exact_ids unresolved components: 或 ⿰首或 +U+999B 馛 exact_ids unresolved components: 犮 ⿰香犮 +U+99A0 馠 exact_ids unresolved components: ㇇ ⿰香含 +U+99A2 馢 exact_ids unresolved components: 戈 ⿰香戔 +U+99A3 馣 exact_ids unresolved components: 电 ⿰香奄 +U+99A4 馤 exact_ids unresolved components: 匃 ⿰香曷 +U+99A5 馥 exact_ids unresolved components: 复 ⿰香复 +U+99A7 馧 exact_ids unresolved components: 囚 ⿰香𥁕 +U+99AA 馪 exact_ids unresolved components: 賓 ⿰香賓 +U+99B0 馰 exact_ids unresolved components: 勺 ⿰馬勺 +U+99BA 馺 exact_ids unresolved components: ㇏ ⿰馬及 +U+99C2 駂 missing missing +U+99C5 駅 exact_ids unresolved components: ㇏ ⿰馬尺 +U+99C6 駆 exact_ids unresolved components: 区 ⿰馬区 +U+99C9 駉 exact_ids unresolved components: 冋 ⿰馬冋 +U+99CE 駎 exact_ids unresolved components: 由 ⿰馬由 +U+99D2 駒 exact_ids unresolved components: 句 ⿰馬句 +U+99DF 駟 exact_ids unresolved components: 四 ⿰馬四 +U+99E0 駠 exact_ids unresolved components: 卯 ⿰馬卯 +U+99E5 駥 exact_ids unresolved components: 戈 ⿰馬戎 +U+99E7 駧 exact_ids unresolved components: 同 ⿰馬同 +U+99E8 駨 exact_ids unresolved components: 旬 ⿰馬旬 +U+99EB 駫 exact_ids unresolved components: ⺌ ⿰馬光 +U+99ED 駭 exact_ids unresolved components: 亥 ⿰馬亥 +U+99F0 駰 exact_ids unresolved components: 因 ⿰馬因 +U+99F4 駴 exact_ids unresolved components: 戈 ⿰馬戒 +U+99F6 駶 exact_ids unresolved components: 局 ⿰馬局 +U+9A00 騀 exact_ids unresolved components: 戈 ⿰馬我 +U+9A01 騁 exact_ids unresolved components: 由 ⿰馬甹 +U+9A06 騆 exact_ids unresolved components: 周 ⿰馬周 +U+9A08 騈 exact_ids unresolved components: 幷 ⿰馬幷 +U+9A0A 騊 exact_ids unresolved components: 匋 ⿰馬匋 +U+9A10 騐 exact_ids unresolved components: ㇇ ⿰馬念 +U+9A14 騔 exact_ids unresolved components: 匃 ⿰馬曷 +U+9A17 騗 exact_ids unresolved components: 𠕁 ⿰扁馬 +U+9A19 騙 exact_ids unresolved components: 𠕁 ⿰馬扁 +U+9A1D 騝 exact_ids unresolved components: 聿 ⿰馬建 +U+9A20 騠 exact_ids unresolved components: 𤴓 ⿰馬是 +U+9A23 騣 exact_ids unresolved components: 凶 ⿰馬㚇 +U+9A28 騨 exact_ids unresolved components: 単 ⿰馬単 +U+9A2A 騪 exact_ids unresolved components: 𦥔 ⿰馬叟 +U+9A2B 騫 missing missing +U+9A2C 騬 exact_ids unresolved components: 北 ⿰馬乘 +U+9A2E 騮 exact_ids unresolved components: 留 ⿰馬留 +U+9A30 騰 exact_ids structural collision: 腾 ⿰月駦 +U+9A36 騶 exact_ids unresolved components: 芻 ⿰馬芻 +U+9A3A 騺 exact_ids unresolved components: 𢆉 ⿱執馬 +U+9A3B 騻 exact_ids unresolved components: 㸚 ⿰馬爽 +U+9A41 驁 exact_ids unresolved components: 敖 ⿱敖馬 +U+9A42 驂 exact_ids unresolved components: 參 ⿰馬參 +U+9A44 驄 exact_ids unresolved components: 囱 ⿰馬悤 +U+9A45 驅 exact_ids unresolved components: 區 ⿰馬區 +U+9A4B 驋 exact_ids unresolved components: 發 ⿰馬發 +U+9A50 驐 exact_ids unresolved components: 享 ⿰馬敦 +U+9A52 驒 exact_ids unresolved components: 單 ⿰馬單 +U+9A53 驓 exact_ids unresolved components: 曾 ⿰馬曾 +U+9A55 驕 exact_ids unresolved components: 冋 ⿰馬喬 +U+9A56 驖 exact_ids unresolved components: 𢧜 ⿰馬𢧜 +U+9A57 驗 exact_ids unresolved components: 僉 ⿰馬僉 +U+9A58 驘 missing missing +U+9A59 驙 exact_ids unresolved components: 回 ⿰馬亶 +U+9A5A 驚 exact_ids unresolved components: 句 ⿱敬馬 +U+9A5B 驛 exact_ids unresolved components: 𢆉 ⿰馬睪 +U+9A5E 驞 exact_ids unresolved components: 賓 ⿰馬賓 +U+9A60 驠 exact_ids unresolved components: 燕 ⿰馬燕 +U+9A62 驢 exact_ids unresolved components: 𧆨 ⿰馬盧 +U+9A64 驤 exact_ids unresolved components: 襄 ⿰馬襄 +U+9A65 驥 exact_ids unresolved components: 北 ⿰馬冀 +U+9A67 驧 exact_ids unresolved components: 匊 ⿰馬鞠 +U+9A6A 驪 exact_ids unresolved components: 丽 ⿰馬麗 +U+9A71 驱 exact_ids unresolved components: 区 ⿰马区 +U+9A77 驷 exact_ids unresolved components: 四 ⿰马四 +U+9A79 驹 exact_ids unresolved components: 句 ⿰马句 +U+9A7A 驺 exact_ids unresolved components: ⺈ ⿰马刍 +U+9A81 骁 exact_ids unresolved components: 尧 ⿰马尧 +U+9A83 骃 exact_ids unresolved components: 因 ⿰马因 +U+9A87 骇 exact_ids unresolved components: 亥 ⿰马亥 +U+9A8A 骊 exact_ids unresolved components: 丽 ⿰马丽 +U+9A8B 骋 exact_ids unresolved components: 由 ⿰马甹 +U+9A8C 验 exact_ids unresolved components: 佥 ⿰马佥 +U+9A95 骕 exact_ids unresolved components: 肃 ⿰马肃 +U+9A96 骖 exact_ids unresolved components: 参 ⿰马参 +U+9A97 骗 exact_ids unresolved components: 𠕁 ⿰马扁 +U+9A9C 骜 exact_ids unresolved components: 敖 ⿱敖马 +U+9A9D 骝 exact_ids unresolved components: 留 ⿰马留 +U+9A9E 骞 missing missing +U+9AA2 骢 exact_ids unresolved components: 囱 ⿰马悤 +U+9AA5 骥 exact_ids unresolved components: 北 ⿰马冀 +U+9AA7 骧 exact_ids unresolved components: 襄 ⿰马襄 +U+9AAA 骪 exact_ids unresolved components: 凡 ⿰骨凡 +U+9AB1 骱 exact_ids unresolved components: 介 ⿰骨介 +U+9AB2 骲 exact_ids unresolved components: 包 ⿰骨包 +U+9AB8 骸 exact_ids unresolved components: 亥 ⿰骨亥 +U+9ABA 骺 exact_ids unresolved components: 后 ⿰骨后 +U+9AC7 髇 exact_ids unresolved components: 高 ⿰骨高 +U+9ACF 髏 exact_ids unresolved components: 婁 ⿰骨婁 +U+9AD1 髑 exact_ids unresolved components: 𠣜 ⿰骨蜀 +U+9AD2 髒 exact_ids unresolved components: 葬 ⿰骨葬 +U+9AD5 髕 exact_ids unresolved components: 賓 ⿰骨賓 +U+9AD7 髗 exact_ids unresolved components: 𧆨 ⿰骨盧 +U+9AD8 高 missing missing +U+9AD9 髙 missing missing +U+9ADA 髚 exact_ids unresolved components: 高 ⿰高亢 +U+9ADB 髛 exact_ids unresolved components: 高 ⿰高尻 +U+9ADC 髜 exact_ids unresolved components: 高 ⿰高昇 +U+9ADD 髝 exact_ids unresolved components: 高 ⿰高勞 +U+9ADE 髞 exact_ids unresolved components: 高 ⿰高喿 +U+9AEE 髮 exact_ids unresolved components: 犮 ⿱髟犮 +U+9AF1 髱 exact_ids unresolved components: 包 ⿱髟包 +U+9B07 鬇 exact_ids unresolved components: 争 ⿱髟争 +U+9B09 鬉 exact_ids unresolved components: 凶 ⿱髟㚇 +U+9B16 鬖 exact_ids unresolved components: 參 ⿱髟參 +U+9B18 鬘 exact_ids unresolved components: 曼 ⿱髟曼 +U+9B19 鬙 exact_ids unresolved components: 曾 ⿱髟曾 +U+9B1B 鬛 missing missing +U+9B1C 鬜 exact_ids unresolved components: 閒 ⿱髟閒 +U+9B1D 鬝 exact_ids unresolved components: 間 ⿱髟間 +U+9B1F 鬟 exact_ids unresolved components: 睘 ⿱髟睘 +U+9B20 鬠 exact_ids unresolved components: 曾 ⿱髟會 +U+9B21 鬡 exact_ids unresolved components: 寍 ⿱髟寧 +U+9B22 鬢 exact_ids unresolved components: 賓 ⿱髟賓 +U+9B23 鬣 exact_ids unresolved components: 巤 ⿱髟巤 +U+9B24 鬤 exact_ids unresolved components: 襄 ⿱髟襄 +U+9B2A 鬪 missing missing +U+9B2B 鬫 exact_ids unresolved components: 敢 ⿱鬥敢 +U+9B2C 鬬 missing missing +U+9B2D 鬭 exact_ids unresolved components: 斲 ⿱鬥斲 +U+9B2F 鬯 missing missing +U+9B30 鬰 missing missing +U+9B31 鬱 missing missing +U+9B37 鬷 exact_ids unresolved components: 凶 ⿰鬲㚇 +U+9B38 鬸 exact_ids unresolved components: 留 ⿰鬲留 +U+9B3A 鬺 missing missing +U+9B40 魀 exact_ids unresolved components: 介 ⿰鬼介 +U+9B43 魃 exact_ids unresolved components: 犮 ⿰鬼犮 +U+9B46 魆 exact_ids unresolved components: 戈 ⿰鬼戉 +U+9B4A 魊 exact_ids unresolved components: 或 ⿰鬼或 +U+9B4D 魍 exact_ids unresolved components: 罔 ⿰鬼罔 +U+9B51 魑 exact_ids unresolved components: 凶 ⿰鬼离 +U+9B55 魕 exact_ids unresolved components: 戍 ⿰鬼幾 +U+9B57 魗 exact_ids unresolved components: 壽 ⿰壽鬼 +U+9B58 魘 exact_ids unresolved components: 冃 ⿱厭鬼 +U+9B61 魡 exact_ids unresolved components: 勺 ⿰魚勺 +U+9B65 魥 exact_ids unresolved components: ㇏ ⿰魚及 +U+9B6A 魪 exact_ids unresolved components: 介 ⿰魚介 +U+9B6C 魬 exact_ids unresolved components: 反 ⿰魚反 +U+9B7B 魻 exact_ids unresolved components: 甲 ⿰魚甲 +U+9B81 鮁 exact_ids unresolved components: 犮 ⿰魚犮 +U+9B82 鮂 exact_ids unresolved components: 囚 ⿰魚囚 +U+9B88 鮈 exact_ids unresolved components: 句 ⿰魚句 +U+9B8B 鮋 exact_ids unresolved components: 由 ⿰魚由 +U+9B91 鮑 exact_ids unresolved components: 包 ⿰魚包 +U+9B9C 鮜 exact_ids unresolved components: 后 ⿰魚后 +U+9BA0 鮠 exact_ids unresolved components: ⺈ ⿰魚危 +U+9BA3 鮣 exact_ids unresolved components: 印 ⿰魚印 +U+9BA6 鮦 exact_ids unresolved components: 同 ⿰魚同 +U+9BB0 鮰 exact_ids unresolved components: 回 ⿰魚回 +U+9BB6 鮶 exact_ids unresolved components: 尹 ⿰魚君 +U+9BBA 鮺 missing missing +U+9BC2 鯂 exact_ids unresolved components: 酉 ⿰魚酉 +U+9BC8 鯈 missing missing +U+9BC9 鯉 exact_ids unresolved components: 里 ⿰魚里 +U+9BCE 鯎 exact_ids unresolved components: 成 ⿰魚成 +U+9BD1 鯑 exact_ids unresolved components: 布 ⿰魚希 +U+9BD6 鯖 exact_ids unresolved components: 龶 ⿰魚青 +U+9BD9 鯙 exact_ids unresolved components: 享 ⿰魚享 +U+9BDB 鯛 exact_ids unresolved components: 周 ⿰魚周 +U+9BDD 鯝 exact_ids unresolved components: 固 ⿰魚固 +U+9BE8 鯨 exact_ids unresolved components: 京 ⿰魚京 +U+9BE9 鯩 exact_ids unresolved components: 𠕁 ⿰魚侖 +U+9BEC 鯬 missing missing +U+9BEF 鯯 exact_ids unresolved components: 制 ⿰魚制 +U+9BF0 鯰 exact_ids unresolved components: ㇇ ⿰魚念 +U+9BF5 鯵 exact_ids unresolved components: 参 ⿰魚参 +U+9BF7 鯷 exact_ids unresolved components: 𤴓 ⿰魚是 +U+9BF8 鯸 exact_ids unresolved components: 侯 ⿰魚侯 +U+9BFC 鯼 exact_ids unresolved components: 凶 ⿰魚㚇 +U+9BFF 鯿 exact_ids unresolved components: 𠕁 ⿰魚扁 +U+9C04 鰄 exact_ids unresolved components: 威 ⿰魚威 +U+9C0B 鰋 exact_ids unresolved components: 匽 ⿰魚匽 +U+9C0C 鰌 exact_ids unresolved components: 酉 ⿰魚酋 +U+9C0E 鰎 exact_ids unresolved components: 聿 ⿰魚建 +U+9C0F 鰏 exact_ids unresolved components: 畐 ⿰魚畐 +U+9C12 鰒 exact_ids unresolved components: 复 ⿰魚复 +U+9C14 鰔 exact_ids unresolved components: 咸 ⿰魚咸 +U+9C1A 鰚 exact_ids unresolved components: 亘 ⿰魚宣 +U+9C1D 鰝 exact_ids unresolved components: 高 ⿰魚高 +U+9C21 鰡 exact_ids unresolved components: 留 ⿰魚留 +U+9C24 鰤 exact_ids unresolved components: 師 ⿰魚師 +U+9C28 鰨 exact_ids unresolved components: 冃 ⿰魚𦐇 +U+9C2E 鰮 exact_ids unresolved components: 囚 ⿰魚𥁕 +U+9C30 鰰 exact_ids unresolved components: 申 ⿰魚神 +U+9C32 鰲 exact_ids unresolved components: 敖 ⿱敖魚 +U+9C34 鰴 missing missing +U+9C36 鰶 exact_ids unresolved components: 祭 ⿰魚祭 +U+9C37 鰷 exact_ids unresolved components: 條 ⿰魚條 +U+9C38 鰸 exact_ids unresolved components: 區 ⿰魚區 +U+9C3A 鰺 exact_ids unresolved components: 參 ⿰魚參 +U+9C3B 鰻 exact_ids unresolved components: 曼 ⿰魚曼 +U+9C3D 鰽 exact_ids unresolved components: 曹 ⿰魚曹 +U+9C3F 鰿 exact_ids unresolved components: 龶 ⿰魚責 +U+9C42 鱂 exact_ids unresolved components: 將 ⿰魚將 +U+9C44 鱄 exact_ids unresolved components: 𤰔 ⿰魚專 +U+9C45 鱅 exact_ids unresolved components: 庸 ⿰魚庸 +U+9C47 鱇 exact_ids unresolved components: 隶 ⿰魚康 +U+9C49 鱉 exact_ids unresolved components: 㡀 ⿱敝魚 +U+9C4D 鱍 exact_ids unresolved components: 發 ⿰魚發 +U+9C4E 鱎 exact_ids unresolved components: 冋 ⿰魚喬 +U+9C52 鱒 exact_ids unresolved components: 酉 ⿰魚尊 +U+9C53 鱓 exact_ids unresolved components: 單 ⿰魚單 +U+9C54 鱔 exact_ids unresolved components: 善 ⿰魚善 +U+9C58 鱘 exact_ids unresolved components: 尋 ⿰魚尋 +U+9C5B 鱛 exact_ids unresolved components: 曾 ⿰魚曾 +U+9C5E 鱞 exact_ids unresolved components: 睘 ⿰魚睘 +U+9C5F 鱟 missing missing +U+9C60 鱠 exact_ids unresolved components: 曾 ⿰魚會 +U+9C61 鱡 exact_ids unresolved components: 戈 ⿰魚賊 +U+9C63 鱣 exact_ids unresolved components: 回 ⿰魚亶 +U+9C64 鱤 exact_ids unresolved components: 咸 ⿰魚感 +U+9C65 鱥 exact_ids unresolved components: 歲 ⿰魚歲 +U+9C68 鱨 exact_ids unresolved components: 冋 ⿰魚嘗 +U+9C72 鱲 exact_ids unresolved components: 巤 ⿰魚巤 +U+9C73 鱳 exact_ids unresolved components: 樂 ⿰魚樂 +U+9C74 鱴 exact_ids unresolved components: 戌 ⿰魚蔑 +U+9C75 鱵 exact_ids unresolved components: 亇,咸 ⿰魚箴 +U+9C76 鱶 exact_ids unresolved components: 養 ⿰魚養 +U+9C78 鱸 exact_ids unresolved components: 𧆨 ⿰魚盧 +U+9C7A 鱺 exact_ids unresolved components: 丽 ⿰魚麗 +U+9C85 鲅 exact_ids unresolved components: 犮 ⿰鱼犮 +U+9C89 鲉 exact_ids unresolved components: 由 ⿰鱼由 +U+9C8D 鲍 exact_ids unresolved components: 包 ⿰鱼包 +U+9C96 鲖 exact_ids unresolved components: 同 ⿰鱼同 +U+9C98 鲘 exact_ids unresolved components: 后 ⿰鱼后 +U+9C9D 鲝 missing missing +U+9CA1 鲡 exact_ids unresolved components: 丽 ⿰鱼丽 +U+9CA4 鲤 exact_ids unresolved components: 里 ⿰鱼里 +U+9CAA 鲪 exact_ids unresolved components: 尹 ⿰鱼君 +U+9CAD 鲭 exact_ids unresolved components: 龶 ⿰鱼青 +U+9CB4 鲴 exact_ids unresolved components: 固 ⿰鱼固 +U+9CB6 鲶 exact_ids unresolved components: ㇇ ⿰鱼念 +U+9CB7 鲷 exact_ids unresolved components: 周 ⿰鱼周 +U+9CB8 鲸 exact_ids unresolved components: 京 ⿰鱼京 +U+9CB9 鲹 exact_ids unresolved components: 参 ⿰鱼参 +U+9CBE 鲾 exact_ids unresolved components: 畐 ⿰鱼畐 +U+9CC0 鳀 exact_ids unresolved components: 𤴓 ⿰鱼是 +U+9CC6 鳆 exact_ids unresolved components: 复 ⿰鱼复 +U+9CC9 鳉 exact_ids unresolved components: 将 ⿰鱼将 +U+9CCA 鳊 exact_ids unresolved components: 𠕁 ⿰鱼扁 +U+9CCC 鳌 exact_ids unresolved components: 敖 ⿱敖鱼 +U+9CCE 鳎 exact_ids unresolved components: 冃 ⿰鱼𦐇 +U+9CD6 鳖 exact_ids unresolved components: 㡀 ⿱敝鱼 +U+9CD7 鳗 exact_ids unresolved components: 曼 ⿰鱼曼 +U+9CD9 鳙 exact_ids unresolved components: 庸 ⿰鱼庸 +U+9CDA 鳚 exact_ids unresolved components: 尉 ⿰鱼尉 +U+9CDD 鳝 exact_ids unresolved components: 善 ⿰鱼善 +U+9CDF 鳟 exact_ids unresolved components: 酉 ⿰鱼尊 +U+9CE1 鳡 exact_ids unresolved components: 咸 ⿰鱼感 +U+9CE3 鳣 exact_ids unresolved components: 回 ⿰鱼亶 +U+9CE4 鳤 exact_ids unresolved components: 亇 ⿰鱼管 +U+9CEC 鳬 missing missing +U+9CEF 鳯 missing missing +U+9CF3 鳳 missing missing +U+9CF9 鳹 exact_ids unresolved components: ㇇ ⿰今鳥 +U+9D04 鴄 exact_ids unresolved components: 匹 ⿰匹鳥 +U+9D07 鴇 missing missing +U+9D0E 鴎 exact_ids unresolved components: 区 ⿰区鳥 +U+9D1D 鴝 exact_ids unresolved components: 句 ⿰句鳥 +U+9D27 鴧 exact_ids structural collision: 鴪 ⿰穴鳥 +U+9D28 鴨 exact_ids unresolved components: 甲 ⿰甲鳥 +U+9D2A 鴪 exact_ids structural collision: 鴧 ⿰穴鳥 +U+9D2D 鴭 missing missing +U+9D57 鵗 exact_ids unresolved components: 布 ⿰希鳥 +U+9D58 鵘 exact_ids unresolved components: 尹 ⿰君鳥 +U+9D5B 鵛 exact_ids unresolved components: 巠 ⿰巠鳥 +U+9D5D 鵝 exact_ids unresolved components: 戈 ⿰我鳥 +U+9D5E 鵞 exact_ids unresolved components: 戈 ⿱我鳥 +U+9D61 鵡 exact_ids unresolved components: 武 ⿰武鳥 +U+9D64 鵤 exact_ids unresolved components: ⺈ ⿰角鳥 +U+9D6A 鵪 exact_ids unresolved components: 电 ⿰奄鳥 +U+9D6E 鵮 exact_ids unresolved components: ⺈ ⿰臽鳥 +U+9D70 鵰 exact_ids unresolved components: 周 ⿰周鳥 +U+9D72 鵲 exact_ids unresolved components: 龷 ⿰昔鳥 +U+9D74 鵴 exact_ids unresolved components: 匊 ⿰匊鳥 +U+9D79 鵹 missing missing +U+9D7A 鵺 exact_ids unresolved components: 夜 ⿰夜鳥 +U+9D81 鶁 exact_ids unresolved components: 京 ⿰京鳥 +U+9D84 鶄 exact_ids unresolved components: 龶 ⿰青鳥 +U+9D88 鶈 exact_ids unresolved components: 妻 ⿰妻鳥 +U+9D89 鶉 exact_ids unresolved components: 享 ⿰享鳥 +U+9D8A 鶊 exact_ids unresolved components: 庚 ⿰庚鳥 +U+9D8F 鶏 missing missing +U+9D97 鶗 exact_ids unresolved components: 𤴓 ⿰是鳥 +U+9D9D 鶝 exact_ids unresolved components: 畐 ⿰畐鳥 +U+9D9E 鶞 exact_ids unresolved components: ⺁ ⿰盾鳥 +U+9DA0 鶠 exact_ids unresolved components: 匽 ⿰匽鳥 +U+9DA1 鶡 exact_ids unresolved components: 匃 ⿰曷鳥 +U+9DA3 鶣 exact_ids unresolved components: 𠕁 ⿰扁鳥 +U+9DAC 鶬 exact_ids unresolved components: 倉 ⿰倉鳥 +U+9DAE 鶮 exact_ids unresolved components: 高 ⿰高鳥 +U+9DB1 鶱 missing missing +U+9DB3 鶳 exact_ids unresolved components: 師 ⿰鳥師 +U+9DB5 鶵 exact_ids unresolved components: 芻 ⿰芻鳥 +U+9DB6 鶶 exact_ids unresolved components: 唐 ⿰唐鳥 +U+9DB7 鶷 exact_ids unresolved components: 害 ⿰害鳥 +U+9DB9 鶹 exact_ids unresolved components: 留 ⿰留鳥 +U+9DBE 鶾 missing missing +U+9DBF 鶿 missing missing +U+9DC0 鷀 missing missing +U+9DC1 鷁 exact_ids unresolved components: 益 ⿰益鳥 +U+9DC2 鷂 missing missing +U+9DC7 鷇 missing missing +U+9DC8 鷈 exact_ids unresolved components: 虒 ⿰鳥虒 +U+9DC9 鷉 exact_ids unresolved components: 虒 ⿰虒鳥 +U+9DD1 鷑 exact_ids unresolved components: 亇 ⿰笠鳥 +U+9DD2 鷒 exact_ids unresolved components: 𤰔 ⿰專鳥 +U+9DD4 鷔 exact_ids unresolved components: 敖 ⿱敖鳥 +U+9DD6 鷖 exact_ids unresolved components: 医 ⿱殹鳥 +U+9DD7 鷗 exact_ids unresolved components: 區 ⿰區鳥 +U+9DD9 鷙 exact_ids unresolved components: 𢆉 ⿱執鳥 +U+9DDB 鷛 exact_ids unresolved components: 庸 ⿰庸鳥 +U+9DDC 鷜 exact_ids unresolved components: 婁 ⿰婁鳥 +U+9DDE 鷞 exact_ids unresolved components: 㸚 ⿰爽鳥 +U+9DDF 鷟 exact_ids unresolved components: 族 ⿱族鳥 +U+9DE4 鷤 exact_ids unresolved components: 單 ⿰單鳥 +U+9DE5 鷥 missing missing +U+9DE9 鷩 exact_ids unresolved components: 㡀 ⿱敝鳥 +U+9DEA 鷪 missing missing +U+9DEE 鷮 exact_ids unresolved components: 冋 ⿰喬鳥 +U+9DEF 鷯 exact_ids unresolved components: 昚 ⿰尞鳥 +U+9DF0 鷰 missing missing +U+9DF1 鷱 exact_ids unresolved components: 臯 ⿰臯鳥 +U+9DF2 鷲 exact_ids unresolved components: 京 ⿱就鳥 +U+9DF3 鷳 exact_ids unresolved components: 閒 ⿰閒鳥 +U+9DF4 鷴 exact_ids unresolved components: 閑 ⿰閑鳥 +U+9DF7 鷷 exact_ids unresolved components: 酉 ⿰尊鳥 +U+9DF9 鷹 missing missing +U+9DFB 鷻 exact_ids unresolved components: 享 ⿰鳥敦 +U+9DFC 鷼 exact_ids unresolved components: 間 ⿰間鳥 +U+9DFD 鷽 missing missing +U+9DFF 鷿 exact_ids unresolved components: 𡰪 ⿱辟鳥 +U+9E00 鸀 exact_ids unresolved components: 𠣜 ⿰蜀鳥 +U+9E01 鸁 missing missing +U+9E03 鸃 exact_ids unresolved components: 義 ⿰鳥義 +U+9E04 鸄 exact_ids unresolved components: 敫 ⿱敫鳥 +U+9E05 鸅 exact_ids unresolved components: 𢆉 ⿰睪鳥 +U+9E07 鸇 exact_ids unresolved components: 回 ⿰亶鳥 +U+9E0A 鸊 exact_ids unresolved components: 𡰪 ⿰辟鳥 +U+9E0B 鸋 exact_ids unresolved components: 寍 ⿰寧鳥 +U+9E0F 鸏 exact_ids unresolved components: 冃 ⿰蒙鳥 +U+9E15 鸕 exact_ids unresolved components: 𧆨 ⿰盧鳥 +U+9E1D 鸝 exact_ids unresolved components: 丽 ⿰麗鳥 +U+9E25 鸥 exact_ids unresolved components: 区 ⿰区鸟 +U+9E28 鸨 missing missing +U+9E2D 鸭 exact_ids unresolved components: 甲 ⿰甲鸟 +U+9E32 鸲 exact_ids unresolved components: 句 ⿰句鸟 +U+9E42 鹂 exact_ids unresolved components: 丽 ⿰丽鸟 +U+9E45 鹅 exact_ids unresolved components: 戈 ⿰我鸟 +U+9E47 鹇 exact_ids unresolved components: 闲 ⿰闲鸟 +U+9E49 鹉 exact_ids unresolved components: 武 ⿰武鸟 +U+9E4A 鹊 exact_ids unresolved components: 龷 ⿰昔鸟 +U+9E4C 鹌 exact_ids unresolved components: 电 ⿰奄鸟 +U+9E50 鹐 exact_ids unresolved components: ⺈ ⿰臽鸟 +U+9E51 鹑 exact_ids unresolved components: 享 ⿰享鸟 +U+9E52 鹒 exact_ids unresolved components: 庚 ⿰庚鸟 +U+9E54 鹔 exact_ids unresolved components: 肃 ⿰肃鸟 +U+9E56 鹖 exact_ids unresolved components: 匃 ⿰曷鸟 +U+9E5E 鹞 missing missing +U+9E60 鹠 exact_ids unresolved components: 留 ⿰留鸟 +U+9E62 鹢 exact_ids unresolved components: 益 ⿰益鸟 +U+9E65 鹥 exact_ids unresolved components: 医 ⿱殹鸟 +U+9E69 鹩 exact_ids unresolved components: 昚 ⿰尞鸟 +U+9E6B 鹫 exact_ids unresolved components: 京 ⿱就鸟 +U+9E6E 鹮 exact_ids unresolved components: 睘 ⿰睘鸟 +U+9E6F 鹯 exact_ids unresolved components: 回 ⿰亶鸟 +U+9E72 鹲 exact_ids unresolved components: 冃 ⿰蒙鸟 +U+9E76 鹶 exact_ids unresolved components: ㇇ ⿰鹵今 +U+9E79 鹹 exact_ids unresolved components: 咸 ⿰鹵咸 +U+9E7C 鹼 exact_ids unresolved components: 僉 ⿰鹵僉 +U+9E7D 鹽 missing missing +U+9E7E 鹾 exact_ids unresolved components: 龱 ⿰卤差 +U+9E81 麁 exact_ids unresolved components: ⺈ ⿱⺈鹿 +U+9E85 麅 exact_ids unresolved components: 包 ⿱鹿包 +U+9E8F 麏 exact_ids unresolved components: 尹 ⿱鹿君 +U+9E95 麕 exact_ids unresolved components: 囷 ⿱鹿囷 +U+9E96 麖 exact_ids unresolved components: 京 ⿱鹿京 +U+9E97 麗 exact_ids unresolved components: 丽 ⿱丽鹿 +U+9E99 麙 exact_ids unresolved components: 咸 ⿱鹿咸 +U+9EA0 麠 exact_ids unresolved components: 三 ⿱鹿畺 +U+9EA2 麢 exact_ids unresolved components: 𠱠 ⿱鹿霝 +U+9EA3 麣 exact_ids unresolved components: 𠪚 ⿰鹿嚴 +U+9EA6 麦 exact_ids unresolved components: 龶 ⿱龶夂 +U+9EA7 麧 exact_ids unresolved components: 乞 ⿰麥乞 +U+9EAD 麭 exact_ids unresolved components: 包 ⿰麥包 +U+9EB4 麴 exact_ids unresolved components: 匊 ⿰麥匊 +U+9EB6 麶 exact_ids unresolved components: 凶 ⿰麥离 +U+9EB7 麷 exact_ids unresolved components: 𠁳 ⿰麥豐 +U+9EB8 麸 exact_ids unresolved components: 龶 ⿰麦夫 +U+9EB9 麹 exact_ids unresolved components: 匊,龶 ⿰麦匊 +U+9EBA 麺 exact_ids unresolved components: 龶 ⿰麦面 +U+9EBF 麿 exact_ids unresolved components: 呂 ⿱麻呂 +U+9EC5 黅 exact_ids unresolved components: ㇇ ⿰黄今 +U+9ECB 黋 exact_ids unresolved components: ⺌ ⿰光黄 +U+9ECC 黌 missing missing +U+9ECE 黎 missing missing +U+9ED0 黐 exact_ids unresolved components: 凶 ⿰黍离 +U+9ED4 黔 exact_ids unresolved components: ㇇ ⿰黑今 +U+9ED9 黙 missing missing +U+9EE4 黤 exact_ids unresolved components: 电 ⿰黑奄 +U+9EE5 黥 exact_ids unresolved components: 京 ⿰黑京 +U+9EE7 黧 missing missing +U+9EE8 黨 exact_ids unresolved components: 冋 ⿱尚黑 +U+9EEA 黪 exact_ids unresolved components: 参 ⿰黑参 +U+9EEC 黬 exact_ids unresolved components: 咸 ⿰黑咸 +U+9EEE 黮 exact_ids unresolved components: 匹 ⿰黑甚 +U+9EF1 黱 missing missing +U+9EF2 黲 exact_ids unresolved components: 參 ⿰黑參 +U+9EF3 黳 exact_ids unresolved components: 医 ⿱殹黑 +U+9EF4 黴 missing missing +U+9EF5 黵 exact_ids unresolved components: 詹 ⿰黑詹 +U+9EF6 黶 exact_ids unresolved components: 冃 ⿱厭黑 +U+9EF8 黸 exact_ids unresolved components: 𧆨 ⿰黑盧 +U+9EFB 黻 exact_ids unresolved components: 犮 ⿰黹犮 +U+9EFE 黾 exact_ids unresolved components: 电 ⿱口电 +U+9F07 鼇 exact_ids unresolved components: 敖 ⿱敖黽 +U+9F08 鼈 exact_ids unresolved components: 㡀 ⿱敝黽 +U+9F0A 鼊 exact_ids unresolved components: 𡰪 ⿱辟黽 +U+9F0B 鼋 exact_ids unresolved components: 电 ⿱元黾 +U+9F0C 鼌 exact_ids unresolved components: 电 ⿱旦黾 +U+9F0D 鼍 missing missing +U+9F1E 鼞 exact_ids unresolved components: 冋 ⿱鼓堂 +U+9F25 鼥 exact_ids unresolved components: 犮 ⿰鼠犮 +U+9F29 鼩 exact_ids unresolved components: 句 ⿰鼠句 +U+9F2C 鼬 exact_ids unresolved components: 由 ⿰鼠由 +U+9F31 鼱 exact_ids unresolved components: 龶 ⿰鼠青 +U+9F34 鼴 exact_ids unresolved components: 匽 ⿰鼠匽 +U+9F36 鼶 exact_ids unresolved components: 虒 ⿰鼠虒 +U+9F41 齁 exact_ids unresolved components: 句 ⿰鼻句 +U+9F42 齂 exact_ids unresolved components: 隶 ⿰鼻隶 +U+9F43 齃 exact_ids unresolved components: 匃 ⿰鼻曷 +U+9F55 齕 exact_ids unresolved components: 乞 ⿰齒乞 +U+9F58 齘 exact_ids unresolved components: 介 ⿰齒介 +U+9F59 齙 exact_ids unresolved components: 包 ⿰齒包 +U+9F62 齢 missing missing +U+9F63 齣 exact_ids unresolved components: 句 ⿰齒句 +U+9F6B 齫 exact_ids unresolved components: 困 ⿰齒困 +U+9F70 齰 exact_ids unresolved components: 龷 ⿰齒昔 +U+9F72 齲 exact_ids unresolved components: 禹 ⿰齒禹 +U+9F78 齸 exact_ids unresolved components: 益 ⿰齒益 +U+9F7A 齺 exact_ids unresolved components: 芻 ⿰齒芻 +U+9F81 龁 exact_ids unresolved components: 乞 ⿰齿乞 +U+9F85 龅 exact_ids unresolved components: 包 ⿰齿包 +U+9F8B 龋 exact_ids unresolved components: 禹 ⿰齿禹 +U+9F97 龗 exact_ids unresolved components: 𠱠 ⿱霝龍 +U+9F9E 龞 exact_ids unresolved components: 㡀 ⿱敝龜 +U+9FA6 龦 missing missing +U+9FA7 龧 missing missing +U+9FA8 龨 missing missing +U+9FA9 龩 missing missing +U+9FAA 龪 missing missing +U+9FAB 龫 missing missing +U+9FAC 龬 missing missing +U+9FAD 龭 missing missing +U+9FAE 龮 missing missing +U+9FAF 龯 missing missing +U+9FB1 龱 missing missing +U+9FB2 龲 missing missing +U+9FB3 龳 missing missing +U+9FB5 龵 missing missing +U+9FB6 龶 missing missing +U+9FB7 龷 missing missing +U+9FB8 龸 missing missing +U+9FBA 龺 missing missing +U+9FBB 龻 missing missing +U+9FBC 龼 missing missing +U+9FBD 龽 missing missing +U+9FBE 龾 missing missing +U+9FBF 龿 missing missing +U+9FC0 鿀 missing missing +U+9FC1 鿁 missing missing +U+9FC2 鿂 missing missing +U+9FC3 鿃 missing missing +U+9FC4 鿄 missing missing +U+9FC5 鿅 missing missing +U+9FC6 鿆 missing missing +U+9FC7 鿇 missing missing +U+9FC8 鿈 missing missing +U+9FC9 鿉 missing missing +U+9FCA 鿊 missing missing +U+9FCB 鿋 missing missing +U+9FCC 鿌 missing missing +U+9FCD 鿍 missing missing +U+9FCE 鿎 missing missing +U+9FCF 鿏 missing missing +U+9FD0 鿐 missing missing +U+9FD1 鿑 missing missing +U+9FD2 鿒 missing missing +U+9FD3 鿓 missing missing +U+9FD4 鿔 missing missing +U+9FD5 鿕 missing missing +U+9FD6 鿖 missing missing +U+9FD7 鿗 missing missing +U+9FD8 鿘 missing missing +U+9FD9 鿙 missing missing +U+9FDA 鿚 missing missing +U+9FDB 鿛 missing missing +U+9FDC 鿜 missing missing +U+9FDD 鿝 missing missing +U+9FDE 鿞 missing missing +U+9FDF 鿟 missing missing +U+9FE0 鿠 missing missing +U+9FE1 鿡 missing missing +U+9FE2 鿢 missing missing +U+9FE3 鿣 missing missing +U+9FE4 鿤 missing missing +U+9FE5 鿥 missing missing +U+9FE6 鿦 missing missing +U+9FE7 鿧 missing missing +U+9FE8 鿨 missing missing +U+9FE9 鿩 missing missing +U+9FEA 鿪 missing missing +U+9FEB 鿫 missing missing +U+9FEC 鿬 missing missing +U+9FED 鿭 missing missing +U+9FEE 鿮 missing missing +U+9FEF 鿯 missing missing +U+9FF0 鿰 missing missing +U+9FF1 鿱 missing missing +U+9FF2 鿲 missing missing +U+9FF3 鿳 missing missing +U+9FF4 鿴 missing missing +U+9FF5 鿵 missing missing +U+9FF6 鿶 missing missing +U+9FF7 鿷 missing missing +U+9FF8 鿸 missing missing +U+9FF9 鿹 missing missing +U+9FFA 鿺 missing missing +U+9FFB 鿻 missing missing +U+9FFC 鿼 missing missing +U+9FFD 鿽 missing missing +U+9FFE 鿾 missing missing +U+9FFF 鿿 missing missing diff --git a/data/hanzi_factor/hanzi-factor-utils-0.3.0/demos/SETUP_AND_DEMO.md b/data/hanzi_factor/hanzi-factor-utils-0.3.0/demos/SETUP_AND_DEMO.md new file mode 100644 index 0000000000..e34a8a62de --- /dev/null +++ b/data/hanzi_factor/hanzi-factor-utils-0.3.0/demos/SETUP_AND_DEMO.md @@ -0,0 +1,102 @@ +# Hanzi Factor: setup and end-to-end demo + +This demo starts from a fresh Python environment and exercises the complete +document workflow: + +1. Create an isolated virtual environment. +2. Install `hanzi-factor` with the OpenCC normalization extra. +3. Download and SHA-512-verify the pinned CCD decomposition catalogue. +4. Normalize one mixed Chinese document to Simplified Chinese. +5. Normalize it separately to Taiwan Traditional Chinese with phrase vocabulary. +6. Replace every covered Han character with recursively expanded prefix IDS. +7. Parse both mixed IDS/plain-text streams back into ordinary documents. +8. Verify both document round trips are byte-identical. +9. Save forward and inverse statistics for both converted documents. +10. Demonstrate Hanzi → binary tree → Hanzi reconstruction. +11. Run the complete automated test suite. + +## Requirements + +- Python 3.10 or newer with the `venv` module. +- Internet access on the first run for the Python dependency and pinned npm + catalogue. Subsequent runs reuse the downloaded catalogue and virtual + environment. + +## One-command demo + +From the extracted `hanzi-factor` source directory: + +```bash +bash demos/setup_and_demo.sh +``` + +The default workspace is `out/hanzi_factor_demo`. To put it elsewhere, pass a +directory as the first argument: + +```bash +bash demos/setup_and_demo.sh /tmp/my_hanzi_demo +``` + +You can also choose a Python interpreter or virtual-environment location: + +```bash +PYTHON_BIN="$HOME/miniconda3/envs/torch/bin/python" \ +VENV_DIR=/tmp/hanzi-factor-venv \ +bash demos/setup_and_demo.sh /tmp/my_hanzi_demo +``` + +## Input document + +The included [`sample_chinese.txt`](sample_chinese.txt) deliberately contains a +known Simplified Chinese source together with English, numbers, punctuation, +and an emoji. Starting from one known source profile avoids ambiguous treatment +of a mixed-orthography input while still showing phrase-sensitive conversion +and preservation of non-Chinese text. + +## Generated results + +The script writes these files beneath `out/hanzi_factor_demo/results/`: + +| File | Contents | +|---|---| +| `sample.simplified.txt` | Entire sample normalized to Simplified Chinese | +| `sample.traditional-tw.txt` | Entire sample normalized to Taiwan Traditional Chinese and vocabulary | +| `sample.simplified.ids.txt` | Simplified document with expanded prefix IDS | +| `sample.traditional-tw.ids.txt` | Traditional document with expanded prefix IDS | +| `sample.simplified.restored.txt` | Simplified IDS stream restored to text | +| `sample.traditional-tw.restored.txt` | Traditional IDS stream restored to text | +| `*.ids.report.json` | Match, change, source-issue, and uncovered-character counts | +| `*.restored.report.json` | Decoded root, escape, ambiguity, and pass-through counts | +| `roundtrip.txt` | Structural/binary round trips for `汉 国 语 清 森` | + +The IDS converter uses `--on-uncovered escape`, so a missing decomposition is +visible as `` instead of being silently retained. A graphical primitive +may remain the same scalar—for example, an atomic leaf is already a valid +one-node IDS. Every multi-component expression is serialized in prefix order; +operator arity supplies its tree boundaries without parentheses. + +## Run individual stages manually + +After the demo has created its environment: + +```bash +DEMO_PY=out/hanzi_factor_demo/.venv/bin/python +CCD=out/hanzi_factor_demo/data/ccd.json + +"$DEMO_PY" scripts/normalize_chinese.py demos/sample_chinese.txt \ + --to traditional --variant taiwan-phrases -o /tmp/sample.tw.txt + +"$DEMO_PY" scripts/text_to_ids.py /tmp/sample.tw.txt \ + --ccd "$CCD" --format expanded --on-uncovered escape \ + -o /tmp/sample.tw.ids.txt + +"$DEMO_PY" scripts/ids_to_text.py /tmp/sample.tw.ids.txt \ + --ccd "$CCD" -o /tmp/sample.tw.restored.txt + +cmp /tmp/sample.tw.txt /tmp/sample.tw.restored.txt +``` + +Simplified/Traditional conversion is linguistic and not bijective: distinct +traditional forms can collapse to one simplified form. Keep the original when +exact editorial identity matters. IDS factorization is a separate graphical +operation and uses the pinned catalogue as its structural contract. diff --git a/data/hanzi_factor/hanzi-factor-utils-0.3.0/demos/setup_and_demo.sh b/data/hanzi_factor/hanzi-factor-utils-0.3.0/demos/setup_and_demo.sh new file mode 100755 index 0000000000..8e0b489efd --- /dev/null +++ b/data/hanzi_factor/hanzi-factor-utils-0.3.0/demos/setup_and_demo.sh @@ -0,0 +1,133 @@ +#!/usr/bin/env bash +# One-command setup and end-to-end demonstration for hanzi-factor. + +set -euo pipefail + +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +REPO_ROOT="$(cd "${SCRIPT_DIR}/.." && pwd)" +PYTHON_BIN="${PYTHON_BIN:-python3}" +WORK_DIR="${1:-${REPO_ROOT}/out/hanzi_factor_demo}" + +if [[ "${WORK_DIR}" != /* ]]; then + WORK_DIR="${REPO_ROOT}/${WORK_DIR}" +fi + +VENV_DIR="${VENV_DIR:-${WORK_DIR}/.venv}" +DATA_DIR="${WORK_DIR}/data" +RESULTS_DIR="${WORK_DIR}/results" +CCD_FILE="${DATA_DIR}/ccd.json" +SAMPLE_FILE="${REPO_ROOT}/demos/sample_chinese.txt" + +step() { + printf '\n==> %s\n' "$1" +} + +step "Creating the isolated demo workspace" +mkdir -p "${DATA_DIR}" "${RESULTS_DIR}" + +if [[ ! -x "${VENV_DIR}/bin/python" ]]; then + "${PYTHON_BIN}" -m venv "${VENV_DIR}" +fi +VENV_PYTHON="${VENV_DIR}/bin/python" + +step "Installing hanzi-factor with phrase-aware normalization support" +"${VENV_PYTHON}" -m pip install -e "${REPO_ROOT}[normalize]" + +if [[ ! -s "${CCD_FILE}" ]]; then + step "Fetching and verifying the pinned CCD decomposition catalogue" + "${VENV_PYTHON}" "${REPO_ROOT}/scripts/fetch_ccd.py" "${CCD_FILE}" +else + step "Reusing the existing verified CCD catalogue" + printf '%s\n' "${CCD_FILE}" +fi + +step "Normalizing the sample document to Simplified Chinese" +"${VENV_PYTHON}" "${REPO_ROOT}/scripts/normalize_chinese.py" \ + "${SAMPLE_FILE}" \ + --to simplified \ + --variant generic \ + --output "${RESULTS_DIR}/sample.simplified.txt" + +step "Normalizing the same document to Taiwan Traditional Chinese" +"${VENV_PYTHON}" "${REPO_ROOT}/scripts/normalize_chinese.py" \ + "${SAMPLE_FILE}" \ + --to traditional \ + --variant taiwan-phrases \ + --output "${RESULTS_DIR}/sample.traditional-tw.txt" + +step "Replacing Simplified Han characters with fully expanded prefix IDS" +"${VENV_PYTHON}" "${REPO_ROOT}/scripts/text_to_ids.py" \ + "${RESULTS_DIR}/sample.simplified.txt" \ + --ccd "${CCD_FILE}" \ + --format expanded \ + --on-uncovered escape \ + --report "${RESULTS_DIR}/sample.simplified.ids.report.json" \ + --output "${RESULTS_DIR}/sample.simplified.ids.txt" + +step "Replacing Traditional Han characters with fully expanded prefix IDS" +"${VENV_PYTHON}" "${REPO_ROOT}/scripts/text_to_ids.py" \ + "${RESULTS_DIR}/sample.traditional-tw.txt" \ + --ccd "${CCD_FILE}" \ + --format expanded \ + --on-uncovered escape \ + --report "${RESULTS_DIR}/sample.traditional-tw.ids.report.json" \ + --output "${RESULTS_DIR}/sample.traditional-tw.ids.txt" + +step "Restoring both IDS streams to ordinary text" +"${VENV_PYTHON}" "${REPO_ROOT}/scripts/ids_to_text.py" \ + "${RESULTS_DIR}/sample.simplified.ids.txt" \ + --ccd "${CCD_FILE}" \ + --report "${RESULTS_DIR}/sample.simplified.restored.report.json" \ + --output "${RESULTS_DIR}/sample.simplified.restored.txt" +"${VENV_PYTHON}" "${REPO_ROOT}/scripts/ids_to_text.py" \ + "${RESULTS_DIR}/sample.traditional-tw.ids.txt" \ + --ccd "${CCD_FILE}" \ + --report "${RESULTS_DIR}/sample.traditional-tw.restored.report.json" \ + --output "${RESULTS_DIR}/sample.traditional-tw.restored.txt" + +if ! cmp -s \ + "${RESULTS_DIR}/sample.simplified.txt" \ + "${RESULTS_DIR}/sample.simplified.restored.txt"; then + printf 'ERROR: Simplified text -> IDS -> text was not exact.\n' >&2 + exit 1 +fi +if ! cmp -s \ + "${RESULTS_DIR}/sample.traditional-tw.txt" \ + "${RESULTS_DIR}/sample.traditional-tw.restored.txt"; then + printf 'ERROR: Traditional text -> IDS -> text was not exact.\n' >&2 + exit 1 +fi +printf 'Both document round trips are byte-identical.\n' + +step "Running the structural and binary round-trip example" +"${VENV_PYTHON}" "${REPO_ROOT}/examples/roundtrip.py" 汉 国 语 清 森 \ + > "${RESULTS_DIR}/roundtrip.txt" + +step "Running the automated test suite" +( + cd "${REPO_ROOT}" + "${VENV_PYTHON}" -m unittest discover -s tests -q +) + +step "Demo output preview" +printf '\n--- Simplified ---\n' +sed -n '1,12p' "${RESULTS_DIR}/sample.simplified.txt" +printf '\n--- Taiwan Traditional ---\n' +sed -n '1,12p' "${RESULTS_DIR}/sample.traditional-tw.txt" +printf '\n--- Expanded IDS (Simplified, first 4 lines) ---\n' +sed -n '1,4p' "${RESULTS_DIR}/sample.simplified.ids.txt" + +step "Complete" +printf 'Results: %s\n' "${RESULTS_DIR}" +printf '%s\n' \ + " sample.simplified.txt" \ + " sample.traditional-tw.txt" \ + " sample.simplified.ids.txt" \ + " sample.traditional-tw.ids.txt" \ + " sample.simplified.restored.txt" \ + " sample.traditional-tw.restored.txt" \ + " sample.simplified.ids.report.json" \ + " sample.traditional-tw.ids.report.json" \ + " sample.simplified.restored.report.json" \ + " sample.traditional-tw.restored.report.json" \ + " roundtrip.txt" diff --git a/data/hanzi_factor/hanzi-factor-utils-0.3.0/docs/FORMAT.md b/data/hanzi_factor/hanzi-factor-utils-0.3.0/docs/FORMAT.md new file mode 100644 index 0000000000..5f59b31daf --- /dev/null +++ b/data/hanzi_factor/hanzi-factor-utils-0.3.0/docs/FORMAT.md @@ -0,0 +1,103 @@ +# Hanzi Factor binary format, version 1 + +This document specifies the structural byte format emitted by +`BinaryCodec`. Multi-byte fields are concatenated without alignment unless +explicitly stated otherwise. + +## Required profile + +A decoder must have the same ordered component dictionary as the encoder. A +dictionary is derived by recursively expanding every definition, grouping +identical expanded trees, and sorting the unique canonical prefix IDS strings +by Unicode scalar order. The ordinal width is: + +```text +w = ceil(log2(N)) = (N - 1).bit_length() +``` + +where `N` is the number of unique entries. Thus `w = 0` for a one-entry +dictionary. An empty dictionary cannot decode a component reference. + +The SHA-256 dictionary fingerprint hashes the domain separator +`hanzi-factor-components-v1\0`, followed for every ordinal by a four-byte +big-endian UTF-8 byte length and the expanded IDS bytes. + +A generic `BinaryCodec` uses that dictionary digest as its frame-profile +fingerprint. `HanziCodec` instead hashes the dictionary digest together with a +deterministic reverse-index digest binding every label to its expanded tree. +The resulting profile value is constant for the whole catalogue; it is not a +per-character ID. + +The reverse-index digest is SHA-256 over the domain separator +`hanzi-factor-reverse-index-v1\0`, followed by labels in Unicode-scalar sort +order. Each entry is an eight-byte big-endian label-byte length, the UTF-8 +label, an eight-byte big-endian expanded-IDS byte length, and the UTF-8 +canonical IDS. The final HanziCodec profile is: + +```text +SHA-256( + "hanzi-factor-codec-profile-v1\0" + || 32-byte component digest + || 32-byte reverse-index digest +) +``` + +## Tree payload + +Bits are written most-significant first. The payload is a preorder tree. +Unicode-defined operator arity makes it self-delimiting. + +| Prefix | Meaning | Following bits | +|---|---|---| +| `00` | binary operator | 4-bit operator index, then two nodes | +| `01` | ternary operator | 1-bit operator index, then three nodes | +| `10` | unary operator | 1-bit operator index, then one node | +| `110` | component reference | `w`-bit unsigned ordinal | +| `111` | raw scalar leaf | Elias gamma of `codepoint + 1` | + +Binary operator indexes are fixed in this order: + +```text +0 ⿰ 1 ⿱ 2 ⿴ 3 ⿵ 4 ⿶ 5 ⿷ 6 ⿸ +7 ⿹ 8 ⿺ 9 ⿻ 10 ⿼ 11 ⿽ 12 ㇯ +``` + +Indexes 13–15 are invalid. Ternary index 0 is `⿲` and index 1 is `⿳`. +Unary index 0 is `⿾` and index 1 is `⿿`. + +The encoder compares the bit cost of a structural subtree with an available +component reference and selects the shorter representation. A tie remains +structural. By default the complete root may not be replaced by a component +reference; this prevents the dictionary ordinal from becoming a disguised +Hanzi ID. + +## Frame + +The default framed encoding is: + +| Field | Size | Value | +|---|---:|---| +| magic | 2 bytes | ASCII `HF` | +| version | 1 byte | `1` | +| fingerprint length | 1 byte | decoder-profile value, default `8` | +| payload bit length | variable | canonical unsigned LEB128 | +| profile fingerprint | declared bytes | SHA-256 prefix | +| payload | `ceil(bits/8)` bytes | tree bits, then zero padding | + +The decoder requires the incoming fingerprint length to equal its configured +profile length; a sender cannot downgrade this check. It rejects a profile +mismatch, overlong LEB128, unknown operator/ordinal, invalid Unicode scalar, +truncation, extra bytes/bits, and non-zero byte padding. + +Unframed values contain only the payload bytes. Because the exact bit length +is absent, the decoder accepts at most seven final zero bits needed for byte +alignment. The component dictionary remains required whenever the payload +uses a reference. + +## Canonical identity + +The byte stream decodes to an expanded structural tree, not directly to a +character. A separate reverse index maps each expanded tree to all registered +labels. A lookup succeeds only when exactly one label has that tree. Zero +matches are unknown; two or more are an information-theoretic collision and +must not be guessed. diff --git a/data/hanzi_factor/hanzi-factor-utils-0.3.0/examples/roundtrip.py b/data/hanzi_factor/hanzi-factor-utils-0.3.0/examples/roundtrip.py new file mode 100755 index 0000000000..a6c4720af4 --- /dev/null +++ b/data/hanzi_factor/hanzi-factor-utils-0.3.0/examples/roundtrip.py @@ -0,0 +1,112 @@ +#!/usr/bin/env python3 +"""Self-contained Hanzi → IDS → bytes → IDS → Hanzi demonstration. + +This tiny mapping is deliberately a demonstration, not a claim of corpus +coverage. Use the dataset loaders and ``scripts/coverage_utf.py`` for a real +decomposition source. + +Run from a checkout without installing the package:: + + python examples/roundtrip.py + python examples/roundtrip.py 汉 森 +""" + +from __future__ import annotations + +import argparse +import base64 +import sys +from pathlib import Path + + +PROJECT_ROOT = Path(__file__).resolve().parents[1] +SOURCE_TREE = PROJECT_ROOT / "src" +if SOURCE_TREE.is_dir(): + sys.path.insert(0, str(SOURCE_TREE)) + +from hanzi_factor.codec import HanziCodec # noqa: E402 +from hanzi_factor.ids import format_ids # noqa: E402 + + +DEMO_DECOMPOSITIONS = { + "汉": "⿰氵又", + "国": "⿴囗玉", + "语": "⿰讠⿱五口", + "清": "⿰氵青", + "森": "⿱木⿰木木", +} + +# 青 is a reusable component, not a Hanzi identity lookup. Expanding it makes +# 清 fully structural: ⿰氵⿱龶月. The binary decoder needs the same component +# codec profile whenever a compact component reference is used. Framed +# HanziCodec bytes bind both this component table and the reverse catalogue. +DEMO_COMPONENTS = { + "青": "⿱龶月", +} + + +def requested_characters(arguments: list[str]) -> list[str]: + """Allow either space-separated labels or a single string of labels.""" + + if not arguments: + return list(DEMO_DECOMPOSITIONS) + return [character for argument in arguments for character in argument] + + +def main(argv: list[str] | None = None) -> int: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument( + "characters", + nargs="*", + help="demo Hanzi to round-trip (default: 汉国语清森)", + ) + args = parser.parse_args(argv) + + characters = requested_characters(args.characters) + unknown = [char for char in characters if char not in DEMO_DECOMPOSITIONS] + if unknown: + parser.error( + "not in the self-contained demo mapping: " + + ", ".join(f"{char} (U+{ord(char):04X})" for char in unknown) + ) + + codec = HanziCodec(DEMO_DECOMPOSITIONS, DEMO_COMPONENTS) + + for character in characters: + # Forward path: identity is used only to select its registered tree. + canonical_ids = codec.to_ids(character) + canonical_tree = codec.index.tree_for(character) + encoded = codec.encode(character) + unframed = codec.binary.encode_tree(canonical_tree, framed=False) + payload_bits = codec.binary.payload_bit_length(canonical_tree) + encoded_hex = encoded.hex() + encoded_base64 = base64.b64encode(encoded).decode("ascii") + + # Reverse path: bytes yield a tree; only then does the reverse index + # recover an identity. Ambiguous graphical collisions would raise an + # error instead of silently choosing one Hanzi. + decoded_tree = codec.binary.decode_tree(encoded) + decoded_ids = format_ids(decoded_tree) + recovered = codec.index.lookup(decoded_tree) + + if decoded_ids != canonical_ids or recovered != character: + raise AssertionError("round-trip invariant failed") + + print(f"{character} U+{ord(character):04X}") + print(f" source IDS : {DEMO_DECOMPOSITIONS[character]}") + print(f" canonical IDS : {canonical_ids}") + print(f" payload bits : {payload_bits}") + print(f" unframed bytes: {len(unframed)} ({unframed.hex()})") + print(f" framed bytes : {len(encoded)}") + print(f" profile hash : {codec.profile_fingerprint.hex()[:16]}") + print(f" hex : {encoded_hex}") + print(f" base64 : {encoded_base64}") + print(f" decoded tree : {decoded_tree!r}") + print(f" decoded IDS : {decoded_ids}") + print(f" reverse lookup: {recovered}") + + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/data/hanzi_factor/hanzi-factor-utils-0.3.0/scripts/coverage_utf.py b/data/hanzi_factor/hanzi-factor-utils-0.3.0/scripts/coverage_utf.py new file mode 100755 index 0000000000..e9de4dd351 --- /dev/null +++ b/data/hanzi_factor/hanzi-factor-utils-0.3.0/scripts/coverage_utf.py @@ -0,0 +1,227 @@ +#!/usr/bin/env python3 +"""Audit Han decomposition coverage over Unicode ranges or target lists.""" + +from __future__ import annotations + +import argparse +from pathlib import Path +import sys + +try: + from hanzi_factor.coverage import audit_coverage + from hanzi_factor.datasets import ( + available_presets, + characters_from_ranges, + load_ccd_json, + load_ids_file, + load_makemeahanzi, + load_target_file, + merge_datasets, + parse_range_spec, + targets_from_presets, + ) +except ModuleNotFoundError: # Permit running from an uninstalled source checkout. + sys.path.insert(0, str(Path(__file__).resolve().parents[1] / "src")) + from hanzi_factor.coverage import audit_coverage + from hanzi_factor.datasets import ( + available_presets, + characters_from_ranges, + load_ccd_json, + load_ids_file, + load_makemeahanzi, + load_target_file, + merge_datasets, + parse_range_spec, + targets_from_presets, + ) + + +def build_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser( + description=( + "Audit direct IDS, recursive expansion, fallbacks, missing/malformed/" + "cyclic entries, and reverse collisions over Unicode Han targets." + ) + ) + sources = parser.add_argument_group("local decomposition sources") + sources.add_argument( + "--ids", + action="append", + default=[], + metavar="FILE", + help="CJKVI/CHISE/BabelStone-style tab-separated IDS file (repeatable)", + ) + sources.add_argument( + "--makemeahanzi", + action="append", + default=[], + metavar="FILE", + help="Make Me a Hanzi dictionary JSON-lines file (repeatable)", + ) + sources.add_argument( + "--ccd", + action="append", + default=[], + metavar="FILE", + help="npm chinese-characters-decomposition ccd.json (repeatable)", + ) + sources.add_argument( + "--merge-policy", + choices=("first", "last", "shortest"), + default="first", + help="resolve conflicting source entries (default: first)", + ) + + targets = parser.add_argument_group("targets") + targets.add_argument( + "--range", + dest="ranges", + action="append", + default=[], + metavar="START-END", + help="inclusive hexadecimal Unicode range, e.g. 4E00-9FFF (repeatable)", + ) + targets.add_argument( + "--preset", + action="append", + default=[], + metavar="NAME", + help="Unicode Han block preset (repeatable; default: unified)", + ) + targets.add_argument( + "--target-file", + action="append", + default=[], + metavar="FILE", + help="literal characters, U+ labels, and/or ranges (repeatable)", + ) + targets.add_argument( + "--list-presets", + action="store_true", + help="print preset names and exit", + ) + targets.add_argument( + "--no-leaf-fallback", + action="store_true", + help="require every component operand to have a recursive source entry", + ) + targets.add_argument( + "--no-binary-roundtrip", + action="store_true", + help="skip expanded IDS encode/decode verification", + ) + + output = parser.add_argument_group("output") + output.add_argument("--json", metavar="FILE", help="write complete JSON report") + output.add_argument("--csv", metavar="FILE", help="write per-target CSV report") + output.add_argument("--text", metavar="FILE", help="write human-readable report") + output.add_argument( + "--show-records", + action="store_true", + help="include every target row in stdout/text (summary only by default)", + ) + output.add_argument( + "--fail-on", + action="append", + choices=("missing", "malformed", "cyclic", "collision", "binary"), + default=[], + help="return exit status 2 when the selected condition is present", + ) + output.add_argument( + "--fail-under", + type=float, + metavar="PERCENT", + help="return exit status 2 when recursive coverage is below PERCENT", + ) + return parser + + +def _ordered_unique(values: list[str]) -> list[str]: + return list(dict.fromkeys(values)) + + +def _ensure_parent(path: str | None) -> None: + if path: + Path(path).parent.mkdir(parents=True, exist_ok=True) + + +def main(argv: list[str] | None = None) -> int: + parser = build_parser() + args = parser.parse_args(argv) + if args.fail_under is not None and not 0 <= args.fail_under <= 100: + parser.error("--fail-under must be between 0 and 100") + if args.list_presets: + print("\n".join(available_presets())) + return 0 + + datasets = [] + for path in args.ids: + datasets.append(load_ids_file(path, merge_policy=args.merge_policy)) + for path in args.makemeahanzi: + datasets.append(load_makemeahanzi(path, merge_policy=args.merge_policy)) + for path in args.ccd: + datasets.append(load_ccd_json(path, merge_policy=args.merge_policy)) + if not datasets: + parser.error("provide at least one local source with --ids, --makemeahanzi, or --ccd") + dataset = merge_datasets( + *datasets, + merge_policy=args.merge_policy, + name=" + ".join(item.name for item in datasets), + ) + + selected: list[str] = [] + preset_names = args.preset + if not (preset_names or args.ranges or args.target_file): + preset_names = ["unified"] + if preset_names: + try: + selected.extend(targets_from_presets(preset_names)) + except ValueError as exc: + parser.error(str(exc)) + for specification in args.ranges: + try: + selected.extend(characters_from_ranges((parse_range_spec(specification),))) + except ValueError as exc: + parser.error(str(exc)) + for path in args.target_file: + selected.extend(load_target_file(path)) + selected = _ordered_unique(selected) + + report = audit_coverage( + dataset, + selected, + allow_leaf_fallback=not args.no_leaf_fallback, + verify_binary_roundtrip=not args.no_binary_roundtrip, + ) + rendered = report.to_text(include_records=args.show_records) + print(rendered, end="") + + for path in (args.json, args.csv, args.text): + _ensure_parent(path) + if args.json: + report.write_json(args.json) + if args.csv: + report.write_csv(args.csv) + if args.text: + report.write_text(args.text, include_records=args.show_records) + + summary = report.summary + failed = ( + "missing" in args.fail_on + and summary.missing > 0 + or "malformed" in args.fail_on + and summary.malformed > 0 + or "cyclic" in args.fail_on + and summary.cyclic > 0 + or "collision" in args.fail_on + and summary.reverse_collision_groups > 0 + or "binary" in args.fail_on + and summary.binary_roundtrip_failures > 0 + or args.fail_under is not None + and summary.decodable_coverage_ratio * 100 < args.fail_under + ) + return 2 if failed else 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/data/hanzi_factor/hanzi-factor-utils-0.3.0/scripts/fetch_ccd.py b/data/hanzi_factor/hanzi-factor-utils-0.3.0/scripts/fetch_ccd.py new file mode 100755 index 0000000000..dfc2139ae0 --- /dev/null +++ b/data/hanzi_factor/hanzi-factor-utils-0.3.0/scripts/fetch_ccd.py @@ -0,0 +1,93 @@ +#!/usr/bin/env python3 +"""Fetch the pinned, external CCD JSON audit dataset. + +The dataset is intentionally not bundled with hanzi-factor. This helper +downloads the MIT-licensed npm snapshot and verifies its registry integrity +hash before extracting only ``package/ccd.json``. +""" + +from __future__ import annotations + +import argparse +import base64 +import hashlib +import io +import sys +import tarfile +import urllib.request +from pathlib import Path + + +VERSION = "0.1.0" +URL = ( + "https://registry.npmjs.org/chinese-characters-decomposition/-/" + f"chinese-characters-decomposition-{VERSION}.tgz" +) +INTEGRITY_SHA512_B64 = ( + "aFIjWb090e6kkQGme7LDLrBX5YYXSMlMOiB0+Lbj+f5Xs//z7u265R317vCsWWjRwqhp" + "Wh2YDwE+ltMNJth0WQ==" +) +MEMBER = "package/ccd.json" + + +def fetch(url: str = URL) -> bytes: + """Return the verified tarball bytes.""" + + request = urllib.request.Request( + url, + headers={"User-Agent": f"hanzi-factor-fetch/{VERSION}"}, + ) + with urllib.request.urlopen(request, timeout=60) as response: + payload = response.read() + + actual = hashlib.sha512(payload).digest() + expected = base64.b64decode(INTEGRITY_SHA512_B64) + if actual != expected: + raise ValueError( + "download failed SHA-512 integrity verification; refusing to extract" + ) + return payload + + +def extract_ccd(tarball: bytes) -> bytes: + """Extract only the known JSON member without writing archive paths.""" + + with tarfile.open(fileobj=io.BytesIO(tarball), mode="r:gz") as archive: + member = archive.getmember(MEMBER) + stream = archive.extractfile(member) + if stream is None: + raise ValueError(f"{MEMBER!r} is not a regular archive member") + return stream.read() + + +def build_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument( + "output", + nargs="?", + type=Path, + default=Path("data/ccd.json"), + help="destination JSON path (default: data/ccd.json)", + ) + parser.add_argument("--url", default=URL, help=argparse.SUPPRESS) + return parser + + +def main(argv: list[str] | None = None) -> int: + args = build_parser().parse_args(argv) + try: + ccd_json = extract_ccd(fetch(args.url)) + # Decode once so a corrupt/non-UTF-8 payload cannot be installed. + ccd_json.decode("utf-8") + args.output.parent.mkdir(parents=True, exist_ok=True) + args.output.write_bytes(ccd_json) + except (OSError, ValueError, tarfile.TarError) as error: + print(f"fetch_ccd: {error}", file=sys.stderr) + return 1 + + print(f"wrote {args.output} ({len(ccd_json):,} bytes)") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/data/hanzi_factor/hanzi-factor-utils-0.3.0/scripts/ids_to_text.py b/data/hanzi_factor/hanzi-factor-utils-0.3.0/scripts/ids_to_text.py new file mode 100755 index 0000000000..0ab1ab05a0 --- /dev/null +++ b/data/hanzi_factor/hanzi-factor-utils-0.3.0/scripts/ids_to_text.py @@ -0,0 +1,160 @@ +#!/usr/bin/env python3 +"""Restore a mixed prefix-IDS UTF-8 document to ordinary text.""" + +from __future__ import annotations + +import argparse +import json +from pathlib import Path +import sys +import tempfile + +try: + from hanzi_factor.datasets import ( + load_ccd_json, + load_ids_file, + load_makemeahanzi, + merge_datasets, + ) + from hanzi_factor.text import restore_text +except ModuleNotFoundError: + sys.path.insert(0, str(Path(__file__).resolve().parents[1] / "src")) + from hanzi_factor.datasets import ( + load_ccd_json, + load_ids_file, + load_makemeahanzi, + merge_datasets, + ) + from hanzi_factor.text import restore_text + + +def _read(path: str, encoding: str) -> str: + return sys.stdin.read() if path == "-" else Path(path).read_text(encoding=encoding) + + +def _write(path: str, text: str, encoding: str) -> None: + if path == "-": + sys.stdout.write(text) + return + destination = Path(path) + destination.parent.mkdir(parents=True, exist_ok=True) + with tempfile.NamedTemporaryFile( + "w", encoding=encoding, newline="", dir=destination.parent, delete=False + ) as handle: + handle.write(text) + temporary = Path(handle.name) + temporary.replace(destination) + + +def build_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("input", nargs="?", default="-", help="input file or -") + output = parser.add_mutually_exclusive_group() + output.add_argument("-o", "--output", default="-", help="output file or -") + output.add_argument("--in-place", action="store_true", help="replace INPUT atomically") + sources = parser.add_argument_group("same decomposition catalogue used forward") + sources.add_argument("--ids", action="append", default=[], metavar="FILE") + sources.add_argument("--ccd", action="append", default=[], metavar="FILE") + sources.add_argument("--makemeahanzi", action="append", default=[], metavar="FILE") + sources.add_argument( + "--merge-policy", choices=("first", "last", "shortest"), default="first" + ) + parser.add_argument( + "--on-unknown", + choices=("error", "keep"), + default="error", + help="policy for structurally valid IDS absent from the catalogue", + ) + parser.add_argument( + "--on-ambiguous", + choices=("error", "first"), + default="error", + help="policy for structural collisions (default: error)", + ) + parser.add_argument( + "--keep-uplus-escapes", + action="store_true", + help="do not turn forward fallbacks back into scalars", + ) + parser.add_argument( + "--no-wrapped", + action="store_true", + help="disable recognition of forward ⟦IDS⟧ wrappers", + ) + parser.add_argument("--encoding", default="utf-8") + parser.add_argument("--report", metavar="JSON", help="write restoration statistics") + parser.add_argument("--quiet", action="store_true") + return parser + + +def main(argv: list[str] | None = None) -> int: + parser = build_parser() + args = parser.parse_args(argv) + if args.in_place and args.input == "-": + parser.error("--in-place requires a file INPUT") + + datasets = [] + datasets.extend(load_ids_file(path, merge_policy=args.merge_policy) for path in args.ids) + datasets.extend(load_ccd_json(path, merge_policy=args.merge_policy) for path in args.ccd) + datasets.extend( + load_makemeahanzi(path, merge_policy=args.merge_policy) + for path in args.makemeahanzi + ) + if not datasets: + parser.error("provide --ids, --ccd, or --makemeahanzi") + dataset = merge_datasets( + *datasets, + merge_policy=args.merge_policy, + name=" + ".join(item.name for item in datasets), + ) + + source_text = _read(args.input, args.encoding) + result = restore_text( + source_text, + dataset.mapping, + on_unknown=args.on_unknown, + on_ambiguous=args.on_ambiguous, + decode_uplus_escapes=not args.keep_uplus_escapes, + accept_wrapped=not args.no_wrapped, + ) + destination = args.input if args.in_place else args.output + _write(destination, result.text, args.encoding) + + report = { + "input": args.input, + "output": destination, + "catalogue_records": len(dataset), + "source_issues": len(dataset.issues), + "input_characters": result.input_characters, + "output_characters": result.output_characters, + "decoded_ids_roots": result.decoded_ids_roots, + "decoded_uplus_escapes": result.decoded_uplus_escapes, + "passed_through_characters": result.passed_through_characters, + "unknown_ids_roots": result.unknown_ids_roots, + "ambiguous_ids_roots": result.ambiguous_ids_roots, + } + if args.report: + report_path = Path(args.report) + report_path.parent.mkdir(parents=True, exist_ok=True) + report_path.write_text( + json.dumps(report, ensure_ascii=False, indent=2) + "\n", + encoding="utf-8", + ) + if not args.quiet: + print( + "ids-to-text: " + f"decoded_ids={result.decoded_ids_roots} " + f"decoded_escapes={result.decoded_uplus_escapes} " + f"unknown={result.unknown_ids_roots} " + f"ambiguous={result.ambiguous_ids_roots}", + file=sys.stderr, + ) + return 0 + + +if __name__ == "__main__": + try: + raise SystemExit(main()) + except (KeyError, OSError, RuntimeError, ValueError) as error: + print(f"ids-to-text: {error}", file=sys.stderr) + raise SystemExit(2) diff --git a/data/hanzi_factor/hanzi-factor-utils-0.3.0/scripts/list_uncovered.py b/data/hanzi_factor/hanzi-factor-utils-0.3.0/scripts/list_uncovered.py new file mode 100755 index 0000000000..235ef0c3b0 --- /dev/null +++ b/data/hanzi_factor/hanzi-factor-utils-0.3.0/scripts/list_uncovered.py @@ -0,0 +1,191 @@ +#!/usr/bin/env python3 +"""List characters that fail a selected Hanzi Factor coverage level. + +The input is a JSON report produced by ``scripts/coverage_utf.py --json``. +By default a character is covered only when its tree is recursively closed, +binary-roundtrippable, and unique in the report's reverse index. +""" + +from __future__ import annotations + +import argparse +import csv +import io +import json +from pathlib import Path +import sys +from typing import Any, Literal + + +Criterion = Literal["direct", "recursive", "unique", "binary", "bijective"] + + +def is_covered(record: dict[str, Any], criterion: Criterion) -> bool: + """Return whether one report record reaches ``criterion``.""" + + direct = record.get("has_exact_ids") is True + recursive = record.get("recursively_expandable") is True + unique = recursive and not record.get("reverse_collision_with") + binary = record.get("binary_roundtrip") is True + if criterion == "direct": + return direct + if criterion == "recursive": + return recursive + if criterion == "unique": + return unique + if criterion == "binary": + return binary + return unique and binary + + +def uncovered_reason(record: dict[str, Any], criterion: Criterion) -> str: + """Explain the first failed requirement in coverage order.""" + + if record.get("has_exact_ids") is not True: + return str(record.get("status") or "no accepted root IDS") + if criterion == "direct": + return "no accepted root IDS" + if record.get("recursively_expandable") is not True: + unresolved = record.get("unresolved_leaves") or [] + cycle = record.get("cycle") or [] + if unresolved: + return "unresolved components: " + ",".join(map(str, unresolved)) + if cycle: + return "cycle: " + " -> ".join(map(str, cycle)) + return str(record.get("error") or "not recursively expandable") + if criterion in {"unique", "bijective"}: + collisions = record.get("reverse_collision_with") or [] + if collisions: + return "structural collision: " + ",".join(map(str, collisions)) + if criterion in {"binary", "bijective"} and record.get("binary_roundtrip") is not True: + return str(record.get("binary_error") or "binary roundtrip not run/passed") + return f"does not satisfy {criterion} coverage" + + +def load_report(path: Path) -> tuple[dict[str, Any], list[dict[str, Any]]]: + """Load and minimally validate one coverage report.""" + + try: + report = json.loads(path.read_text(encoding="utf-8")) + except json.JSONDecodeError as error: + raise ValueError(f"invalid JSON: {error.msg}") from error + if not isinstance(report, dict) or not isinstance(report.get("records"), list): + raise ValueError("input is not a Hanzi Factor coverage report") + records = report["records"] + if any(not isinstance(record, dict) for record in records): + raise ValueError("coverage report contains a non-object record") + return report, records + + +def select_uncovered( + records: list[dict[str, Any]], criterion: Criterion +) -> list[dict[str, Any]]: + """Return report records that fail ``criterion`` in original order.""" + + return [record for record in records if not is_covered(record, criterion)] + + +def render_tsv( + records: list[dict[str, Any]], criterion: Criterion, *, header: bool +) -> str: + stream = io.StringIO(newline="") + fields = ("codepoint", "character", "status", "reason", "ids") + writer = csv.DictWriter(stream, fieldnames=fields, dialect="excel-tab") + if header: + writer.writeheader() + for record in records: + writer.writerow( + { + "codepoint": record.get("codepoint", ""), + "character": record.get("character", ""), + "status": record.get("status", ""), + "reason": uncovered_reason(record, criterion), + "ids": record.get("ids") or "", + } + ) + return stream.getvalue() + + +def render_json( + report: dict[str, Any], records: list[dict[str, Any]], criterion: Criterion +) -> str: + selected = [ + { + "codepoint": record.get("codepoint"), + "character": record.get("character"), + "status": record.get("status"), + "reason": uncovered_reason(record, criterion), + "ids": record.get("ids"), + "unresolved_leaves": record.get("unresolved_leaves") or [], + "reverse_collision_with": record.get("reverse_collision_with") or [], + } + for record in records + ] + output = { + "schema_version": 1, + "source_dataset": report.get("dataset"), + "criterion": criterion, + "total_characters": len(report.get("records", [])), + "uncovered_characters": len(selected), + "records": selected, + } + return json.dumps(output, ensure_ascii=False, indent=2) + "\n" + + +def build_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("report", type=Path, help="coverage report JSON") + parser.add_argument( + "--criterion", + choices=("direct", "recursive", "unique", "binary", "bijective"), + default="bijective", + help=( + "required coverage level (default: bijective = recursive, unique, " + "and binary-roundtrippable)" + ), + ) + parser.add_argument( + "--format", + choices=("tsv", "characters", "json"), + default="tsv", + help="output representation (default: tsv)", + ) + parser.add_argument("--output", type=Path, help="write to FILE instead of stdout") + parser.add_argument( + "--no-header", action="store_true", help="omit the TSV header row" + ) + return parser + + +def main(argv: list[str] | None = None) -> int: + args = build_parser().parse_args(argv) + try: + report, records = load_report(args.report) + uncovered = select_uncovered(records, args.criterion) + if args.format == "json": + rendered = render_json(report, uncovered, args.criterion) + elif args.format == "characters": + rendered = "".join(f"{record.get('character', '')}\n" for record in uncovered) + else: + rendered = render_tsv( + uncovered, args.criterion, header=not args.no_header + ) + if args.output: + args.output.parent.mkdir(parents=True, exist_ok=True) + args.output.write_text(rendered, encoding="utf-8", newline="") + else: + sys.stdout.write(rendered) + except (OSError, ValueError) as error: + print(f"list_uncovered: {error}", file=sys.stderr) + return 2 + + print( + f"{len(uncovered):,} uncovered of {len(records):,} " + f"for criterion={args.criterion}", + file=sys.stderr, + ) + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/data/hanzi_factor/hanzi-factor-utils-0.3.0/scripts/normalize_chinese.py b/data/hanzi_factor/hanzi-factor-utils-0.3.0/scripts/normalize_chinese.py new file mode 100644 index 0000000000..b79c1e40b5 --- /dev/null +++ b/data/hanzi_factor/hanzi-factor-utils-0.3.0/scripts/normalize_chinese.py @@ -0,0 +1,79 @@ +#!/usr/bin/env python3 +"""Normalize a UTF-8 document to Simplified or Traditional Chinese.""" + +from __future__ import annotations + +import argparse +from pathlib import Path +import sys +import tempfile + +try: + from hanzi_factor.normalization import normalize_chinese +except ModuleNotFoundError: + sys.path.insert(0, str(Path(__file__).resolve().parents[1] / "src")) + from hanzi_factor.normalization import normalize_chinese + + +def _read(path: str, encoding: str) -> str: + return sys.stdin.read() if path == "-" else Path(path).read_text(encoding=encoding) + + +def _write(path: str, text: str, encoding: str) -> None: + if path == "-": + sys.stdout.write(text) + return + destination = Path(path) + destination.parent.mkdir(parents=True, exist_ok=True) + with tempfile.NamedTemporaryFile( + "w", encoding=encoding, newline="", dir=destination.parent, delete=False + ) as handle: + handle.write(text) + temporary = Path(handle.name) + temporary.replace(destination) + + +def build_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("input", nargs="?", default="-", help="input file or -") + output = parser.add_mutually_exclusive_group() + output.add_argument("-o", "--output", default="-", help="output file or -") + output.add_argument("--in-place", action="store_true", help="replace INPUT atomically") + parser.add_argument("--to", choices=("simplified", "traditional"), required=True) + parser.add_argument( + "--variant", + choices=("generic", "taiwan", "taiwan-phrases", "hong-kong"), + default="generic", + help="regional vocabulary/orthography profile (default: generic)", + ) + parser.add_argument("--encoding", default="utf-8") + parser.add_argument("--quiet", action="store_true") + return parser + + +def main(argv: list[str] | None = None) -> int: + parser = build_parser() + args = parser.parse_args(argv) + if args.in_place and args.input == "-": + parser.error("--in-place requires a file INPUT") + source = _read(args.input, args.encoding) + normalized = normalize_chinese(source, args.to, variant=args.variant) + destination = args.input if args.in_place else args.output + _write(destination, normalized, args.encoding) + if not args.quiet: + print( + "normalize-chinese: " + f"profile={args.to}/{args.variant} " + f"input_chars={len(source)} output_chars={len(normalized)} " + f"changed={source != normalized}", + file=sys.stderr, + ) + return 0 + + +if __name__ == "__main__": + try: + raise SystemExit(main()) + except (OSError, RuntimeError, ValueError) as error: + print(f"normalize-chinese: {error}", file=sys.stderr) + raise SystemExit(2) diff --git a/data/hanzi_factor/hanzi-factor-utils-0.3.0/scripts/text_to_ids.py b/data/hanzi_factor/hanzi-factor-utils-0.3.0/scripts/text_to_ids.py new file mode 100644 index 0000000000..96d10ad97d --- /dev/null +++ b/data/hanzi_factor/hanzi-factor-utils-0.3.0/scripts/text_to_ids.py @@ -0,0 +1,153 @@ +#!/usr/bin/env python3 +"""Replace all covered Han characters in a UTF-8 document with prefix IDS.""" + +from __future__ import annotations + +import argparse +import json +from pathlib import Path +import sys +import tempfile + +try: + from hanzi_factor.datasets import ( + load_ccd_json, + load_ids_file, + load_makemeahanzi, + merge_datasets, + ) + from hanzi_factor.text import factorize_text +except ModuleNotFoundError: + sys.path.insert(0, str(Path(__file__).resolve().parents[1] / "src")) + from hanzi_factor.datasets import ( + load_ccd_json, + load_ids_file, + load_makemeahanzi, + merge_datasets, + ) + from hanzi_factor.text import factorize_text + + +def _read(path: str, encoding: str) -> str: + if path == "-": + return sys.stdin.read() + return Path(path).read_text(encoding=encoding) + + +def _write(path: str, text: str, encoding: str) -> None: + if path == "-": + sys.stdout.write(text) + return + destination = Path(path) + destination.parent.mkdir(parents=True, exist_ok=True) + with tempfile.NamedTemporaryFile( + "w", encoding=encoding, newline="", dir=destination.parent, delete=False + ) as handle: + handle.write(text) + temporary = Path(handle.name) + temporary.replace(destination) + + +def build_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("input", nargs="?", default="-", help="input file or -") + output = parser.add_mutually_exclusive_group() + output.add_argument("-o", "--output", default="-", help="output file or -") + output.add_argument("--in-place", action="store_true", help="replace INPUT atomically") + sources = parser.add_argument_group("decomposition catalogue") + sources.add_argument("--ids", action="append", default=[], metavar="FILE") + sources.add_argument("--ccd", action="append", default=[], metavar="FILE") + sources.add_argument("--makemeahanzi", action="append", default=[], metavar="FILE") + sources.add_argument( + "--merge-policy", choices=("first", "last", "shortest"), default="first" + ) + parser.add_argument( + "--format", + choices=("expanded", "direct"), + default="expanded", + help="recursive factorization or canonical source IDS (default: expanded)", + ) + parser.add_argument( + "--on-uncovered", + choices=("keep", "error", "escape"), + default="keep", + help="policy for Han characters absent from the catalogue", + ) + parser.add_argument("--wrap", action="store_true", help="wrap each IDS as ⟦IDS⟧") + parser.add_argument("--encoding", default="utf-8") + parser.add_argument("--report", metavar="JSON", help="write conversion statistics") + parser.add_argument("--quiet", action="store_true") + return parser + + +def main(argv: list[str] | None = None) -> int: + parser = build_parser() + args = parser.parse_args(argv) + if args.in_place and args.input == "-": + parser.error("--in-place requires a file INPUT") + + datasets = [] + datasets.extend(load_ids_file(path, merge_policy=args.merge_policy) for path in args.ids) + datasets.extend(load_ccd_json(path, merge_policy=args.merge_policy) for path in args.ccd) + datasets.extend( + load_makemeahanzi(path, merge_policy=args.merge_policy) + for path in args.makemeahanzi + ) + if not datasets: + parser.error("provide --ids, --ccd, or --makemeahanzi") + dataset = merge_datasets( + *datasets, + merge_policy=args.merge_policy, + name=" + ".join(item.name for item in datasets), + ) + + source_text = _read(args.input, args.encoding) + result = factorize_text( + source_text, + dataset.mapping, + expanded=args.format == "expanded", + uncovered=args.on_uncovered, + wrap=args.wrap, + ) + destination = args.input if args.in_place else args.output + _write(destination, result.text, args.encoding) + + report = { + "input": args.input, + "output": destination, + "format": args.format, + "catalogue_records": len(dataset), + "source_issues": len(dataset.issues), + "input_characters": result.input_characters, + "matched_characters": result.matched_characters, + "changed_characters": result.changed_characters, + "uncovered_han_characters": result.uncovered_han_characters, + "distinct_uncovered": [ + {"character": char, "codepoint": f"U+{ord(char):04X}"} + for char in result.distinct_uncovered + ], + } + if args.report: + report_path = Path(args.report) + report_path.parent.mkdir(parents=True, exist_ok=True) + report_path.write_text( + json.dumps(report, ensure_ascii=False, indent=2) + "\n", + encoding="utf-8", + ) + if not args.quiet: + print( + "text-to-ids: " + f"matched={result.matched_characters} " + f"changed={result.changed_characters} " + f"uncovered_han={result.uncovered_han_characters}", + file=sys.stderr, + ) + return 0 + + +if __name__ == "__main__": + try: + raise SystemExit(main()) + except (KeyError, OSError, RuntimeError, ValueError) as error: + print(f"text-to-ids: {error}", file=sys.stderr) + raise SystemExit(2) diff --git a/explorations/zh_factorization_compare.yaml b/explorations/zh_factorization_compare.yaml new file mode 100644 index 0000000000..228c80d132 --- /dev/null +++ b/explorations/zh_factorization_compare.yaml @@ -0,0 +1,113 @@ +# comparison_adam_muon_hsnorm_relu2_softmax_peri.yaml using named group mechanisms from sample.yaml +--- + +named_static_groups: + # QK Norm + - named_group: "qk_norm" + use_qk_norm: [true] + use_qk_norm_scale: [true] + + # Norm Type + - named_group: "peri_ln" + use_pre_ln: [true] + use_peri_ln: [true] + use_post_ln: [false] + + # Position Embeddings + - named_group: "rotary" + use_rotary_embeddings: [true] + use_abs_pos_embeddings: [false] + + # Embedding Norm + - named_group: "rmsnorm_all" + norm_variant_wte: ["rmsnorm"] + norm_variant_attn: ["rmsnorm"] + norm_variant_output: ["rmsnorm"] + + # Embedding Norm + - named_group: "rmsnorm_ao" + norm_variant_attn: ["rmsnorm"] + norm_variant_output: ["rmsnorm"] + + - named_group: "hsnorm_all" + norm_variant_wte: ["hyperspherenorm"] + norm_variant_attn: ["hyperspherenorm"] + norm_variant_output: ["hyperspherenorm"] + hsnorm_radius_learning: [true] + norm_wte_radius_learning: [true] + + - named_group: "hsnorm_ao" + norm_variant_attn: ["hyperspherenorm"] + norm_variant_output: ["hyperspherenorm"] + hsnorm_radius_learning: [true] + + # MLP Activation + - named_group: "squared_relu" + activation_variant: ["squared_relu"] + + # Relu2Max + - named_group: "relu2max" + softmax_variant_attn: ["relu2max"] + + # Softmax + - named_group: "softmax" + softmax_variant_attn: ["softmax"] + + # Infinite Attention + - named_group: "infinite" + attention_variant: ["infinite"] + use_concat_heads: [true] + + # Head Dimension + - named_group: "hd_100" + n_qk_head_dim: [100] + n_v_head_dim: [100] + + - named_group: "hd_150" + n_qk_head_dim: [150] + n_v_head_dim: [150] + + - named_group: "hd_200" + n_qk_head_dim: [200] + n_v_head_dim: [200] + + # MQA + - named_group: "mqa" + n_kv_group: [1] + + - named_group: "muon" + optimizer: ["muon"] + weight_decay: [0] + + - named_group: "adamw" + optimizer: ["adamw"] + +common_group: + eval_interval: [25] + max_iters: [2000] + never_save_checkpoint: [false] + compile: [true] + use_gradient_checkpointing: [false] + n_head: [3] + log_areq: [true] + log_rankme: [true] + + +parameter_groups: + - named_group_static: + - "qk_norm" + - "rotary" + - "infinite" + - "hd_200" + - "muon" + - "softmax" + named_group_alternates: ["rmsnorm_all"] + use_peri_ln: [true] + activation_variant: ["squared_relu"] + dataset: + - "factored_zhongwen/char_bpe_zh_5000" + - "factored_zhongwen/char_bpe_zf_5000" + + + +